aboutsummaryrefslogtreecommitdiff
path: root/srcs/wordpress/wp-admin/includes/ajax-actions.php
diff options
context:
space:
mode:
Diffstat (limited to 'srcs/wordpress/wp-admin/includes/ajax-actions.php')
-rw-r--r--srcs/wordpress/wp-admin/includes/ajax-actions.php5263
1 files changed, 0 insertions, 5263 deletions
diff --git a/srcs/wordpress/wp-admin/includes/ajax-actions.php b/srcs/wordpress/wp-admin/includes/ajax-actions.php
deleted file mode 100644
index d1700d9..0000000
--- a/srcs/wordpress/wp-admin/includes/ajax-actions.php
+++ /dev/null
@@ -1,5263 +0,0 @@
-<?php
-/**
- * Administration API: Core Ajax handlers
- *
- * @package WordPress
- * @subpackage Administration
- * @since 2.1.0
- */
-
-//
-// No-privilege Ajax handlers.
-//
-
-/**
- * Ajax handler for the Heartbeat API in
- * the no-privilege context.
- *
- * Runs when the user is not logged in.
- *
- * @since 3.6.0
- */
-function wp_ajax_nopriv_heartbeat() {
- $response = array();
-
- // screen_id is the same as $current_screen->id and the JS global 'pagenow'.
- if ( ! empty( $_POST['screen_id'] ) ) {
- $screen_id = sanitize_key( $_POST['screen_id'] );
- } else {
- $screen_id = 'front';
- }
-
- if ( ! empty( $_POST['data'] ) ) {
- $data = wp_unslash( (array) $_POST['data'] );
-
- /**
- * Filters Heartbeat Ajax response in no-privilege environments.
- *
- * @since 3.6.0
- *
- * @param array $response The no-priv Heartbeat response.
- * @param array $data The $_POST data sent.
- * @param string $screen_id The screen id.
- */
- $response = apply_filters( 'heartbeat_nopriv_received', $response, $data, $screen_id );
- }
-
- /**
- * Filters Heartbeat Ajax response in no-privilege environments when no data is passed.
- *
- * @since 3.6.0
- *
- * @param array $response The no-priv Heartbeat response.
- * @param string $screen_id The screen id.
- */
- $response = apply_filters( 'heartbeat_nopriv_send', $response, $screen_id );
-
- /**
- * Fires when Heartbeat ticks in no-privilege environments.
- *
- * Allows the transport to be easily replaced with long-polling.
- *
- * @since 3.6.0
- *
- * @param array $response The no-priv Heartbeat response.
- * @param string $screen_id The screen id.
- */
- do_action( 'heartbeat_nopriv_tick', $response, $screen_id );
-
- // Send the current time according to the server.
- $response['server_time'] = time();
-
- wp_send_json( $response );
-}
-
-//
-// GET-based Ajax handlers.
-//
-
-/**
- * Ajax handler for fetching a list table.
- *
- * @since 3.1.0
- */
-function wp_ajax_fetch_list() {
- $list_class = $_GET['list_args']['class'];
- check_ajax_referer( "fetch-list-$list_class", '_ajax_fetch_list_nonce' );
-
- $wp_list_table = _get_list_table( $list_class, array( 'screen' => $_GET['list_args']['screen']['id'] ) );
- if ( ! $wp_list_table ) {
- wp_die( 0 );
- }
-
- if ( ! $wp_list_table->ajax_user_can() ) {
- wp_die( -1 );
- }
-
- $wp_list_table->ajax_response();
-
- wp_die( 0 );
-}
-
-/**
- * Ajax handler for tag search.
- *
- * @since 3.1.0
- */
-function wp_ajax_ajax_tag_search() {
- if ( ! isset( $_GET['tax'] ) ) {
- wp_die( 0 );
- }
-
- $taxonomy = sanitize_key( $_GET['tax'] );
- $tax = get_taxonomy( $taxonomy );
-
- if ( ! $tax ) {
- wp_die( 0 );
- }
-
- if ( ! current_user_can( $tax->cap->assign_terms ) ) {
- wp_die( -1 );
- }
-
- $s = wp_unslash( $_GET['q'] );
-
- $comma = _x( ',', 'tag delimiter' );
- if ( ',' !== $comma ) {
- $s = str_replace( $comma, ',', $s );
- }
-
- if ( false !== strpos( $s, ',' ) ) {
- $s = explode( ',', $s );
- $s = $s[ count( $s ) - 1 ];
- }
-
- $s = trim( $s );
-
- /**
- * Filters the minimum number of characters required to fire a tag search via Ajax.
- *
- * @since 4.0.0
- *
- * @param int $characters The minimum number of characters required. Default 2.
- * @param WP_Taxonomy $tax The taxonomy object.
- * @param string $s The search term.
- */
- $term_search_min_chars = (int) apply_filters( 'term_search_min_chars', 2, $tax, $s );
-
- /*
- * Require $term_search_min_chars chars for matching (default: 2)
- * ensure it's a non-negative, non-zero integer.
- */
- if ( ( $term_search_min_chars == 0 ) || ( strlen( $s ) < $term_search_min_chars ) ) {
- wp_die();
- }
-
- $results = get_terms(
- array(
- 'taxonomy' => $taxonomy,
- 'name__like' => $s,
- 'fields' => 'names',
- 'hide_empty' => false,
- )
- );
-
- echo join( "\n", $results );
- wp_die();
-}
-
-/**
- * Ajax handler for compression testing.
- *
- * @since 3.1.0
- */
-function wp_ajax_wp_compression_test() {
- if ( ! current_user_can( 'manage_options' ) ) {
- wp_die( -1 );
- }
-
- if ( ini_get( 'zlib.output_compression' ) || 'ob_gzhandler' == ini_get( 'output_handler' ) ) {
- update_site_option( 'can_compress_scripts', 0 );
- wp_die( 0 );
- }
-
- if ( isset( $_GET['test'] ) ) {
- header( 'Expires: Wed, 11 Jan 1984 05:00:00 GMT' );
- header( 'Last-Modified: ' . gmdate( 'D, d M Y H:i:s' ) . ' GMT' );
- header( 'Cache-Control: no-cache, must-revalidate, max-age=0' );
- header( 'Content-Type: application/javascript; charset=UTF-8' );
- $force_gzip = ( defined( 'ENFORCE_GZIP' ) && ENFORCE_GZIP );
- $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."';
-
- if ( 1 == $_GET['test'] ) {
- echo $test_str;
- wp_die();
- } elseif ( 2 == $_GET['test'] ) {
- if ( ! isset( $_SERVER['HTTP_ACCEPT_ENCODING'] ) ) {
- wp_die( -1 );
- }
-
- if ( false !== stripos( $_SERVER['HTTP_ACCEPT_ENCODING'], 'deflate' ) && function_exists( 'gzdeflate' ) && ! $force_gzip ) {
- header( 'Content-Encoding: deflate' );
- $out = gzdeflate( $test_str, 1 );
- } elseif ( false !== stripos( $_SERVER['HTTP_ACCEPT_ENCODING'], 'gzip' ) && function_exists( 'gzencode' ) ) {
- header( 'Content-Encoding: gzip' );
- $out = gzencode( $test_str, 1 );
- } else {
- wp_die( -1 );
- }
-
- echo $out;
- wp_die();
- } elseif ( 'no' == $_GET['test'] ) {
- check_ajax_referer( 'update_can_compress_scripts' );
- update_site_option( 'can_compress_scripts', 0 );
- } elseif ( 'yes' == $_GET['test'] ) {
- check_ajax_referer( 'update_can_compress_scripts' );
- update_site_option( 'can_compress_scripts', 1 );
- }
- }
-
- wp_die( 0 );
-}
-
-/**
- * Ajax handler for image editor previews.
- *
- * @since 3.1.0
- */
-function wp_ajax_imgedit_preview() {
- $post_id = intval( $_GET['postid'] );
- if ( empty( $post_id ) || ! current_user_can( 'edit_post', $post_id ) ) {
- wp_die( -1 );
- }
-
- check_ajax_referer( "image_editor-$post_id" );
-
- include_once( ABSPATH . 'wp-admin/includes/image-edit.php' );
-
- if ( ! stream_preview_image( $post_id ) ) {
- wp_die( -1 );
- }
-
- wp_die();
-}
-
-/**
- * Ajax handler for oEmbed caching.
- *
- * @since 3.1.0
- *
- * @global WP_Embed $wp_embed
- */
-function wp_ajax_oembed_cache() {
- $GLOBALS['wp_embed']->cache_oembed( $_GET['post'] );
- wp_die( 0 );
-}
-
-/**
- * Ajax handler for user autocomplete.
- *
- * @since 3.4.0
- */
-function wp_ajax_autocomplete_user() {
- if ( ! is_multisite() || ! current_user_can( 'promote_users' ) || wp_is_large_network( 'users' ) ) {
- wp_die( -1 );
- }
-
- /** This filter is documented in wp-admin/user-new.php */
- if ( ! current_user_can( 'manage_network_users' ) && ! apply_filters( 'autocomplete_users_for_site_admins', false ) ) {
- wp_die( -1 );
- }
-
- $return = array();
-
- // Check the type of request
- // Current allowed values are `add` and `search`
- if ( isset( $_REQUEST['autocomplete_type'] ) && 'search' === $_REQUEST['autocomplete_type'] ) {
- $type = $_REQUEST['autocomplete_type'];
- } else {
- $type = 'add';
- }
-
- // Check the desired field for value
- // Current allowed values are `user_email` and `user_login`
- if ( isset( $_REQUEST['autocomplete_field'] ) && 'user_email' === $_REQUEST['autocomplete_field'] ) {
- $field = $_REQUEST['autocomplete_field'];
- } else {
- $field = 'user_login';
- }
-
- // Exclude current users of this blog
- if ( isset( $_REQUEST['site_id'] ) ) {
- $id = absint( $_REQUEST['site_id'] );
- } else {
- $id = get_current_blog_id();
- }
-
- $include_blog_users = ( $type == 'search' ? get_users(
- array(
- 'blog_id' => $id,
- 'fields' => 'ID',
- )
- ) : array() );
-
- $exclude_blog_users = ( $type == 'add' ? get_users(
- array(
- 'blog_id' => $id,
- 'fields' => 'ID',
- )
- ) : array() );
-
- $users = get_users(
- array(
- 'blog_id' => false,
- 'search' => '*' . $_REQUEST['term'] . '*',
- 'include' => $include_blog_users,
- 'exclude' => $exclude_blog_users,
- 'search_columns' => array( 'user_login', 'user_nicename', 'user_email' ),
- )
- );
-
- foreach ( $users as $user ) {
- $return[] = array(
- /* translators: 1: User login, 2: User email address. */
- 'label' => sprintf( _x( '%1$s (%2$s)', 'user autocomplete result' ), $user->user_login, $user->user_email ),
- 'value' => $user->$field,
- );
- }
-
- wp_die( wp_json_encode( $return ) );
-}
-
-/**
- * Handles AJAX requests for community events
- *
- * @since 4.8.0
- */
-function wp_ajax_get_community_events() {
- require_once( ABSPATH . 'wp-admin/includes/class-wp-community-events.php' );
-
- check_ajax_referer( 'community_events' );
-
- $search = isset( $_POST['location'] ) ? wp_unslash( $_POST['location'] ) : '';
- $timezone = isset( $_POST['timezone'] ) ? wp_unslash( $_POST['timezone'] ) : '';
- $user_id = get_current_user_id();
- $saved_location = get_user_option( 'community-events-location', $user_id );
- $events_client = new WP_Community_Events( $user_id, $saved_location );
- $events = $events_client->get_events( $search, $timezone );
- $ip_changed = false;
-
- if ( is_wp_error( $events ) ) {
- wp_send_json_error(
- array(
- 'error' => $events->get_error_message(),
- )
- );
- } else {
- if ( empty( $saved_location['ip'] ) && ! empty( $events['location']['ip'] ) ) {
- $ip_changed = true;
- } elseif ( isset( $saved_location['ip'] ) && ! empty( $events['location']['ip'] ) && $saved_location['ip'] !== $events['location']['ip'] ) {
- $ip_changed = true;
- }
-
- /*
- * The location should only be updated when it changes. The API doesn't always return
- * a full location; sometimes it's missing the description or country. The location
- * that was saved during the initial request is known to be good and complete, though.
- * It should be left intact until the user explicitly changes it (either by manually
- * searching for a new location, or by changing their IP address).
- *
- * If the location was updated with an incomplete response from the API, then it could
- * break assumptions that the UI makes (e.g., that there will always be a description
- * that corresponds to a latitude/longitude location).
- *
- * The location is stored network-wide, so that the user doesn't have to set it on each site.
- */
- if ( $ip_changed || $search ) {
- update_user_option( $user_id, 'community-events-location', $events['location'], true );
- }
-
- wp_send_json_success( $events );
- }
-}
-
-/**
- * Ajax handler for dashboard widgets.
- *
- * @since 3.4.0
- */
-function wp_ajax_dashboard_widgets() {
- require_once ABSPATH . 'wp-admin/includes/dashboard.php';
-
- $pagenow = $_GET['pagenow'];
- if ( $pagenow === 'dashboard-user' || $pagenow === 'dashboard-network' || $pagenow === 'dashboard' ) {
- set_current_screen( $pagenow );
- }
-
- switch ( $_GET['widget'] ) {
- case 'dashboard_primary':
- wp_dashboard_primary();
- break;
- }
- wp_die();
-}
-
-/**
- * Ajax handler for Customizer preview logged-in status.
- *
- * @since 3.4.0
- */
-function wp_ajax_logged_in() {
- wp_die( 1 );
-}
-
-//
-// Ajax helpers.
-//
-
-/**
- * Sends back current comment total and new page links if they need to be updated.
- *
- * Contrary to normal success Ajax response ("1"), die with time() on success.
- *
- * @access private
- * @since 2.7.0
- *
- * @param int $comment_id
- * @param int $delta
- */
-function _wp_ajax_delete_comment_response( $comment_id, $delta = -1 ) {
- $total = isset( $_POST['_total'] ) ? (int) $_POST['_total'] : 0;
- $per_page = isset( $_POST['_per_page'] ) ? (int) $_POST['_per_page'] : 0;
- $page = isset( $_POST['_page'] ) ? (int) $_POST['_page'] : 0;
- $url = isset( $_POST['_url'] ) ? esc_url_raw( $_POST['_url'] ) : '';
-
- // JS didn't send us everything we need to know. Just die with success message
- if ( ! $total || ! $per_page || ! $page || ! $url ) {
- $time = time();
- $comment = get_comment( $comment_id );
- $comment_status = '';
- $comment_link = '';
-
- if ( $comment ) {
- $comment_status = $comment->comment_approved;
- }
-
- if ( 1 === (int) $comment_status ) {
- $comment_link = get_comment_link( $comment );
- }
-
- $counts = wp_count_comments();
-
- $x = new WP_Ajax_Response(
- array(
- 'what' => 'comment',
- // Here for completeness - not used.
- 'id' => $comment_id,
- 'supplemental' => array(
- 'status' => $comment_status,
- 'postId' => $comment ? $comment->comment_post_ID : '',
- 'time' => $time,
- 'in_moderation' => $counts->moderated,
- 'i18n_comments_text' => sprintf(
- /* translators: %s: Number of comments. */
- _n( '%s Comment', '%s Comments', $counts->approved ),
- number_format_i18n( $counts->approved )
- ),
- 'i18n_moderation_text' => sprintf(
- /* translators: %s: Number of comments. */
- _n( '%s Comment in moderation', '%s Comments in moderation', $counts->moderated ),
- number_format_i18n( $counts->moderated )
- ),
- 'comment_link' => $comment_link,
- ),
- )
- );
- $x->send();
- }
-
- $total += $delta;
- if ( $total < 0 ) {
- $total = 0;
- }
-
- // Only do the expensive stuff on a page-break, and about 1 other time per page
- if ( 0 == $total % $per_page || 1 == mt_rand( 1, $per_page ) ) {
- $post_id = 0;
- // What type of comment count are we looking for?
- $status = 'all';
- $parsed = parse_url( $url );
-
- if ( isset( $parsed['query'] ) ) {
- parse_str( $parsed['query'], $query_vars );
-
- if ( ! empty( $query_vars['comment_status'] ) ) {
- $status = $query_vars['comment_status'];
- }
-
- if ( ! empty( $query_vars['p'] ) ) {
- $post_id = (int) $query_vars['p'];
- }
-
- if ( ! empty( $query_vars['comment_type'] ) ) {
- $type = $query_vars['comment_type'];
- }
- }
-
- if ( empty( $type ) ) {
- // Only use the comment count if not filtering by a comment_type.
- $comment_count = wp_count_comments( $post_id );
-
- // We're looking for a known type of comment count.
- if ( isset( $comment_count->$status ) ) {
- $total = $comment_count->$status;
- }
- }
- // Else use the decremented value from above.
- }
-
- // The time since the last comment count.
- $time = time();
- $comment = get_comment( $comment_id );
- $counts = wp_count_comments();
-
- $x = new WP_Ajax_Response(
- array(
- 'what' => 'comment',
- 'id' => $comment_id,
- 'supplemental' => array(
- 'status' => $comment ? $comment->comment_approved : '',
- 'postId' => $comment ? $comment->comment_post_ID : '',
- /* translators: %s: Number of comments. */
- 'total_items_i18n' => sprintf( _n( '%s item', '%s items', $total ), number_format_i18n( $total ) ),
- 'total_pages' => ceil( $total / $per_page ),
- 'total_pages_i18n' => number_format_i18n( ceil( $total / $per_page ) ),
- 'total' => $total,
- 'time' => $time,
- 'in_moderation' => $counts->moderated,
- 'i18n_moderation_text' => sprintf(
- /* translators: %s: Number of comments. */
- _n( '%s Comment in moderation', '%s Comments in moderation', $counts->moderated ),
- number_format_i18n( $counts->moderated )
- ),
- ),
- )
- );
- $x->send();
-}
-
-//
-// POST-based Ajax handlers.
-//
-
-/**
- * Ajax handler for adding a hierarchical term.
- *
- * @access private
- * @since 3.1.0
- */
-function _wp_ajax_add_hierarchical_term() {
- $action = $_POST['action'];
- $taxonomy = get_taxonomy( substr( $action, 4 ) );
- check_ajax_referer( $action, '_ajax_nonce-add-' . $taxonomy->name );
-
- if ( ! current_user_can( $taxonomy->cap->edit_terms ) ) {
- wp_die( -1 );
- }
-
- $names = explode( ',', $_POST[ 'new' . $taxonomy->name ] );
- $parent = isset( $_POST[ 'new' . $taxonomy->name . '_parent' ] ) ? (int) $_POST[ 'new' . $taxonomy->name . '_parent' ] : 0;
-
- if ( 0 > $parent ) {
- $parent = 0;
- }
-
- if ( $taxonomy->name == 'category' ) {
- $post_category = isset( $_POST['post_category'] ) ? (array) $_POST['post_category'] : array();
- } else {
- $post_category = ( isset( $_POST['tax_input'] ) && isset( $_POST['tax_input'][ $taxonomy->name ] ) ) ? (array) $_POST['tax_input'][ $taxonomy->name ] : array();
- }
-
- $checked_categories = array_map( 'absint', (array) $post_category );
- $popular_ids = wp_popular_terms_checklist( $taxonomy->name, 0, 10, false );
-
- foreach ( $names as $cat_name ) {
- $cat_name = trim( $cat_name );
- $category_nicename = sanitize_title( $cat_name );
-
- if ( '' === $category_nicename ) {
- continue;
- }
-
- $cat_id = wp_insert_term( $cat_name, $taxonomy->name, array( 'parent' => $parent ) );
-
- if ( ! $cat_id || is_wp_error( $cat_id ) ) {
- continue;
- } else {
- $cat_id = $cat_id['term_id'];
- }
-
- $checked_categories[] = $cat_id;
-
- if ( $parent ) { // Do these all at once in a second
- continue;
- }
-
- ob_start();
-
- wp_terms_checklist(
- 0,
- array(
- 'taxonomy' => $taxonomy->name,
- 'descendants_and_self' => $cat_id,
- 'selected_cats' => $checked_categories,
- 'popular_cats' => $popular_ids,
- )
- );
-
- $data = ob_get_clean();
-
- $add = array(
- 'what' => $taxonomy->name,
- 'id' => $cat_id,
- 'data' => str_replace( array( "\n", "\t" ), '', $data ),
- 'position' => -1,
- );
- }
-
- if ( $parent ) { // Foncy - replace the parent and all its children
- $parent = get_term( $parent, $taxonomy->name );
- $term_id = $parent->term_id;
-
- while ( $parent->parent ) { // get the top parent
- $parent = get_term( $parent->parent, $taxonomy->name );
- if ( is_wp_error( $parent ) ) {
- break;
- }
- $term_id = $parent->term_id;
- }
-
- ob_start();
-
- wp_terms_checklist(
- 0,
- array(
- 'taxonomy' => $taxonomy->name,
- 'descendants_and_self' => $term_id,
- 'selected_cats' => $checked_categories,
- 'popular_cats' => $popular_ids,
- )
- );
-
- $data = ob_get_clean();
-
- $add = array(
- 'what' => $taxonomy->name,
- 'id' => $term_id,
- 'data' => str_replace( array( "\n", "\t" ), '', $data ),
- 'position' => -1,
- );
- }
-
- ob_start();
-
- wp_dropdown_categories(
- array(
- 'taxonomy' => $taxonomy->name,
- 'hide_empty' => 0,
- 'name' => 'new' . $taxonomy->name . '_parent',
- 'orderby' => 'name',
- 'hierarchical' => 1,
- 'show_option_none' => '&mdash; ' . $taxonomy->labels->parent_item . ' &mdash;',
- )
- );
-
- $sup = ob_get_clean();
-
- $add['supplemental'] = array( 'newcat_parent' => $sup );
-
- $x = new WP_Ajax_Response( $add );
- $x->send();
-}
-
-/**
- * Ajax handler for deleting a comment.
- *
- * @since 3.1.0
- */
-function wp_ajax_delete_comment() {
- $id = isset( $_POST['id'] ) ? (int) $_POST['id'] : 0;
-
- $comment = get_comment( $id );
-
- if ( ! $comment ) {
- wp_die( time() );
- }
-
- if ( ! current_user_can( 'edit_comment', $comment->comment_ID ) ) {
- wp_die( -1 );
- }
-
- check_ajax_referer( "delete-comment_$id" );
- $status = wp_get_comment_status( $comment );
- $delta = -1;
-
- if ( isset( $_POST['trash'] ) && 1 == $_POST['trash'] ) {
- if ( 'trash' == $status ) {
- wp_die( time() );
- }
-
- $r = wp_trash_comment( $comment );
- } elseif ( isset( $_POST['untrash'] ) && 1 == $_POST['untrash'] ) {
- if ( 'trash' != $status ) {
- wp_die( time() );
- }
-
- $r = wp_untrash_comment( $comment );
-
- if ( ! isset( $_POST['comment_status'] ) || $_POST['comment_status'] != 'trash' ) { // undo trash, not in trash
- $delta = 1;
- }
- } elseif ( isset( $_POST['spam'] ) && 1 == $_POST['spam'] ) {
- if ( 'spam' == $status ) {
- wp_die( time() );
- }
-
- $r = wp_spam_comment( $comment );
- } elseif ( isset( $_POST['unspam'] ) && 1 == $_POST['unspam'] ) {
- if ( 'spam' != $status ) {
- wp_die( time() );
- }
-
- $r = wp_unspam_comment( $comment );
-
- if ( ! isset( $_POST['comment_status'] ) || $_POST['comment_status'] != 'spam' ) { // undo spam, not in spam
- $delta = 1;
- }
- } elseif ( isset( $_POST['delete'] ) && 1 == $_POST['delete'] ) {
- $r = wp_delete_comment( $comment );
- } else {
- wp_die( -1 );
- }
-
- if ( $r ) { // Decide if we need to send back '1' or a more complicated response including page links and comment counts
- _wp_ajax_delete_comment_response( $comment->comment_ID, $delta );
- }
-
- wp_die( 0 );
-}
-
-/**
- * Ajax handler for deleting a tag.
- *
- * @since 3.1.0
- */
-function wp_ajax_delete_tag() {
- $tag_id = (int) $_POST['tag_ID'];
- check_ajax_referer( "delete-tag_$tag_id" );
-
- if ( ! current_user_can( 'delete_term', $tag_id ) ) {
- wp_die( -1 );
- }
-
- $taxonomy = ! empty( $_POST['taxonomy'] ) ? $_POST['taxonomy'] : 'post_tag';
- $tag = get_term( $tag_id, $taxonomy );
-
- if ( ! $tag || is_wp_error( $tag ) ) {
- wp_die( 1 );
- }
-
- if ( wp_delete_term( $tag_id, $taxonomy ) ) {
- wp_die( 1 );
- } else {
- wp_die( 0 );
- }
-}
-
-/**
- * Ajax handler for deleting a link.
- *
- * @since 3.1.0
- */
-function wp_ajax_delete_link() {
- $id = isset( $_POST['id'] ) ? (int) $_POST['id'] : 0;
-
- check_ajax_referer( "delete-bookmark_$id" );
-
- if ( ! current_user_can( 'manage_links' ) ) {
- wp_die( -1 );
- }
-
- $link = get_bookmark( $id );
- if ( ! $link || is_wp_error( $link ) ) {
- wp_die( 1 );
- }
-
- if ( wp_delete_link( $id ) ) {
- wp_die( 1 );
- } else {
- wp_die( 0 );
- }
-}
-
-/**
- * Ajax handler for deleting meta.
- *
- * @since 3.1.0
- */
-function wp_ajax_delete_meta() {
- $id = isset( $_POST['id'] ) ? (int) $_POST['id'] : 0;
-
- check_ajax_referer( "delete-meta_$id" );
- $meta = get_metadata_by_mid( 'post', $id );
-
- if ( ! $meta ) {
- wp_die( 1 );
- }
-
- if ( is_protected_meta( $meta->meta_key, 'post' ) || ! current_user_can( 'delete_post_meta', $meta->post_id, $meta->meta_key ) ) {
- wp_die( -1 );
- }
-
- if ( delete_meta( $meta->meta_id ) ) {
- wp_die( 1 );
- }
-
- wp_die( 0 );
-}
-
-/**
- * Ajax handler for deleting a post.
- *
- * @since 3.1.0
- *
- * @param string $action Action to perform.
- */
-function wp_ajax_delete_post( $action ) {
- if ( empty( $action ) ) {
- $action = 'delete-post';
- }
-
- $id = isset( $_POST['id'] ) ? (int) $_POST['id'] : 0;
- check_ajax_referer( "{$action}_$id" );
-
- if ( ! current_user_can( 'delete_post', $id ) ) {
- wp_die( -1 );
- }
-
- if ( ! get_post( $id ) ) {
- wp_die( 1 );
- }
-
- if ( wp_delete_post( $id ) ) {
- wp_die( 1 );
- } else {
- wp_die( 0 );
- }
-}
-
-/**
- * Ajax handler for sending a post to the trash.
- *
- * @since 3.1.0
- *
- * @param string $action Action to perform.
- */
-function wp_ajax_trash_post( $action ) {
- if ( empty( $action ) ) {
- $action = 'trash-post';
- }
-
- $id = isset( $_POST['id'] ) ? (int) $_POST['id'] : 0;
- check_ajax_referer( "{$action}_$id" );
-
- if ( ! current_user_can( 'delete_post', $id ) ) {
- wp_die( -1 );
- }
-
- if ( ! get_post( $id ) ) {
- wp_die( 1 );
- }
-
- if ( 'trash-post' == $action ) {
- $done = wp_trash_post( $id );
- } else {
- $done = wp_untrash_post( $id );
- }
-
- if ( $done ) {
- wp_die( 1 );
- }
-
- wp_die( 0 );
-}
-
-/**
- * Ajax handler to restore a post from the trash.
- *
- * @since 3.1.0
- *
- * @param string $action Action to perform.
- */
-function wp_ajax_untrash_post( $action ) {
- if ( empty( $action ) ) {
- $action = 'untrash-post';
- }
-
- wp_ajax_trash_post( $action );
-}
-
-/**
- * Ajax handler to delete a page.
- *
- * @since 3.1.0
- *
- * @param string $action Action to perform.
- */
-function wp_ajax_delete_page( $action ) {
- if ( empty( $action ) ) {
- $action = 'delete-page';
- }
-
- $id = isset( $_POST['id'] ) ? (int) $_POST['id'] : 0;
- check_ajax_referer( "{$action}_$id" );
-
- if ( ! current_user_can( 'delete_page', $id ) ) {
- wp_die( -1 );
- }
-
- if ( ! get_post( $id ) ) {
- wp_die( 1 );
- }
-
- if ( wp_delete_post( $id ) ) {
- wp_die( 1 );
- } else {
- wp_die( 0 );
- }
-}
-
-/**
- * Ajax handler to dim a comment.
- *
- * @since 3.1.0
- */
-function wp_ajax_dim_comment() {
- $id = isset( $_POST['id'] ) ? (int) $_POST['id'] : 0;
- $comment = get_comment( $id );
-
- if ( ! $comment ) {
- $x = new WP_Ajax_Response(
- array(
- 'what' => 'comment',
- 'id' => new WP_Error(
- 'invalid_comment',
- /* translators: %d: Comment ID. */
- sprintf( __( 'Comment %d does not exist' ), $id )
- ),
- )
- );
- $x->send();
- }
-
- if ( ! current_user_can( 'edit_comment', $comment->comment_ID ) && ! current_user_can( 'moderate_comments' ) ) {
- wp_die( -1 );
- }
-
- $current = wp_get_comment_status( $comment );
-
- if ( isset( $_POST['new'] ) && $_POST['new'] == $current ) {
- wp_die( time() );
- }
-
- check_ajax_referer( "approve-comment_$id" );
-
- if ( in_array( $current, array( 'unapproved', 'spam' ) ) ) {
- $result = wp_set_comment_status( $comment, 'approve', true );
- } else {
- $result = wp_set_comment_status( $comment, 'hold', true );
- }
-
- if ( is_wp_error( $result ) ) {
- $x = new WP_Ajax_Response(
- array(
- 'what' => 'comment',
- 'id' => $result,
- )
- );
- $x->send();
- }
-
- // Decide if we need to send back '1' or a more complicated response including page links and comment counts
- _wp_ajax_delete_comment_response( $comment->comment_ID );
- wp_die( 0 );
-}
-
-/**
- * Ajax handler for adding a link category.
- *
- * @since 3.1.0
- *
- * @param string $action Action to perform.
- */
-function wp_ajax_add_link_category( $action ) {
- if ( empty( $action ) ) {
- $action = 'add-link-category';
- }
-
- check_ajax_referer( $action );
- $tax = get_taxonomy( 'link_category' );
-
- if ( ! current_user_can( $tax->cap->manage_terms ) ) {
- wp_die( -1 );
- }
-
- $names = explode( ',', wp_unslash( $_POST['newcat'] ) );
- $x = new WP_Ajax_Response();
-
- foreach ( $names as $cat_name ) {
- $cat_name = trim( $cat_name );
- $slug = sanitize_title( $cat_name );
-
- if ( '' === $slug ) {
- continue;
- }
-
- $cat_id = wp_insert_term( $cat_name, 'link_category' );
-
- if ( ! $cat_id || is_wp_error( $cat_id ) ) {
- continue;
- } else {
- $cat_id = $cat_id['term_id'];
- }
-
- $cat_name = esc_html( $cat_name );
-
- $x->add(
- array(
- 'what' => 'link-category',
- 'id' => $cat_id,
- '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>",
- 'position' => -1,
- )
- );
- }
- $x->send();
-}
-
-/**
- * Ajax handler to add a tag.
- *
- * @since 3.1.0
- */
-function wp_ajax_add_tag() {
- check_ajax_referer( 'add-tag', '_wpnonce_add-tag' );
- $taxonomy = ! empty( $_POST['taxonomy'] ) ? $_POST['taxonomy'] : 'post_tag';
- $tax = get_taxonomy( $taxonomy );
-
- if ( ! current_user_can( $tax->cap->edit_terms ) ) {
- wp_die( -1 );
- }
-
- $x = new WP_Ajax_Response();
-
- $tag = wp_insert_term( $_POST['tag-name'], $taxonomy, $_POST );
-
- if ( $tag && ! is_wp_error( $tag ) ) {
- $tag = get_term( $tag['term_id'], $taxonomy );
- }
-
- if ( ! $tag || is_wp_error( $tag ) ) {
- $message = __( 'An error has occurred. Please reload the page and try again.' );
-
- if ( is_wp_error( $tag ) && $tag->get_error_message() ) {
- $message = $tag->get_error_message();
- }
-
- $x->add(
- array(
- 'what' => 'taxonomy',
- 'data' => new WP_Error( 'error', $message ),
- )
- );
- $x->send();
- }
-
- $wp_list_table = _get_list_table( 'WP_Terms_List_Table', array( 'screen' => $_POST['screen'] ) );
-
- $level = 0;
- $noparents = '';
-
- if ( is_taxonomy_hierarchical( $taxonomy ) ) {
- $level = count( get_ancestors( $tag->term_id, $taxonomy, 'taxonomy' ) );
- ob_start();
- $wp_list_table->single_row( $tag, $level );
- $noparents = ob_get_clean();
- }
-
- ob_start();
- $wp_list_table->single_row( $tag );
- $parents = ob_get_clean();
-
- $x->add(
- array(
- 'what' => 'taxonomy',
- 'supplemental' => compact( 'parents', 'noparents' ),
- )
- );
-
- $x->add(
- array(
- 'what' => 'term',
- 'position' => $level,
- 'supplemental' => (array) $tag,
- )
- );
-
- $x->send();
-}
-
-/**
- * Ajax handler for getting a tagcloud.
- *
- * @since 3.1.0
- */
-function wp_ajax_get_tagcloud() {
- if ( ! isset( $_POST['tax'] ) ) {
- wp_die( 0 );
- }
-
- $taxonomy = sanitize_key( $_POST['tax'] );
- $tax = get_taxonomy( $taxonomy );
-
- if ( ! $tax ) {
- wp_die( 0 );
- }
-
- if ( ! current_user_can( $tax->cap->assign_terms ) ) {
- wp_die( -1 );
- }
-
- $tags = get_terms(
- array(
- 'taxonomy' => $taxonomy,
- 'number' => 45,
- 'orderby' => 'count',
- 'order' => 'DESC',
- )
- );
-
- if ( empty( $tags ) ) {
- wp_die( $tax->labels->not_found );
- }
-
- if ( is_wp_error( $tags ) ) {
- wp_die( $tags->get_error_message() );
- }
-
- foreach ( $tags as $key => $tag ) {
- $tags[ $key ]->link = '#';
- $tags[ $key ]->id = $tag->term_id;
- }
-
- // We need raw tag names here, so don't filter the output
- $return = wp_generate_tag_cloud(
- $tags,
- array(
- 'filter' => 0,
- 'format' => 'list',
- )
- );
-
- if ( empty( $return ) ) {
- wp_die( 0 );
- }
-
- echo $return;
- wp_die();
-}
-
-/**
- * Ajax handler for getting comments.
- *
- * @since 3.1.0
- *
- * @global int $post_id
- *
- * @param string $action Action to perform.
- */
-function wp_ajax_get_comments( $action ) {
- global $post_id;
-
- if ( empty( $action ) ) {
- $action = 'get-comments';
- }
-
- check_ajax_referer( $action );
-
- if ( empty( $post_id ) && ! empty( $_REQUEST['p'] ) ) {
- $id = absint( $_REQUEST['p'] );
- if ( ! empty( $id ) ) {
- $post_id = $id;
- }
- }
-
- if ( empty( $post_id ) ) {
- wp_die( -1 );
- }
-
- $wp_list_table = _get_list_table( 'WP_Post_Comments_List_Table', array( 'screen' => 'edit-comments' ) );
-
- if ( ! current_user_can( 'edit_post', $post_id ) ) {
- wp_die( -1 );
- }
-
- $wp_list_table->prepare_items();
-
- if ( ! $wp_list_table->has_items() ) {
- wp_die( 1 );
- }
-
- $x = new WP_Ajax_Response();
-
- ob_start();
- foreach ( $wp_list_table->items as $comment ) {
- if ( ! current_user_can( 'edit_comment', $comment->comment_ID ) && 0 === $comment->comment_approved ) {
- continue;
- }
- get_comment( $comment );
- $wp_list_table->single_row( $comment );
- }
- $comment_list_item = ob_get_clean();