[6506] | 1 | <?php /* |
---|
| 2 | Plugin Name: RV Akismet |
---|
[13799] | 3 | Version: 2.4.a |
---|
[6506] | 4 | Description: Uses Akismet online service to check comments agains spam |
---|
| 5 | Plugin URI: http://piwigo.org/ext/extension_view.php?eid=192 |
---|
| 6 | Author: rvelices |
---|
| 7 | Author URI: http://www.modusoptimus.com |
---|
| 8 | */ |
---|
| 9 | |
---|
[6672] | 10 | define('AKIS_DIR' , basename(dirname(__FILE__))); |
---|
| 11 | define('AKIS_PATH' , PHPWG_PLUGINS_PATH . AKIS_DIR . '/'); |
---|
| 12 | |
---|
[6506] | 13 | add_event_handler('user_comment_check', 'akismet_user_comment_check_wrapper', EVENT_HANDLER_PRIORITY_NEUTRAL+10, 2); |
---|
[13799] | 14 | add_event_handler('loc_begin_page_tail', 'akismet_page_tail' ); |
---|
[6506] | 15 | |
---|
[13799] | 16 | |
---|
[6506] | 17 | add_event_handler('get_admin_plugin_menu_links', 'akismet_plugin_admin_menu' ); |
---|
[13799] | 18 | add_event_handler('init', 'akismet_init' ); |
---|
[6506] | 19 | |
---|
[13799] | 20 | |
---|
[6506] | 21 | function akismet_plugin_admin_menu($menu) |
---|
| 22 | { |
---|
| 23 | global $page,$conf; |
---|
| 24 | if ( empty($conf['akismet_api_key']) and in_array($page['page'], array('intro','plugins_list')) ) |
---|
| 25 | { |
---|
[6672] | 26 | load_language('plugin.lang', AKIS_PATH); |
---|
| 27 | $page['errors'][] = l10n('You need to define the Akismet api key'); |
---|
[6506] | 28 | } |
---|
| 29 | $admin_url = get_admin_plugin_menu_link(dirname(__FILE__).'/admin.php'); |
---|
| 30 | array_push($menu, |
---|
| 31 | array( |
---|
| 32 | 'NAME' => 'Akismet', |
---|
| 33 | 'URL' => $admin_url |
---|
| 34 | ) |
---|
| 35 | ); |
---|
| 36 | return $menu; |
---|
| 37 | } |
---|
| 38 | |
---|
| 39 | |
---|
| 40 | function akismet_user_comment_check_wrapper($action, $comment) |
---|
| 41 | { |
---|
| 42 | include_once( dirname(__FILE__).'/check.inc.php' ); |
---|
[13799] | 43 | $action = akismet_user_comment_check($action, $comment); |
---|
| 44 | if (!isset($_SESSION['csi']) && isset($_POST['url']) && strlen($_POST['url']) ) |
---|
| 45 | { |
---|
| 46 | $action = 'reject'; |
---|
| 47 | $_POST['cr'][] = 'csi url'; |
---|
| 48 | } |
---|
| 49 | return $action; |
---|
[6506] | 50 | } |
---|
[13799] | 51 | |
---|
| 52 | function akismet_init() |
---|
| 53 | { |
---|
| 54 | global $template; |
---|
| 55 | $template->smarty->register_prefilter('akismet_prefilter_comment_form'); |
---|
| 56 | } |
---|
| 57 | |
---|
| 58 | function akismet_prefilter_comment_form($source, $smarty) |
---|
| 59 | { |
---|
| 60 | if ( ($pos=strpos($source, '<textarea'))!==false |
---|
| 61 | && ($pos2=strpos($source, 'comment', $pos))!==false |
---|
| 62 | && $pos2-$pos <300) |
---|
| 63 | { |
---|
| 64 | $source= substr_replace($source, '{html_style}#urlid{ldelim}display:none}{/html_style}<input type="text" name="url" id="urlid">', $pos,0); |
---|
| 65 | } |
---|
| 66 | return $source; |
---|
| 67 | } |
---|
| 68 | |
---|
| 69 | function akismet_page_tail() |
---|
| 70 | { |
---|
| 71 | global $template, $conf; |
---|
| 72 | if (!isset($_SESSION['csi']) && strpos($_SERVER['HTTP_USER_AGENT'],'bot')===false) |
---|
| 73 | { |
---|
| 74 | $src = get_root_url().'plugins/'.AKIS_DIR.'/csi.php'; |
---|
| 75 | $template->append( 'footer_elements', '<img src="'.$src.'" width=0 height=0>'); |
---|
| 76 | } |
---|
| 77 | } |
---|
| 78 | |
---|
[6506] | 79 | ?> |
---|