PageRenderTime 46ms CodeModel.GetById 18ms RepoModel.GetById 0ms app.codeStats 0ms

/wp-content/plugins/akismet/akismet.php

https://bitbucket.org/crypticrod/sr_wp_code
PHP | 512 lines | 367 code | 80 blank | 65 comment | 103 complexity | de52885957d55f969d1c49e4c47f90aa MD5 | raw file
Possible License(s): AGPL-1.0, GPL-2.0, LGPL-2.1, GPL-3.0, LGPL-2.0, AGPL-3.0
  1. <?php
  2. /**
  3. * @package Akismet
  4. */
  5. /*
  6. Plugin Name: Akismet
  7. Plugin URI: http://akismet.com/
  8. Description: Used by millions, Akismet is quite possibly the best way in the world to <strong>protect your blog from comment and trackback spam</strong>. It keeps your site protected from spam even while you sleep. To get started: 1) Click the "Activate" link to the left of this description, 2) <a href="http://akismet.com/get/?return=true">Sign up for an Akismet API key</a>, and 3) Go to your <a href="plugins.php?page=akismet-key-config">Akismet configuration</a> page, and save your API key.
  9. Version: 2.5.3
  10. Author: Automattic
  11. Author URI: http://automattic.com/wordpress-plugins/
  12. License: GPLv2 or later
  13. */
  14. /*
  15. This program is free software; you can redistribute it and/or
  16. modify it under the terms of the GNU General Public License
  17. as published by the Free Software Foundation; either version 2
  18. of the License, or (at your option) any later version.
  19. This program is distributed in the hope that it will be useful,
  20. but WITHOUT ANY WARRANTY; without even the implied warranty of
  21. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  22. GNU General Public License for more details.
  23. You should have received a copy of the GNU General Public License
  24. along with this program; if not, write to the Free Software
  25. Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  26. */
  27. define('AKISMET_VERSION', '2.5.3');
  28. define('AKISMET_PLUGIN_URL', plugin_dir_url( __FILE__ ));
  29. /** If you hardcode a WP.com API key here, all key config screens will be hidden */
  30. if ( defined('WPCOM_API_KEY') )
  31. $wpcom_api_key = constant('WPCOM_API_KEY');
  32. else
  33. $wpcom_api_key = '';
  34. // Make sure we don't expose any info if called directly
  35. if ( !function_exists( 'add_action' ) ) {
  36. echo "Hi there! I'm just a plugin, not much I can do when called directly.";
  37. exit;
  38. }
  39. if ( isset($wp_db_version) && $wp_db_version <= 9872 )
  40. include_once dirname( __FILE__ ) . '/legacy.php';
  41. include_once dirname( __FILE__ ) . '/widget.php';
  42. if ( is_admin() )
  43. require_once dirname( __FILE__ ) . '/admin.php';
  44. function akismet_init() {
  45. global $wpcom_api_key, $akismet_api_host, $akismet_api_port;
  46. if ( $wpcom_api_key )
  47. $akismet_api_host = $wpcom_api_key . '.rest.akismet.com';
  48. else
  49. $akismet_api_host = get_option('wordpress_api_key') . '.rest.akismet.com';
  50. $akismet_api_port = 80;
  51. }
  52. add_action('init', 'akismet_init');
  53. function akismet_get_key() {
  54. global $wpcom_api_key;
  55. if ( !empty($wpcom_api_key) )
  56. return $wpcom_api_key;
  57. return get_option('wordpress_api_key');
  58. }
  59. function akismet_verify_key( $key, $ip = null ) {
  60. global $akismet_api_host, $akismet_api_port, $wpcom_api_key;
  61. $blog = urlencode( get_option('home') );
  62. if ( $wpcom_api_key )
  63. $key = $wpcom_api_key;
  64. $response = akismet_http_post("key=$key&blog=$blog", 'rest.akismet.com', '/1.1/verify-key', $akismet_api_port, $ip);
  65. if ( !is_array($response) || !isset($response[1]) || $response[1] != 'valid' && $response[1] != 'invalid' )
  66. return 'failed';
  67. return $response[1];
  68. }
  69. // if we're in debug or test modes, use a reduced service level so as not to polute training or stats data
  70. function akismet_test_mode() {
  71. if ( defined('AKISMET_TEST_MODE') && AKISMET_TEST_MODE )
  72. return true;
  73. return false;
  74. }
  75. // return a comma-separated list of role names for the given user
  76. function akismet_get_user_roles($user_id ) {
  77. $roles = false;
  78. if ( !class_exists('WP_User') )
  79. return false;
  80. if ( $user_id > 0 ) {
  81. $comment_user = new WP_User($user_id);
  82. if ( isset($comment_user->roles) )
  83. $roles = join(',', $comment_user->roles);
  84. }
  85. if ( is_multisite() && is_super_admin( $user_id ) ) {
  86. if ( empty( $roles ) ) {
  87. $roles = 'super_admin';
  88. } else {
  89. $comment_user->roles[] = 'super_admin';
  90. $roles = join( ',', $comment_user->roles );
  91. }
  92. }
  93. return $roles;
  94. }
  95. // Returns array with headers in $response[0] and body in $response[1]
  96. function akismet_http_post($request, $host, $path, $port = 80, $ip=null) {
  97. global $wp_version;
  98. $akismet_ua = "WordPress/{$wp_version} | ";
  99. $akismet_ua .= 'Akismet/' . constant( 'AKISMET_VERSION' );
  100. $content_length = strlen( $request );
  101. $http_host = $host;
  102. // use a specific IP if provided
  103. // needed by akismet_check_server_connectivity()
  104. if ( $ip && long2ip( ip2long( $ip ) ) ) {
  105. $http_host = $ip;
  106. } else {
  107. $http_host = $host;
  108. }
  109. // use the WP HTTP class if it is available
  110. if ( function_exists( 'wp_remote_post' ) ) {
  111. $http_args = array(
  112. 'body' => $request,
  113. 'headers' => array(
  114. 'Content-Type' => 'application/x-www-form-urlencoded; ' .
  115. 'charset=' . get_option( 'blog_charset' ),
  116. 'Host' => $host,
  117. 'User-Agent' => $akismet_ua
  118. ),
  119. 'httpversion' => '1.0',
  120. 'timeout' => 15
  121. );
  122. $akismet_url = "http://{$http_host}{$path}";
  123. $response = wp_remote_post( $akismet_url, $http_args );
  124. if ( is_wp_error( $response ) )
  125. return '';
  126. return array( $response['headers'], $response['body'] );
  127. } else {
  128. $http_request = "POST $path HTTP/1.0\r\n";
  129. $http_request .= "Host: $host\r\n";
  130. $http_request .= 'Content-Type: application/x-www-form-urlencoded; charset=' . get_option('blog_charset') . "\r\n";
  131. $http_request .= "Content-Length: {$content_length}\r\n";
  132. $http_request .= "User-Agent: {$akismet_ua}\r\n";
  133. $http_request .= "\r\n";
  134. $http_request .= $request;
  135. $response = '';
  136. if( false != ( $fs = @fsockopen( $http_host, $port, $errno, $errstr, 10 ) ) ) {
  137. fwrite( $fs, $http_request );
  138. while ( !feof( $fs ) )
  139. $response .= fgets( $fs, 1160 ); // One TCP-IP packet
  140. fclose( $fs );
  141. $response = explode( "\r\n\r\n", $response, 2 );
  142. }
  143. return $response;
  144. }
  145. }
  146. // filter handler used to return a spam result to pre_comment_approved
  147. function akismet_result_spam( $approved ) {
  148. // bump the counter here instead of when the filter is added to reduce the possibility of overcounting
  149. if ( $incr = apply_filters('akismet_spam_count_incr', 1) )
  150. update_option( 'akismet_spam_count', get_option('akismet_spam_count') + $incr );
  151. // this is a one-shot deal
  152. remove_filter( 'pre_comment_approved', 'akismet_result_spam' );
  153. return 'spam';
  154. }
  155. function akismet_result_hold( $approved ) {
  156. // once only
  157. remove_filter( 'pre_comment_approved', 'akismet_result_hold' );
  158. return '0';
  159. }
  160. // how many approved comments does this author have?
  161. function akismet_get_user_comments_approved( $user_id, $comment_author_email, $comment_author, $comment_author_url ) {
  162. global $wpdb;
  163. if ( !empty($user_id) )
  164. return $wpdb->get_var( $wpdb->prepare( "SELECT COUNT(*) FROM $wpdb->comments WHERE user_id = %d AND comment_approved = 1", $user_id ) );
  165. if ( !empty($comment_author_email) )
  166. return $wpdb->get_var( $wpdb->prepare( "SELECT COUNT(*) FROM $wpdb->comments WHERE comment_author_email = %s AND comment_author = %s AND comment_author_url = %s AND comment_approved = 1", $comment_author_email, $comment_author, $comment_author_url ) );
  167. return 0;
  168. }
  169. function akismet_microtime() {
  170. $mtime = explode( ' ', microtime() );
  171. return $mtime[1] + $mtime[0];
  172. }
  173. // log an event for a given comment, storing it in comment_meta
  174. function akismet_update_comment_history( $comment_id, $message, $event=null ) {
  175. global $current_user;
  176. // failsafe for old WP versions
  177. if ( !function_exists('add_comment_meta') )
  178. return false;
  179. $user = '';
  180. if ( is_object($current_user) && isset($current_user->user_login) )
  181. $user = $current_user->user_login;
  182. $event = array(
  183. 'time' => akismet_microtime(),
  184. 'message' => $message,
  185. 'event' => $event,
  186. 'user' => $user,
  187. );
  188. // $unique = false so as to allow multiple values per comment
  189. $r = add_comment_meta( $comment_id, 'akismet_history', $event, false );
  190. }
  191. // get the full comment history for a given comment, as an array in reverse chronological order
  192. function akismet_get_comment_history( $comment_id ) {
  193. // failsafe for old WP versions
  194. if ( !function_exists('add_comment_meta') )
  195. return false;
  196. $history = get_comment_meta( $comment_id, 'akismet_history', false );
  197. usort( $history, 'akismet_cmp_time' );
  198. return $history;
  199. }
  200. function akismet_cmp_time( $a, $b ) {
  201. return $a['time'] > $b['time'] ? -1 : 1;
  202. }
  203. // this fires on wp_insert_comment. we can't update comment_meta when akismet_auto_check_comment() runs
  204. // because we don't know the comment ID at that point.
  205. function akismet_auto_check_update_meta( $id, $comment ) {
  206. global $akismet_last_comment;
  207. // failsafe for old WP versions
  208. if ( !function_exists('add_comment_meta') )
  209. return false;
  210. // wp_insert_comment() might be called in other contexts, so make sure this is the same comment
  211. // as was checked by akismet_auto_check_comment
  212. if ( is_object($comment) && !empty($akismet_last_comment) && is_array($akismet_last_comment) ) {
  213. if ( intval($akismet_last_comment['comment_post_ID']) == intval($comment->comment_post_ID)
  214. && $akismet_last_comment['comment_author'] == $comment->comment_author
  215. && $akismet_last_comment['comment_author_email'] == $comment->comment_author_email ) {
  216. // normal result: true or false
  217. if ( $akismet_last_comment['akismet_result'] == 'true' ) {
  218. update_comment_meta( $comment->comment_ID, 'akismet_result', 'true' );
  219. akismet_update_comment_history( $comment->comment_ID, __('Akismet caught this comment as spam'), 'check-spam' );
  220. if ( $comment->comment_approved != 'spam' )
  221. akismet_update_comment_history( $comment->comment_ID, sprintf( __('Comment status was changed to %s'), $comment->comment_approved), 'status-changed'.$comment->comment_approved );
  222. } elseif ( $akismet_last_comment['akismet_result'] == 'false' ) {
  223. update_comment_meta( $comment->comment_ID, 'akismet_result', 'false' );
  224. akismet_update_comment_history( $comment->comment_ID, __('Akismet cleared this comment'), 'check-ham' );
  225. if ( $comment->comment_approved == 'spam' ) {
  226. if ( wp_blacklist_check($comment->comment_author, $comment->comment_author_email, $comment->comment_author_url, $comment->comment_content, $comment->comment_author_IP, $comment->comment_agent) )
  227. akismet_update_comment_history( $comment->comment_ID, __('Comment was caught by wp_blacklist_check'), 'wp-blacklisted' );
  228. else
  229. akismet_update_comment_history( $comment->comment_ID, sprintf( __('Comment status was changed to %s'), $comment->comment_approved), 'status-changed-'.$comment->comment_approved );
  230. }
  231. // abnormal result: error
  232. } else {
  233. update_comment_meta( $comment->comment_ID, 'akismet_error', time() );
  234. akismet_update_comment_history( $comment->comment_ID, sprintf( __('Akismet was unable to check this comment (response: %s), will automatically retry again later.'), $akismet_last_comment['akismet_result']), 'check-error' );
  235. }
  236. // record the complete original data as submitted for checking
  237. if ( isset($akismet_last_comment['comment_as_submitted']) )
  238. update_comment_meta( $comment->comment_ID, 'akismet_as_submitted', $akismet_last_comment['comment_as_submitted'] );
  239. }
  240. }
  241. }
  242. add_action( 'wp_insert_comment', 'akismet_auto_check_update_meta', 10, 2 );
  243. function akismet_auto_check_comment( $commentdata ) {
  244. global $akismet_api_host, $akismet_api_port, $akismet_last_comment;
  245. $comment = $commentdata;
  246. $comment['user_ip'] = $_SERVER['REMOTE_ADDR'];
  247. $comment['user_agent'] = $_SERVER['HTTP_USER_AGENT'];
  248. $comment['referrer'] = $_SERVER['HTTP_REFERER'];
  249. $comment['blog'] = get_option('home');
  250. $comment['blog_lang'] = get_locale();
  251. $comment['blog_charset'] = get_option('blog_charset');
  252. $comment['permalink'] = get_permalink($comment['comment_post_ID']);
  253. $comment['user_role'] = akismet_get_user_roles($comment['user_ID']);
  254. $akismet_nonce_option = apply_filters( 'akismet_comment_nonce', get_option( 'akismet_comment_nonce' ) );
  255. $comment['akismet_comment_nonce'] = 'inactive';
  256. if ( $akismet_nonce_option == 'true' || $akismet_nonce_option == '' ) {
  257. $comment['akismet_comment_nonce'] = 'failed';
  258. if ( isset( $_POST['akismet_comment_nonce'] ) && wp_verify_nonce( $_POST['akismet_comment_nonce'], 'akismet_comment_nonce_' . $comment['comment_post_ID'] ) )
  259. $comment['akismet_comment_nonce'] = 'passed';
  260. // comment reply in wp-admin
  261. if ( isset( $_POST['_ajax_nonce-replyto-comment'] ) && check_ajax_referer( 'replyto-comment', '_ajax_nonce-replyto-comment' ) )
  262. $comment['akismet_comment_nonce'] = 'passed';
  263. }
  264. if ( akismet_test_mode() )
  265. $comment['is_test'] = 'true';
  266. foreach ($_POST as $key => $value ) {
  267. if ( is_string($value) )
  268. $comment["POST_{$key}"] = $value;
  269. }
  270. $ignore = array( 'HTTP_COOKIE', 'HTTP_COOKIE2', 'PHP_AUTH_PW' );
  271. foreach ( $_SERVER as $key => $value ) {
  272. if ( !in_array( $key, $ignore ) && is_string($value) )
  273. $comment["$key"] = $value;
  274. else
  275. $comment["$key"] = '';
  276. }
  277. $query_string = '';
  278. foreach ( $comment as $key => $data )
  279. $query_string .= $key . '=' . urlencode( stripslashes($data) ) . '&';
  280. $commentdata['comment_as_submitted'] = $comment;
  281. $response = akismet_http_post($query_string, $akismet_api_host, '/1.1/comment-check', $akismet_api_port);
  282. $commentdata['akismet_result'] = $response[1];
  283. if ( 'true' == $response[1] ) {
  284. // akismet_spam_count will be incremented later by akismet_result_spam()
  285. add_filter('pre_comment_approved', 'akismet_result_spam');
  286. do_action( 'akismet_spam_caught' );
  287. $post = get_post( $comment['comment_post_ID'] );
  288. $last_updated = strtotime( $post->post_modified_gmt );
  289. $diff = time() - $last_updated;
  290. $diff = $diff / 86400;
  291. if ( $post->post_type == 'post' && $diff > 30 && get_option( 'akismet_discard_month' ) == 'true' && empty($comment['user_ID']) ) {
  292. // akismet_result_spam() won't be called so bump the counter here
  293. if ( $incr = apply_filters('akismet_spam_count_incr', 1) )
  294. update_option( 'akismet_spam_count', get_option('akismet_spam_count') + $incr );
  295. wp_redirect( $_SERVER['HTTP_REFERER'] );
  296. die();
  297. }
  298. }
  299. // if the response is neither true nor false, hold the comment for moderation and schedule a recheck
  300. if ( 'true' != $response[1] && 'false' != $response[1] ) {
  301. add_filter('pre_comment_approved', 'akismet_result_hold');
  302. wp_schedule_single_event( time() + 1200, 'akismet_schedule_cron_recheck' );
  303. }
  304. if ( function_exists('wp_next_scheduled') && function_exists('wp_schedule_event') ) {
  305. // WP 2.1+: delete old comments daily
  306. if ( !wp_next_scheduled('akismet_scheduled_delete') )
  307. wp_schedule_event(time(), 'daily', 'akismet_scheduled_delete');
  308. } elseif ( (mt_rand(1, 10) == 3) ) {
  309. // WP 2.0: run this one time in ten
  310. akismet_delete_old();
  311. }
  312. $akismet_last_comment = $commentdata;
  313. return $commentdata;
  314. }
  315. add_action('preprocess_comment', 'akismet_auto_check_comment', 1);
  316. function akismet_delete_old() {
  317. global $wpdb;
  318. $now_gmt = current_time('mysql', 1);
  319. $comment_ids = $wpdb->get_col("SELECT comment_id FROM $wpdb->comments WHERE DATE_SUB('$now_gmt', INTERVAL 15 DAY) > comment_date_gmt AND comment_approved = 'spam'");
  320. if ( empty( $comment_ids ) )
  321. return;
  322. $comma_comment_ids = implode( ', ', array_map('intval', $comment_ids) );
  323. do_action( 'delete_comment', $comment_ids );
  324. $wpdb->query("DELETE FROM $wpdb->comments WHERE comment_id IN ( $comma_comment_ids )");
  325. $wpdb->query("DELETE FROM $wpdb->commentmeta WHERE comment_id IN ( $comma_comment_ids )");
  326. clean_comment_cache( $comment_ids );
  327. $n = mt_rand(1, 5000);
  328. if ( apply_filters('akismet_optimize_table', ($n == 11)) ) // lucky number
  329. $wpdb->query("OPTIMIZE TABLE $wpdb->comments");
  330. }
  331. add_action('akismet_scheduled_delete', 'akismet_delete_old');
  332. function akismet_check_db_comment( $id, $recheck_reason = 'recheck_queue' ) {
  333. global $wpdb, $akismet_api_host, $akismet_api_port;
  334. $id = (int) $id;
  335. $c = $wpdb->get_row( "SELECT * FROM $wpdb->comments WHERE comment_ID = '$id'", ARRAY_A );
  336. if ( !$c )
  337. return;
  338. $c['user_ip'] = $c['comment_author_IP'];
  339. $c['user_agent'] = $c['comment_agent'];
  340. $c['referrer'] = '';
  341. $c['blog'] = get_option('home');
  342. $c['blog_lang'] = get_locale();
  343. $c['blog_charset'] = get_option('blog_charset');
  344. $c['permalink'] = get_permalink($c['comment_post_ID']);
  345. $id = $c['comment_ID'];
  346. if ( akismet_test_mode() )
  347. $c['is_test'] = 'true';
  348. $c['recheck_reason'] = $recheck_reason;
  349. $query_string = '';
  350. foreach ( $c as $key => $data )
  351. $query_string .= $key . '=' . urlencode( stripslashes($data) ) . '&';
  352. $response = akismet_http_post($query_string, $akismet_api_host, '/1.1/comment-check', $akismet_api_port);
  353. return $response[1];
  354. }
  355. function akismet_cron_recheck() {
  356. global $wpdb;
  357. delete_option('akismet_available_servers');
  358. $comment_errors = $wpdb->get_col( "
  359. SELECT comment_id
  360. FROM {$wpdb->prefix}commentmeta
  361. WHERE meta_key = 'akismet_error'
  362. LIMIT 100
  363. " );
  364. foreach ( (array) $comment_errors as $comment_id ) {
  365. // if the comment no longer exists, remove the meta entry from the queue to avoid getting stuck
  366. if ( !get_comment( $comment_id ) ) {
  367. delete_comment_meta( $comment_id, 'akismet_error' );
  368. continue;
  369. }
  370. add_comment_meta( $comment_id, 'akismet_rechecking', true );
  371. $status = akismet_check_db_comment( $comment_id, 'retry' );
  372. $msg = '';
  373. if ( $status == 'true' ) {
  374. $msg = __( 'Akismet caught this comment as spam during an automatic retry.' );
  375. } elseif ( $status == 'false' ) {
  376. $msg = __( 'Akismet cleared this comment during an automatic retry.' );
  377. }
  378. // If we got back a legit response then update the comment history
  379. // other wise just bail now and try again later. No point in
  380. // re-trying all the comments once we hit one failure.
  381. if ( !empty( $msg ) ) {
  382. delete_comment_meta( $comment_id, 'akismet_error' );
  383. akismet_update_comment_history( $comment_id, $msg, 'cron-retry' );
  384. update_comment_meta( $comment_id, 'akismet_result', $status );
  385. // make sure the comment status is still pending. if it isn't, that means the user has already moved it elsewhere.
  386. $comment = get_comment( $comment_id );
  387. if ( $comment && 'unapproved' == wp_get_comment_status( $comment_id ) ) {
  388. if ( $status == 'true' ) {
  389. wp_spam_comment( $comment_id );
  390. } elseif ( $status == 'false' ) {
  391. // comment is good, but it's still in the pending queue. depending on the moderation settings
  392. // we may need to change it to approved.
  393. if ( check_comment($comment->comment_author, $comment->comment_author_email, $comment->comment_author_url, $comment->comment_content, $comment->comment_author_IP, $comment->comment_agent, $comment->comment_type) )
  394. wp_set_comment_status( $comment_id, 1 );
  395. }
  396. }
  397. } else {
  398. delete_comment_meta( $comment_id, 'akismet_rechecking' );
  399. wp_schedule_single_event( time() + 1200, 'akismet_schedule_cron_recheck' );
  400. return;
  401. }
  402. }
  403. $remaining = $wpdb->get_var( $wpdb->prepare( "SELECT COUNT(*) FROM $wpdb->commentmeta WHERE meta_key = 'akismet_error'" ) );
  404. if ( $remaining && !wp_next_scheduled('akismet_schedule_cron_recheck') ) {
  405. wp_schedule_single_event( time() + 1200, 'akismet_schedule_cron_recheck' );
  406. }
  407. }
  408. add_action( 'akismet_schedule_cron_recheck', 'akismet_cron_recheck' );
  409. function akismet_add_comment_nonce( $post_id ) {
  410. echo '<p style="display: none;">';
  411. wp_nonce_field( 'akismet_comment_nonce_' . $post_id, 'akismet_comment_nonce', FALSE );
  412. echo '</p>';
  413. }
  414. $akismet_comment_nonce_option = apply_filters( 'akismet_comment_nonce', get_option( 'akismet_comment_nonce' ) );
  415. if ( $akismet_comment_nonce_option == 'true' || $akismet_comment_nonce_option == '' )
  416. add_action( 'comment_form', 'akismet_add_comment_nonce' );
  417. if ( '3.0.5' == $wp_version ) {
  418. remove_filter( 'comment_text', 'wp_kses_data' );
  419. if ( is_admin() )
  420. add_filter( 'comment_text', 'wp_kses_post' );
  421. }