1 | <?php |
---|
2 | /* |
---|
3 | Plugin Name: History IP Excluder |
---|
4 | Version: auto |
---|
5 | Description: 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 |
---|
6 | Plugin URI: http://piwigo.org/ext/extension_view.php?eid=147 |
---|
7 | Author: Nicco, Eric |
---|
8 | Author URI: http://gallery-nicco.no-ip.org - http://www.infernoweb.net |
---|
9 | */ |
---|
10 | |
---|
11 | /* |
---|
12 | :: HISTORY |
---|
13 | |
---|
14 | 1.0.x to 1.6.x - Plugin only for PWG 1.7.x |
---|
15 | |
---|
16 | 2.0.0 - Compliance with Piwigo 2.0.x |
---|
17 | |
---|
18 | 2.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 | |
---|
23 | 2.1.1 - Bug 1792 fixed (Thx to TOnin) |
---|
24 | - Bug 1511 fixed - New function to blacklist excluded IPs or ranged IPs for registration |
---|
25 | |
---|
26 | 2.2.0 - Compliance with Piwigo 2.2.x |
---|
27 | - Plugin directory renamed from nbc_HistoryIPExcluder to HistoryIPExcluder |
---|
28 | |
---|
29 | 2.2.1 - Bug fixed on plugin upgrade from 2.1.x version |
---|
30 | |
---|
31 | 2.2.2 - Another bug fixed on plugin upgrade from 2.2.x version |
---|
32 | |
---|
33 | 2.2.3 - Improved update mechanism. When no structural update of database is necessary, it sets the correct version number in plugin's configuration |
---|
34 | |
---|
35 | 2.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 | |
---|
39 | 2.4.0 - Piwigo 2.4 compliant |
---|
40 | - Add pl_PL translation (thanks to larky) |
---|
41 | |
---|
42 | 2.4.1 - Add cs_CZ translation (thanks to lanius and ZdenekMaterna) |
---|
43 | - Add ru_RU translation (thanks to nadusha) |
---|
44 | |
---|
45 | 2.4.2 - Update ru_RU translation (thanks to nadusha) |
---|
46 | |
---|
47 | 2.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 | |
---|
54 | 2.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 | 2.5.0 - Compliance with Piwigo 2.5 |
---|
61 | - Add tr_TR, thanks to : LazBoy |
---|
62 | |
---|
63 | 2.5.1 - Add pt_BR, thanks to : flaviove |
---|
64 | |
---|
65 | 2.5.2 - Add pt_PT, thanks to : ddtddt & ANO |
---|
66 | |
---|
67 | 2.5.3 - Add nl_NL, thanks to : Kees Hessels |
---|
68 | - Update el_GR, thanks to : bas_alba |
---|
69 | - Update da_DK, thanks to : Kaare |
---|
70 | - Update ru_RU, thanks to : Konve |
---|
71 | - Translation keys fixed |
---|
72 | - Delete unused translation keys |
---|
73 | |
---|
74 | 2.5.4 - Update es_ES, thanks to : jpr928 |
---|
75 | - Update tr_TR, thanks to : LazBoy |
---|
76 | - Update lv_LV, thanks to : agrisans |
---|
77 | - Update pt_PT, thanks to : ANO |
---|
78 | - Update sk_SK, thanks to : dodo |
---|
79 | - Update pl_PL, thanks to : K.S. |
---|
80 | - Update it_IT, thanks to : Sugar888 |
---|
81 | - Update pt_BR, thanks to : glaucio |
---|
82 | - Update de_DE, thanks to : fs101299 |
---|
83 | - Update nl_NL, thanks to : Kees Hessels |
---|
84 | |
---|
85 | 2.6.0 - Compatibility checked with Piwigo 2.6 |
---|
86 | - Update uk_UA, thanks to : animan |
---|
87 | - Update cs_CZ, thanks to : elpresidento |
---|
88 | |
---|
89 | 2.6.1 - Fix obsolete is_adviser() |
---|
90 | -------------------------------------------------------------------------------- |
---|
91 | */ |
---|
92 | |
---|
93 | if (!defined('PHPWG_ROOT_PATH')) die('Hacking attempt!'); |
---|
94 | |
---|
95 | if (!defined('HIPE_PATH')) define('HIPE_PATH' , PHPWG_PLUGINS_PATH.basename(dirname(__FILE__)).'/'); |
---|
96 | |
---|
97 | include_once (HIPE_PATH.'/include/functions.inc.php'); |
---|
98 | |
---|
99 | load_language('plugin.lang', HIPE_PATH); |
---|
100 | |
---|
101 | add_event_handler('get_admin_plugin_menu_links', 'HIPE_admin_menu'); |
---|
102 | |
---|
103 | /* Set the administration panel of the plugin */ |
---|
104 | function HIPE_admin_menu($menu) |
---|
105 | { |
---|
106 | // +-----------------------------------------------------------------------+ |
---|
107 | // | Getting plugin name | |
---|
108 | // +-----------------------------------------------------------------------+ |
---|
109 | $plugin = HIPE_infos(HIPE_PATH); |
---|
110 | $name = $plugin['name']; |
---|
111 | |
---|
112 | array_push($menu, |
---|
113 | array( |
---|
114 | 'NAME' => $name, |
---|
115 | 'URL' => get_root_url().'admin.php?page=plugin-'.basename(HIPE_PATH) |
---|
116 | ) |
---|
117 | ); |
---|
118 | |
---|
119 | return $menu; |
---|
120 | } |
---|
121 | |
---|
122 | // IP exclusion from logs |
---|
123 | add_event_handler('pwg_log_allowed', 'HIPE_IP_Filtrer'); |
---|
124 | |
---|
125 | function HIPE_IP_Filtrer($do_log) |
---|
126 | { |
---|
127 | global $conf; |
---|
128 | |
---|
129 | $conf_HIPE = explode("," , $conf['HistoryIPExcluder']); |
---|
130 | |
---|
131 | if (!$do_log) |
---|
132 | return $do_log; |
---|
133 | else |
---|
134 | { |
---|
135 | $IP_Client = explode('.', $_SERVER['REMOTE_ADDR']); |
---|
136 | |
---|
137 | foreach ($conf_HIPE as $Exclusion) |
---|
138 | { |
---|
139 | $IP_Exclude = explode('.', $Exclusion); |
---|
140 | |
---|
141 | if ( |
---|
142 | (($IP_Client[0] == $IP_Exclude[0]) or ($IP_Exclude[0] == '%')) and |
---|
143 | (!isset($IP_Exclude[1]) or ($IP_Client[1] == $IP_Exclude[1]) or ($IP_Exclude[1] == '%')) and |
---|
144 | (!isset($IP_Exclude[2]) or ($IP_Client[2] == $IP_Exclude[2]) or ($IP_Exclude[2] == '%')) and |
---|
145 | (!isset($IP_Exclude[3]) or ($IP_Client[3] == $IP_Exclude[3]) or ($IP_Exclude[3] == '%')) |
---|
146 | ) |
---|
147 | { |
---|
148 | $do_log = false; |
---|
149 | } |
---|
150 | } |
---|
151 | |
---|
152 | return $do_log; |
---|
153 | } |
---|
154 | } |
---|
155 | |
---|
156 | /* Check users registration */ |
---|
157 | add_event_handler('register_user_check', 'HIPE_RegistrationCheck', EVENT_HANDLER_PRIORITY_NEUTRAL +2, 2); |
---|
158 | |
---|
159 | function HIPE_RegistrationCheck($err, $user) |
---|
160 | { |
---|
161 | global $errors, $conf; |
---|
162 | load_language('plugin.lang', HIPE_PATH); |
---|
163 | |
---|
164 | if (count($err)!=0 ) return $err; |
---|
165 | |
---|
166 | $IP_Client = explode('.', $_SERVER['REMOTE_ADDR']); |
---|
167 | $HIPE_Config = unserialize($conf['HistoryIPConfig']); |
---|
168 | $conf_HIPE = explode("," , $conf['HistoryIPExcluder']); |
---|
169 | |
---|
170 | if (isset($HIPE_Config['Blacklist']) and $HIPE_Config['Blacklist'] == true) |
---|
171 | { |
---|
172 | foreach ($conf_HIPE as $Exclusion) |
---|
173 | { |
---|
174 | $IP_Exclude = explode('.', $Exclusion); |
---|
175 | |
---|
176 | if ( |
---|
177 | (($IP_Client[0] == $IP_Exclude[0]) or ($IP_Exclude[0] == '%')) and |
---|
178 | (!isset($IP_Exclude[1]) or ($IP_Client[1] == $IP_Exclude[1]) or ($IP_Exclude[1] == '%')) and |
---|
179 | (!isset($IP_Exclude[2]) or ($IP_Client[2] == $IP_Exclude[2]) or ($IP_Exclude[2] == '%')) and |
---|
180 | (!isset($IP_Exclude[3]) or ($IP_Client[3] == $IP_Exclude[3]) or ($IP_Exclude[3] == '%')) |
---|
181 | ) |
---|
182 | { |
---|
183 | $err = l10n('Error_HIPE_BlacklistedIP'); |
---|
184 | } |
---|
185 | } |
---|
186 | return $err; |
---|
187 | } |
---|
188 | } |
---|
189 | ?> |
---|