home *** CD-ROM | disk | FTP | other *** search
/ HTML Examples / WP.iso / wordpress / wp-includes / class-wp-ajax-response.php < prev    next >
Encoding:
PHP Script  |  2017-07-26  |  4.9 KB  |  157 lines

  1. <?php
  2. /**
  3.  * Send XML response back to Ajax request.
  4.  *
  5.  * @package WordPress
  6.  * @since 2.1.0
  7.  */
  8. class WP_Ajax_Response {
  9.     /**
  10.      * Store XML responses to send.
  11.      *
  12.      * @since 2.1.0
  13.      * @var array
  14.      */
  15.     public $responses = array();
  16.  
  17.     /**
  18.      * Constructor - Passes args to WP_Ajax_Response::add().
  19.      *
  20.      * @since 2.1.0
  21.      * @see WP_Ajax_Response::add()
  22.      *
  23.      * @param string|array $args Optional. Will be passed to add() method.
  24.      */
  25.     public function __construct( $args = '' ) {
  26.         if ( !empty($args) )
  27.             $this->add($args);
  28.     }
  29.  
  30.     /**
  31.      * Appends data to an XML response based on given arguments.
  32.      *
  33.      * With `$args` defaults, extra data output would be:
  34.      *
  35.      *     <response action='{$action}_$id'>
  36.      *      <$what id='$id' position='$position'>
  37.      *          <response_data><![CDATA[$data]]></response_data>
  38.      *      </$what>
  39.      *     </response>
  40.      *
  41.      * @since 2.1.0
  42.      *
  43.      * @param string|array $args {
  44.      *     Optional. An array or string of XML response arguments.
  45.      *
  46.      *     @type string          $what         XML-RPC response type. Used as a child element of `<response>`.
  47.      *                                         Default 'object' (`<object>`).
  48.      *     @type string|false    $action       Value to use for the `action` attribute in `<response>`. Will be
  49.      *                                         appended with `_$id` on output. If false, `$action` will default to
  50.      *                                         the value of `$_POST['action']`. Default false.
  51.      *     @type int|WP_Error    $id           The response ID, used as the response type `id` attribute. Also
  52.      *                                         accepts a `WP_Error` object if the ID does not exist. Default 0.
  53.      *     @type int|false       $old_id       The previous response ID. Used as the value for the response type
  54.      *                                         `old_id` attribute. False hides the attribute. Default false.
  55.      *     @type string          $position     Value of the response type `position` attribute. Accepts 1 (bottom),
  56.      *                                         -1 (top), html ID (after), or -html ID (before). Default 1 (bottom).
  57.      *     @type string|WP_Error $data         The response content/message. Also accepts a WP_Error object if the
  58.      *                                         ID does not exist. Default empty.
  59.      *     @type array           $supplemental An array of extra strings that will be output within a `<supplemental>`
  60.      *                                         element as CDATA. Default empty array.
  61.      * }
  62.      * @return string XML response.
  63.      */
  64.     public function add( $args = '' ) {
  65.         $defaults = array(
  66.             'what' => 'object', 'action' => false,
  67.             'id' => '0', 'old_id' => false,
  68.             'position' => 1,
  69.             'data' => '', 'supplemental' => array()
  70.         );
  71.  
  72.         $r = wp_parse_args( $args, $defaults );
  73.  
  74.         $position = preg_replace( '/[^a-z0-9:_-]/i', '', $r['position'] );
  75.         $id = $r['id'];
  76.         $what = $r['what'];
  77.         $action = $r['action'];
  78.         $old_id = $r['old_id'];
  79.         $data = $r['data'];
  80.  
  81.         if ( is_wp_error( $id ) ) {
  82.             $data = $id;
  83.             $id = 0;
  84.         }
  85.  
  86.         $response = '';
  87.         if ( is_wp_error( $data ) ) {
  88.             foreach ( (array) $data->get_error_codes() as $code ) {
  89.                 $response .= "<wp_error code='$code'><![CDATA[" . $data->get_error_message( $code ) . "]]></wp_error>";
  90.                 if ( ! $error_data = $data->get_error_data( $code ) ) {
  91.                     continue;
  92.                 }
  93.                 $class = '';
  94.                 if ( is_object( $error_data ) ) {
  95.                     $class = ' class="' . get_class( $error_data ) . '"';
  96.                     $error_data = get_object_vars( $error_data );
  97.                 }
  98.  
  99.                 $response .= "<wp_error_data code='$code'$class>";
  100.  
  101.                 if ( is_scalar( $error_data ) ) {
  102.                     $response .= "<![CDATA[$error_data]]>";
  103.                 } elseif ( is_array( $error_data ) ) {
  104.                     foreach ( $error_data as $k => $v ) {
  105.                         $response .= "<$k><![CDATA[$v]]></$k>";
  106.                     }
  107.                 }
  108.  
  109.                 $response .= "</wp_error_data>";
  110.             }
  111.         } else {
  112.             $response = "<response_data><![CDATA[$data]]></response_data>";
  113.         }
  114.  
  115.         $s = '';
  116.         if ( is_array( $r['supplemental'] ) ) {
  117.             foreach ( $r['supplemental'] as $k => $v ) {
  118.                 $s .= "<$k><![CDATA[$v]]></$k>";
  119.             }
  120.             $s = "<supplemental>$s</supplemental>";
  121.         }
  122.  
  123.         if ( false === $action ) {
  124.             $action = $_POST['action'];
  125.         }
  126.         $x = '';
  127.         $x .= "<response action='{$action}_$id'>"; // The action attribute in the xml output is formatted like a nonce action
  128.         $x .=    "<$what id='$id' " . ( false === $old_id ? '' : "old_id='$old_id' " ) . "position='$position'>";
  129.         $x .=        $response;
  130.         $x .=        $s;
  131.         $x .=    "</$what>";
  132.         $x .= "</response>";
  133.  
  134.         $this->responses[] = $x;
  135.         return $x;
  136.     }
  137.  
  138.     /**
  139.      * Display XML formatted responses.
  140.      *
  141.      * Sets the content type header to text/xml.
  142.      *
  143.      * @since 2.1.0
  144.      */
  145.     public function send() {
  146.         header( 'Content-Type: text/xml; charset=' . get_option( 'blog_charset' ) );
  147.         echo "<?xml version='1.0' encoding='" . get_option( 'blog_charset' ) . "' standalone='yes'?><wp_ajax>";
  148.         foreach ( (array) $this->responses as $response )
  149.             echo $response;
  150.         echo '</wp_ajax>';
  151.         if ( wp_doing_ajax() )
  152.             wp_die();
  153.         else
  154.             die();
  155.     }
  156. }
  157.