123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396 |
- <?php
- /**
- * Comment API: WP_Comment class
- *
- * @package WordPress
- * @subpackage Comments
- * @since 4.4.0
- */
- /**
- * Core class used to organize comments as instantiated objects with defined members.
- *
- * @since 4.4.0
- */
- final class WP_Comment {
- /**
- * Comment ID.
- *
- * @since 4.4.0
- * @access public
- * @var int
- */
- public $comment_ID;
- /**
- * ID of the post the comment is associated with.
- *
- * @since 4.4.0
- * @access public
- * @var int
- */
- public $comment_post_ID = 0;
- /**
- * Comment author name.
- *
- * @since 4.4.0
- * @access public
- * @var string
- */
- public $comment_author = '';
- /**
- * Comment author email address.
- *
- * @since 4.4.0
- * @access public
- * @var string
- */
- public $comment_author_email = '';
- /**
- * Comment author URL.
- *
- * @since 4.4.0
- * @access public
- * @var string
- */
- public $comment_author_url = '';
- /**
- * Comment author IP address (IPv4 format).
- *
- * @since 4.4.0
- * @access public
- * @var string
- */
- public $comment_author_IP = '';
- /**
- * Comment date in YYYY-MM-DD HH:MM:SS format.
- *
- * @since 4.4.0
- * @access public
- * @var string
- */
- public $comment_date = '0000-00-00 00:00:00';
- /**
- * Comment GMT date in YYYY-MM-DD HH::MM:SS format.
- *
- * @since 4.4.0
- * @access public
- * @var string
- */
- public $comment_date_gmt = '0000-00-00 00:00:00';
- /**
- * Comment content.
- *
- * @since 4.4.0
- * @access public
- * @var string
- */
- public $comment_content;
- /**
- * Comment karma count.
- *
- * @since 4.4.0
- * @access public
- * @var int
- */
- public $comment_karma = 0;
- /**
- * Comment approval status.
- *
- * @since 4.4.0
- * @access public
- * @var string
- */
- public $comment_approved = '1';
- /**
- * Comment author HTTP user agent.
- *
- * @since 4.4.0
- * @access public
- * @var string
- */
- public $comment_agent = '';
- /**
- * Comment type.
- *
- * @since 4.4.0
- * @access public
- * @var string
- */
- public $comment_type = '';
- /**
- * Parent comment ID.
- *
- * @since 4.4.0
- * @access public
- * @var int
- */
- public $comment_parent = 0;
- /**
- * Comment author ID.
- *
- * @since 4.4.0
- * @access public
- * @var int
- */
- public $user_id = 0;
- /**
- * Comment children.
- *
- * @since 4.4.0
- * @access protected
- * @var array
- */
- protected $children;
- /**
- * Whether children have been populated for this comment object.
- *
- * @since 4.4.0
- * @access protected
- * @var bool
- */
- protected $populated_children = false;
- /**
- * Post fields.
- *
- * @since 4.4.0
- * @access protected
- * @var array
- */
- protected $post_fields = array( 'post_author', 'post_date', 'post_date_gmt', 'post_content', 'post_title', 'post_excerpt', 'post_status', 'comment_status', 'ping_status', 'post_name', 'to_ping', 'pinged', 'post_modified', 'post_modified_gmt', 'post_content_filtered', 'post_parent', 'guid', 'menu_order', 'post_type', 'post_mime_type', 'comment_count' );
- /**
- * Retrieves a WP_Comment instance.
- *
- * @since 4.4.0
- * @access public
- * @static
- *
- * @global wpdb $wpdb WordPress database abstraction object.
- *
- * @param int $id Comment ID.
- * @return WP_Comment|false Comment object, otherwise false.
- */
- public static function get_instance( $id ) {
- global $wpdb;
- $comment_id = (int) $id;
- if ( ! $comment_id ) {
- return false;
- }
- $_comment = wp_cache_get( $comment_id, 'comment' );
- if ( ! $_comment ) {
- $_comment = $wpdb->get_row( $wpdb->prepare( "SELECT * FROM $wpdb->comments WHERE comment_ID = %d LIMIT 1", $comment_id ) );
- if ( ! $_comment ) {
- return false;
- }
- wp_cache_add( $_comment->comment_ID, $_comment, 'comment' );
- }
- return new WP_Comment( $_comment );
- }
- /**
- * Constructor.
- *
- * Populates properties with object vars.
- *
- * @since 4.4.0
- * @access public
- *
- * @param WP_Comment $comment Comment object.
- */
- public function __construct( $comment ) {
- foreach ( get_object_vars( $comment ) as $key => $value ) {
- $this->$key = $value;
- }
- }
- /**
- * Convert object to array.
- *
- * @since 4.4.0
- * @access public
- *
- * @return array Object as array.
- */
- public function to_array() {
- return get_object_vars( $this );
- }
- /**
- * Get the children of a comment.
- *
- * @since 4.4.0
- * @access public
- *
- * @param array $args {
- * Array of arguments used to pass to get_comments() and determine format.
- *
- * @type string $format Return value format. 'tree' for a hierarchical tree, 'flat' for a flattened array.
- * Default 'tree'.
- * @type string $status Comment status to limit results by. Accepts 'hold' (`comment_status=0`),
- * 'approve' (`comment_status=1`), 'all', or a custom comment status.
- * Default 'all'.
- * @type string $hierarchical Whether to include comment descendants in the results.
- * 'threaded' returns a tree, with each comment's children
- * stored in a `children` property on the `WP_Comment` object.
- * 'flat' returns a flat array of found comments plus their children.
- * Pass `false` to leave out descendants.
- * The parameter is ignored (forced to `false`) when `$fields` is 'ids' or 'counts'.
- * Accepts 'threaded', 'flat', or false. Default: 'threaded'.
- * @type string|array $orderby Comment status or array of statuses. To use 'meta_value'
- * or 'meta_value_num', `$meta_key` must also be defined.
- * To sort by a specific `$meta_query` clause, use that
- * clause's array key. Accepts 'comment_agent',
- * 'comment_approved', 'comment_author',
- * 'comment_author_email', 'comment_author_IP',
- * 'comment_author_url', 'comment_content', 'comment_date',
- * 'comment_date_gmt', 'comment_ID', 'comment_karma',
- * 'comment_parent', 'comment_post_ID', 'comment_type',
- * 'user_id', 'comment__in', 'meta_value', 'meta_value_num',
- * the value of $meta_key, and the array keys of
- * `$meta_query`. Also accepts false, an empty array, or
- * 'none' to disable `ORDER BY` clause.
- * }
- * @return array Array of `WP_Comment` objects.
- */
- public function get_children( $args = array() ) {
- $defaults = array(
- 'format' => 'tree',
- 'status' => 'all',
- 'hierarchical' => 'threaded',
- 'orderby' => '',
- );
- $_args = wp_parse_args( $args, $defaults );
- $_args['parent'] = $this->comment_ID;
- if ( is_null( $this->children ) ) {
- if ( $this->populated_children ) {
- $this->children = array();
- } else {
- $this->children = get_comments( $_args );
- }
- }
- if ( 'flat' === $_args['format'] ) {
- $children = array();
- foreach ( $this->children as $child ) {
- $child_args = $_args;
- $child_args['format'] = 'flat';
- // get_children() resets this value automatically.
- unset( $child_args['parent'] );
- $children = array_merge( $children, array( $child ), $child->get_children( $child_args ) );
- }
- } else {
- $children = $this->children;
- }
- return $children;
- }
- /**
- * Add a child to the comment.
- *
- * Used by `WP_Comment_Query` when bulk-filling descendants.
- *
- * @since 4.4.0
- * @access public
- *
- * @param WP_Comment $child Child comment.
- */
- public function add_child( WP_Comment $child ) {
- $this->children[ $child->comment_ID ] = $child;
- }
- /**
- * Get a child comment by ID.
- *
- * @since 4.4.0
- * @access public
- *
- * @param int $child_id ID of the child.
- * @return WP_Comment|bool Returns the comment object if found, otherwise false.
- */
- public function get_child( $child_id ) {
- if ( isset( $this->children[ $child_id ] ) ) {
- return $this->children[ $child_id ];
- }
- return false;
- }
- /**
- * Set the 'populated_children' flag.
- *
- * This flag is important for ensuring that calling `get_children()` on a childless comment will not trigger
- * unneeded database queries.
- *
- * @since 4.4.0
- *
- * @param bool $set Whether the comment's children have already been populated.
- */
- public function populated_children( $set ) {
- $this->populated_children = (bool) $set;
- }
- /**
- * Check whether a non-public property is set.
- *
- * If `$name` matches a post field, the comment post will be loaded and the post's value checked.
- *
- * @since 4.4.0
- * @access public
- *
- * @param string $name Property name.
- * @return bool
- */
- public function __isset( $name ) {
- if ( in_array( $name, $this->post_fields ) && 0 !== (int) $this->comment_post_ID ) {
- $post = get_post( $this->comment_post_ID );
- return property_exists( $post, $name );
- }
- }
- /**
- * Magic getter.
- *
- * If `$name` matches a post field, the comment post will be loaded and the post's value returned.
- *
- * @since 4.4.0
- * @access public
- *
- * @param string $name
- * @return mixed
- */
- public function __get( $name ) {
- if ( in_array( $name, $this->post_fields ) ) {
- $post = get_post( $this->comment_post_ID );
- return $post->$name;
- }
- }
- }
|