]> scripts.mit.edu Git - autoinstalls/wordpress.git/blobdiff - wp-app.php
Wordpress 3.1.1-scripts
[autoinstalls/wordpress.git] / wp-app.php
index 15d924abb08fcb9331a070ba8695c807df998564..6de52882063c8a21dbca5944f86c6aae6caf0217 100644 (file)
@@ -2,8 +2,6 @@
 /**
  * Atom Publishing Protocol support for WordPress
  *
- * @author Original by Elias Torres <http://torrez.us/archives/2006/08/31/491/>
- * @author Modified by Dougal Campbell <http://dougal.gunters.org/>
  * @version 1.0.5-dc
  */
 
@@ -17,14 +15,11 @@ define('APP_REQUEST', true);
 /** Set up WordPress environment */
 require_once('./wp-load.php');
 
-/** Post Template API */
-require_once(ABSPATH . WPINC . '/post-template.php');
-
 /** Atom Publishing Protocol Class */
 require_once(ABSPATH . WPINC . '/atomlib.php');
 
-/** Feed Handling API */
-require_once(ABSPATH . WPINC . '/feed.php');
+/** Admin Image API for metadata updating */
+require_once(ABSPATH . '/wp-admin/includes/image.php');
 
 $_SERVER['PATH_INFO'] = preg_replace( '/.*\/wp-app\.php/', '', $_SERVER['REQUEST_URI'] );
 
@@ -66,22 +61,6 @@ function log_app($label,$msg) {
        }
 }
 
