]> scripts.mit.edu Git - autoinstalls/wordpress.git/blob - wp-admin/admin-ajax.php
Wordpress 3.1.2
[autoinstalls/wordpress.git] / wp-admin / admin-ajax.php
1 <?php
2 /**
3  * WordPress AJAX Process Execution.
4  *
5  * @package WordPress
6  * @subpackage Administration
7  */
8
9 /**
10  * Executing AJAX process.
11  *
12  * @since 2.1.0
13  */
14 define('DOING_AJAX', true);
15 define('WP_ADMIN', true);
16
17 if ( ! isset( $_REQUEST['action'] ) )
18         die('-1');
19
20 require_once('../wp-load.php');
21
22 require_once('./includes/admin.php');
23 @header('Content-Type: text/html; charset=' . get_option('blog_charset'));
24 send_nosniff_header();
25
26 do_action('admin_init');
27
28 if ( ! is_user_logged_in() ) {
29
30         if ( isset( $_POST['action'] ) && $_POST['action'] == 'autosave' ) {
31                 $id = isset($_POST['post_ID'])? (int) $_POST['post_ID'] : 0;
32
33                 if ( ! $id )
34                         die('-1');
35
36                 $message = sprintf( __('<strong>ALERT: You are logged out!</strong> Could not save draft. <a href="%s" target="_blank">Please log in again.</a>'), wp_login_url() );
37                 $x = new WP_Ajax_Response( array(
38                         'what' => 'autosave',
39                         'id' => $id,
40                         'data' => $message
41                 ) );
42                 $x->send();
43         }
44
45         if ( !empty( $_REQUEST['action'] ) )
46                 do_action( 'wp_ajax_nopriv_' . $_REQUEST['action'] );
47
48         die('-1');
49 }
50
51 if ( isset( $_GET['action'] ) ) :
52 switch ( $action = $_GET['action'] ) :
53 case 'fetch-list' :
54
55         $list_class = $_GET['list_args']['class'];
56         check_ajax_referer( "fetch-list-$list_class", '_ajax_fetch_list_nonce' );
57
58         $current_screen = (object) $_GET['list_args']['screen'];
59         //TODO fix this in a better way see #15336
60         $current_screen->is_network = 'false' === $current_screen->is_network ? false : true;
61         $current_screen->is_user = 'false' === $current_screen->is_user ? false : true;
62
63         define( 'WP_NETWORK_ADMIN', $current_screen->is_network );
64         define( 'WP_USER_ADMIN', $current_screen->is_user );
65
66         $wp_list_table = _get_list_table( $list_class );
67         if ( ! $wp_list_table )
68                 die( '0' );
69
70         if ( ! $wp_list_table->ajax_user_can() )
71                 die( '-1' );
72
73         $wp_list_table->ajax_response();
74
75         die( '0' );
76         break;
77 case 'ajax-tag-search' :
78         if ( isset( $_GET['tax'] ) ) {
79                 $taxonomy = sanitize_key( $_GET['tax'] );
80                 $tax = get_taxonomy( $taxonomy );
81                 if ( ! $tax )
82                         die( '0' );
83                 if ( ! current_user_can( $tax->cap->assign_terms ) )
84                         die( '-1' );
85         } else {
86                 die('0');
87         }
88
89         $s = stripslashes( $_GET['q'] );
90
91         if ( false !== strpos( $s, ',' ) ) {
92                 $s = explode( ',', $s );
93                 $s = $s[count( $s ) - 1];
94         }
95         $s = trim( $s );
96         if ( strlen( $s ) < 2 )
97                 die; // require 2 chars for matching
98
99         $results = $wpdb->get_col( $wpdb->prepare( "SELECT t.name FROM $wpdb->term_taxonomy AS tt INNER JOIN $wpdb->terms AS t ON tt.term_id = t.term_id WHERE tt.taxonomy = %s AND t.name LIKE (%s)", $taxonomy, '%' . like_escape( $s ) . '%' ) );
100
101         echo join( $results, "\n" );
102         die;
103         break;
104 case 'wp-compression-test' :
105         if ( !current_user_can( 'manage_options' ) )
106                 die('-1');
107
108         if ( ini_get('zlib.output_compression') || 'ob_gzhandler' == ini_get('output_handler') ) {
109                 update_site_option('can_compress_scripts', 0);
110                 die('0');
111         }
112
113         if ( isset($_GET['test']) ) {
114                 header( 'Expires: Wed, 11 Jan 1984 05:00:00 GMT' );
115                 header( 'Last-Modified: ' . gmdate( 'D, d M Y H:i:s' ) . ' GMT' );
116                 header( 'Cache-Control: no-cache, must-revalidate, max-age=0' );
117                 header( 'Pragma: no-cache' );
118                 header('Content-Type: application/x-javascript; charset=UTF-8');
119                 $force_gzip = ( defined('ENFORCE_GZIP') && ENFORCE_GZIP );
120                 $test_str = '"wpCompressionTest Lorem ipsum dolor sit amet consectetuer mollis sapien urna ut a. Eu nonummy condimentum fringilla tempor pretium platea vel nibh netus Maecenas. Hac molestie amet justo quis pellentesque est ultrices interdum nibh Morbi. Cras mattis pretium Phasellus ante ipsum ipsum ut sociis Suspendisse Lorem. Ante et non molestie. Porta urna Vestibulum egestas id congue nibh eu risus gravida sit. Ac augue auctor Ut et non a elit massa id sodales. Elit eu Nulla at nibh adipiscing mattis lacus mauris at tempus. Netus nibh quis suscipit nec feugiat eget sed lorem et urna. Pellentesque lacus at ut massa consectetuer ligula ut auctor semper Pellentesque. Ut metus massa nibh quam Curabitur molestie nec mauris congue. Volutpat molestie elit justo facilisis neque ac risus Ut nascetur tristique. Vitae sit lorem tellus et quis Phasellus lacus tincidunt nunc Fusce. Pharetra wisi Suspendisse mus sagittis libero lacinia Integer consequat ac Phasellus. Et urna ac cursus tortor aliquam Aliquam amet tellus volutpat Vestibulum. Justo interdum condimentum In augue congue tellus sollicitudin Quisque quis nibh."';
121
122                  if ( 1 == $_GET['test'] ) {
123                         echo $test_str;
124                         die;
125                  } elseif ( 2 == $_GET['test'] ) {
126                         if ( !isset($_SERVER['HTTP_ACCEPT_ENCODING']) )
127                                 die('-1');
128                         if ( false !== stripos( $_SERVER['HTTP_ACCEPT_ENCODING'], 'deflate') && function_exists('gzdeflate') && ! $force_gzip ) {
129                                 header('Content-Encoding: deflate');
130                                 $out = gzdeflate( $test_str, 1 );
131                         } elseif ( false !== stripos( $_SERVER['HTTP_ACCEPT_ENCODING'], 'gzip') && function_exists('gzencode') ) {
132                                 header('Content-Encoding: gzip');
133                                 $out = gzencode( $test_str, 1 );
134                         } else {
135                                 die('-1');
136                         }
137                         echo $out;
138                         die;
139                 } elseif ( 'no' == $_GET['test'] ) {
140                         update_site_option('can_compress_scripts', 0);
141                 } elseif ( 'yes' == $_GET['test'] ) {
142                         update_site_option('can_compress_scripts', 1);
143                 }
144         }
145
146         die('0');
147         break;
148 case 'imgedit-preview' :
149         $post_id = intval($_GET['postid']);
150         if ( empty($post_id) || !current_user_can('edit_post', $post_id) )
151                 die('-1');
152
153         check_ajax_referer( "image_editor-$post_id" );
154
155         include_once( ABSPATH . 'wp-admin/includes/image-edit.php' );
156         if ( ! stream_preview_image($post_id) )
157                 die('-1');
158
159         die();
160         break;
161 case 'menu-quick-search':
162         if ( ! current_user_can( 'edit_theme_options' ) )
163                 die('-1');
164
165         require_once ABSPATH . 'wp-admin/includes/nav-menu.php';
166
167         _wp_ajax_menu_quick_search( $_REQUEST );
168
169         exit;
170         break;
171 case 'oembed-cache' :
172         $return = ( $wp_embed->cache_oembed( $_GET['post'] ) ) ? '1' : '0';
173         die( $return );
174         break;
175 default :
176         do_action( 'wp_ajax_' . $_GET['action'] );
177         die('0');
178         break;
179 endswitch;
180 endif;
181
182 /**
183  * Sends back current comment total and new page links if they need to be updated.
184  *
185  * Contrary to normal success AJAX response ("1"), die with time() on success.
186  *
187  * @since 2.7
188  *
189  * @param int $comment_id
190  * @return die
191  */
192 function _wp_ajax_delete_comment_response( $comment_id, $delta = -1 ) {
193         $total = (int) @$_POST['_total'];
194         $per_page = (int) @$_POST['_per_page'];
195         $page = (int) @$_POST['_page'];
196         $url = esc_url_raw( @$_POST['_url'] );
197         // JS didn't send us everything we need to know. Just die with success message
198         if ( !$total || !$per_page || !$page || !$url )
199                 die( (string) time() );
200
201         $total += $delta;
202         if ( $total < 0 )
203                 $total = 0;
204
205         // Only do the expensive stuff on a page-break, and about 1 other time per page
206         if ( 0 == $total % $per_page || 1 == mt_rand( 1, $per_page ) ) {
207                 $post_id = 0;
208                 $status = 'total_comments'; // What type of comment count are we looking for?
209                 $parsed = parse_url( $url );
210                 if ( isset( $parsed['query'] ) ) {
211                         parse_str( $parsed['query'], $query_vars );
212                         if ( !empty( $query_vars['comment_status'] ) )
213                                 $status = $query_vars['comment_status'];
214                         if ( !empty( $query_vars['p'] ) )
215                                 $post_id = (int) $query_vars['p'];
216                 }
217
218                 $comment_count = wp_count_comments($post_id);
219
220                 if ( isset( $comment_count->$status ) ) // We're looking for a known type of comment count
221                         $total = $comment_count->$status;
222                         // else use the decremented value from above
223         }
224
225         $time = time(); // The time since the last comment count
226
227         $x = new WP_Ajax_Response( array(
228                 'what' => 'comment',
229                 'id' => $comment_id, // here for completeness - not used
230                 'supplemental' => array(
231                         'total_items_i18n' => sprintf( _n( '1 item', '%s items', $total ), number_format_i18n( $total ) ),
232                         'total_pages' => ceil( $total / $per_page ),
233                         'total_pages_i18n' => number_format_i18n( ceil( $total / $per_page ) ),
234                         'total' => $total,
235                         'time' => $time
236                 )
237         ) );
238         $x->send();
239 }
240
241 function _wp_ajax_add_hierarchical_term() {
242         $action = $_POST['action'];
243         $taxonomy = get_taxonomy(substr($action, 4));
244         check_ajax_referer( $action, '_ajax_nonce-add-' . $taxonomy->name );
245         if ( !current_user_can( $taxonomy->cap->edit_terms ) )
246                 die('-1');
247         $names = explode(',', $_POST['new'.$taxonomy->name]);
248         $parent = isset($_POST['new'.$taxonomy->name.'_parent']) ? (int) $_POST['new'.$taxonomy->name.'_parent'] : 0;
249         if ( 0 > $parent )
250                 $parent = 0;
251         if ( $taxonomy->name == 'category' )
252                 $post_category = isset($_POST['post_category']) ? (array) $_POST['post_category'] : array();
253         else
254                 $post_category = ( isset($_POST['tax_input']) && isset($_POST['tax_input'][$taxonomy->name]) ) ? (array) $_POST['tax_input'][$taxonomy->name] : array();
255         $checked_categories = array_map( 'absint', (array) $post_category );
256         $popular_ids = wp_popular_terms_checklist($taxonomy->name, 0, 10, false);
257
258         foreach ( $names as $cat_name ) {
259                 $cat_name = trim($cat_name);
260                 $category_nicename = sanitize_title($cat_name);
261                 if ( '' === $category_nicename )
262                         continue;
263                 if ( !($cat_id = term_exists($cat_name, $taxonomy->name, $parent)) ) {
264                         $new_term = wp_insert_term($cat_name, $taxonomy->name, array('parent' => $parent));
265                         $cat_id = $new_term['term_id'];
266                 }
267                 $checked_categories[] = $cat_id;
268                 if ( $parent ) // Do these all at once in a second
269                         continue;
270                 $category = get_term( $cat_id, $taxonomy->name );
271                 ob_start();
272                         wp_terms_checklist( 0, array( 'taxonomy' => $taxonomy->name, 'descendants_and_self' => $cat_id, 'selected_cats' => $checked_categories, 'popular_cats' => $popular_ids ));
273                 $data = ob_get_contents();
274                 ob_end_clean();
275                 $add = array(
276                         'what' => $taxonomy->name,
277                         'id' => $cat_id,
278                         'data' => str_replace( array("\n", "\t"), '', $data),
279                         'position' => -1
280                 );
281         }
282
283         if ( $parent ) { // Foncy - replace the parent and all its children
284                 $parent = get_term( $parent, $taxonomy->name );
285                 $term_id = $parent->term_id;
286
287                 while ( $parent->parent ) { // get the top parent
288                         $parent = &get_term( $parent->parent, $taxonomy->name );
289                         if ( is_wp_error( $parent ) )
290                                 break;
291                         $term_id = $parent->term_id;
292                 }
293
294                 ob_start();
295                         wp_terms_checklist( 0, array('taxonomy' => $taxonomy->name, 'descendants_and_self' => $term_id, 'selected_cats' => $checked_categories, 'popular_cats' => $popular_ids));
296                 $data = ob_get_contents();
297                 ob_end_clean();
298                 $add = array(
299                         'what' => $taxonomy->name,
300                         'id' => $term_id,
301                         'data' => str_replace( array("\n", "\t"), '', $data),
302                         'position' => -1
303                 );
304         }
305
306         ob_start();
307                 wp_dropdown_categories( array(
308                         'taxonomy' => $taxonomy->name, 'hide_empty' => 0, 'name' => 'new'.$taxonomy->name.'_parent', 'orderby' => 'name',
309                         'hierarchical' => 1, 'show_option_none' => '&mdash; '.$taxonomy->labels->parent_item.' &mdash;'
310                 ) );
311         $sup = ob_get_contents();
312         ob_end_clean();
313         $add['supplemental'] = array( 'newcat_parent' => $sup );
314
315         $x = new WP_Ajax_Response( $add );
316         $x->send();
317 }
318
319 $id = isset($_POST['id'])? (int) $_POST['id'] : 0;
320 switch ( $action = $_POST['action'] ) :
321 case 'delete-comment' : // On success, die with time() instead of 1
322         if ( !$comment = get_comment( $id ) )
323                 die( (string) time() );
324         if ( !current_user_can( 'edit_post', $comment->comment_post_ID ) )
325                 die('-1');
326
327         check_ajax_referer( "delete-comment_$id" );
328         $status = wp_get_comment_status( $comment->comment_ID );
329
330         $delta = -1;
331         if ( isset($_POST['trash']) && 1 == $_POST['trash'] ) {
332                 if ( 'trash' == $status )
333                         die( (string) time() );
334                 $r = wp_trash_comment( $comment->comment_ID );
335         } elseif ( isset($_POST['untrash']) && 1 == $_POST['untrash'] ) {
336                 if ( 'trash' != $status )
337                         die( (string) time() );
338                 $r = wp_untrash_comment( $comment->comment_ID );
339                 if ( ! isset( $_POST['comment_status'] ) || $_POST['comment_status'] != 'trash' ) // undo trash, not in trash
340                         $delta = 1;
341         } elseif ( isset($_POST['spam']) && 1 == $_POST['spam'] ) {
342                 if ( 'spam' == $status )
343                         die( (string) time() );
344                 $r = wp_spam_comment( $comment->comment_ID );
345         } elseif ( isset($_POST['unspam']) && 1 == $_POST['unspam'] ) {
346                 if ( 'spam' != $status )
347                         die( (string) time() );
348                 $r = wp_unspam_comment( $comment->comment_ID );
349                 if ( ! isset( $_POST['comment_status'] ) || $_POST['comment_status'] != 'spam' ) // undo spam, not in spam
350                         $delta = 1;
351         } elseif ( isset($_POST['delete']) && 1 == $_POST['delete'] ) {
352                 $r = wp_delete_comment( $comment->comment_ID );
353         } else {
354                 die('-1');
355         }
356
357         if ( $r ) // Decide if we need to send back '1' or a more complicated response including page links and comment counts
358                 _wp_ajax_delete_comment_response( $comment->comment_ID, $delta );
359         die( '0' );
360         break;
361 case 'delete-tag' :
362         $tag_id = (int) $_POST['tag_ID'];
363         check_ajax_referer( "delete-tag_$tag_id" );
364
365         $taxonomy = !empty($_POST['taxonomy']) ? $_POST['taxonomy'] : 'post_tag';
366         $tax = get_taxonomy($taxonomy);
367
368         if ( !current_user_can( $tax->cap->delete_terms ) )
369                 die('-1');
370
371         $tag = get_term( $tag_id, $taxonomy );
372         if ( !$tag || is_wp_error( $tag ) )
373                 die('1');
374
375         if ( wp_delete_term($tag_id, $taxonomy))
376                 die('1');
377         else
378                 die('0');
379         break;
380 case 'delete-link' :
381         check_ajax_referer( "delete-bookmark_$id" );
382         if ( !current_user_can( 'manage_links' ) )
383                 die('-1');
384
385         $link = get_bookmark( $id );
386         if ( !$link || is_wp_error( $link ) )
387                 die('1');
388
389         if ( wp_delete_link( $id ) )
390                 die('1');
391         else
392                 die('0');
393         break;
394 case 'delete-meta' :
395         check_ajax_referer( "delete-meta_$id" );
396         if ( !$meta = get_post_meta_by_id( $id ) )
397                 die('1');
398
399         if ( !current_user_can( 'edit_post', $meta->post_id ) )
400                 die('-1');
401         if ( delete_meta( $meta->meta_id ) )
402                 die('1');
403         die('0');
404         break;
405 case 'delete-post' :
406         check_ajax_referer( "{$action}_$id" );
407         if ( !current_user_can( 'delete_post', $id ) )
408                 die('-1');
409
410         if ( !get_post( $id ) )
411                 die('1');
412
413         if ( wp_delete_post( $id ) )
414                 die('1');
415         else
416                 die('0');
417         break;
418 case 'trash-post' :
419 case 'untrash-post' :
420         check_ajax_referer( "{$action}_$id" );
421         if ( !current_user_can( 'delete_post', $id ) )
422                 die('-1');
423
424         if ( !get_post( $id ) )
425                 die('1');
426
427         if ( 'trash-post' == $action )
428                 $done = wp_trash_post( $id );
429         else
430                 $done = wp_untrash_post( $id );
431
432         if ( $done )
433                 die('1');
434
435         die('0');
436         break;
437 case 'delete-page' :
438         check_ajax_referer( "{$action}_$id" );
439         if ( !current_user_can( 'delete_page', $id ) )
440                 die('-1');
441
442         if ( !get_page( $id ) )
443                 die('1');
444
445         if ( wp_delete_post( $id ) )
446                 die('1');
447         else
448                 die('0');
449         break;
450 case 'dim-comment' : // On success, die with time() instead of 1
451
452         if ( !$comment = get_comment( $id ) ) {
453                 $x = new WP_Ajax_Response( array(
454                         'what' => 'comment',
455                         'id' => new WP_Error('invalid_comment', sprintf(__('Comment %d does not exist'), $id))
456                 ) );
457                 $x->send();
458         }
459
460         if ( !current_user_can( 'edit_post', $comment->comment_post_ID ) && !current_user_can( 'moderate_comments' ) )
461                 die('-1');
462
463         $current = wp_get_comment_status( $comment->comment_ID );
464         if ( $_POST['new'] == $current )
465                 die( (string) time() );
466
467         check_ajax_referer( "approve-comment_$id" );
468         if ( in_array( $current, array( 'unapproved', 'spam' ) ) )
469                 $result = wp_set_comment_status( $comment->comment_ID, 'approve', true );
470         else
471                 $result = wp_set_comment_status( $comment->comment_ID, 'hold', true );
472
473         if ( is_wp_error($result) ) {
474                 $x = new WP_Ajax_Response( array(
475                         'what' => 'comment',
476                         'id' => $result
477                 ) );
478                 $x->send();
479         }
480
481         // Decide if we need to send back '1' or a more complicated response including page links and comment counts
482         _wp_ajax_delete_comment_response( $comment->comment_ID );
483         die( '0' );
484         break;
485 case 'add-link-category' : // On the Fly
486         check_ajax_referer( $action );
487         if ( !current_user_can( 'manage_categories' ) )
488                 die('-1');
489         $names = explode(',', $_POST['newcat']);
490         $x = new WP_Ajax_Response();
491         foreach ( $names as $cat_name ) {
492                 $cat_name = trim($cat_name);
493                 $slug = sanitize_title($cat_name);
494                 if ( '' === $slug )
495                         continue;
496                 if ( !$cat_id = term_exists( $cat_name, 'link_category' ) ) {
497                         $cat_id = wp_insert_term( $cat_name, 'link_category' );
498                 }
499                 $cat_id = $cat_id['term_id'];
500                 $cat_name = esc_html(stripslashes($cat_name));
501                 $x->add( array(
502                         'what' => 'link-category',
503                         'id' => $cat_id,
504                         'data' => "<li id='link-category-$cat_id'><label for='in-link-category-$cat_id' class='selectit'><input value='" . esc_attr($cat_id) . "' type='checkbox' checked='checked' name='link_category[]' id='in-link-category-$cat_id'/> $cat_name</label></li>",
505                         'position' => -1
506                 ) );
507         }
508         $x->send();
509         break;
510 case 'add-tag' :
511         check_ajax_referer( 'add-tag' );
512         $post_type = !empty($_POST['post_type']) ? $_POST['post_type'] : 'post';
513         $taxonomy = !empty($_POST['taxonomy']) ? $_POST['taxonomy'] : 'post_tag';
514         $tax = get_taxonomy($taxonomy);
515
516         if ( !current_user_can( $tax->cap->edit_terms ) )
517                 die('-1');
518
519         $x = new WP_Ajax_Response();
520
521         $tag = wp_insert_term($_POST['tag-name'], $taxonomy, $_POST );
522
523         if ( !$tag || is_wp_error($tag) || (!$tag = get_term( $tag['term_id'], $taxonomy )) ) {
524                 $message = __('An error has occurred. Please reload the page and try again.');
525                 if ( is_wp_error($tag) && $tag->get_error_message() )
526                         $message = $tag->get_error_message();
527
528                 $x->add( array(
529                         'what' => 'taxonomy',
530                         'data' => new WP_Error('error', $message )
531                 ) );
532                 $x->send();
533         }
534
535         set_current_screen( $_POST['screen'] );
536
537         $wp_list_table = _get_list_table('WP_Terms_List_Table');
538
539         $level = 0;
540         if ( is_taxonomy_hierarchical($taxonomy) ) {
541                 $level = count( get_ancestors( $tag->term_id, $taxonomy ) );
542                 ob_start();
543                 $wp_list_table->single_row( $tag, $level );
544                 $noparents = ob_get_clean();
545         }
546
547         ob_start();
548         $wp_list_table->single_row( $tag );
549         $parents = ob_get_clean();
550
551         $x->add( array(
552                 'what' => 'taxonomy',
553                 'supplemental' => compact('parents', 'noparents')
554                 ) );
555         $x->add( array(
556                 'what' => 'term',
557                 'position' => $level,
558                 'supplemental' => (array) $tag
559                 ) );
560         $x->send();
561         break;
562 case 'get-tagcloud' :
563         if ( isset( $_POST['tax'] ) ) {
564                 $taxonomy = sanitize_key( $_POST['tax'] );
565                 $tax = get_taxonomy( $taxonomy );
566                 if ( ! $tax )
567                         die( '0' );
568                 if ( ! current_user_can( $tax->cap->assign_terms ) )
569                         die( '-1' );
570         } else {
571                 die('0');
572         }
573
574         $tags = get_terms( $taxonomy, array( 'number' => 45, 'orderby' => 'count', 'order' => 'DESC' ) );
575
576         if ( empty( $tags ) )
577                 die( isset( $tax->no_tagcloud ) ? $tax->no_tagcloud : __('No tags found!') );
578
579         if ( is_wp_error( $tags ) )
580                 die( $tags->get_error_message() );
581
582         foreach ( $tags as $key => $tag ) {
583                 $tags[ $key ]->link = '#';
584                 $tags[ $key ]->id = $tag->term_id;
585         }
586
587         // We need raw tag names here, so don't filter the output
588         $return = wp_generate_tag_cloud( $tags, array('filter' => 0) );
589
590         if ( empty($return) )
591                 die('0');
592
593         echo $return;
594
595         exit;
596         break;
597 case 'get-comments' :
598         check_ajax_referer( $action );
599
600         set_current_screen( 'edit-comments' );
601
602         $wp_list_table = _get_list_table('WP_Post_Comments_List_Table');
603
604         if ( !current_user_can( 'edit_post', $post_id ) )
605                 die('-1');
606
607         $wp_list_table->prepare_items();
608
609         if ( !$wp_list_table->has_items() )
610                 die('1');
611
612         $comment_list_item = '';
613         $x = new WP_Ajax_Response();
614         foreach ( $wp_list_table->items as $comment ) {
615                 get_comment( $comment );
616                 ob_start();
617                         $wp_list_table->single_row( $comment );
618                         $comment_list_item .= ob_get_contents();
619                 ob_end_clean();
620         }
621         $x->add( array(
622                 'what' => 'comments',
623                 'data' => $comment_list_item
624         ) );
625         $x->send();
626         break;
627 case 'replyto-comment' :
628         check_ajax_referer( $action, '_ajax_nonce-replyto-comment' );
629
630         set_current_screen( 'edit-comments' );
631
632         $comment_post_ID = (int) $_POST['comment_post_ID'];
633         if ( !current_user_can( 'edit_post', $comment_post_ID ) )
634                 die('-1');
635
636         $status = $wpdb->get_var( $wpdb->prepare("SELECT post_status FROM $wpdb->posts WHERE ID = %d", $comment_post_ID) );
637
638         if ( empty($status) )
639                 die('1');
640         elseif ( in_array($status, array('draft', 'pending', 'trash') ) )
641                 die( __('Error: you are replying to a comment on a draft post.') );
642
643         $user = wp_get_current_user();
644         if ( $user->ID ) {
645                 $comment_author       = $wpdb->escape($user->display_name);
646                 $comment_author_email = $wpdb->escape($user->user_email);
647                 $comment_author_url   = $wpdb->escape($user->user_url);
648                 $comment_content      = trim($_POST['content']);
649                 if ( current_user_can('unfiltered_html') ) {
650                         if ( wp_create_nonce('unfiltered-html-comment_' . $comment_post_ID) != $_POST['_wp_unfiltered_html_comment'] ) {
651                                 kses_remove_filters(); // start with a clean slate
652                                 kses_init_filters(); // set up the filters
653                         }
654                 }
655         } else {
656                 die( __('Sorry, you must be logged in to reply to a comment.') );
657         }
658
659         if ( '' == $comment_content )
660                 die( __('Error: please type a comment.') );
661
662         $comment_parent = absint($_POST['comment_ID']);
663         $commentdata = compact('comment_post_ID', 'comment_author', 'comment_author_email', 'comment_author_url', 'comment_content', 'comment_type', 'comment_parent', 'user_ID');
664
665         $comment_id = wp_new_comment( $commentdata );
666         $comment = get_comment($comment_id);
667         if ( ! $comment ) die('1');
668
669         $position = ( isset($_POST['position']) && (int) $_POST['position']) ? (int) $_POST['position'] : '-1';
670
671         $x = new WP_Ajax_Response();
672
673         ob_start();
674                 if ( 'dashboard' == $_REQUEST['mode'] ) {
675                         require_once( ABSPATH . 'wp-admin/includes/dashboard.php' );
676                         _wp_dashboard_recent_comments_row( $comment );
677                 } else {
678                         if ( 'single' == $_REQUEST['mode'] ) {
679                                 $wp_list_table = _get_list_table('WP_Post_Comments_List_Table');
680                         } else {
681                                 $wp_list_table = _get_list_table('WP_Comments_List_Table');
682                         }
683                         $wp_list_table->single_row( $comment );
684                 }
685                 $comment_list_item = ob_get_contents();
686         ob_end_clean();
687
688         $x->add( array(
689                 'what' => 'comment',
690                 'id' => $comment->comment_ID,
691                 'data' => $comment_list_item,
692                 'position' => $position
693         ));
694
695         $x->send();
696         break;
697 case 'edit-comment' :
698         check_ajax_referer( 'replyto-comment', '_ajax_nonce-replyto-comment' );
699
700         set_current_screen( 'edit-comments' );
701
702         $comment_post_ID = (int) $_POST['comment_post_ID'];
703         if ( ! current_user_can( 'edit_post', $comment_post_ID ) )
704                 die('-1');
705
706         if ( '' == $_POST['content'] )
707                 die( __('Error: please type a comment.') );
708
709         $comment_id = (int) $_POST['comment_ID'];
710         $_POST['comment_status'] = $_POST['status'];
711         edit_comment();
712
713         $position = ( isset($_POST['position']) && (int) $_POST['position']) ? (int) $_POST['position'] : '-1';
714         $comments_status = isset($_POST['comments_listing']) ? $_POST['comments_listing'] : '';
715
716         $checkbox = ( isset($_POST['checkbox']) && true == $_POST['checkbox'] ) ? 1 : 0;
717         $wp_list_table = _get_list_table( $checkbox ? 'WP_Comments_List_Table' : 'WP_Post_Comments_List_Table' );
718
719         ob_start();
720                 $wp_list_table->single_row( get_comment( $comment_id ) );
721                 $comment_list_item = ob_get_contents();
722         ob_end_clean();
723
724         $x = new WP_Ajax_Response();
725
726         $x->add( array(
727                 'what' => 'edit_comment',
728                 'id' => $comment->comment_ID,
729                 'data' => $comment_list_item,
730                 'position' => $position
731         ));
732
733         $x->send();
734         break;
735 case 'add-menu-item' :
736         if ( ! current_user_can( 'edit_theme_options' ) )
737                 die('-1');
738
739         check_ajax_referer( 'add-menu_item', 'menu-settings-column-nonce' );
740
741         require_once ABSPATH . 'wp-admin/includes/nav-menu.php';
742
743         // For performance reasons, we omit some object properties from the checklist.
744         // The following is a hacky way to restore them when adding non-custom items.
745
746         $menu_items_data = array();
747         foreach ( (array) $_POST['menu-item'] as $menu_item_data ) {
748                 if (
749                         ! empty( $menu_item_data['menu-item-type'] ) &&
750                         'custom' != $menu_item_data['menu-item-type'] &&
751                         ! empty( $menu_item_data['menu-item-object-id'] )
752                 ) {
753                         switch( $menu_item_data['menu-item-type'] ) {
754                                 case 'post_type' :
755                                         $_object = get_post( $menu_item_data['menu-item-object-id'] );
756                                 break;
757
758                                 case 'taxonomy' :
759                                         $_object = get_term( $menu_item_data['menu-item-object-id'], $menu_item_data['menu-item-object'] );
760                                 break;
761                         }
762
763                         $_menu_items = array_map( 'wp_setup_nav_menu_item', array( $_object ) );
764                         $_menu_item = array_shift( $_menu_items );
765
766                         // Restore the missing menu item properties
767                         $menu_item_data['menu-item-description'] = $_menu_item->description;
768                 }
769
770                 $menu_items_data[] = $menu_item_data;
771         }
772
773         $item_ids = wp_save_nav_menu_items( 0, $menu_items_data );
774         if ( is_wp_error( $item_ids ) )
775                 die('-1');
776
777         foreach ( (array) $item_ids as $menu_item_id ) {
778                 $menu_obj = get_post( $menu_item_id );
779                 if ( ! empty( $menu_obj->ID ) ) {
780                         $menu_obj = wp_setup_nav_menu_item( $menu_obj );
781                         $menu_obj->label = $menu_obj->title; // don't show "(pending)" in ajax-added items
782                         $menu_items[] = $menu_obj;
783                 }
784         }
785
786         if ( ! empty( $menu_items ) ) {
787                 $args = array(
788                         'after' => '',
789                         'before' => '',
790                         'link_after' => '',
791                         'link_before' => '',
792                         'walker' => new Walker_Nav_Menu_Edit,
793                 );
794                 echo walk_nav_menu_tree( $menu_items, 0, (object) $args );
795         }
796         break;
797 case 'add-meta' :
798         check_ajax_referer( 'add-meta', '_ajax_nonce-add-meta' );
799         $c = 0;
800         $pid = (int) $_POST['post_id'];
801         $post = get_post( $pid );
802
803         if ( isset($_POST['metakeyselect']) || isset($_POST['metakeyinput']) ) {
804                 if ( !current_user_can( 'edit_post', $pid ) )
805                         die('-1');
806                 if ( isset($_POST['metakeyselect']) && '#NONE#' == $_POST['metakeyselect'] && empty($_POST['metakeyinput']) )
807                         die('1');
808                 if ( $post->post_status == 'auto-draft' ) {
809                         $save_POST = $_POST; // Backup $_POST
810                         $_POST = array(); // Make it empty for edit_post()
811                         $_POST['action'] = 'draft'; // Warning fix
812                         $_POST['post_ID'] = $pid;
813                         $_POST['post_type'] = $post->post_type;
814                         $_POST['post_status'] = 'draft';
815                         $now = current_time('timestamp', 1);
816                         $_POST['post_title'] = sprintf('Draft created on %s at %s', date(get_option('date_format'), $now), date(get_option('time_format'), $now));
817
818                         if ( $pid = edit_post() ) {
819                                 if ( is_wp_error( $pid ) ) {
820                                         $x = new WP_Ajax_Response( array(
821                                                 'what' => 'meta',
822                                                 'data' => $pid
823                                         ) );
824                                         $x->send();
825                                 }
826                                 $_POST = $save_POST; // Now we can restore original $_POST again
827                                 if ( !$mid = add_meta( $pid ) )
828                                         die(__('Please provide a custom field value.'));
829                         } else {
830                                 die('0');
831                         }
832                 } else if ( !$mid = add_meta( $pid ) ) {
833                         die(__('Please provide a custom field value.'));
834                 }
835
836                 $meta = get_post_meta_by_id( $mid );
837                 $pid = (int) $meta->post_id;
838                 $meta = get_object_vars( $meta );
839                 $x = new WP_Ajax_Response( array(
840                         'what' => 'meta',
841                         'id' => $mid,
842                         'data' => _list_meta_row( $meta, $c ),
843                         'position' => 1,
844                         'supplemental' => array('postid' => $pid)
845                 ) );
846         } else { // Update?
847                 $mid = (int) array_pop( $var_by_ref = array_keys($_POST['meta']) );
848                 $key = $_POST['meta'][$mid]['key'];
849                 $value = $_POST['meta'][$mid]['value'];
850                 if ( '' == trim($key) )
851                         die(__('Please provide a custom field name.'));
852                 if ( '' == trim($value) )
853                         die(__('Please provide a custom field value.'));
854                 if ( !$meta = get_post_meta_by_id( $mid ) )
855                         die('0'); // if meta doesn't exist
856                 if ( !current_user_can( 'edit_post', $meta->post_id ) )
857                         die('-1');
858                 if ( $meta->meta_value != stripslashes($value) || $meta->meta_key != stripslashes($key) ) {
859                         if ( !$u = update_meta( $mid, $key, $value ) )
860                                 die('0'); // We know meta exists; we also know it's unchanged (or DB error, in which case there are bigger problems).
861                 }
862
863                 $key = stripslashes($key);
864                 $value = stripslashes($value);
865                 $x = new WP_Ajax_Response( array(
866                         'what' => 'meta',
867                         'id' => $mid, 'old_id' => $mid,
868                         'data' => _list_meta_row( array(
869                                 'meta_key' => $key,
870                                 'meta_value' => $value,
871                                 'meta_id' => $mid
872                         ), $c ),
873                         'position' => 0,
874                         'supplemental' => array('postid' => $meta->post_id)
875                 ) );
876         }
877         $x->send();
878         break;
879 case 'add-user' :
880         check_ajax_referer( $action );
881         if ( !current_user_can('create_users') )
882                 die('-1');
883         if ( !$user_id = add_user() )
884                 die('0');
885         elseif ( is_wp_error( $user_id ) ) {
886                 $x = new WP_Ajax_Response( array(
887                         'what' => 'user',
888                         'id' => $user_id
889                 ) );
890                 $x->send();
891         }
892         $user_object = new WP_User( $user_id );
893
894         $wp_list_table = _get_list_table('WP_Users_List_Table');
895
896         $x = new WP_Ajax_Response( array(
897                 'what' => 'user',
898                 'id' => $user_id,
899                 'data' => $wp_list_table->single_row( $user_object, '', $user_object->roles[0] ),
900                 'supplemental' => array(
901                         'show-link' => sprintf(__( 'User <a href="#%s">%s</a> added' ), "user-$user_id", $user_object->user_login),
902                         'role' => $user_object->roles[0]
903                 )
904         ) );
905         $x->send();
906         break;
907 case 'autosave' : // The name of this action is hardcoded in edit_post()
908         define( 'DOING_AUTOSAVE', true );
909
910         $nonce_age = check_ajax_referer( 'autosave', 'autosavenonce' );
911
912         $_POST['post_category'] = explode(",", $_POST['catslist']);
913         if ( $_POST['post_type'] == 'page' || empty($_POST['post_category']) )
914                 unset($_POST['post_category']);
915
916         $do_autosave = (bool) $_POST['autosave'];
917         $do_lock = true;
918
919         $data = '';
920         /* translators: draft saved date format, see http://php.net/date */
921         $draft_saved_date_format = __('g:i:s a');
922         /* translators: %s: date and time */
923         $message = sprintf( __('Draft saved at %s.'), date_i18n( $draft_saved_date_format ) );
924
925         $supplemental = array();
926         if ( isset($login_grace_period) )
927                 $supplemental['session_expired'] = add_query_arg( 'interim-login', 1, wp_login_url() );
928
929         $id = $revision_id = 0;
930
931         $post_ID = (int) $_POST['post_ID'];
932         $_POST['ID'] = $post_ID;
933         $post = get_post($post_ID);
934         if ( 'auto-draft' == $post->post_status )
935                 $_POST['post_status'] = 'draft';
936
937         if ( $last = wp_check_post_lock( $post->ID ) ) {
938                 $do_autosave = $do_lock = false;
939
940                 $last_user = get_userdata( $last );
941                 $last_user_name = $last_user ? $last_user->display_name : __( 'Someone' );
942                 $data = new WP_Error( 'locked', sprintf(
943                         $_POST['post_type'] == 'page' ? __( 'Autosave disabled: %s is currently editing this page.' ) : __( 'Autosave disabled: %s is currently editing this post.' ),
944                         esc_html( $last_user_name )
945                 ) );
946
947                 $supplemental['disable_autosave'] = 'disable';
948         }
949
950         if ( 'page' == $post->post_type ) {
951                 if ( !current_user_can('edit_page', $post_ID) )
952                         die(__('You are not allowed to edit this page.'));
953         } else {
954                 if ( !current_user_can('edit_post', $post_ID) )
955                         die(__('You are not allowed to edit this post.'));
956         }
957
958         if ( $do_autosave ) {
959                 // Drafts and auto-drafts are just overwritten by autosave
960                 if ( 'auto-draft' == $post->post_status || 'draft' == $post->post_status ) {
961                         $id = edit_post();
962                 } else { // Non drafts are not overwritten.  The autosave is stored in a special post revision.
963                         $revision_id = wp_create_post_autosave( $post->ID );
964                         if ( is_wp_error($revision_id) )
965                                 $id = $revision_id;
966                         else
967                                 $id = $post->ID;
968                 }
969                 $data = $message;
970         } else {
971                 if ( isset( $_POST['auto_draft'] ) && '1' == $_POST['auto_draft'] )
972                         $id = 0; // This tells us it didn't actually save
973                 else
974                         $id = $post->ID;
975         }
976
977         if ( $do_lock && ( isset( $_POST['auto_draft'] ) && ( $_POST['auto_draft'] != '1' ) ) && $id && is_numeric($id) )
978                 wp_set_post_lock( $id );
979
980         if ( $nonce_age == 2 ) {
981                 $supplemental['replace-autosavenonce'] = wp_create_nonce('autosave');
982                 $supplemental['replace-getpermalinknonce'] = wp_create_nonce('getpermalink');
983                 $supplemental['replace-samplepermalinknonce'] = wp_create_nonce('samplepermalink');
984                 $supplemental['replace-closedpostboxesnonce'] = wp_create_nonce('closedpostboxes');
985                 if ( $id ) {
986                         if ( $_POST['post_type'] == 'post' )
987                                 $supplemental['replace-_wpnonce'] = wp_create_nonce('update-post_' . $id);
988                         elseif ( $_POST['post_type'] == 'page' )
989                                 $supplemental['replace-_wpnonce'] = wp_create_nonce('update-page_' . $id);
990                 }
991         }
992
993         $x = new WP_Ajax_Response( array(
994                 'what' => 'autosave',
995                 'id' => $id,
996                 'data' => $id ? $data : '',
997                 'supplemental' => $supplemental
998         ) );
999         $x->send();
1000         break;
1001 case 'closed-postboxes' :
1002         check_ajax_referer( 'closedpostboxes', 'closedpostboxesnonce' );
1003         $closed = isset( $_POST['closed'] ) ? explode( ',', $_POST['closed']) : array();
1004         $closed = array_filter($closed);
1005
1006         $hidden = isset( $_POST['hidden'] ) ? explode( ',', $_POST['hidden']) : array();
1007         $hidden = array_filter($hidden);
1008
1009         $page = isset( $_POST['page'] ) ? $_POST['page'] : '';
1010
1011         if ( !preg_match( '/^[a-z_-]+$/', $page ) )
1012                 die('-1');
1013
1014         if ( ! $user = wp_get_current_user() )
1015                 die('-1');
1016
1017         if ( is_array($closed) )
1018                 update_user_option($user->ID, "closedpostboxes_$page", $closed, true);
1019
1020         if ( is_array($hidden) ) {
1021                 $hidden = array_diff( $hidden, array('submitdiv', 'linksubmitdiv', 'manage-menu', 'create-menu') ); // postboxes that are always shown
1022                 update_user_option($user->ID, "metaboxhidden_$page", $hidden, true);
1023         }
1024
1025         die('1');
1026         break;
1027 case 'hidden-columns' :
1028         check_ajax_referer( 'screen-options-nonce', 'screenoptionnonce' );
1029         $hidden = isset( $_POST['hidden'] ) ? $_POST['hidden'] : '';
1030         $hidden = explode( ',', $_POST['hidden'] );
1031         $page = isset( $_POST['page'] ) ? $_POST['page'] : '';
1032
1033         if ( !preg_match( '/^[a-z_-]+$/', $page ) )
1034                 die('-1');
1035
1036         if ( ! $user = wp_get_current_user() )
1037                 die('-1');
1038
1039         if ( is_array($hidden) )
1040                 update_user_option($user->ID, "manage{$page}columnshidden", $hidden, true);
1041
1042         die('1');
1043         break;
1044 case 'menu-get-metabox' :
1045         if ( ! current_user_can( 'edit_theme_options' ) )
1046                 die('-1');
1047
1048         require_once ABSPATH . 'wp-admin/includes/nav-menu.php';
1049
1050         if ( isset( $_POST['item-type'] ) && 'post_type' == $_POST['item-type'] ) {
1051                 $type = 'posttype';
1052                 $callback = 'wp_nav_menu_item_post_type_meta_box';
1053                 $items = (array) get_post_types( array( 'show_in_nav_menus' => true ), 'object' );
1054         } elseif ( isset( $_POST['item-type'] ) && 'taxonomy' == $_POST['item-type'] ) {
1055                 $type = 'taxonomy';
1056                 $callback = 'wp_nav_menu_item_taxonomy_meta_box';
1057                 $items = (array) get_taxonomies( array( 'show_ui' => true ), 'object' );
1058         }
1059
1060         if ( ! empty( $_POST['item-object'] ) && isset( $items[$_POST['item-object']] ) ) {
1061                 $item = apply_filters( 'nav_menu_meta_box_object', $items[ $_POST['item-object'] ] );
1062                 ob_start();
1063                 call_user_func_array($callback, array(
1064                         null,
1065                         array(
1066                                 'id' => 'add-' . $item->name,
1067                                 'title' => $item->labels->name,
1068                                 'callback' => $callback,
1069                                 'args' => $item,
1070                         )
1071                 ));
1072
1073                 $markup = ob_get_clean();
1074
1075                 echo json_encode(array(
1076                         'replace-id' => $type . '-' . $item->name,
1077                         'markup' => $markup,
1078                 ));
1079         }
1080
1081         exit;
1082         break;
1083 case 'menu-quick-search':
1084         if ( ! current_user_can( 'edit_theme_options' ) )
1085                 die('-1');
1086
1087         require_once ABSPATH . 'wp-admin/includes/nav-menu.php';
1088
1089         _wp_ajax_menu_quick_search( $_REQUEST );
1090
1091         exit;
1092         break;
1093 case 'wp-link-ajax':
1094         require_once ABSPATH . 'wp-admin/includes/internal-linking.php';
1095
1096         check_ajax_referer( 'internal-linking', '_ajax_linking_nonce' );
1097
1098         $args = array();
1099
1100         if ( isset( $_POST['search'] ) )
1101                 $args['s'] = stripslashes( $_POST['search'] );
1102         $args['pagenum'] = ! empty( $_POST['page'] ) ? absint( $_POST['page'] ) : 1;
1103
1104         $results = wp_link_query( $args );
1105
1106         if ( ! isset( $results ) )
1107                 die( '0' );
1108
1109         echo json_encode( $results );
1110         echo "\n";
1111
1112         exit;
1113         break;
1114 case 'menu-locations-save':
1115         if ( ! current_user_can( 'edit_theme_options' ) )
1116                 die('-1');
1117         check_ajax_referer( 'add-menu_item', 'menu-settings-column-nonce' );
1118         if ( ! isset( $_POST['menu-locations'] ) )
1119                 die('0');
1120         set_theme_mod( 'nav_menu_locations', array_map( 'absint', $_POST['menu-locations'] ) );
1121         die('1');
1122         break;
1123 case 'meta-box-order':
1124         check_ajax_referer( 'meta-box-order' );
1125         $order = isset( $_POST['order'] ) ? (array) $_POST['order'] : false;
1126         $page_columns = isset( $_POST['page_columns'] ) ? (int) $_POST['page_columns'] : 0;
1127         $page = isset( $_POST['page'] ) ? $_POST['page'] : '';
1128
1129         if ( !preg_match( '/^[a-z_-]+$/', $page ) )
1130                 die('-1');
1131
1132         if ( ! $user = wp_get_current_user() )
1133                 die('-1');
1134
1135         if ( $order )
1136                 update_user_option($user->ID, "meta-box-order_$page", $order, true);
1137
1138         if ( $page_columns )
1139                 update_user_option($user->ID, "screen_layout_$page", $page_columns, true);
1140
1141         die('1');
1142         break;
1143 case 'get-permalink':
1144         check_ajax_referer( 'getpermalink', 'getpermalinknonce' );
1145         $post_id = isset($_POST['post_id'])? intval($_POST['post_id']) : 0;
1146         die(add_query_arg(array('preview' => 'true'), get_permalink($post_id)));
1147 break;
1148 case 'sample-permalink':
1149         check_ajax_referer( 'samplepermalink', 'samplepermalinknonce' );
1150         $post_id = isset($_POST['post_id'])? intval($_POST['post_id']) : 0;
1151         $title = isset($_POST['new_title'])? $_POST['new_title'] : '';
1152         $slug = isset($_POST['new_slug'])? $_POST['new_slug'] : null;
1153         die(get_sample_permalink_html($post_id, $title, $slug));
1154 break;
1155 case 'inline-save':
1156         check_ajax_referer( 'inlineeditnonce', '_inline_edit' );
1157
1158         if ( ! isset($_POST['post_ID']) || ! ( $post_ID = (int) $_POST['post_ID'] ) )
1159                 exit;
1160
1161         if ( 'page' == $_POST['post_type'] ) {
1162                 if ( ! current_user_can( 'edit_page', $post_ID ) )
1163                         die( __('You are not allowed to edit this page.') );
1164         } else {
1165                 if ( ! current_user_can( 'edit_post', $post_ID ) )
1166                         die( __('You are not allowed to edit this post.') );
1167         }
1168
1169         set_current_screen( $_POST['screen'] );
1170
1171         if ( $last = wp_check_post_lock( $post_ID ) ) {
1172                 $last_user = get_userdata( $last );
1173                 $last_user_name = $last_user ? $last_user->display_name : __( 'Someone' );
1174                 printf( $_POST['post_type'] == 'page' ? __( 'Saving is disabled: %s is currently editing this page.' ) : __( 'Saving is disabled: %s is currently editing this post.' ),        esc_html( $last_user_name ) );
1175                 exit;
1176         }
1177
1178         $data = &$_POST;
1179
1180         $post = get_post( $post_ID, ARRAY_A );
1181         $post = add_magic_quotes($post); //since it is from db
1182
1183         $data['content'] = $post['post_content'];
1184         $data['excerpt'] = $post['post_excerpt'];
1185
1186         // rename
1187         $data['user_ID'] = $GLOBALS['user_ID'];
1188
1189         if ( isset($data['post_parent']) )
1190                 $data['parent_id'] = $data['post_parent'];
1191
1192         // status
1193         if ( isset($data['keep_private']) && 'private' == $data['keep_private'] )
1194                 $data['post_status'] = 'private';
1195         else
1196                 $data['post_status'] = $data['_status'];
1197
1198         if ( empty($data['comment_status']) )
1199                 $data['comment_status'] = 'closed';
1200         if ( empty($data['ping_status']) )
1201                 $data['ping_status'] = 'closed';
1202
1203         // update the post
1204         edit_post();
1205
1206         $wp_list_table = _get_list_table('WP_Posts_List_Table');
1207
1208         $mode = $_POST['post_view'];
1209         $wp_list_table->display_rows( array( get_post( $_POST['post_ID'] ) ) );
1210
1211         exit;
1212         break;
1213 case 'inline-save-tax':
1214         check_ajax_referer( 'taxinlineeditnonce', '_inline_edit' );
1215
1216         $taxonomy = sanitize_key( $_POST['taxonomy'] );
1217         $tax = get_taxonomy( $taxonomy );
1218         if ( ! $tax )
1219                 die( '0' );
1220
1221         if ( ! current_user_can( $tax->cap->edit_terms ) )
1222                 die( '-1' );
1223
1224         set_current_screen( 'edit-' . $taxonomy );
1225
1226         $wp_list_table = _get_list_table('WP_Terms_List_Table');
1227
1228         if ( ! isset($_POST['tax_ID']) || ! ( $id = (int) $_POST['tax_ID'] ) )
1229                 die(-1);
1230
1231         $tag = get_term( $id, $taxonomy );
1232         $_POST['description'] = $tag->description;
1233
1234         $updated = wp_update_term($id, $taxonomy, $_POST);
1235         if ( $updated && !is_wp_error($updated) ) {
1236                 $tag = get_term( $updated['term_id'], $taxonomy );
1237                 if ( !$tag || is_wp_error( $tag ) ) {
1238                         if ( is_wp_error($tag) && $tag->get_error_message() )
1239                                 die( $tag->get_error_message() );
1240                         die( __('Item not updated.') );
1241                 }
1242
1243                 echo $wp_list_table->single_row( $tag );
1244         } else {
1245                 if ( is_wp_error($updated) && $updated->get_error_message() )
1246                         die( $updated->get_error_message() );
1247                 die( __('Item not updated.') );
1248         }
1249
1250         exit;
1251         break;
1252 case 'find_posts':
1253         check_ajax_referer( 'find-posts' );
1254
1255         if ( empty($_POST['ps']) )
1256                 exit;
1257
1258         if ( !empty($_POST['post_type']) && in_array( $_POST['post_type'], get_post_types() ) )
1259                 $what = $_POST['post_type'];
1260         else
1261                 $what = 'post';
1262
1263         $s = stripslashes($_POST['ps']);
1264         preg_match_all('/".*?("|$)|((?<=[\\s",+])|^)[^\\s",+]+/', $s, $matches);
1265         $search_terms = array_map('_search_terms_tidy', $matches[0]);
1266
1267         $searchand = $search = '';
1268         foreach ( (array) $search_terms as $term ) {
1269                 $term = esc_sql( like_escape( $term ) );
1270                 $search .= "{$searchand}(($wpdb->posts.post_title LIKE '%{$term}%') OR ($wpdb->posts.post_content LIKE '%{$term}%'))";
1271                 $searchand = ' AND ';
1272         }
1273         $term = esc_sql( like_escape( $s ) );
1274         if ( count($search_terms) > 1 && $search_terms[0] != $s )
1275                 $search .= " OR ($wpdb->posts.post_title LIKE '%{$term}%') OR ($wpdb->posts.post_content LIKE '%{$term}%')";
1276
1277         $posts = $wpdb->get_results( "SELECT ID, post_title, post_status, post_date FROM $wpdb->posts WHERE post_type = '$what' AND post_status IN ('draft', 'publish') AND ($search) ORDER BY post_date_gmt DESC LIMIT 50" );
1278
1279         if ( ! $posts ) {
1280                 $posttype = get_post_type_object($what);
1281                 exit($posttype->labels->not_found);
1282         }
1283
1284         $html = '<table class="widefat" cellspacing="0"><thead><tr><th class="found-radio"><br /></th><th>'.__('Title').'</th><th>'.__('Date').'</th><th>'.__('Status').'</th></tr></thead><tbody>';
1285         foreach ( $posts as $post ) {
1286
1287                 switch ( $post->post_status ) {
1288                         case 'publish' :
1289                         case 'private' :
1290                                 $stat = __('Published');
1291                                 break;
1292                         case 'future' :
1293                                 $stat = __('Scheduled');
1294                                 break;
1295                         case 'pending' :
1296                                 $stat = __('Pending Review');
1297                                 break;
1298                         case 'draft' :
1299                                 $stat = __('Draft');
1300                                 break;
1301                 }
1302
1303                 if ( '0000-00-00 00:00:00' == $post->post_date ) {
1304                         $time = '';
1305                 } else {
1306                         /* translators: date format in table columns, see http://php.net/date */
1307                         $time = mysql2date(__('Y/m/d'), $post->post_date);
1308                 }
1309
1310                 $html .= '<tr class="found-posts"><td class="found-radio"><input type="radio" id="found-'.$post->ID.'" name="found_post_id" value="' . esc_attr($post->ID) . '"></td>';
1311                 $html .= '<td><label for="found-'.$post->ID.'">'.esc_html( $post->post_title ).'</label></td><td>'.esc_html( $time ).'</td><td>'.esc_html( $stat ).'</td></tr>'."\n\n";
1312         }
1313         $html .= '</tbody></table>';
1314
1315         $x = new WP_Ajax_Response();
1316         $x->add( array(
1317                 'what' => $what,
1318                 'data' => $html
1319         ));
1320         $x->send();
1321
1322         break;
1323 case 'widgets-order' :
1324         check_ajax_referer( 'save-sidebar-widgets', 'savewidgets' );
1325
1326         if ( !current_user_can('edit_theme_options') )
1327                 die('-1');
1328
1329         unset( $_POST['savewidgets'], $_POST['action'] );
1330
1331         // save widgets order for all sidebars
1332         if ( is_array($_POST['sidebars']) ) {
1333                 $sidebars = array();
1334                 foreach ( $_POST['sidebars'] as $key => $val ) {
1335                         $sb = array();
1336                         if ( !empty($val) ) {
1337                                 $val = explode(',', $val);
1338                                 foreach ( $val as $k => $v ) {
1339                                         if ( strpos($v, 'widget-') === false )
1340                                                 continue;
1341
1342                                         $sb[$k] = substr($v, strpos($v, '_') + 1);
1343                                 }
1344                         }
1345                         $sidebars[$key] = $sb;
1346                 }
1347                 wp_set_sidebars_widgets($sidebars);
1348                 die('1');
1349         }
1350
1351         die('-1');
1352         break;
1353 case 'save-widget' :
1354         check_ajax_referer( 'save-sidebar-widgets', 'savewidgets' );
1355
1356         if ( !current_user_can('edit_theme_options') || !isset($_POST['id_base']) )
1357                 die('-1');
1358
1359         unset( $_POST['savewidgets'], $_POST['action'] );
1360
1361         do_action('load-widgets.php');
1362         do_action('widgets.php');
1363         do_action('sidebar_admin_setup');
1364
1365         $id_base = $_POST['id_base'];
1366         $widget_id = $_POST['widget-id'];
1367         $sidebar_id = $_POST['sidebar'];
1368         $multi_number = !empty($_POST['multi_number']) ? (int) $_POST['multi_number'] : 0;
1369         $settings = isset($_POST['widget-' . $id_base]) && is_array($_POST['widget-' . $id_base]) ? $_POST['widget-' . $id_base] : false;
1370         $error = '<p>' . __('An error has occurred. Please reload the page and try again.') . '</p>';
1371
1372         $sidebars = wp_get_sidebars_widgets();
1373         $sidebar = isset($sidebars[$sidebar_id]) ? $sidebars[$sidebar_id] : array();
1374
1375         // delete
1376         if ( isset($_POST['delete_widget']) && $_POST['delete_widget'] ) {
1377
1378                 if ( !isset($wp_registered_widgets[$widget_id]) )
1379                         die($error);
1380
1381                 $sidebar = array_diff( $sidebar, array($widget_id) );
1382                 $_POST = array('sidebar' => $sidebar_id, 'widget-' . $id_base => array(), 'the-widget-id' => $widget_id, 'delete_widget' => '1');
1383         } elseif ( $settings && preg_match( '/__i__|%i%/', key($settings) ) ) {
1384                 if ( !$multi_number )
1385                         die($error);
1386
1387                 $_POST['widget-' . $id_base] = array( $multi_number => array_shift($settings) );
1388                 $widget_id = $id_base . '-' . $multi_number;
1389                 $sidebar[] = $widget_id;
1390         }
1391         $_POST['widget-id'] = $sidebar;
1392
1393         foreach ( (array) $wp_registered_widget_updates as $name => $control ) {
1394
1395                 if ( $name == $id_base ) {
1396                         if ( !is_callable( $control['callback'] ) )
1397                                 continue;
1398
1399                         ob_start();
1400                                 call_user_func_array( $control['callback'], $control['params'] );
1401                         ob_end_clean();
1402                         break;
1403                 }
1404         }
1405
1406         if ( isset($_POST['delete_widget']) && $_POST['delete_widget'] ) {
1407                 $sidebars[$sidebar_id] = $sidebar;
1408                 wp_set_sidebars_widgets($sidebars);
1409                 echo "deleted:$widget_id";
1410                 die();
1411         }
1412
1413         if ( !empty($_POST['add_new']) )
1414                 die();
1415
1416         if ( $form = $wp_registered_widget_controls[$widget_id] )
1417                 call_user_func_array( $form['callback'], $form['params'] );
1418
1419         die();
1420         break;
1421 case 'image-editor':
1422         $attachment_id = intval($_POST['postid']);
1423         if ( empty($attachment_id) || !current_user_can('edit_post', $attachment_id) )
1424                 die('-1');
1425
1426         check_ajax_referer( "image_editor-$attachment_id" );
1427         include_once( ABSPATH . 'wp-admin/includes/image-edit.php' );
1428
1429         $msg = false;
1430         switch ( $_POST['do'] ) {
1431                 case 'save' :
1432                         $msg = wp_save_image($attachment_id);
1433                         $msg = json_encode($msg);
1434                         die($msg);
1435                         break;
1436                 case 'scale' :
1437                         $msg = wp_save_image($attachment_id);
1438                         break;
1439                 case 'restore' :
1440                         $msg = wp_restore_image($attachment_id);
1441                         break;
1442         }
1443
1444         wp_image_editor($attachment_id, $msg);
1445         die();
1446         break;
1447 case 'set-post-thumbnail':
1448         $post_ID = intval( $_POST['post_id'] );
1449         if ( !current_user_can( 'edit_post', $post_ID ) )
1450                 die( '-1' );
1451         $thumbnail_id = intval( $_POST['thumbnail_id'] );
1452
1453         check_ajax_referer( "set_post_thumbnail-$post_ID" );
1454
1455         if ( $thumbnail_id == '-1' ) {
1456                 delete_post_meta( $post_ID, '_thumbnail_id' );
1457                 die( _wp_post_thumbnail_html() );
1458         }
1459
1460         if ( set_post_thumbnail( $post_ID, $thumbnail_id ) )
1461                 die( _wp_post_thumbnail_html( $thumbnail_id ) );
1462         die( '0' );
1463         break;
1464 case 'date_format' :
1465         die( date_i18n( sanitize_option( 'date_format', $_POST['date'] ) ) );
1466         break;
1467 case 'time_format' :
1468         die( date_i18n( sanitize_option( 'time_format', $_POST['date'] ) ) );
1469         break;
1470 default :
1471         do_action( 'wp_ajax_' . $_POST['action'] );
1472         die('0');
1473         break;
1474 endswitch;
1475 ?>