source: extensions/HistoryIPExcluder/main.inc.php @ 20234

Last change on this file since 20234 was 18487, checked in by Eric, 12 years ago
  • Property svn:eol-style set to LF
File size: 5.4 KB
Line 
1<?php
2/*
3Plugin Name: History IP Excluder
4Version: auto
5Description: Permet l'exclusion d'une IP ou d'une plage d'IP de l'historique et de les blacklister à l'inscription / Excludes one IP or a range of IP from the history and to blacklist them on registration
6Plugin URI: http://piwigo.org/ext/extension_view.php?eid=147
7Author: Nicco, Eric
8Author URI: http://gallery-nicco.no-ip.org - http://www.infernoweb.net
9*/
10
11/*
12:: HISTORY
13
141.0.x to 1.6.x          - Plugin only for PWG 1.7.x
15
162.0.0             - Compliance with Piwigo 2.0.x
17
182.1.0             - Compliance with Piwigo 2.1.x
19                  - Multiple database support
20                  - Removing "nbc_" prefix in plugin code and display in piwigo's plugin manager
21                  - Displaying the good plugin name and current version in admin panel
22                 
232.1.1             - Bug 1792 fixed (Thx to TOnin)
24                  - Bug 1511 fixed - New function to blacklist excluded IPs or ranged IPs for registration
25
262.2.0             - Compliance with Piwigo 2.2.x
27                  - Plugin directory renamed from nbc_HistoryIPExcluder to HistoryIPExcluder
28
292.2.1             - Bug fixed on plugin upgrade from 2.1.x version
30
312.2.2             - Another bug fixed on plugin upgrade from 2.2.x version
32
332.2.3             - Improved update mechanism. When no structural update of database is necessary, it sets the correct version number in plugin's configuration
34
352.3.0             - Piwigo 2.3.0 compliant (alpha release for Piwigo 2.3.0RC)
36                  - Use data serialization for database storage
37                  - Use pwg_db_real_escape_string() instead of addslashes()
38
392.4.0             - Piwigo 2.4 compliant
40                  - Add pl_PL translation (thanks to larky)
41
422.4.1             - Add  cs_CZ translation (thanks to lanius and ZdenekMaterna)
43                  - Add  ru_RU translation (thanks to nadusha)
44
452.4.2             - Update ru_RU translation (thanks to nadusha)
46
472.4.3             - Update hu_HU translation (thanks to samli)
48                  - Update pl_PL translation (thanks to kuba)
49                  - Update cs_CZ translation (thanks to sichr)
50                  - Update el_GR translation (thanks to bas_alba)
51                  - Update lv_LV translation (thanks to agrisans)
52                  - Add uk_UA translation (thanks to animan)
53
542.4.4             - Update uk_UA, thanks to : animan
55                  - Update es_ES, thanks to : jpr928
56                  - Update it_IT, thanks to : virgigiole
57                  - Add sk_SK, thanks to : dodo
58                  - Add da_DK, thanks to : Kaare
59--------------------------------------------------------------------------------
60*/
61
62if (!defined('PHPWG_ROOT_PATH')) die('Hacking attempt!');
63
64if (!defined('HIPE_PATH')) define('HIPE_PATH' , PHPWG_PLUGINS_PATH.basename(dirname(__FILE__)).'/');
65
66include_once (HIPE_PATH.'/include/functions.inc.php');
67
68load_language('plugin.lang', HIPE_PATH);
69
70add_event_handler('get_admin_plugin_menu_links', 'HIPE_admin_menu');
71
72/* Set the administration panel of the plugin */
73function HIPE_admin_menu($menu)
74{
75// +-----------------------------------------------------------------------+
76// |                      Getting plugin name                              |
77// +-----------------------------------------------------------------------+
78  $plugin =  HIPE_infos(HIPE_PATH);
79  $name = $plugin['name'];
80 
81  array_push($menu,
82    array(
83      'NAME' => $name,
84      'URL' => get_root_url().'admin.php?page=plugin-'.basename(HIPE_PATH)
85    )
86  );
87   
88  return $menu;
89}
90
91// IP exclusion from logs
92add_event_handler('pwg_log_allowed', 'HIPE_IP_Filtrer');
93
94function HIPE_IP_Filtrer($do_log)
95{
96  global $conf;
97
98  $conf_HIPE = explode("," , $conf['HistoryIPExcluder']);
99
100  if (!$do_log)
101    return $do_log;
102  else
103  {
104    $IP_Client = explode('.', $_SERVER['REMOTE_ADDR']);
105 
106    foreach ($conf_HIPE as $Exclusion)
107    {
108      $IP_Exclude = explode('.', $Exclusion);
109 
110      if (
111        (($IP_Client[0] == $IP_Exclude[0]) or ($IP_Exclude[0] == '%')) and
112        (!isset($IP_Exclude[1]) or ($IP_Client[1] == $IP_Exclude[1]) or ($IP_Exclude[1] == '%')) and
113        (!isset($IP_Exclude[2]) or ($IP_Client[2] == $IP_Exclude[2]) or ($IP_Exclude[2] == '%')) and
114        (!isset($IP_Exclude[3]) or ($IP_Client[3] == $IP_Exclude[3]) or ($IP_Exclude[3] == '%'))
115      )
116      {
117        $do_log = false;
118      }   
119    }
120     
121    return $do_log;
122  }
123}
124
125/* Check users registration */
126add_event_handler('register_user_check', 'HIPE_RegistrationCheck', EVENT_HANDLER_PRIORITY_NEUTRAL +2, 2);
127
128function HIPE_RegistrationCheck($err, $user)
129{
130  global $errors, $conf;
131  load_language('plugin.lang', HIPE_PATH);
132 
133  if (count($err)!=0 ) return $err;
134 
135  $IP_Client = explode('.', $_SERVER['REMOTE_ADDR']);
136  $HIPE_Config = unserialize($conf['HistoryIPConfig']);
137  $conf_HIPE = explode("," , $conf['HistoryIPExcluder']);
138 
139  if (isset($HIPE_Config['Blacklist']) and $HIPE_Config['Blacklist'] == true)
140  {
141    foreach ($conf_HIPE as $Exclusion)
142    {
143      $IP_Exclude = explode('.', $Exclusion);
144 
145      if (
146        (($IP_Client[0] == $IP_Exclude[0]) or ($IP_Exclude[0] == '%')) and
147        (!isset($IP_Exclude[1]) or ($IP_Client[1] == $IP_Exclude[1]) or ($IP_Exclude[1] == '%')) and
148        (!isset($IP_Exclude[2]) or ($IP_Client[2] == $IP_Exclude[2]) or ($IP_Exclude[2] == '%')) and
149        (!isset($IP_Exclude[3]) or ($IP_Client[3] == $IP_Exclude[3]) or ($IP_Exclude[3] == '%'))
150      )
151      {
152        $err = l10n('Error_HIPE_BlacklistedIP');
153      }
154    }
155    return $err;
156  }
157}
158?>
Note: See TracBrowser for help on using the repository browser.