-if ( !function_exists('wp_set_current_user') ) :
-/**
- * @ignore
- */
-function wp_set_current_user($id, $name = '') {
-       global $current_user;
-
-       if ( isset($current_user) && ($id == $current_user->ID) )
-               return $current_user;
-
-       $current_user = new WP_User($id, $name);
-
-       return $current_user;
-}
-endif;
-
 /**
  * Filter to add more post statuses.
  *
@@ -244,11 +223,8 @@ class AtomServer {
         */
        function AtomServer() {
 
-               $this->script_name = array_pop(explode('/',$_SERVER['SCRIPT_NAME']));
-               $this->app_base = get_bloginfo('url') . '/' . $this->script_name . '/';
-               if ( isset($_SERVER['HTTPS']) && strtolower($_SERVER['HTTPS']) == 'on' ) {
-                       $this->app_base = preg_replace( '/^http:\/\//', 'https://', $this->app_base );
-               }
+               $this->script_name = array_pop( $var_by_ref = explode( '/', $_SERVER['SCRIPT_NAME'] ) );
+               $this->app_base = site_url( $this->script_name . '/' );
 
                $this->selectors = array(
                        '@/service$@' =>
@@ -284,7 +260,7 @@ class AtomServer {
        function handle_request() {
                global $always_authenticate;
 
-               if( !empty( $_SERVER['ORIG_PATH_INFO'] ) )
+               if ( !empty( $_SERVER['ORIG_PATH_INFO'] ) )
                        $path = $_SERVER['ORIG_PATH_INFO'];
                else
                        $path = $_SERVER['PATH_INFO'];
@@ -297,40 +273,38 @@ class AtomServer {
                //$this->process_conditionals();
 
                // exception case for HEAD (treat exactly as GET, but don't output)
-               if($method == 'HEAD') {
+               if ($method == 'HEAD') {
                        $this->do_output = false;
                        $method = 'GET';
                }
 
                // redirect to /service in case no path is found.
-               if(strlen($path) == 0 || $path == '/') {
+               if (strlen($path) == 0 || $path == '/')
                        $this->redirect($this->get_service_url());
-               }
 
                // check to see if AtomPub is enabled
-               if( !get_option( 'enable_app' ) )
-                       $this->forbidden( sprintf( __( 'AtomPub services are disabled on this blog.  An admin user can enable them at %s' ), admin_url('options-writing.php') ) );
+               if ( !get_option( 'enable_app' ) )
+                       $this->forbidden( sprintf( __( 'AtomPub services are disabled on this site.  An admin user can enable them at %s' ), admin_url('options-writing.php') ) );
 
                // dispatch
-               foreach($this->selectors as $regex => $funcs) {
-                       if(preg_match($regex, $path, $matches)) {
-                       if(isset($funcs[$method])) {
-
-                               // authenticate regardless of the operation and set the current
-                               // user. each handler will decide if auth is required or not.
-                               if(!$this->authenticate()) {
-                                       if ($always_authenticate) {
-                                               $this->auth_required('Credentials required.');
+               foreach ( $this->selectors as $regex => $funcs ) {
+                       if ( preg_match($regex, $path, $matches) ) {
+                               if ( isset($funcs[$method]) ) {
+
+                                       // authenticate regardless of the operation and set the current
+                                       // user. each handler will decide if auth is required or not.
+                                       if ( !$this->authenticate() ) {
+                                               if ( $always_authenticate )
+                                                       $this->auth_required('Credentials required.');
                                        }
-                               }
 
-                               array_shift($matches);
-                               call_user_func_array(array(&$this,$funcs[$method]), $matches);
-                               exit();
-                       } else {
-                               // only allow what we have handlers for...
-                               $this->not_allowed(array_keys($funcs));
-                       }
+                                       array_shift($matches);
+                                       call_user_func_array(array(&$this,$funcs[$method]), $matches);
+                                       exit();
+                               } else {
+                                       // only allow what we have handlers for...
+                                       $this->not_allowed(array_keys($funcs));
+                               }
                        }
                }
 
@@ -346,17 +320,18 @@ class AtomServer {
        function get_service() {
                log_app('function','get_service()');
 
-               if( !current_user_can( 'edit_posts' ) )
-                       $this->auth_required( __( 'Sorry, you do not have the right to access this blog.' ) );
+               if ( !current_user_can( 'edit_posts' ) )
+                       $this->auth_required( __( 'Sorry, you do not have the right to access this site.' ) );
 
-               $entries_url = attribute_escape($this->get_entries_url());
-               $categories_url = attribute_escape($this->get_categories_url());
-               $media_url = attribute_escape($this->get_attachments_url());
+               $entries_url = esc_attr($this->get_entries_url());
+               $categories_url = esc_attr($this->get_categories_url());
+               $media_url = esc_attr($this->get_attachments_url());
+               $accepted_media_types = '';
                foreach ($this->media_content_types as $med) {
                        $accepted_media_types = $accepted_media_types . "<accept>" . $med . "</accept>";
                }
                $atom_prefix="atom";
-               $atom_blogname=get_bloginfo('name');
+               $atom_blogname = get_bloginfo('name');
                $service_doc = <<<EOD
 <service xmlns="$this->ATOMPUB_NS" xmlns:$atom_prefix="$this->ATOM_NS">
   <workspace>
@@ -386,16 +361,16 @@ EOD;
        function get_categories_xml() {
                log_app('function','get_categories_xml()');
 
-               if( !current_user_can( 'edit_posts' ) )
-                       $this->auth_required( __( 'Sorry, you do not have the right to access this blog.' ) );
+               if ( !current_user_can( 'edit_posts' ) )
+                       $this->auth_required( __( 'Sorry, you do not have the right to access this site.' ) );
 
-               $home = attribute_escape(get_bloginfo_rss('home'));
+               $home = esc_attr(get_bloginfo_rss('url'));
 
                $categories = "";
-               $cats = get_categories("hierarchical=0&hide_empty=0");
-               foreach ((array) $cats as $cat) {
-                       $categories .= "    <category term=\"" . attribute_escape($cat->name) .  "\" />\n";
-}
+               $cats = get_categories(array('hierarchical' => 0, 'hide_empty' => 0));
+               foreach ( (array) $cats as $cat ) {
+                       $categories .= "    <category term=\"" . esc_attr($cat->name) .  "\" />\n";
+               }
                $output = <<<EOD
 <app:categories xmlns:app="$this->ATOMPUB_NS"
        xmlns="$this->ATOM_NS"
@@ -403,8 +378,8 @@ EOD;
        $categories
 </app:categories>
 EOD;
-       $this->output($output, $this->CATEGORIES_CONTENT_TYPE);
-}
+               $this->output($output, $this->CATEGORIES_CONTENT_TYPE);
+       }
 
        /**
         * Create new post.
@@ -412,39 +387,39 @@ EOD;
         * @since 2.2.0
         */
        function create_post() {
-               global $blog_id, $user_ID;
+               global $user_ID;
                $this->get_accepted_content_type($this->atom_content_types);
 
                $parser = new AtomParser();
-               if(!$parser->parse()) {
+               if ( !$parser->parse() )
                        $this->client_error();
-               }
 
                $entry = array_pop($parser->feed->entries);
 
                log_app('Received entry:', print_r($entry,true));
 
                $catnames = array();
-               foreach($entry->categories as $cat)
+               foreach ( $entry->categories as $cat ) {
                        array_push($catnames, $cat["term"]);
+               }
 
                $wp_cats = get_categories(array('hide_empty' => false));
 
                $post_category = array();
 
-               foreach($wp_cats as $cat) {
-                       if(in_array($cat->name, $catnames))
+               foreach ( $wp_cats as $cat ) {
+                       if ( in_array($cat->name, $catnames) )
                                array_push($post_category, $cat->term_id);
                }
 
-               $publish = (isset($entry->draft) && trim($entry->draft) == 'yes') ? false : true;
+               $publish = ! ( isset( $entry->draft ) && 'yes' == trim( $entry->draft ) );
 
                $cap = ($publish) ? 'publish_posts' : 'edit_posts';
 
-               if(!current_user_can($cap))
+               if ( !current_user_can($cap) )
                        $this->auth_required(__('Sorry, you do not have the right to edit/publish new posts.'));
 
-               $blog_ID = (int ) $blog_id;
+               $blog_ID = get_current_blog_id();
                $post_status = ($publish) ? 'publish' : 'draft';
                $post_author = (int) $user_ID;
                $post_title = $entry->title[1];
@@ -466,7 +441,7 @@ EOD;
                if ( is_wp_error( $postID ) )
                        $this->internal_error($postID->get_error_message());
 
-               if (!$postID)
+               if ( !$postID )
                        $this->internal_error(__('Sorry, your entry could not be posted. Something wrong happened.'));
 
                // getting warning here about unable to set headers
@@ -475,6 +450,8 @@ EOD;
                // this could affect our ability to send back the right headers
                @wp_set_post_categories($postID, $post_category);
 
+               do_action( 'atompub_create_post', $postID, $entry );
+
                $output = $this->get_entry($postID);
 
                log_app('function',"create_post($postID)");
@@ -491,7 +468,7 @@ EOD;
        function get_post($postID) {
                global $entry;
 
-               if( !current_user_can( 'edit_post', $postID ) )
+               if ( !current_user_can( 'edit_post', $postID ) )
                        $this->auth_required( __( 'Sorry, you do not have the right to access this post.' ) );
 
                $this->set_current_entry($postID);
@@ -514,9 +491,8 @@ EOD;
                $this->get_accepted_content_type($this->atom_content_types);
 
                $parser = new AtomParser();
-               if(!$parser->parse()) {
+               if ( !$parser->parse() )
                        $this->bad_request();
-               }
 
                $parsed = array_pop($parser->feed->entries);
 
@@ -526,10 +502,10 @@ EOD;
                global $entry;
                $this->set_current_entry($postID);
 
-               if(!current_user_can('edit_post', $entry['ID']))
+               if ( !current_user_can('edit_post', $entry['ID']) )
                        $this->auth_required(__('Sorry, you do not have the right to edit this post.'));
 
-               $publish = (isset($parsed->draft) && trim($parsed->draft) == 'yes') ? false : true;
+               $publish = ! ( isset($parsed->draft) && 'yes' == trim($parsed->draft) );
                $post_status = ($publish) ? 'publish' : 'draft';
 
                extract($entry);
@@ -549,9 +525,10 @@ EOD;
 
                $result = wp_update_post($postdata);
 
-               if (!$result) {
+               if ( !$result )
                        $this->internal_error(__('For some strange yet very annoying reason, this post could not be edited.'));
-               }
+
+               do_action( 'atompub_put_post', $ID, $parsed );
 
                log_app('function',"put_post($postID)");
                $this->ok();
@@ -570,16 +547,15 @@ EOD;
                global $entry;
                $this->set_current_entry($postID);
 
-               if(!current_user_can('edit_post', $postID)) {
+               if ( !current_user_can('edit_post', $postID) )
                        $this->auth_required(__('Sorry, you do not have the right to delete this post.'));
-               }
 
-               if ($entry['post_type'] == 'attachment') {
+               if ( $entry['post_type'] == 'attachment' ) {
                        $this->delete_attachment($postID);
                } else {
                        $result = wp_delete_post($postID);
 
-                       if (!$result) {
+                       if ( !$result ) {
                                $this->internal_error(__('For some strange yet very annoying reason, this post could not be deleted.'));
                        }
 
@@ -597,10 +573,10 @@ EOD;
         * @param int $postID Optional. Post ID.
         */
        function get_attachment($postID = null) {
-               if( !current_user_can( 'upload_files' ) )
+               if ( !current_user_can( 'upload_files' ) )
                        $this->auth_required( __( 'Sorry, you do not have permission to upload files.' ) );
 
-               if (!isset($postID)) {
+               if ( !isset($postID) ) {
                        $this->get_attachments();
                } else {
                        $this->set_current_entry($postID);
@@ -619,12 +595,12 @@ EOD;
 
                $type = $this->get_accepted_content_type();
 
-               if(!current_user_can('upload_files'))
+               if ( !current_user_can('upload_files') )
                        $this->auth_required(__('You do not have permission to upload files.'));
 
                $fp = fopen("php://input", "rb");
                $bits = null;
-               while(!feof($fp)) {
+               while ( !feof($fp) ) {
                        $bits .= fread($fp, 4096);
                }
                fclose($fp);
@@ -682,7 +658,7 @@ EOD;
                $this->get_accepted_content_type($this->atom_content_types);
 
                $parser = new AtomParser();
-               if(!$parser->parse()) {
+               if (!$parser->parse()) {
                        $this->bad_request();
                }
 
@@ -692,13 +668,13 @@ EOD;
                global $entry;
                $this->set_current_entry($postID);
 
-               if(!current_user_can('edit_post', $entry['ID']))
+               if ( !current_user_can('edit_post', $entry['ID']) )
                        $this->auth_required(__('Sorry, you do not have the right to edit this post.'));
 
                extract($entry);
 
                $post_title = $parsed->title[1];
-               $post_content = $parsed->content[1];
+               $post_content = $parsed->summary[1];
                $pubtimes = $this->get_publish_time($parsed->updated);
                $post_modified = $pubtimes[0];
                $post_modified_gmt = $pubtimes[1];
@@ -708,9 +684,8 @@ EOD;
 
                $result = wp_update_post($postdata);
 
-               if (!$result) {
+               if ( !$result )
                        $this->internal_error(__('For some strange yet very annoying reason, this post could not be edited.'));
-               }
 
                log_app('function',"put_attachment($postID)");
                $this->ok();
@@ -730,15 +705,14 @@ EOD;
                global $entry;
                $this->set_current_entry($postID);
 
-               if(!current_user_can('edit_post', $postID)) {
+               if ( !current_user_can('edit_post', $postID) )
                        $this->auth_required(__('Sorry, you do not have the right to delete this post.'));
-               }
 
                $location = get_post_meta($entry['ID'], '_wp_attached_file', true);
                $filetype = wp_check_filetype($location);
 
-               if(!isset($location) || 'attachment' != $entry['post_type'] || empty($filetype['ext']))
-                       $this->internal_error(__('Error ocurred while accessing post metadata for file location.'));
+               if ( !isset($location) || 'attachment' != $entry['post_type'] || empty($filetype['ext']) )
+                       $this->internal_error(__('Error occurred while accessing post metadata for file location.'));
 
                // delete file
                @unlink($location);
@@ -746,9 +720,8 @@ EOD;
                // delete attachment
                $result = wp_delete_post($postID);
 
-               if (!$result) {
+               if ( !$result )
                        $this->internal_error(__('For some strange yet very annoying reason, this post could not be deleted.'));
-               }
 
                log_app('function',"delete_attachment($postID). File '$location' deleted.");
                $this->ok();
@@ -768,25 +741,33 @@ EOD;
                $this->set_current_entry($postID);
 
                // then whether user can edit the specific post
-               if(!current_user_can('edit_post', $postID)) {
+               if ( !current_user_can('edit_post', $postID) )
                        $this->auth_required(__('Sorry, you do not have the right to edit this post.'));
-               }
 
                $location = get_post_meta($entry['ID'], '_wp_attached_file', true);
+               $location = get_option ('upload_path') . '/' . $location;
                $filetype = wp_check_filetype($location);
 
-               if(!isset($location) || 'attachment' != $entry['post_type'] || empty($filetype['ext']))
-                       $this->internal_error(__('Error ocurred while accessing post metadata for file location.'));
+               if ( !isset($location) || 'attachment' != $entry['post_type'] || empty($filetype['ext']) )
+                       $this->internal_error(__('Error occurred while accessing post metadata for file location.'));
 
                status_header('200');
                header('Content-Type: ' . $entry['post_mime_type']);
                header('Connection: close');
 
-               $fp = fopen($location, "rb");
-               while(!feof($fp)) {
-                       echo fread($fp, 4096);
+               if ( $fp = fopen($location, "rb") ) {
+                       status_header('200');
+                       header('Content-Type: ' . $entry['post_mime_type']);
+                       header('Connection: close');
+
+                       while ( !feof($fp) ) {
+                               echo fread($fp, 4096);
+                       }
+
+                       fclose($fp);
+               } else {
+                       status_header ('404');
                }
-               fclose($fp);
 
                log_app('function',"get_file($postID)");
                exit;
@@ -802,7 +783,7 @@ EOD;
        function put_file($postID) {
 
                // first check if user can upload
-               if(!current_user_can('upload_files'))
+               if ( !current_user_can('upload_files') )
                        $this->auth_required(__('You do not have permission to upload files.'));
 
                // check for not found
@@ -810,19 +791,21 @@ EOD;
                $this->set_current_entry($postID);
 
                // then whether user can edit the specific post
-               if(!current_user_can('edit_post', $postID)) {
+               if ( !current_user_can('edit_post', $postID) )
                        $this->auth_required(__('Sorry, you do not have the right to edit this post.'));
-               }
 
+               $upload_dir = wp_upload_dir( );
                $location = get_post_meta($entry['ID'], '_wp_attached_file', true);
                $filetype = wp_check_filetype($location);
 
-               if(!isset($location) || 'attachment' != $entry['post_type'] || empty($filetype['ext']))
-                       $this->internal_error(__('Error ocurred while accessing post metadata for file location.'));
+               $location = "{$upload_dir['basedir']}/{$location}";
+
+               if (!isset($location) || 'attachment' != $entry['post_type'] || empty($filetype['ext']))
+                       $this->internal_error(__('Error occurred while accessing post metadata for file location.'));
 
                $fp = fopen("php://input", "rb");
                $localfp = fopen($location, "w+");
-               while(!feof($fp)) {
+               while ( !feof($fp) ) {
                        fwrite($localfp,fread($fp, 4096));
                }
                fclose($fp);
@@ -839,9 +822,10 @@ EOD;
                $post_data = compact('ID', 'post_date', 'post_date_gmt', 'post_modified', 'post_modified_gmt');
                $result = wp_update_post($post_data);
 
-               if (!$result) {
+               if ( !$result )
                        $this->internal_error(__('Sorry, your entry could not be posted. Something wrong happened.'));
-               }
+
+               wp_update_attachment_metadata( $postID, wp_generate_attachment_metadata( $postID, $location ) );
 
                log_app('function',"put_file($postID)");
                $this->ok();
@@ -856,15 +840,13 @@ EOD;
         * @return string
         */
        function get_entries_url($page = null) {
-               if($GLOBALS['post_type'] == 'attachment') {
+               if ( isset($GLOBALS['post_type']) && ( $GLOBALS['post_type'] == 'attachment' ) )
                        $path = $this->MEDIA_PATH;
-               } else {
+               else
                        $path = $this->ENTRIES_PATH;
-               }
                $url = $this->app_base . $path;
-               if(isset($page) && is_int($page)) {
+               if ( isset($page) && is_int($page) )
                        $url .= "/$page";
-               }
                return $url;
        }
 
@@ -884,10 +866,12 @@ EOD;
         *
         * @since 2.2.0
         *
-        * @param mixed $deprecated Optional, not used.
+        * @param mixed $deprecated Not used.
         * @return string
         */
        function get_categories_url($deprecated = '') {
+               if ( !empty( $deprecated ) )
+                       _deprecated_argument( __FUNCTION__, '2.5' );
                return $this->app_base . $this->CATEGORIES_PATH;
        }
 
@@ -910,7 +894,7 @@ EOD;
         */
        function get_attachments_url($page = null) {
                $url = $this->app_base . $this->MEDIA_PATH;
-               if(isset($page) && is_int($page)) {
+               if (isset($page) && is_int($page)) {
                        $url .= "/$page";
                }
                return $url;
@@ -947,7 +931,7 @@ EOD;
         * @return string
         */
        function get_entry_url($postID = null) {
-               if(!isset($postID)) {
+               if (!isset($postID)) {
                        global $post;
                        $postID = (int) $post->ID;
                }
@@ -978,7 +962,7 @@ EOD;
         * @return string
         */
        function get_media_url($postID = null) {
-               if(!isset($postID)) {
+               if (!isset($postID)) {
                        global $post;
                        $postID = (int) $post->ID;
                }
@@ -1011,14 +995,14 @@ EOD;
                global $entry;
                log_app('function',"set_current_entry($postID)");
 
-               if(!isset($postID)) {
+               if (!isset($postID)) {
                        // $this->bad_request();
                        $this->not_found();
                }
 
                $entry = wp_get_single_post($postID,ARRAY_A);
 
-               if(!isset($entry) || !isset($entry['ID']))
+               if (!isset($entry) || !isset($entry['ID']))
                        $this->not_found();
 
                return;
@@ -1067,14 +1051,16 @@ EOD;
                log_app('function',"get_feed($page, '$post_type')");
                ob_start();
 
-               if(!isset($page)) {
+               $this->ENTRY_PATH = $post_type;
+
+               if (!isset($page)) {
                        $page = 1;
                }
                $page = (int) $page;
 
                $count = get_option('posts_per_rss');
 
-               wp('what_to_show=posts&posts_per_page=' . $count . '&offset=' . ($count * ($page-1) . '&orderby=modified'));
+               wp('posts_per_page=' . $count . '&offset=' . ($count * ($page-1) . '&orderby=modified'));
 
                $post = $GLOBALS['post'];
                $posts = $GLOBALS['posts'];
@@ -1090,22 +1076,22 @@ EOD;
                $prev_page = ($page - 1) < 1 ? NULL : $page - 1;
                $last_page = ((int)$last_page == 1 || (int)$last_page == 0) ? NULL : (int) $last_page;
                $self_page = $page > 1 ? $page : NULL;
-?><feed xmlns="<?php echo $this->ATOM_NS ?>" xmlns:app="<?php echo $this->ATOMPUB_NS ?>" xml:lang="<?php echo get_option('rss_language'); ?>">
+?><feed xmlns="<?php echo $this->ATOM_NS ?>" xmlns:app="<?php echo $this->ATOMPUB_NS ?>" xml:lang="<?php echo get_option('rss_language'); ?>" <?php do_action('app_ns'); ?> >
 <id><?php $this->the_entries_url() ?></id>
-<updated><?php echo mysql2date('Y-m-d\TH:i:s\Z', get_lastpostmodified('GMT')); ?></updated>
+<updated><?php echo mysql2date('Y-m-d\TH:i:s\Z', get_lastpostmodified('GMT'), false); ?></updated>
 <title type="text"><?php bloginfo_rss('name') ?></title>
 <subtitle type="text"><?php bloginfo_rss("description") ?></subtitle>
 <link rel="first" type="<?php echo $this->ATOM_CONTENT_TYPE ?>" href="<?php $this->the_entries_url() ?>" />
-<?php if(isset($prev_page)): ?>
+<?php if (isset($prev_page)): ?>
 <link rel="previous" type="<?php echo $this->ATOM_CONTENT_TYPE ?>" href="<?php $this->the_entries_url($prev_page) ?>" />
 <?php endif; ?>
-<?php if(isset($next_page)): ?>
+<?php if (isset($next_page)): ?>
 <link rel="next" type="<?php echo $this->ATOM_CONTENT_TYPE ?>" href="<?php $this->the_entries_url($next_page) ?>" />
 <?php endif; ?>
 <link rel="last" type="<?php echo $this->ATOM_CONTENT_TYPE ?>" href="<?php $this->the_entries_url($last_page) ?>" />
 <link rel="self" type="<?php echo $this->ATOM_CONTENT_TYPE ?>" href="<?php $this->the_entries_url($self_page) ?>" />
-<rights type="text">Copyright <?php echo mysql2date('Y', get_lastpostdate('blog')); ?></rights>
-<?php the_generator( 'atom' ); ?>
+<rights type="text">Copyright <?php echo date('Y'); ?></rights>
+<?php do_action('app_head'); ?>
 <?php if ( have_posts() ) {
                        while ( have_posts() ) {
                                the_post();
@@ -1136,6 +1122,7 @@ EOD;
                                $varname = 'p';
                                break;
                        case 'attachment':
+                               $this->ENTRY_PATH = 'attachment';
                                $varname = 'attachment_id';
                                break;
                }
@@ -1163,7 +1150,7 @@ EOD;
        function echo_entry() { ?>
 <entry xmlns="<?php echo $this->ATOM_NS ?>"
        xmlns:app="<?php echo $this->ATOMPUB_NS ?>" xml:lang="<?php echo get_option('rss_language'); ?>">
-       <id><?php the_guid($GLOBALS['post']->ID); ?></id>
+       <id><?php the_guid( $GLOBALS['post']->ID ); ?></id>
 <?php list($content_type, $content) = prep_atom_text_construct(get_the_title()); ?>
        <title type="<?php echo $content_type ?>"><?php echo $content ?></title>
        <updated><?php echo get_post_modified_time('Y-m-d\TH:i:s\Z', true); ?></updated>
@@ -1174,13 +1161,13 @@ EOD;
        </app:control>
        <author>
                <name><?php the_author()?></name>
-<?php if (get_the_author_url() && get_the_author_url() != 'http://') { ?>
-               <uri><?php the_author_url()?></uri>
+<?php if ( get_the_author_meta('url') && get_the_author_meta('url') != 'http://' ) { ?>
+               <uri><?php the_author_meta('url') ?></uri>
 <?php } ?>
        </author>
-<?php if($GLOBALS['post']->post_type == 'attachment') { ?>
+<?php if ($GLOBALS['post']->post_type == 'attachment') { ?>
        <link rel="edit-media" href="<?php $this->the_media_url() ?>" />
-       <content type="<?php echo $GLOBALS['post']->post_mime_type ?>" src="<?php the_guid(); ?>"/>
+       <content type="<?php echo $GLOBALS['post']->post_mime_type ?>" src="<?php the_guid() ; ?>"/>
 <?php } else { ?>
        <link href="<?php the_permalink_rss() ?>" />
 <?php if ( strlen( $GLOBALS['post']->post_content ) ) :
@@ -1189,11 +1176,10 @@ list($content_type, $content) = prep_atom_text_construct(get_the_content()); ?>
 <?php endif; ?>
 <?php } ?>
        <link rel="edit" href="<?php $this->the_entry_url() ?>" />
-<?php foreach(get_the_category() as $category) { ?>
-       <category scheme="<?php bloginfo_rss('home') ?>" term="<?php echo $category->name?>" />
-<?php } ?>
+       <?php the_category_rss( 'atom' ); ?>
 <?php list($content_type, $content) = prep_atom_text_construct(get_the_excerpt()); ?>
        <summary type="<?php echo $content_type ?>"><?php echo $content ?></summary>
+       <?php do_action('app_entry'); ?>
 </entry>
 <?php }
 
@@ -1218,7 +1204,7 @@ list($content_type, $content) = prep_atom_text_construct(get_the_content()); ?>
                log_app('Status','204: No Content');
                header('Content-Type: text/plain');
                status_header('204');
-               echo "Deleted.";
+               echo "Moved to Trash.";
                exit;
        }
 
@@ -1319,7 +1305,7 @@ list($content_type, $content) = prep_atom_text_construct(get_the_content()); ?>
        function redirect($url) {
 
                log_app('Status','302: Redirect');
-               $escaped_url = attribute_escape($url);
+               $escaped_url = esc_attr($url);
                $content = <<<EOD
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
 <html>
@@ -1372,7 +1358,7 @@ EOD;
                                break;
                }
                header("Content-Type: $this->ATOM_CONTENT_TYPE");
-               if(isset($ctloc))
+               if (isset($ctloc))
                        header('Content-Location: ' . $ctloc);
                header('Location: ' . $edit);
                status_header('201');
@@ -1427,7 +1413,7 @@ EOD;
                        header('Content-Type: ' . $ctype);
                        header('Content-Disposition: attachment; filename=atom.xml');
                        header('Date: '. date('r'));
-                       if($this->do_output)
+                       if ($this->do_output)
                                echo $xml;
                        log_app('function', "output:\n$xml");
                        exit;
@@ -1466,7 +1452,7 @@ EOD;
 
                // if using mod_rewrite/ENV hack
                // http://www.besthostratings.com/articles/http-auth-php-cgi.html
-               if(isset($_SERVER['HTTP_AUTHORIZATION'])) {
+               if (isset($_SERVER['HTTP_AUTHORIZATION'])) {
                        list($_SERVER['PHP_AUTH_USER'], $_SERVER['PHP_AUTH_PW']) =
                                explode(':', base64_decode(substr($_SERVER['HTTP_AUTHORIZATION'], 6)));
                } else if (isset($_SERVER['REDIRECT_REMOTE_USER'])) {
@@ -1477,12 +1463,13 @@ EOD;
                }
 
                // If Basic Auth is working...
-               if(isset($_SERVER['PHP_AUTH_USER']) && isset($_SERVER['PHP_AUTH_PW'])) {
+               if (isset($_SERVER['PHP_AUTH_USER']) && isset($_SERVER['PHP_AUTH_PW'])) {
                        log_app("Basic Auth",$_SERVER['PHP_AUTH_USER']);
+
                        $user = wp_authenticate($_SERVER['PHP_AUTH_USER'], $_SERVER['PHP_AUTH_PW']);
                        if ( $user && !is_wp_error($user) ) {
                                wp_set_current_user($user->ID);
-                               log_app("authenticate()", $_SERVER['PHP_AUTH_USER']);
+                               log_app("authenticate()", $user->user_login);
                                return true;
                        }
                }
@@ -1500,11 +1487,11 @@ EOD;
         */
        function get_accepted_content_type($types = null) {
 
-               if(!isset($types)) {
+               if (!isset($types)) {
                        $types = $this->media_content_types;
                }
 
-               if(!isset($_SERVER['CONTENT_LENGTH']) || !isset($_SERVER['CONTENT_TYPE'])) {
+               if (!isset($_SERVER['CONTENT_LENGTH']) || !isset($_SERVER['CONTENT_TYPE'])) {
                        $this->length_required();
                }
 
@@ -1515,8 +1502,8 @@ EOD;
 
                foreach($types as $t) {
                        list($acceptedType,$acceptedSubtype) = explode('/',$t);
-                       if($acceptedType == '*' || $acceptedType == $type) {
-                               if($acceptedSubtype == '*' || $acceptedSubtype == $subtype)
+                       if ($acceptedType == '*' || $acceptedType == $type) {
+                               if ($acceptedSubtype == '*' || $acceptedSubtype == $subtype)
                                        return $type . "/" . $subtype;
                        }
                }
@@ -1531,8 +1518,8 @@ EOD;
         */
        function process_conditionals() {
 
-               if(empty($this->params)) return;
-               if($_SERVER['REQUEST_METHOD'] == 'DELETE') return;
+               if (empty($this->params)) return;
+               if ($_SERVER['REQUEST_METHOD'] == 'DELETE') return;
 
                switch($this->params[0]) {
                        case $this->ENTRY_PATH:
@@ -1583,11 +1570,11 @@ EOD;
        function rfc3339_str2time($str) {
 
                $match = false;
-               if(!preg_match("/(\d{4}-\d{2}-\d{2})T(\d{2}\:\d{2}\:\d{2})\.?\d{0,3}(Z|[+-]+\d{2}\:\d{2})/", $str, $match))
+               if (!preg_match("/(\d{4}-\d{2}-\d{2})T(\d{2}\:\d{2}\:\d{2})\.?\d{0,3}(Z|[+-]+\d{2}\:\d{2})/", $str, $match))
                        return false;
 
-               if($match[3] == 'Z')
-                       $match[3] == '+0000';
+               if ($match[3] == 'Z')
+                       $match[3] = '+0000';
 
                return strtotime($match[1] . " " . $match[2] . " " . $match[3]);
        }
@@ -1604,7 +1591,7 @@ EOD;
 
                $pubtime = $this->rfc3339_str2time($published);
 
-               if(!$pubtime) {
+               if (!$pubtime) {
                        return array(current_time('mysql'),current_time('mysql',1));
                } else {
                        return array(date("Y-m-d H:i:s", $pubtime), gmdate("Y-m-d H:i:s", $pubtime));