wordpress  3.5.1
About: WordPress is a blogging system that has evolved to a full content management system.
  Fossies Dox: wordpress-3.5.1.tar.gz  ("inofficial" and yet experimental doxygen-generated source code documentation)  

 All Classes Namespaces Files Functions Variables Typedefs Pages
comment.php
Go to the documentation of this file.
1 <?php
41 function check_comment($author, $email, $url, $comment, $user_ip, $user_agent, $comment_type) {
42  global $wpdb;
43 
44  if ( 1 == get_option('comment_moderation') )
45  return false; // If moderation is set to manual
46 
47  $comment = apply_filters( 'comment_text', $comment );
48 
49  // Check # of external links
50  if ( $max_links = get_option( 'comment_max_links' ) ) {
51  $num_links = preg_match_all( '/<a [^>]*href/i', $comment, $out );
52  $num_links = apply_filters( 'comment_max_links_url', $num_links, $url ); // provide for counting of $url as a link
53  if ( $num_links >= $max_links )
54  return false;
55  }
56 
57  $mod_keys = trim(get_option('moderation_keys'));
58  if ( !empty($mod_keys) ) {
59  $words = explode("\n", $mod_keys );
60 
61  foreach ( (array) $words as $word) {
62  $word = trim($word);
63 
64  // Skip empty lines
65  if ( empty($word) )
66  continue;
67 
68  // Do some escaping magic so that '#' chars in the
69  // spam words don't break things:
70  $word = preg_quote($word, '#');
71 
72  $pattern = "#$word#i";
73  if ( preg_match($pattern, $author) ) return false;
74  if ( preg_match($pattern, $email) ) return false;
75  if ( preg_match($pattern, $url) ) return false;
76  if ( preg_match($pattern, $comment) ) return false;
77  if ( preg_match($pattern, $user_ip) ) return false;
78  if ( preg_match($pattern, $user_agent) ) return false;
79  }
80  }
81 
82  // Comment whitelisting:
83  if ( 1 == get_option('comment_whitelist')) {
84  if ( 'trackback' != $comment_type && 'pingback' != $comment_type && $author != '' && $email != '' ) {
85  // expected_slashed ($author, $email)
86  $ok_to_comment = $wpdb->get_var("SELECT comment_approved FROM $wpdb->comments WHERE comment_author = '$author' AND comment_author_email = '$email' and comment_approved = '1' LIMIT 1");
87  if ( ( 1 == $ok_to_comment ) &&
88  ( empty($mod_keys) || false === strpos( $email, $mod_keys) ) )
89  return true;
90  else
91  return false;
92  } else {
93  return false;
94  }
95  }
96  return true;
97 }
98 
109  global $wpdb;
110  return $wpdb->get_results($wpdb->prepare("SELECT * FROM $wpdb->comments WHERE comment_post_ID = %d AND comment_approved = '1' ORDER BY comment_date", $post_id));
111 }
112 
130 function get_comment(&$comment, $output = OBJECT) {
131  global $wpdb;
132  $null = null;
133 
134  if ( empty($comment) ) {
135  if ( isset($GLOBALS['comment']) )
136  $_comment = & $GLOBALS['comment'];
137  else
138  $_comment = null;
139  } elseif ( is_object($comment) ) {
140  wp_cache_add($comment->comment_ID, $comment, 'comment');
141  $_comment = $comment;
142  } else {
143  if ( isset($GLOBALS['comment']) && ($GLOBALS['comment']->comment_ID == $comment) ) {
144  $_comment = & $GLOBALS['comment'];
145  } elseif ( ! $_comment = wp_cache_get($comment, 'comment') ) {
146  $_comment = $wpdb->get_row($wpdb->prepare("SELECT * FROM $wpdb->comments WHERE comment_ID = %d LIMIT 1", $comment));
147  if ( ! $_comment )
148  return $null;
149  wp_cache_add($_comment->comment_ID, $_comment, 'comment');
150  }
151  }
152 
153  $_comment = apply_filters('get_comment', $_comment);
154 
155  if ( $output == OBJECT ) {
156  return $_comment;
157  } elseif ( $output == ARRAY_A ) {
158  $__comment = get_object_vars($_comment);
159  return $__comment;
160  } elseif ( $output == ARRAY_N ) {
161  $__comment = array_values(get_object_vars($_comment));
162  return $__comment;
163  } else {
164  return $_comment;
165  }
166 }
167 
182 function get_comments( $args = '' ) {
183  $query = new WP_Comment_Query;
184  return $query->query( $args );
185 }
186 
200  var $meta_query = false;
201 
210  function query( $query_vars ) {
211  global $wpdb;
212 
213  $defaults = array(
214  'author_email' => '',
215  'ID' => '',
216  'karma' => '',
217  'number' => '',
218  'offset' => '',
219  'orderby' => '',
220  'order' => 'DESC',
221  'parent' => '',
222  'post_ID' => '',
223  'post_id' => 0,
224  'post_author' => '',
225  'post_name' => '',
226  'post_parent' => '',
227  'post_status' => '',
228  'post_type' => '',
229  'status' => '',
230  'type' => '',
231  'user_id' => '',
232  'search' => '',
233  'count' => false,
234  'meta_key' => '',
235  'meta_value' => '',
236  'meta_query' => '',
237  );
238 
239  $groupby = '';
240 
241  $this->query_vars = wp_parse_args( $query_vars, $defaults );
242 
243  // Parse meta query
244  $this->meta_query = new WP_Meta_Query();
245  $this->meta_query->parse_query_vars( $this->query_vars );
246 
247  do_action_ref_array( 'pre_get_comments', array( &$this ) );
248  extract( $this->query_vars, EXTR_SKIP );
249 
250  // $args can be whatever, only use the args defined in defaults to compute the key
251  $key = md5( serialize( compact(array_keys($defaults)) ) );
252  $last_changed = wp_cache_get( 'last_changed', 'comment' );
253  if ( ! $last_changed )
254  $last_changed = wp_cache_set( 'last_changed', 1, 'comment' );
255  $cache_key = "get_comments:$key:$last_changed";
256 
257  if ( $cache = wp_cache_get( $cache_key, 'comment' ) )
258  return $cache;
259 
261 
262  if ( 'hold' == $status )
263  $approved = "comment_approved = '0'";
264  elseif ( 'approve' == $status )
265  $approved = "comment_approved = '1'";
266  elseif ( ! empty( $status ) && 'all' != $status )
267  $approved = $wpdb->prepare( "comment_approved = %s", $status );
268  else
269  $approved = "( comment_approved = '0' OR comment_approved = '1' )";
270 
271  $order = ( 'ASC' == strtoupper($order) ) ? 'ASC' : 'DESC';
272 
273  if ( ! empty( $orderby ) ) {
274  $ordersby = is_array($orderby) ? $orderby : preg_split('/[,\s]/', $orderby);
275  $allowed_keys = array(
276  'comment_agent',
277  'comment_approved',
278  'comment_author',
279  'comment_author_email',
280  'comment_author_IP',
281  'comment_author_url',
282  'comment_content',
283  'comment_date',
284  'comment_date_gmt',
285  'comment_ID',
286  'comment_karma',
287  'comment_parent',
288  'comment_post_ID',
289  'comment_type',
290  'user_id',
291  );
292  if ( ! empty( $this->query_vars['meta_key'] ) ) {
293  $allowed_keys[] = $this->query_vars['meta_key'];
294  $allowed_keys[] = 'meta_value';
295  $allowed_keys[] = 'meta_value_num';
296  }
297  $ordersby = array_intersect( $ordersby, $allowed_keys );
298  foreach ( $ordersby as $key => $value ) {
299  if ( $value == $this->query_vars['meta_key'] || $value == 'meta_value' ) {
300  $ordersby[ $key ] = "$wpdb->commentmeta.meta_value";
301  } elseif ( $value == 'meta_value_num' ) {
302  $ordersby[ $key ] = "$wpdb->commentmeta.meta_value+0";
303  }
304  }
305  $orderby = empty( $ordersby ) ? 'comment_date_gmt' : implode(', ', $ordersby);
306  } else {
307  $orderby = 'comment_date_gmt';
308  }
309 
310  $number = absint($number);
311  $offset = absint($offset);
312 
313  if ( !empty($number) ) {
314  if ( $offset )
315  $limits = 'LIMIT ' . $offset . ',' . $number;
316  else
317  $limits = 'LIMIT ' . $number;
318  } else {
319  $limits = '';
320  }
321 
322  if ( $count )
323  $fields = 'COUNT(*)';
324  else
325  $fields = '*';
326 
327  $join = '';
328  $where = $approved;
329 
330  if ( ! empty($post_id) )
331  $where .= $wpdb->prepare( ' AND comment_post_ID = %d', $post_id );
332  if ( '' !== $author_email )
333  $where .= $wpdb->prepare( ' AND comment_author_email = %s', $author_email );
334  if ( '' !== $karma )
335  $where .= $wpdb->prepare( ' AND comment_karma = %d', $karma );
336  if ( 'comment' == $type ) {
337  $where .= " AND comment_type = ''";
338  } elseif( 'pings' == $type ) {
339  $where .= ' AND comment_type IN ("pingback", "trackback")';
340  } elseif ( ! empty( $type ) ) {
341  $where .= $wpdb->prepare( ' AND comment_type = %s', $type );
342  }
343  if ( '' !== $parent )
344  $where .= $wpdb->prepare( ' AND comment_parent = %d', $parent );
345  if ( '' !== $user_id )
346  $where .= $wpdb->prepare( ' AND user_id = %d', $user_id );
347  if ( '' !== $search )
348  $where .= $this->get_search_sql( $search, array( 'comment_author', 'comment_author_email', 'comment_author_url', 'comment_author_IP', 'comment_content' ) );
349 
350  $post_fields = array_filter( compact( array( 'post_author', 'post_name', 'post_parent', 'post_status', 'post_type', ) ) );
351  if ( ! empty( $post_fields ) ) {
352  $join = "JOIN $wpdb->posts ON $wpdb->posts.ID = $wpdb->comments.comment_post_ID";
353  foreach( $post_fields as $field_name => $field_value )
354  $where .= $wpdb->prepare( " AND {$wpdb->posts}.{$field_name} = %s", $field_value );
355  }
356 
357  if ( ! empty( $this->meta_query->queries ) ) {
358  $clauses = $this->meta_query->get_sql( 'comment', $wpdb->comments, 'comment_ID', $this );
359  $join .= $clauses['join'];
360  $where .= $clauses['where'];
361  $groupby = "{$wpdb->comments}.comment_ID";
362  }
363 
364  $pieces = array( 'fields', 'join', 'where', 'orderby', 'order', 'limits', 'groupby' );
365  $clauses = apply_filters_ref_array( 'comments_clauses', array( compact( $pieces ), &$this ) );
366  foreach ( $pieces as $piece )
367  $$piece = isset( $clauses[ $piece ] ) ? $clauses[ $piece ] : '';
368 
369  if ( $groupby )
370  $groupby = 'GROUP BY ' . $groupby;
371 
372  $query = "SELECT $fields FROM $wpdb->comments $join WHERE $where $groupby ORDER BY $orderby $order $limits";
373 
374  if ( $count )
375  return $wpdb->get_var( $query );
376 
377  $comments = $wpdb->get_results( $query );
378  $comments = apply_filters_ref_array( 'the_comments', array( $comments, &$this ) );
379 
380  wp_cache_add( $cache_key, $comments, 'comment' );
381 
382  return $comments;
383  }
384 
385  /*
386  * Used internally to generate an SQL string for searching across multiple columns
387  *
388  * @access protected
389  * @since 3.1.0
390  *
391  * @param string $string
392  * @param array $cols
393  * @return string
394  */
395  function get_search_sql( $string, $cols ) {
396  $string = esc_sql( like_escape( $string ) );
397 
398  $searches = array();
399  foreach ( $cols as $col )
400  $searches[] = "$col LIKE '%$string%'";
401 
402  return ' AND (' . implode(' OR ', $searches) . ')';
403  }
404 }
405 
418 function get_comment_statuses( ) {
419  $status = array(
420  'hold' => __('Unapproved'),
421  /* translators: comment status */
422  'approve' => _x('Approved', 'adjective'),
423  /* translators: comment status */
424  'spam' => _x('Spam', 'adjective'),
425  );
426 
427  return $status;
428 }
429 
440 function get_lastcommentmodified($timezone = 'server') {
441  global $wpdb;
442  static $cache_lastcommentmodified = array();
443 
444  if ( isset($cache_lastcommentmodified[$timezone]) )
445  return $cache_lastcommentmodified[$timezone];
446 
447  $add_seconds_server = date('Z');
448 
449  switch ( strtolower($timezone)) {
450  case 'gmt':
451  $lastcommentmodified = $wpdb->get_var("SELECT comment_date_gmt FROM $wpdb->comments WHERE comment_approved = '1' ORDER BY comment_date_gmt DESC LIMIT 1");
452  break;
453  case 'blog':
454  $lastcommentmodified = $wpdb->get_var("SELECT comment_date FROM $wpdb->comments WHERE comment_approved = '1' ORDER BY comment_date_gmt DESC LIMIT 1");
455  break;
456  case 'server':
457  $lastcommentmodified = $wpdb->get_var($wpdb->prepare("SELECT DATE_ADD(comment_date_gmt, INTERVAL %s SECOND) FROM $wpdb->comments WHERE comment_approved = '1' ORDER BY comment_date_gmt DESC LIMIT 1", $add_seconds_server));
458  break;
459  }
460 
461  $cache_lastcommentmodified[$timezone] = $lastcommentmodified;
462 
463  return $lastcommentmodified;
464 }
465 
479 function get_comment_count( $post_id = 0 ) {
480  global $wpdb;
481 
482  $post_id = (int) $post_id;
483 
484  $where = '';
485  if ( $post_id > 0 ) {
486  $where = $wpdb->prepare("WHERE comment_post_ID = %d", $post_id);
487  }
488 
489  $totals = (array) $wpdb->get_results("
490  SELECT comment_approved, COUNT( * ) AS total
491  FROM {$wpdb->comments}
492  {$where}
493  GROUP BY comment_approved
494  ", ARRAY_A);
495 
496  $comment_count = array(
497  "approved" => 0,
498  "awaiting_moderation" => 0,
499  "spam" => 0,
500  "total_comments" => 0
501  );
502 
503  foreach ( $totals as $row ) {
504  switch ( $row['comment_approved'] ) {
505  case 'spam':
506  $comment_count['spam'] = $row['total'];
507  $comment_count["total_comments"] += $row['total'];
508  break;
509  case 1:
510  $comment_count['approved'] = $row['total'];
511  $comment_count['total_comments'] += $row['total'];
512  break;
513  case 0:
514  $comment_count['awaiting_moderation'] = $row['total'];
515  $comment_count['total_comments'] += $row['total'];
516  break;
517  default:
518  break;
519  }
520  }
521 
522  return $comment_count;
523 }
524 
525 //
526 // Comment meta functions
527 //
528 
542 function add_comment_meta($comment_id, $meta_key, $meta_value, $unique = false) {
543  return add_metadata('comment', $comment_id, $meta_key, $meta_value, $unique);
544 }
545 
562 function delete_comment_meta($comment_id, $meta_key, $meta_value = '') {
563  return delete_metadata('comment', $comment_id, $meta_key, $meta_value);
564 }
565 
579 function get_comment_meta($comment_id, $key = '', $single = false) {
580  return get_metadata('comment', $comment_id, $key, $single);
581 }
582 
601 function update_comment_meta($comment_id, $meta_key, $meta_value, $prev_value = '') {
602  return update_metadata('comment', $comment_id, $meta_key, $meta_value, $prev_value);
603 }
604 
614 function wp_set_comment_cookies($comment, $user) {
615  if ( $user->exists() )
616  return;
617 
618  $comment_cookie_lifetime = apply_filters('comment_cookie_lifetime', 30000000);
619  setcookie('comment_author_' . COOKIEHASH, $comment->comment_author, time() + $comment_cookie_lifetime, COOKIEPATH, COOKIE_DOMAIN);
620  setcookie('comment_author_email_' . COOKIEHASH, $comment->comment_author_email, time() + $comment_cookie_lifetime, COOKIEPATH, COOKIE_DOMAIN);
621  setcookie('comment_author_url_' . COOKIEHASH, esc_url($comment->comment_author_url), time() + $comment_cookie_lifetime, COOKIEPATH, COOKIE_DOMAIN);
622 }
623 
633  if ( isset($_COOKIE['comment_author_'.COOKIEHASH]) ) {
634  $comment_author = apply_filters('pre_comment_author_name', $_COOKIE['comment_author_'.COOKIEHASH]);
635  $comment_author = stripslashes($comment_author);
637  $_COOKIE['comment_author_'.COOKIEHASH] = $comment_author;
638  }
639 
640  if ( isset($_COOKIE['comment_author_email_'.COOKIEHASH]) ) {
641  $comment_author_email = apply_filters('pre_comment_author_email', $_COOKIE['comment_author_email_'.COOKIEHASH]);
644  $_COOKIE['comment_author_email_'.COOKIEHASH] = $comment_author_email;
645  }
646 
647  if ( isset($_COOKIE['comment_author_url_'.COOKIEHASH]) ) {
648  $comment_author_url = apply_filters('pre_comment_author_url', $_COOKIE['comment_author_url_'.COOKIEHASH]);
650  $_COOKIE['comment_author_url_'.COOKIEHASH] = $comment_author_url;
651  }
652 }
653 
666 function wp_allow_comment($commentdata) {
667  global $wpdb;
668  extract($commentdata, EXTR_SKIP);
669 
670  // Simple duplicate check
671  // expected_slashed ($comment_post_ID, $comment_author, $comment_author_email, $comment_content)
672  $dupe = "SELECT comment_ID FROM $wpdb->comments WHERE comment_post_ID = '$comment_post_ID' AND comment_parent = '$comment_parent' AND comment_approved != 'trash' AND ( comment_author = '$comment_author' ";
673  if ( $comment_author_email )
674  $dupe .= "OR comment_author_email = '$comment_author_email' ";
675  $dupe .= ") AND comment_content = '$comment_content' LIMIT 1";
676  if ( $wpdb->get_var($dupe) ) {
677  do_action( 'comment_duplicate_trigger', $commentdata );
678  if ( defined('DOING_AJAX') )
679  die( __('Duplicate comment detected; it looks as though you&#8217;ve already said that!') );
680 
681  wp_die( __('Duplicate comment detected; it looks as though you&#8217;ve already said that!') );
682  }
683 
684  do_action( 'check_comment_flood', $comment_author_IP, $comment_author_email, $comment_date_gmt );
685 
686  if ( ! empty( $user_id ) ) {
687  $user = get_userdata( $user_id );
688  $post_author = $wpdb->get_var($wpdb->prepare("SELECT post_author FROM $wpdb->posts WHERE ID = %d LIMIT 1", $comment_post_ID));
689  }
690 
691  if ( isset( $user ) && ( $user_id == $post_author || $user->has_cap( 'moderate_comments' ) ) ) {
692  // The author and the admins get respect.
693  $approved = 1;
694  } else {
695  // Everyone else's comments will be checked.
697  $approved = 1;
698  else
699  $approved = 0;
701  $approved = 'spam';
702  }
703 
704  $approved = apply_filters( 'pre_comment_approved', $approved, $commentdata );
705  return $approved;
706 }
707 
725 function check_comment_flood_db( $ip, $email, $date ) {
726  global $wpdb;
727  if ( current_user_can( 'manage_options' ) )
728  return; // don't throttle admins
729  $hour_ago = gmdate( 'Y-m-d H:i:s', time() - HOUR_IN_SECONDS );
730  if ( $lasttime = $wpdb->get_var( $wpdb->prepare( "SELECT `comment_date_gmt` FROM `$wpdb->comments` WHERE `comment_date_gmt` >= %s AND ( `comment_author_IP` = %s OR `comment_author_email` = %s ) ORDER BY `comment_date_gmt` DESC LIMIT 1", $hour_ago, $ip, $email ) ) ) {
731  $time_lastcomment = mysql2date('U', $lasttime, false);
732  $time_newcomment = mysql2date('U', $date, false);
733  $flood_die = apply_filters('comment_flood_filter', false, $time_lastcomment, $time_newcomment);
734  if ( $flood_die ) {
735  do_action('comment_flood_trigger', $time_lastcomment, $time_newcomment);
736 
737  if ( defined('DOING_AJAX') )
738  die( __('You are posting comments too quickly. Slow down.') );
739 
740  wp_die( __('You are posting comments too quickly. Slow down.'), '', array('response' => 403) );
741  }
742  }
743 }
744 
754  $comments_by_type = array('comment' => array(), 'trackback' => array(), 'pingback' => array(), 'pings' => array());
755  $count = count($comments);
756  for ( $i = 0; $i < $count; $i++ ) {
757  $type = $comments[$i]->comment_type;
758  if ( empty($type) )
759  $type = 'comment';
760  $comments_by_type[$type][] = &$comments[$i];
761  if ( 'trackback' == $type || 'pingback' == $type )
762  $comments_by_type['pings'][] = &$comments[$i];
763  }
764 
765  return $comments_by_type;
766 }
767 
781 function get_comment_pages_count( $comments = null, $per_page = null, $threaded = null ) {
782  global $wp_query;
783 
784  if ( null === $comments && null === $per_page && null === $threaded && !empty($wp_query->max_num_comment_pages) )
785  return $wp_query->max_num_comment_pages;
786 
787  if ( !$comments || !is_array($comments) )
788  $comments = $wp_query->comments;
789 
790  if ( empty($comments) )
791  return 0;
792 
793  if ( !isset($per_page) )
794  $per_page = (int) get_query_var('comments_per_page');
795  if ( 0 === $per_page )
796  $per_page = (int) get_option('comments_per_page');
797  if ( 0 === $per_page )
798  return 1;
799 
800  if ( !isset($threaded) )
801  $threaded = get_option('thread_comments');
802 
803  if ( $threaded ) {
804  $walker = new Walker_Comment;
805  $count = ceil( $walker->get_number_of_root_elements( $comments ) / $per_page );
806  } else {
807  $count = ceil( count( $comments ) / $per_page );
808  }
809 
810  return $count;
811 }
812 
825 function get_page_of_comment( $comment_ID, $args = array() ) {
826  global $wpdb;
827 
828  if ( !$comment = get_comment( $comment_ID ) )
829  return;
830 
831  $defaults = array( 'type' => 'all', 'page' => '', 'per_page' => '', 'max_depth' => '' );
832  $args = wp_parse_args( $args, $defaults );
833 
834  if ( '' === $args['per_page'] && get_option('page_comments') )
835  $args['per_page'] = get_query_var('comments_per_page');
836  if ( empty($args['per_page']) ) {
837  $args['per_page'] = 0;
838  $args['page'] = 0;
839  }
840  if ( $args['per_page'] < 1 )
841  return 1;
842 
843  if ( '' === $args['max_depth'] ) {
844  if ( get_option('thread_comments') )
845  $args['max_depth'] = get_option('thread_comments_depth');
846  else
847  $args['max_depth'] = -1;
848  }
849 
850  // Find this comment's top level parent if threading is enabled
851  if ( $args['max_depth'] > 1 && 0 != $comment->comment_parent )
852  return get_page_of_comment( $comment->comment_parent, $args );
853 
854  $allowedtypes = array(
855  'comment' => '',
856  'pingback' => 'pingback',
857  'trackback' => 'trackback',
858  );
859 
860  $comtypewhere = ( 'all' != $args['type'] && isset($allowedtypes[$args['type']]) ) ? " AND comment_type = '" . $allowedtypes[$args['type']] . "'" : '';
861 
862  // Count comments older than this one
863  $oldercoms = $wpdb->get_var( $wpdb->prepare( "SELECT COUNT(comment_ID) FROM $wpdb->comments WHERE comment_post_ID = %d AND comment_parent = 0 AND comment_approved = '1' AND comment_date_gmt < '%s'" . $comtypewhere, $comment->comment_post_ID, $comment->comment_date_gmt ) );
864 
865  // No older comments? Then it's page #1.
866  if ( 0 == $oldercoms )
867  return 1;
868 
869  // Divide comments older than this one by comments per page to get this comment's page number
870  return ceil( ( $oldercoms + 1 ) / $args['per_page'] );
871 }
872 
887 function wp_blacklist_check($author, $email, $url, $comment, $user_ip, $user_agent) {
888  do_action('wp_blacklist_check', $author, $email, $url, $comment, $user_ip, $user_agent);
889 
890  $mod_keys = trim( get_option('blacklist_keys') );
891  if ( '' == $mod_keys )
892  return false; // If moderation keys are empty
893  $words = explode("\n", $mod_keys );
894 
895  foreach ( (array) $words as $word ) {
896  $word = trim($word);
897 
898  // Skip empty lines
899  if ( empty($word) ) { continue; }
900 
901  // Do some escaping magic so that '#' chars in the
902  // spam words don't break things:
903  $word = preg_quote($word, '#');
904 
905  $pattern = "#$word#i";
906  if (
907  preg_match($pattern, $author)
908  || preg_match($pattern, $email)
909  || preg_match($pattern, $url)
910  || preg_match($pattern, $comment)
911  || preg_match($pattern, $user_ip)
912  || preg_match($pattern, $user_agent)
913  )
914  return true;
915  }
916  return false;
917 }
918 
935 function wp_count_comments( $post_id = 0 ) {
936  global $wpdb;
937 
938  $post_id = (int) $post_id;
939 
940  $stats = apply_filters('wp_count_comments', array(), $post_id);
941  if ( !empty($stats) )
942  return $stats;
943 
944  $count = wp_cache_get("comments-{$post_id}", 'counts');
945 
946  if ( false !== $count )
947  return $count;
948 
949  $where = '';
950  if ( $post_id > 0 )
951  $where = $wpdb->prepare( "WHERE comment_post_ID = %d", $post_id );
952 
953  $count = $wpdb->get_results( "SELECT comment_approved, COUNT( * ) AS num_comments FROM {$wpdb->comments} {$where} GROUP BY comment_approved", ARRAY_A );
954 
955  $total = 0;
956  $approved = array('0' => 'moderated', '1' => 'approved', 'spam' => 'spam', 'trash' => 'trash', 'post-trashed' => 'post-trashed');
957  foreach ( (array) $count as $row ) {
958  // Don't count post-trashed toward totals
959  if ( 'post-trashed' != $row['comment_approved'] && 'trash' != $row['comment_approved'] )
960  $total += $row['num_comments'];
961  if ( isset( $approved[$row['comment_approved']] ) )
962  $stats[$approved[$row['comment_approved']]] = $row['num_comments'];
963  }
964 
965  $stats['total_comments'] = $total;
966  foreach ( $approved as $key ) {
967  if ( empty($stats[$key]) )
968  $stats[$key] = 0;
969  }
970 
971  $stats = (object) $stats;
972  wp_cache_set("comments-{$post_id}", $stats, 'counts');
973 
974  return $stats;
975 }
976 
997 function wp_delete_comment($comment_id, $force_delete = false) {
998  global $wpdb;
999  if (!$comment = get_comment($comment_id))
1000  return false;
1001 
1002  if ( !$force_delete && EMPTY_TRASH_DAYS && !in_array( wp_get_comment_status($comment_id), array( 'trash', 'spam' ) ) )
1003  return wp_trash_comment($comment_id);
1004 
1005  do_action('delete_comment', $comment_id);
1006 
1007  // Move children up a level.
1008  $children = $wpdb->get_col( $wpdb->prepare("SELECT comment_ID FROM $wpdb->comments WHERE comment_parent = %d", $comment_id) );
1009  if ( !empty($children) ) {
1010  $wpdb->update($wpdb->comments, array('comment_parent' => $comment->comment_parent), array('comment_parent' => $comment_id));
1011  clean_comment_cache($children);
1012  }
1013 
1014  // Delete metadata
1015  $meta_ids = $wpdb->get_col( $wpdb->prepare( "SELECT meta_id FROM $wpdb->commentmeta WHERE comment_id = %d", $comment_id ) );
1016  foreach ( $meta_ids as $mid )
1017  delete_metadata_by_mid( 'comment', $mid );
1018 
1019  if ( ! $wpdb->delete( $wpdb->comments, array( 'comment_ID' => $comment_id ) ) )
1020  return false;
1021  do_action('deleted_comment', $comment_id);
1022 
1023  $post_id = $comment->comment_post_ID;
1024  if ( $post_id && $comment->comment_approved == 1 )
1026 
1027  clean_comment_cache($comment_id);
1028 
1029  do_action('wp_set_comment_status', $comment_id, 'delete');
1030  wp_transition_comment_status('delete', $comment->comment_approved, $comment);
1031  return true;
1032 }
1033 
1047 function wp_trash_comment($comment_id) {
1048  if ( !EMPTY_TRASH_DAYS )
1049  return wp_delete_comment($comment_id, true);
1050 
1051  if ( !$comment = get_comment($comment_id) )
1052  return false;
1053 
1054  do_action('trash_comment', $comment_id);
1055 
1056  if ( wp_set_comment_status($comment_id, 'trash') ) {
1057  add_comment_meta($comment_id, '_wp_trash_meta_status', $comment->comment_approved);
1058  add_comment_meta($comment_id, '_wp_trash_meta_time', time() );
1059  do_action('trashed_comment', $comment_id);
1060  return true;
1061  }
1062 
1063  return false;
1064 }
1065 
1076 function wp_untrash_comment($comment_id) {
1077  if ( ! (int)$comment_id )
1078  return false;
1079 
1080  do_action('untrash_comment', $comment_id);
1081 
1082  $status = (string) get_comment_meta($comment_id, '_wp_trash_meta_status', true);
1083  if ( empty($status) )
1084  $status = '0';
1085 
1086  if ( wp_set_comment_status($comment_id, $status) ) {
1087  delete_comment_meta($comment_id, '_wp_trash_meta_time');
1088  delete_comment_meta($comment_id, '_wp_trash_meta_status');
1089  do_action('untrashed_comment', $comment_id);
1090  return true;
1091  }
1092 
1093  return false;
1094 }
1095 
1106 function wp_spam_comment($comment_id) {
1107  if ( !$comment = get_comment($comment_id) )
1108  return false;
1109 
1110  do_action('spam_comment', $comment_id);
1111 
1112  if ( wp_set_comment_status($comment_id, 'spam') ) {
1113  add_comment_meta($comment_id, '_wp_trash_meta_status', $comment->comment_approved);
1114  do_action('spammed_comment', $comment_id);
1115  return true;
1116  }
1117 
1118  return false;
1119 }
1120 
1131 function wp_unspam_comment($comment_id) {
1132  if ( ! (int)$comment_id )
1133  return false;
1134 
1135  do_action('unspam_comment', $comment_id);
1136 
1137  $status = (string) get_comment_meta($comment_id, '_wp_trash_meta_status', true);
1138  if ( empty($status) )
1139  $status = '0';
1140 
1141  if ( wp_set_comment_status($comment_id, $status) ) {
1142  delete_comment_meta($comment_id, '_wp_trash_meta_status');
1143  do_action('unspammed_comment', $comment_id);
1144  return true;
1145  }
1146 
1147  return false;
1148 }
1149 
1158 function wp_get_comment_status($comment_id) {
1159  $comment = get_comment($comment_id);
1160  if ( !$comment )
1161  return false;
1162 
1163  $approved = $comment->comment_approved;
1164 
1165  if ( $approved == null )
1166  return false;
1167  elseif ( $approved == '1' )
1168  return 'approved';
1169  elseif ( $approved == '0' )
1170  return 'unapproved';
1171  elseif ( $approved == 'spam' )
1172  return 'spam';
1173  elseif ( $approved == 'trash' )
1174  return 'trash';
1175  else
1176  return false;
1177 }
1178 
1199 function wp_transition_comment_status($new_status, $old_status, $comment) {
1200  // Translate raw statuses to human readable formats for the hooks
1201  // This is not a complete list of comment status, it's only the ones that need to be renamed
1202  $comment_statuses = array(
1203  0 => 'unapproved',
1204  'hold' => 'unapproved', // wp_set_comment_status() uses "hold"
1205  1 => 'approved',
1206  'approve' => 'approved', // wp_set_comment_status() uses "approve"
1207  );
1208  if ( isset($comment_statuses[$new_status]) ) $new_status = $comment_statuses[$new_status];
1209  if ( isset($comment_statuses[$old_status]) ) $old_status = $comment_statuses[$old_status];
1210 
1211  // Call the hooks
1212  if ( $new_status != $old_status ) {
1213  do_action('transition_comment_status', $new_status, $old_status, $comment);
1214  do_action("comment_{$old_status}_to_{$new_status}", $comment);
1215  }
1216  do_action("comment_{$new_status}_{$comment->comment_type}", $comment->comment_ID, $comment);
1217 }
1218 
1232  // Cookies should already be sanitized.
1233 
1234  $comment_author = '';
1235  if ( isset($_COOKIE['comment_author_'.COOKIEHASH]) )
1236  $comment_author = $_COOKIE['comment_author_'.COOKIEHASH];
1237 
1238  $comment_author_email = '';
1239  if ( isset($_COOKIE['comment_author_email_'.COOKIEHASH]) )
1240  $comment_author_email = $_COOKIE['comment_author_email_'.COOKIEHASH];
1241 
1242  $comment_author_url = '';
1243  if ( isset($_COOKIE['comment_author_url_'.COOKIEHASH]) )
1244  $comment_author_url = $_COOKIE['comment_author_url_'.COOKIEHASH];
1245 
1246  return apply_filters('wp_get_current_commenter', compact('comment_author', 'comment_author_email', 'comment_author_url'));
1247 }
1248 
1261 function wp_insert_comment($commentdata) {
1262  global $wpdb;
1263  extract(stripslashes_deep($commentdata), EXTR_SKIP);
1264 
1265  if ( ! isset($comment_author_IP) )
1266  $comment_author_IP = '';
1267  if ( ! isset($comment_date) )
1268  $comment_date = current_time('mysql');
1269  if ( ! isset($comment_date_gmt) )
1270  $comment_date_gmt = get_gmt_from_date($comment_date);
1271  if ( ! isset($comment_parent) )
1272  $comment_parent = 0;
1273  if ( ! isset($comment_approved) )
1274  $comment_approved = 1;
1275  if ( ! isset($comment_karma) )
1276  $comment_karma = 0;
1277  if ( ! isset($user_id) )
1278  $user_id = 0;
1279  if ( ! isset($comment_type) )
1280  $comment_type = '';
1281 
1282  $data = compact('comment_post_ID', 'comment_author', 'comment_author_email', 'comment_author_url', 'comment_author_IP', 'comment_date', 'comment_date_gmt', 'comment_content', 'comment_karma', 'comment_approved', 'comment_agent', 'comment_type', 'comment_parent', 'user_id');
1283  $wpdb->insert($wpdb->comments, $data);
1284 
1285  $id = (int) $wpdb->insert_id;
1286 
1287  if ( $comment_approved == 1 )
1289 
1290  $comment = get_comment($id);
1291  do_action('wp_insert_comment', $id, $comment);
1292 
1293  if ( function_exists( 'wp_cache_incr' ) ) {
1294  wp_cache_incr( 'last_changed', 1, 'comment' );
1295  } else {
1296  $last_changed = wp_cache_get( 'last_changed', 'comment' );
1297  wp_cache_set( 'last_changed', $last_changed + 1, 'comment' );
1298  }
1299 
1300  return $id;
1301 }
1302 
1322 function wp_filter_comment($commentdata) {
1323  if ( isset($commentdata['user_ID']) )
1324  $commentdata['user_id'] = apply_filters('pre_user_id', $commentdata['user_ID']);
1325  elseif ( isset($commentdata['user_id']) )
1326  $commentdata['user_id'] = apply_filters('pre_user_id', $commentdata['user_id']);
1327  $commentdata['comment_agent'] = apply_filters('pre_comment_user_agent', ( isset( $commentdata['comment_agent'] ) ? $commentdata['comment_agent'] : '' ) );
1328  $commentdata['comment_author'] = apply_filters('pre_comment_author_name', $commentdata['comment_author']);
1329  $commentdata['comment_content'] = apply_filters('pre_comment_content', $commentdata['comment_content']);
1330  $commentdata['comment_author_IP'] = apply_filters('pre_comment_user_ip', $commentdata['comment_author_IP']);
1331  $commentdata['comment_author_url'] = apply_filters('pre_comment_author_url', $commentdata['comment_author_url']);
1332  $commentdata['comment_author_email'] = apply_filters('pre_comment_author_email', $commentdata['comment_author_email']);
1333  $commentdata['filtered'] = true;
1334  return $commentdata;
1335 }
1336 
1347 function wp_throttle_comment_flood($block, $time_lastcomment, $time_newcomment) {
1348  if ( $block ) // a plugin has already blocked... we'll let that decision stand
1349  return $block;
1350  if ( ($time_newcomment - $time_lastcomment) < 15 )
1351  return true;
1352  return false;
1353 }
1354 
1377 function wp_new_comment( $commentdata ) {
1378  $commentdata = apply_filters('preprocess_comment', $commentdata);
1379 
1380  $commentdata['comment_post_ID'] = (int) $commentdata['comment_post_ID'];
1381  if ( isset($commentdata['user_ID']) )
1382  $commentdata['user_id'] = $commentdata['user_ID'] = (int) $commentdata['user_ID'];
1383  elseif ( isset($commentdata['user_id']) )
1384  $commentdata['user_id'] = (int) $commentdata['user_id'];
1385 
1386  $commentdata['comment_parent'] = isset($commentdata['comment_parent']) ? absint($commentdata['comment_parent']) : 0;
1387  $parent_status = ( 0 < $commentdata['comment_parent'] ) ? wp_get_comment_status($commentdata['comment_parent']) : '';
1388  $commentdata['comment_parent'] = ( 'approved' == $parent_status || 'unapproved' == $parent_status ) ? $commentdata['comment_parent'] : 0;
1389 
1390  $commentdata['comment_author_IP'] = preg_replace( '/[^0-9a-fA-F:., ]/', '',$_SERVER['REMOTE_ADDR'] );
1391  $commentdata['comment_agent'] = substr($_SERVER['HTTP_USER_AGENT'], 0, 254);
1392 
1393  $commentdata['comment_date'] = current_time('mysql');
1394  $commentdata['comment_date_gmt'] = current_time('mysql', 1);
1395 
1396  $commentdata = wp_filter_comment($commentdata);
1397 
1398  $commentdata['comment_approved'] = wp_allow_comment($commentdata);
1399 
1400  $comment_ID = wp_insert_comment($commentdata);
1401 
1402  do_action('comment_post', $comment_ID, $commentdata['comment_approved']);
1403 
1404  if ( 'spam' !== $commentdata['comment_approved'] ) { // If it's spam save it silently for later crunching
1405  if ( '0' == $commentdata['comment_approved'] )
1406  wp_notify_moderator($comment_ID);
1407 
1408  $post = get_post($commentdata['comment_post_ID']); // Don't notify if it's your own comment
1409 
1410  if ( get_option('comments_notify') && $commentdata['comment_approved'] && ( ! isset( $commentdata['user_id'] ) || $post->post_author != $commentdata['user_id'] ) )
1411  wp_notify_postauthor($comment_ID, isset( $commentdata['comment_type'] ) ? $commentdata['comment_type'] : '' );
1412  }
1413 
1414  return $comment_ID;
1415 }
1416 
1431 function wp_set_comment_status($comment_id, $comment_status, $wp_error = false) {
1432  global $wpdb;
1433 
1434  $status = '0';
1435  switch ( $comment_status ) {
1436  case 'hold':
1437  case '0':
1438  $status = '0';
1439  break;
1440  case 'approve':
1441  case '1':
1442  $status = '1';
1443  if ( get_option('comments_notify') ) {
1444  $comment = get_comment($comment_id);
1445  wp_notify_postauthor($comment_id, $comment->comment_type);
1446  }
1447  break;
1448  case 'spam':
1449  $status = 'spam';
1450  break;
1451  case 'trash':
1452  $status = 'trash';
1453  break;
1454  default:
1455  return false;
1456  }
1457 
1458  $comment_old = clone get_comment($comment_id);
1459 
1460  if ( !$wpdb->update( $wpdb->comments, array('comment_approved' => $status), array('comment_ID' => $comment_id) ) ) {
1461  if ( $wp_error )
1462  return new WP_Error('db_update_error', __('Could not update comment status'), $wpdb->last_error);
1463  else
1464  return false;
1465  }
1466 
1467  clean_comment_cache($comment_id);
1468 
1469  $comment = get_comment($comment_id);
1470 
1471  do_action('wp_set_comment_status', $comment_id, $comment_status);
1472  wp_transition_comment_status($comment_status, $comment_old->comment_approved, $comment);
1473 
1474  wp_update_comment_count($comment->comment_post_ID);
1475 
1476  return true;
1477 }
1478 
1491 function wp_update_comment($commentarr) {
1492  global $wpdb;
1493 
1494  // First, get all of the original fields
1495  $comment = get_comment($commentarr['comment_ID'], ARRAY_A);
1496 
1497  // Escape data pulled from DB.
1498  $comment = esc_sql($comment);
1499 
1500  $old_status = $comment['comment_approved'];
1501 
1502  // Merge old and new fields with new fields overwriting old ones.
1503  $commentarr = array_merge($comment, $commentarr);
1504 
1505  $commentarr = wp_filter_comment( $commentarr );
1506 
1507  // Now extract the merged array.
1508  extract(stripslashes_deep($commentarr), EXTR_SKIP);
1509 
1510  $comment_content = apply_filters('comment_save_pre', $comment_content);
1511 
1512  $comment_date_gmt = get_gmt_from_date($comment_date);
1513 
1514  if ( !isset($comment_approved) )
1515  $comment_approved = 1;
1516  else if ( 'hold' == $comment_approved )
1517  $comment_approved = 0;
1518  else if ( 'approve' == $comment_approved )
1519  $comment_approved = 1;
1520 
1521  $data = compact( 'comment_content', 'comment_author', 'comment_author_email', 'comment_approved', 'comment_karma', 'comment_author_url', 'comment_date', 'comment_date_gmt', 'comment_parent' );
1522  $rval = $wpdb->update( $wpdb->comments, $data, compact( 'comment_ID' ) );
1523 
1524  clean_comment_cache($comment_ID);
1526  do_action('edit_comment', $comment_ID);
1527  $comment = get_comment($comment_ID);
1528  wp_transition_comment_status($comment->comment_approved, $old_status, $comment);
1529  return $rval;
1530 }
1531 
1547  static $_defer = false;
1548 
1549  if ( is_bool($defer) ) {
1550  $_defer = $defer;
1551  // flush any deferred counts
1552  if ( !$defer )
1553  wp_update_comment_count( null, true );
1554  }
1555 
1556  return $_defer;
1557 }
1558 
1577 function wp_update_comment_count($post_id, $do_deferred=false) {
1578  static $_deferred = array();
1579 
1580  if ( $do_deferred ) {
1581  $_deferred = array_unique($_deferred);
1582  foreach ( $_deferred as $i => $_post_id ) {
1583  wp_update_comment_count_now($_post_id);
1584  unset( $_deferred[$i] );
1585  }
1586  }
1587 
1588  if ( wp_defer_comment_counting() ) {
1589  $_deferred[] = $post_id;
1590  return true;
1591  }
1592  elseif ( $post_id ) {
1594  }
1595 
1596 }
1597 
1610  global $wpdb;
1611  $post_id = (int) $post_id;
1612  if ( !$post_id )
1613  return false;
1614  if ( !$post = get_post($post_id) )
1615  return false;
1616 
1617  $old = (int) $post->comment_count;
1618  $new = (int) $wpdb->get_var( $wpdb->prepare("SELECT COUNT(*) FROM $wpdb->comments WHERE comment_post_ID = %d AND comment_approved = '1'", $post_id) );
1619  $wpdb->update( $wpdb->posts, array('comment_count' => $new), array('ID' => $post_id) );
1620 
1622 
1623  do_action('wp_update_comment_count', $post_id, $new, $old);
1624  do_action('edit_post', $post_id, $post);
1625 
1626  return true;
1627 }
1628 
1629 //
1630 // Ping and trackback functions.
1631 //
1632 
1646 function discover_pingback_server_uri( $url, $deprecated = '' ) {
1647  if ( !empty( $deprecated ) )
1648  _deprecated_argument( __FUNCTION__, '2.7' );
1649 
1650  $pingback_str_dquote = 'rel="pingback"';
1651  $pingback_str_squote = 'rel=\'pingback\'';
1652 
1654  $parsed_url = parse_url($url);
1655 
1656  if ( ! isset( $parsed_url['host'] ) ) // Not an URL. This should never happen.
1657  return false;
1658 
1659  //Do not search for a pingback server on our own uploads
1660  $uploads_dir = wp_upload_dir();
1661  if ( 0 === strpos($url, $uploads_dir['baseurl']) )
1662  return false;
1663 
1664  $response = wp_remote_head( $url, array( 'timeout' => 2, 'httpversion' => '1.0' ) );
1665 
1666  if ( is_wp_error( $response ) )
1667  return false;
1668 
1669  if ( wp_remote_retrieve_header( $response, 'x-pingback' ) )
1670  return wp_remote_retrieve_header( $response, 'x-pingback' );
1671 
1672  // Not an (x)html, sgml, or xml page, no use going further.
1673  if ( preg_match('#(image|audio|video|model)/#is', wp_remote_retrieve_header( $response, 'content-type' )) )
1674  return false;
1675 
1676  // Now do a GET since we're going to look in the html headers (and we're sure its not a binary file)
1677  $response = wp_remote_get( $url, array( 'timeout' => 2, 'httpversion' => '1.0' ) );
1678 
1679  if ( is_wp_error( $response ) )
1680  return false;
1681 
1682  $contents = wp_remote_retrieve_body( $response );
1683 
1684  $pingback_link_offset_dquote = strpos($contents, $pingback_str_dquote);
1685  $pingback_link_offset_squote = strpos($contents, $pingback_str_squote);
1686  if ( $pingback_link_offset_dquote || $pingback_link_offset_squote ) {
1687  $quote = ($pingback_link_offset_dquote) ? '"' : '\'';
1688  $pingback_link_offset = ($quote=='"') ? $pingback_link_offset_dquote : $pingback_link_offset_squote;
1689  $pingback_href_pos = @strpos($contents, 'href=', $pingback_link_offset);
1690  $pingback_href_start = $pingback_href_pos+6;
1691  $pingback_href_end = @strpos($contents, $quote, $pingback_href_start);
1692  $pingback_server_url_len = $pingback_href_end - $pingback_href_start;
1693  $pingback_server_url = substr($contents, $pingback_href_start, $pingback_server_url_len);
1694 
1695  // We may find rel="pingback" but an incomplete pingback URL
1696  if ( $pingback_server_url_len > 0 ) { // We got it!
1697  return $pingback_server_url;
1698  }
1699  }
1700 
1701  return false;
1702 }
1703 
1710 function do_all_pings() {
1711  global $wpdb;
1712 
1713  // Do pingbacks
1714  while ($ping = $wpdb->get_row("SELECT ID, post_content, meta_id FROM {$wpdb->posts}, {$wpdb->postmeta} WHERE {$wpdb->posts}.ID = {$wpdb->postmeta}.post_id AND {$wpdb->postmeta}.meta_key = '_pingme' LIMIT 1")) {
1715  delete_metadata_by_mid( 'post', $ping->meta_id );
1716  pingback( $ping->post_content, $ping->ID );
1717  }
1718 
1719  // Do Enclosures
1720  while ($enclosure = $wpdb->get_row("SELECT ID, post_content, meta_id FROM {$wpdb->posts}, {$wpdb->postmeta} WHERE {$wpdb->posts}.ID = {$wpdb->postmeta}.post_id AND {$wpdb->postmeta}.meta_key = '_encloseme' LIMIT 1")) {
1721  delete_metadata_by_mid( 'post', $enclosure->meta_id );
1722  do_enclose( $enclosure->post_content, $enclosure->ID );
1723  }
1724 
1725  // Do Trackbacks
1726  $trackbacks = $wpdb->get_col("SELECT ID FROM $wpdb->posts WHERE to_ping <> '' AND post_status = 'publish'");
1727  if ( is_array($trackbacks) )
1728  foreach ( $trackbacks as $trackback )
1729  do_trackbacks($trackback);
1730 
1731  //Do Update Services/Generic Pings
1732  generic_ping();
1733 }
1734 
1744  global $wpdb;
1745 
1746  $post = get_post( $post_id );
1747  $to_ping = get_to_ping($post_id);
1748  $pinged = get_pung($post_id);
1749  if ( empty($to_ping) ) {
1750  $wpdb->update($wpdb->posts, array('to_ping' => ''), array('ID' => $post_id) );
1751  return;
1752  }
1753 
1754  if ( empty($post->post_excerpt) )
1755  $excerpt = apply_filters('the_content', $post->post_content);
1756  else
1757  $excerpt = apply_filters('the_excerpt', $post->post_excerpt);
1758  $excerpt = str_replace(']]>', ']]&gt;', $excerpt);
1759  $excerpt = wp_html_excerpt($excerpt, 252) . '...';
1760 
1761  $post_title = apply_filters('the_title', $post->post_title, $post->ID);
1762  $post_title = strip_tags($post_title);
1763 
1764  if ( $to_ping ) {
1765  foreach ( (array) $to_ping as $tb_ping ) {
1766  $tb_ping = trim($tb_ping);
1767  if ( !in_array($tb_ping, $pinged) ) {
1768  trackback($tb_ping, $post_title, $excerpt, $post_id);
1769  $pinged[] = $tb_ping;
1770  } else {
1771  $wpdb->query( $wpdb->prepare("UPDATE $wpdb->posts SET to_ping = TRIM(REPLACE(to_ping, %s, '')) WHERE ID = %d", $tb_ping, $post_id) );
1772  }
1773  }
1774  }
1775 }
1776 
1785 function generic_ping($post_id = 0) {
1786  $services = get_option('ping_sites');
1787 
1788  $services = explode("\n", $services);
1789  foreach ( (array) $services as $service ) {
1790  $service = trim($service);
1791  if ( '' != $service )
1792  weblog_ping($service);
1793  }
1794 
1795  return $post_id;
1796 }
1797 
1809  global $wp_version;
1810  include_once(ABSPATH . WPINC . '/class-IXR.php');
1811  include_once(ABSPATH . WPINC . '/class-wp-http-ixr-client.php');
1812 
1813  // original code by Mort (http://mort.mine.nu:8080)
1814  $post_links = array();
1815 
1816  $pung = get_pung($post_ID);
1817 
1818  // Variables
1819  $ltrs = '\w';
1820  $gunk = '/#~:.?+=&%@!\-';
1821  $punc = '.:?\-';
1822  $any = $ltrs . $gunk . $punc;
1823 
1824  // Step 1
1825  // Parsing the post, external links (if any) are stored in the $post_links array
1826  // This regexp comes straight from phpfreaks.com
1827  // http://www.phpfreaks.com/quickcode/Extract_All_URLs_on_a_Page/15.php
1828  preg_match_all("{\b http : [$any] +? (?= [$punc] * [^$any] | $)}x", $content, $post_links_temp);
1829 
1830  // Step 2.
1831  // Walking thru the links array
1832  // first we get rid of links pointing to sites, not to specific files
1833  // Example:
1834  // http://dummy-weblog.org
1835  // http://dummy-weblog.org/
1836  // http://dummy-weblog.org/post.php
1837  // We don't wanna ping first and second types, even if they have a valid <link/>
1838 
1839  foreach ( (array) $post_links_temp[0] as $link_test ) :
1840  if ( !in_array($link_test, $pung) && (url_to_postid($link_test) != $post_ID) // If we haven't pung it already and it isn't a link to itself
1841  && !is_local_attachment($link_test) ) : // Also, let's never ping local attachments.
1842  if ( $test = @parse_url($link_test) ) {
1843  if ( isset($test['query']) )
1844  $post_links[] = $link_test;
1845  elseif ( isset( $test['path'] ) && ( $test['path'] != '/' ) && ( $test['path'] != '' ) )
1846  $post_links[] = $link_test;
1847  }
1848  endif;
1849  endforeach;
1850 
1851  do_action_ref_array( 'pre_ping', array( &$post_links, &$pung, $post_ID ) );
1852 
1853  foreach ( (array) $post_links as $pagelinkedto ) {
1854  $pingback_server_url = discover_pingback_server_uri( $pagelinkedto );
1855 
1856  if ( $pingback_server_url ) {
1857  @ set_time_limit( 60 );
1858  // Now, the RPC call
1859  $pagelinkedfrom = get_permalink($post_ID);
1860 
1861  // using a timeout of 3 seconds should be enough to cover slow servers
1862  $client = new WP_HTTP_IXR_Client($pingback_server_url);
1863  $client->timeout = 3;
1864  $client->useragent = apply_filters( 'pingback_useragent', $client->useragent . ' -- WordPress/' . $wp_version, $client->useragent, $pingback_server_url, $pagelinkedto, $pagelinkedfrom);
1865  // when set to true, this outputs debug messages by itself
1866  $client->debug = false;
1867 
1868  if ( $client->query('pingback.ping', $pagelinkedfrom, $pagelinkedto) || ( isset($client->error->code) && 48 == $client->error->code ) ) // Already registered
1869  add_ping( $post_ID, $pagelinkedto );
1870  }
1871  }
1872 }
1873 
1882 function privacy_ping_filter($sites) {
1883  if ( '0' != get_option('blog_public') )
1884  return $sites;
1885  else
1886  return '';
1887 }
1888 
1903 function trackback($trackback_url, $title, $excerpt, $ID) {
1904  global $wpdb;
1905 
1906  if ( empty($trackback_url) )
1907  return;
1908 
1909  $options = array();
1910  $options['timeout'] = 4;
1911  $options['body'] = array(
1912  'title' => $title,
1913  'url' => get_permalink($ID),
1914  'blog_name' => get_option('blogname'),
1915  'excerpt' => $excerpt
1916  );
1917 
1918  $response = wp_remote_post($trackback_url, $options);
1919 
1920  if ( is_wp_error( $response ) )
1921  return;
1922 
1923  $wpdb->query( $wpdb->prepare("UPDATE $wpdb->posts SET pinged = CONCAT(pinged, '\n', %s) WHERE ID = %d", $trackback_url, $ID) );
1924  return $wpdb->query( $wpdb->prepare("UPDATE $wpdb->posts SET to_ping = TRIM(REPLACE(to_ping, %s, '')) WHERE ID = %d", $trackback_url, $ID) );
1925 }
1926 
1937 function weblog_ping($server = '', $path = '') {
1938  global $wp_version;
1939  include_once(ABSPATH . WPINC . '/class-IXR.php');
1940  include_once(ABSPATH . WPINC . '/class-wp-http-ixr-client.php');
1941 
1942  // using a timeout of 3 seconds should be enough to cover slow servers
1943  $client = new WP_HTTP_IXR_Client($server, ((!strlen(trim($path)) || ('/' == $path)) ? false : $path));
1944  $client->timeout = 3;
1945  $client->useragent .= ' -- WordPress/'.$wp_version;
1946 
1947  // when set to true, this outputs debug messages by itself
1948  $client->debug = false;
1949  $home = trailingslashit( home_url() );
1950  if ( !$client->query('weblogUpdates.extendedPing', get_option('blogname'), $home, get_bloginfo('rss2_url') ) ) // then try a normal ping
1951  $client->query('weblogUpdates.ping', get_option('blogname'), $home);
1952 }
1953 
1962 function pingback_ping_source_uri( $source_uri ) {
1963  $uri = esc_url_raw( $source_uri, array( 'http', 'https' ) );
1964  if ( ! $uri )
1965  return '';
1966 
1967  $parsed_url = @parse_url( $uri );
1968  if ( ! $parsed_url )
1969  return '';
1970 
1971  if ( isset( $parsed_url['user'] ) || isset( $parsed_url['pass'] ) )
1972  return '';
1973 
1974  if ( false !== strpos( $parsed_url['host'], ':' ) )
1975  return '';
1976 
1977  $parsed_home = @parse_url( get_option( 'home' ) );
1978 
1979  $same_host = strtolower( $parsed_home['host'] ) === strtolower( $parsed_url['host'] );
1980 
1981  if ( ! $same_host ) {
1982  $host = trim( $parsed_url['host'], '.' );
1983  if ( preg_match( '#^\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}$#', $host ) ) {
1984  $ip = $host;
1985  } else {
1986  $ip = gethostbyname( $host );
1987  if ( $ip === $host ) // Error condition for gethostbyname()
1988  $ip = false;
1989  }
1990  if ( $ip ) {
1991  if ( '127.0.0.1' === $ip )
1992  return '';
1993  $parts = array_map( 'intval', explode( '.', $ip ) );
1994  if ( 10 === $parts[0] )
1995  return '';
1996  if ( 172 === $parts[0] && 16 <= $parts[1] && 31 >= $parts[1] )
1997  return '';
1998  if ( 192 === $parts[0] && 168 === $parts[1] )
1999  return '';
2000  }
2001  }
2002 
2003  if ( empty( $parsed_url['port'] ) )
2004  return $uri;
2005 
2006  $port = $parsed_url['port'];
2007  if ( 80 === $port || 443 === $port || 8080 === $port )
2008  return $uri;
2009 
2010  if ( $parsed_home && $same_host && $parsed_home['port'] === $port )
2011  return $uri;
2012 
2013  return '';
2014 }
2015 
2028 function xmlrpc_pingback_error( $ixr_error ) {
2029  if ( $ixr_error->code === 48 )
2030  return $ixr_error;
2031  return new IXR_Error( 0, '' );
2032 }
2033 
2034 //
2035 // Cache
2036 //
2037 
2047 function clean_comment_cache($ids) {
2048  foreach ( (array) $ids as $id )
2049  wp_cache_delete($id, 'comment');
2050 
2051  if ( function_exists( 'wp_cache_incr' ) ) {
2052  wp_cache_incr( 'last_changed', 1, 'comment' );
2053  } else {
2054  $last_changed = wp_cache_get( 'last_changed', 'comment' );
2055  wp_cache_set( 'last_changed', $last_changed + 1, 'comment' );
2056  }
2057 }
2058 
2073  foreach ( (array) $comments as $comment )
2074  wp_cache_add($comment->comment_ID, $comment, 'comment');
2075 }
2076 
2077 //
2078 // Internal
2079 //
2080 
2091 function _close_comments_for_old_posts( $posts, $query ) {
2092  if ( empty( $posts ) || ! $query->is_singular() || ! get_option( 'close_comments_for_old_posts' ) )
2093  return $posts;
2094 
2095  $post_types = apply_filters( 'close_comments_for_post_types', array( 'post' ) );
2096  if ( ! in_array( $posts[0]->post_type, $post_types ) )
2097  return $posts;
2098 
2099  $days_old = (int) get_option( 'close_comments_days_old' );
2100  if ( ! $days_old )
2101  return $posts;
2102 
2103  if ( time() - strtotime( $posts[0]->post_date_gmt ) > ( $days_old * DAY_IN_SECONDS ) ) {
2104  $posts[0]->comment_status = 'closed';
2105  $posts[0]->ping_status = 'closed';
2106  }
2107 
2108  return $posts;
2109 }
2110 
2122  if ( ! $open )
2123  return $open;
2124 
2125  if ( !get_option('close_comments_for_old_posts') )
2126  return $open;
2127 
2128  $days_old = (int) get_option('close_comments_days_old');
2129  if ( !$days_old )
2130  return $open;
2131 
2132  $post = get_post($post_id);
2133 
2134  $post_types = apply_filters( 'close_comments_for_post_types', array( 'post' ) );
2135  if ( ! in_array( $post->post_type, $post_types ) )
2136  return $open;
2137 
2138  if ( time() - strtotime( $post->post_date_gmt ) > ( $days_old * DAY_IN_SECONDS ) )
2139  return false;
2140 
2141  return $open;
2142 }