Version Description
= 2.0 = IP IP
= 1.4 =
NG
= 1.3 =
= 1.2.1 =
= 1.2 = 1
= 1.1 =
= 1.0 =
Download this release
Release Info
Developer | tsato |
Plugin | Throws SPAM Away |
Version | 2.3.3 |
Comparing to | |
See all releases |
Code changes from version 2.2 to 2.3.3
- hostbyip.php +45 -0
- readme.txt +30 -1
- throws_spam_away.php +684 -480
- uninstall.php +7 -3
hostbyip.php
ADDED
@@ -0,0 +1,45 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* ホスト検索
|
4 |
+
*/
|
5 |
+
$spam_ip = htmlspecialchars($_GET['ip']);
|
6 |
+
?>
|
7 |
+
<!DOCTYPE html>
|
8 |
+
<!--[if IE 8]>
|
9 |
+
<html xmlns="http://www.w3.org/1999/xhtml" class="ie8 wp-toolbar" lang="ja" prefix="og: http://ogp.me/ns#" >
|
10 |
+
<![endif]-->
|
11 |
+
<!--[if !(IE 8) ]><!-->
|
12 |
+
<html xmlns="http://www.w3.org/1999/xhtml" class="wp-toolbar" lang="ja" >
|
13 |
+
<!--<![endif]-->
|
14 |
+
<head>
|
15 |
+
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
16 |
+
<title>Throws SPAM Away | Hostbyip[<?php echo htmlspecialchars($_GET['ip']); ?>]</title>
|
17 |
+
<script type="text/javascript">
|
18 |
+
window.onblur=function(){
|
19 |
+
window.close();
|
20 |
+
}
|
21 |
+
</script>
|
22 |
+
</head>
|
23 |
+
<body>
|
24 |
+
<div style="textalign: center;">
|
25 |
+
<?php
|
26 |
+
$spam_host = gethostbyaddr(htmlspecialchars($spam_ip));
|
27 |
+
if ($spam_host != $spam_ip) {
|
28 |
+
?>
|
29 |
+
特定のホスト情報が見つかりました。<br />
|
30 |
+
↓↓↓<br />
|
31 |
+
|
32 |
+
<h4><?php echo $spam_host; ?></h4>
|
33 |
+
Whois: <a href="http://whois.arin.net/rest/ip/<?php echo $spam_ip; ?>" target="_blank"><?php echo $spam_ip; ?></a>
|
34 |
+
<?php
|
35 |
+
} else {
|
36 |
+
?>
|
37 |
+
特定のホスト情報は見つかりませんでした。
|
38 |
+
<?php
|
39 |
+
}
|
40 |
+
?>
|
41 |
+
|
42 |
+
<a href="javascript:void(0);" onclick="window.close();">閉じる</a>
|
43 |
+
</div>
|
44 |
+
</body>
|
45 |
+
</html>
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: http://gti.jp/
|
|
4 |
Tags: comments, spam
|
5 |
Requires at least: 3.1
|
6 |
Tested up to: 3.5.1
|
7 |
-
Stable tag: 2.2
|
8 |
|
9 |
コメントに日本語が使用されていないものや任意のIPアドレスからの投稿を無視するプラグイン
|
10 |
|
@@ -28,6 +28,18 @@ Stable tag: 2.2
|
|
28 |
IPアドレスの指定は「,(半角カンマ)」区切りで複数入力できますが、「192.168.1.0/24」のようにIPアドレスの範囲指定も可能です。
|
29 |
※例:192.168.0.1,192.168.1.0/24,69.208.0.0/16 と指定した場合
|
30 |
[192.168.0.1]と[192.168.1.0 ~ 192.168.1.255]と[69.208.0.0 ~ 69.208.255.255]のIPアドレスを拒否対象とします。
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
31 |
|
32 |
・バージョン2.2 'http'を許容数(初期設定 3)を超えて包含する場合にエラーとする機能を付けました。
|
33 |
導入後すぐに機能しはじめます。制限数の増減も行えます。
|
@@ -76,6 +88,23 @@ e.g.
|
|
76 |
== Screenshots ==
|
77 |
|
78 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
79 |
= 2.2 =
|
80 |
URL文字列(単純に'http'文字列)が許容数(初期設定3つまで)を超えて包含される場合エラーとする機能を追加
|
81 |
制限するかどうかと許容数の設定及びエラー文言を設定可能。
|
4 |
Tags: comments, spam
|
5 |
Requires at least: 3.1
|
6 |
Tested up to: 3.5.1
|
7 |
+
Stable tag: 2.3.2
|
8 |
|
9 |
コメントに日本語が使用されていないものや任意のIPアドレスからの投稿を無視するプラグイン
|
10 |
|
28 |
IPアドレスの指定は「,(半角カンマ)」区切りで複数入力できますが、「192.168.1.0/24」のようにIPアドレスの範囲指定も可能です。
|
29 |
※例:192.168.0.1,192.168.1.0/24,69.208.0.0/16 と指定した場合
|
30 |
[192.168.0.1]と[192.168.1.0 ~ 192.168.1.255]と[69.208.0.0 ~ 69.208.255.255]のIPアドレスを拒否対象とします。
|
31 |
+
・バージョン2.3.1, 2.3.2 不具合修正 仕様は2.3のままです。
|
32 |
+
・バージョン2.3スパムコメント数を保持出来るようにしました。設定を変更しないと機能しませんのでご注意ください。
|
33 |
+
保持データは下記の通り
|
34 |
+
○投稿日時
|
35 |
+
○投稿された記事ID
|
36 |
+
○投稿元IPアドレス
|
37 |
+
となります。
|
38 |
+
作成されるテーブル名は wp_tsa_spam(wp_の部分は設定されたもの) となります。
|
39 |
+
|
40 |
+
現在は スパム投稿したIPの件数(ユニーク) と スパム投稿総数 のみ表示中・・・・StatPressのような表示にしました。
|
41 |
+
また、現在まで「NGワード」に設定したものが 投稿者の「名前」に存在していた場合でも通っていましたが、「名前」にも効くようにしました。
|
42 |
+
(トラックバックでも同様に名前もNGワード対象に追加しています。)
|
43 |
|
44 |
・バージョン2.2 'http'を許容数(初期設定 3)を超えて包含する場合にエラーとする機能を付けました。
|
45 |
導入後すぐに機能しはじめます。制限数の増減も行えます。
|
88 |
== Screenshots ==
|
89 |
|
90 |
== Changelog ==
|
91 |
+
= 2.3.1, 2.3.2, 2.3.3 =
|
92 |
+
不具合の修正をしました。ご迷惑をおかけいたしまして申し訳ありません。
|
93 |
+
テーブルに書き込まれない不具合、テーブル読み込みの不具合を修正しました。
|
94 |
+
|
95 |
+
= 2.3 =
|
96 |
+
スパムコメント数を保持出来るようにしました。設定を変更しないと機能しませんのでご注意ください。
|
97 |
+
保持データは下記の通り
|
98 |
+
○投稿日時
|
99 |
+
○投稿された記事ID
|
100 |
+
○投稿元IPアドレス
|
101 |
+
となります。
|
102 |
+
作成されるテーブル名は wp_tsa_spam(wp_の部分は設定されたもの) となります。
|
103 |
+
|
104 |
+
現在は スパム投稿したIPの件数(ユニーク) と スパム投稿総数 のみ表示中・・・・StatPressのような表示にしました。
|
105 |
+
また、現在まで「NGワード」に設定したものが 投稿者の「名前」に存在していた場合でも通っていましたが、「名前」にも効くようにしました。
|
106 |
+
(トラックバックでも同様に名前もNGワード対象に追加しています。)
|
107 |
+
|
108 |
= 2.2 =
|
109 |
URL文字列(単純に'http'文字列)が許容数(初期設定3つまで)を超えて包含される場合エラーとする機能を追加
|
110 |
制限するかどうかと許容数の設定及びエラー文言を設定可能。
|
throws_spam_away.php
CHANGED
@@ -4,10 +4,13 @@
|
|
4 |
Plugin URI: http://gti.jp/tsa/
|
5 |
Description: コメント内に日本語の記述が存在しない場合はあたかも受け付けたように振る舞いながらも捨ててしまうプラグイン
|
6 |
Author: 株式会社ジーティーアイ さとう たけし
|
7 |
-
Version: 2.
|
8 |
Author URI: http://gti.jp/
|
9 |
*/
|
10 |
|
|
|
|
|
|
|
11 |
/** 初期設定 */
|
12 |
// エラー種別
|
13 |
$error_type = "";
|
@@ -28,33 +31,33 @@ $default_block_ip_address_error_msg = "";
|
|
28 |
// URL数制限値オーバーのエラー文言(初期設定)
|
29 |
$default_url_count_over_error_msg = "";
|
30 |
// URL数の制限をするか
|
31 |
-
$default_url_count_check_flg = "1";
|
32 |
// URL数の制限数
|
33 |
-
$default_ok_url_count = 3;
|
34 |
/** オプションキー */
|
35 |
-
// 日本語が存在しない時エラーとするかフラグ
|
36 |
-
// 日本語文字列含有数 (入力値以下ならエラー)
|
37 |
-
// 元の記事に戻ってくる時間(秒)
|
38 |
-
// コメント欄の下に表示される注意文言
|
39 |
// 日本語文字列規定値未満エラー時に表示される文言(元の記事に戻ってくる時間の間のみ表示)
|
40 |
-
//
|
41 |
// その他NGキーワード(日本語でも英語(その他)でもNGとしたいキーワードを半角カンマ区切りで複数設定できます。挙動は同じです。NGキーワードだけでも使用できます。)
|
42 |
-
//
|
43 |
// NGキーワードエラー時に表示される文言(元の記事に戻ってくる時間の間のみ表示)
|
44 |
-
//
|
45 |
// 必須キーワード(日本語でも英語(その他)でも必須としたいキーワードを半角カンマ区切りで複数設定できます。指定文字列を含まない場合はエラーとなります。※複数の方が厳しくなります。必須キーワードだけでも使用できます。)
|
46 |
-
//
|
47 |
// 必須キーワードエラー時に表示される文言(元の記事に戻ってくる時間の間のみ表示)
|
48 |
-
//
|
49 |
-
// この設定をトラックバック記事にも採用するか
|
50 |
// トラックバック記事にも採用する場合、ついでにこちらのURLが含まれているか判断するか
|
51 |
-
//
|
52 |
// WordPressのcommentsテーブルで「spam」判定されたことがあるIPアドレスからの投稿を無視するか
|
53 |
-
//
|
54 |
// ブロックしたいIPアドレスを任意で入力(半角カンマ区切りで複数設定できます。)
|
55 |
-
//
|
56 |
// ブロック対象IPアドレスからの投稿時に表示される文言(元の記事に戻ってくる時間の間のみ表示)
|
57 |
-
//
|
58 |
// URL(単純に'http'文字列のチェックのみ)文字列数を制限するか [tsa_url_count_on_flg] 1:する その他:しない
|
59 |
// URL(単純に'http'文字列のチェックのみ)文字列の許容数 [tsa_ok_url_count] 数値型
|
60 |
// URL(単純に'http'文字列のチェックのみ)文字列許容数オーバー時に表示される文言(元の記事に戻ってくる時間の間のみ表示)
|
@@ -76,249 +79,323 @@ add_action('pre_comment_on_post', array(&$newThrowsSpamAway, "comment_post"), 1)
|
|
76 |
*
|
77 |
*/
|
78 |
class ThrowsSpamAway {
|
79 |
-
|
80 |
-
|
81 |
-
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
|
103 |
-
|
104 |
-
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
-
|
119 |
-
|
120 |
-
|
121 |
-
|
122 |
-
|
123 |
-
|
124 |
-
|
125 |
-
|
126 |
-
|
127 |
-
|
128 |
-
|
129 |
-
|
130 |
-
|
131 |
-
|
132 |
-
|
133 |
-
|
134 |
-
|
135 |
-
|
136 |
-
|
137 |
-
|
138 |
-
|
139 |
-
|
140 |
-
|
141 |
-
|
142 |
-
|
143 |
-
|
144 |
-
|
145 |
-
|
146 |
-
|
147 |
-
|
148 |
-
|
149 |
-
|
150 |
-
|
151 |
-
|
152 |
-
|
153 |
-
|
154 |
-
|
155 |
-
|
156 |
-
|
157 |
-
|
158 |
-
|
159 |
-
|
160 |
-
|
161 |
-
|
162 |
-
|
163 |
-
|
164 |
-
|
165 |
-
|
166 |
-
|
167 |
-
|
168 |
-
|
169 |
-
|
170 |
-
|
171 |
-
|
172 |
-
|
173 |
-
|
174 |
-
|
175 |
-
|
176 |
-
|
177 |
-
|
178 |
-
|
179 |
-
|
180 |
-
|
181 |
-
|
182 |
-
|
183 |
-
|
184 |
-
|
185 |
-
|
186 |
-
|
187 |
-
|
188 |
-
|
189 |
-
|
190 |
-
|
191 |
-
|
192 |
-
|
193 |
-
|
194 |
-
|
195 |
-
|
196 |
-
|
197 |
-
|
198 |
-
|
199 |
-
|
200 |
-
|
201 |
-
|
202 |
-
|
203 |
-
|
204 |
-
|
205 |
-
|
206 |
-
|
207 |
-
|
208 |
-
|
209 |
-
|
210 |
-
|
211 |
-
|
212 |
-
|
213 |
-
|
214 |
-
|
215 |
-
|
216 |
-
|
217 |
-
|
218 |
-
|
219 |
-
|
220 |
-
|
221 |
-
|
222 |
-
|
223 |
-
|
224 |
-
|
225 |
-
|
226 |
-
|
227 |
-
|
228 |
-
|
229 |
-
|
230 |
-
|
231 |
-
|
232 |
-
|
233 |
-
|
234 |
-
|
235 |
-
|
236 |
-
|
237 |
-
|
238 |
-
|
239 |
-
|
240 |
-
|
241 |
-
|
242 |
-
|
243 |
-
|
244 |
-
|
245 |
-
|
246 |
-
|
247 |
-
|
248 |
-
|
249 |
-
|
250 |
-
|
251 |
-
|
252 |
-
|
253 |
-
|
254 |
-
|
255 |
-
|
256 |
-
|
257 |
-
|
258 |
-
|
259 |
-
|
260 |
-
|
261 |
-
|
262 |
-
|
263 |
-
|
264 |
-
|
265 |
-
|
266 |
-
|
267 |
-
|
268 |
-
|
269 |
-
|
270 |
-
|
271 |
-
|
272 |
-
|
273 |
-
|
274 |
-
|
275 |
-
|
276 |
-
|
277 |
-
|
278 |
-
|
279 |
-
|
280 |
-
|
281 |
-
|
282 |
-
|
283 |
-
|
284 |
-
|
285 |
-
|
286 |
-
|
287 |
-
|
288 |
-
|
289 |
-
|
290 |
-
|
291 |
-
|
292 |
-
|
293 |
-
|
294 |
-
|
295 |
-
|
296 |
-
|
297 |
-
|
298 |
-
|
299 |
-
|
300 |
-
|
301 |
-
|
302 |
-
|
303 |
-
|
304 |
-
|
305 |
-
|
306 |
-
|
307 |
-
|
308 |
-
|
309 |
-
|
310 |
-
|
311 |
-
|
312 |
-
|
313 |
-
|
314 |
-
|
315 |
-
|
316 |
-
|
317 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
318 |
<style>
|
319 |
table.form-table { }
|
320 |
table.form-table th {
|
321 |
-
|
322 |
}
|
323 |
</style>
|
324 |
<script type="text/Javascript">
|
@@ -332,234 +409,361 @@ var isDuplicate = function(ary, str) {
|
|
332 |
return false;
|
333 |
};
|
334 |
function addIpAddresses(newAddressStr) {
|
335 |
-
|
336 |
-
|
337 |
-
|
338 |
-
|
339 |
-
|
340 |
-
|
341 |
-
|
342 |
-
|
343 |
-
|
344 |
-
|
345 |
-
|
346 |
-
|
347 |
-
|
348 |
-
|
349 |
}
|
350 |
</script>
|
351 |
<div class="wrap">
|
352 |
-
|
353 |
-
|
354 |
-
|
355 |
-
|
356 |
-
|
357 |
-
|
358 |
-
|
359 |
-
|
360 |
-
|
361 |
-
|
362 |
-
|
363 |
-
|
364 |
-
|
365 |
-
|
366 |
-
|
367 |
-
|
368 |
-
|
369 |
-
|
370 |
-
|
371 |
-
|
372 |
-
|
373 |
-
|
374 |
-
|
375 |
-
|
376 |
-
|
377 |
-
|
378 |
-
|
379 |
-
|
380 |
-
|
381 |
-
|
382 |
-
|
383 |
-
|
384 |
-
|
385 |
-
|
386 |
-
|
387 |
-
|
388 |
-
|
389 |
-
|
390 |
-
|
391 |
-
|
392 |
-
|
393 |
-
|
394 |
-
|
395 |
-
|
396 |
-
|
397 |
-
|
398 |
-
|
399 |
-
|
400 |
-
|
401 |
-
|
402 |
-
|
403 |
-
|
404 |
-
|
405 |
-
|
406 |
-
|
407 |
-
|
408 |
-
|
409 |
-
|
410 |
-
|
411 |
-
|
412 |
-
|
413 |
-
|
414 |
-
|
415 |
(元の記事に戻ってくる時間の間のみ表示)</th>
|
416 |
-
|
417 |
-
|
418 |
-
|
419 |
-
|
420 |
-
|
421 |
-
|
422 |
-
|
423 |
-
|
424 |
-
|
425 |
-
|
426 |
-
|
427 |
-
|
428 |
-
|
429 |
-
|
430 |
-
|
431 |
-
|
432 |
-
|
433 |
-
|
434 |
-
|
435 |
-
|
436 |
-
|
437 |
-
|
438 |
-
|
439 |
-
|
440 |
-
|
441 |
-
|
442 |
-
|
443 |
-
|
444 |
-
|
445 |
-
|
446 |
-
|
447 |
-
|
448 |
-
|
449 |
-
|
450 |
-
|
451 |
-
|
452 |
-
|
453 |
-
|
454 |
-
|
455 |
-
|
456 |
-
|
457 |
-
|
458 |
-
|
459 |
-
|
460 |
-
|
461 |
-
|
462 |
-
|
463 |
-
|
464 |
-
|
465 |
-
|
466 |
-
|
467 |
-
|
468 |
-
|
469 |
-
|
470 |
-
|
471 |
-
|
472 |
-
|
473 |
-
|
474 |
-
|
475 |
-
|
476 |
-
|
477 |
-
|
478 |
-
|
479 |
-
|
480 |
-
|
481 |
-
|
482 |
-
|
483 |
-
|
484 |
-
|
485 |
-
|
486 |
-
|
487 |
-
|
488 |
-
|
489 |
<?php
|
490 |
-
|
491 |
-
|
492 |
-
?>現在「spam」フラグが付いているIP
|
493 |
-
|
494 |
-
|
495 |
-
|
496 |
-
|
497 |
-
|
498 |
-
|
499 |
-
|
500 |
-
|
501 |
?><b><?php echo $spam_ip; ?></b><br /><?php
|
502 |
-
|
503 |
-
?> <input type="button" onclick="javascript:addIpAddresses('<?php echo $add_ip_addresses; ?>');" value="これらのIPアドレスを任意のブロック対象IPアドレスにコピーする" />
|
504 |
-
|
505 |
-
|
506 |
-
|
507 |
-
|
508 |
-
|
509 |
-
|
510 |
-
|
511 |
-
|
512 |
-
|
513 |
-
|
514 |
-
|
515 |
-
|
516 |
-
|
517 |
-
|
518 |
-
|
519 |
-
|
520 |
-
|
521 |
-
|
522 |
-
|
523 |
-
|
524 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
525 |
</div>
|
526 |
-
|
527 |
-
|
528 |
-
|
529 |
-
|
530 |
-
|
531 |
-
|
532 |
-
|
533 |
-
|
534 |
-
|
535 |
-
|
536 |
-
|
537 |
-
|
538 |
-
|
539 |
-
|
540 |
-
|
541 |
-
|
542 |
-
|
543 |
-
|
544 |
-
|
545 |
-
|
546 |
-
|
547 |
-
|
548 |
-
|
549 |
-
|
550 |
-
|
551 |
-
|
552 |
-
|
553 |
-
|
554 |
-
|
555 |
-
|
556 |
-
|
557 |
-
|
558 |
-
|
559 |
-
|
560 |
-
|
561 |
-
|
562 |
-
|
563 |
-
|
564 |
-
|
|
|
565 |
}
|
4 |
Plugin URI: http://gti.jp/tsa/
|
5 |
Description: コメント内に日本語の記述が存在しない場合はあたかも受け付けたように振る舞いながらも捨ててしまうプラグイン
|
6 |
Author: 株式会社ジーティーアイ さとう たけし
|
7 |
+
Version: 2.3.3
|
8 |
Author URI: http://gti.jp/
|
9 |
*/
|
10 |
|
11 |
+
// スパムデータベースバージョン
|
12 |
+
$tsa_db_version = 2.3;
|
13 |
+
|
14 |
/** 初期設定 */
|
15 |
// エラー種別
|
16 |
$error_type = "";
|
31 |
// URL数制限値オーバーのエラー文言(初期設定)
|
32 |
$default_url_count_over_error_msg = "";
|
33 |
// URL数の制限をするか
|
34 |
+
$default_url_count_check_flg = "1"; // 1:する
|
35 |
// URL数の制限数
|
36 |
+
$default_ok_url_count = 3; // 3つまで許容
|
37 |
/** オプションキー */
|
38 |
+
// 日本語が存在しない時エラーとするかフラグ [tsa_on_flg] 1:する 2:しない
|
39 |
+
// 日本語文字列含有数 (入力値以下ならエラー) [tsa_japanese_string_min_count] 数値型
|
40 |
+
// 元の記事に戻ってくる時間(秒) [tsa_back_second] 数値型
|
41 |
+
// コメント欄の下に表示される注意文言 [tsa_caution_message] 文字列型
|
42 |
// 日本語文字列規定値未満エラー時に表示される文言(元の記事に戻ってくる時間の間のみ表示)
|
43 |
+
// [tsa_error_message] 文字列型
|
44 |
// その他NGキーワード(日本語でも英語(その他)でもNGとしたいキーワードを半角カンマ区切りで複数設定できます。挙動は同じです。NGキーワードだけでも使用できます。)
|
45 |
+
// [tsa_ng_keywords] 文字列型(半角カンマ区切り文字列)
|
46 |
// NGキーワードエラー時に表示される文言(元の記事に戻ってくる時間の間のみ表示)
|
47 |
+
// [tsa_ng_key_error_message] 文字列型
|
48 |
// 必須キーワード(日本語でも英語(その他)でも必須としたいキーワードを半角カンマ区切りで複数設定できます。指定文字列を含まない場合はエラーとなります。※複数の方が厳しくなります。必須キーワードだけでも使用できます。)
|
49 |
+
// [tsa_must_keywords] 文字列型(半角カンマ区切り文字列)
|
50 |
// 必須キーワードエラー時に表示される文言(元の記事に戻ってくる時間の間のみ表示)
|
51 |
+
// [tsa_must_key_error_message] 文字列型
|
52 |
+
// この設定をトラックバック記事にも採用するか [tsa_tb_on_flg] 1:する 2:しない
|
53 |
// トラックバック記事にも採用する場合、ついでにこちらのURLが含まれているか判断するか
|
54 |
+
// [tsa_tb_url_flg] 1:する 2:しない
|
55 |
// WordPressのcommentsテーブルで「spam」判定されたことがあるIPアドレスからの投稿を無視するか
|
56 |
+
// [tsa_ip_block_from_spam_chk_flg] 1:する その他:しない
|
57 |
// ブロックしたいIPアドレスを任意で入力(半角カンマ区切りで複数設定できます。)
|
58 |
+
// [tsa_block_ip_addresses] 文字列型
|
59 |
// ブロック対象IPアドレスからの投稿時に表示される文言(元の記事に戻ってくる時間の間のみ表示)
|
60 |
+
// [tsa_block_ip_address_error_message] 文字列型
|
61 |
// URL(単純に'http'文字列のチェックのみ)文字列数を制限するか [tsa_url_count_on_flg] 1:する その他:しない
|
62 |
// URL(単純に'http'文字列のチェックのみ)文字列の許容数 [tsa_ok_url_count] 数値型
|
63 |
// URL(単純に'http'文字列のチェックのみ)文字列許容数オーバー時に表示される文言(元の記事に戻ってくる時間の間のみ表示)
|
79 |
*
|
80 |
*/
|
81 |
class ThrowsSpamAway {
|
82 |
+
|
83 |
+
// version
|
84 |
+
var $version = '2.3.2';
|
85 |
+
var $table_name = "";
|
86 |
+
|
87 |
+
public function __construct() {
|
88 |
+
global $default_spam_data_save;
|
89 |
+
add_action( 'admin_menu', array( $this, 'admin_menu' ) );
|
90 |
+
global $wpdb;
|
91 |
+
// 接頭辞(wp_)を付けてテーブル名を設定
|
92 |
+
$this->table_name = $wpdb->prefix . 'tsa_spam';
|
93 |
+
}
|
94 |
+
|
95 |
+
/**
|
96 |
+
* スパム投稿テーブル作成
|
97 |
+
* $flg がTRUEなら強制的にテーブル作成
|
98 |
+
*/
|
99 |
+
function tsa_createTbl() {
|
100 |
+
global $wpdb;
|
101 |
+
global $tsa_db_version;
|
102 |
+
|
103 |
+
// テーブル作成要フラグ
|
104 |
+
$flg = FALSE;
|
105 |
+
if($wpdb->get_var("SHOW TABLES LIKE '$this->table_name'") != $this->table_name) {
|
106 |
+
// テーブルが存在しないため作成する
|
107 |
+
$flg = TRUE;
|
108 |
+
}
|
109 |
+
|
110 |
+
//DBのバージョン
|
111 |
+
//$tsa_db_version
|
112 |
+
//現在のDBバージョン取得
|
113 |
+
$installed_ver = get_option( 'tsa_meta_version', 0 );
|
114 |
+
// DBバージョンが低い または テーブルが存在しない場合は作成
|
115 |
+
if( $installed_ver < $tsa_db_version || $flg == TRUE) {
|
116 |
+
// DBバージョンは 2.3未満が存在しないためSQLはCREATE文のみ
|
117 |
+
$sql = "CREATE TABLE " . $this->table_name . " (
|
118 |
+
meta_id bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT,
|
119 |
+
post_id bigint(20) UNSIGNED DEFAULT '0' NOT NULL,
|
120 |
+
ip_address text,
|
121 |
+
post_date timestamp,
|
122 |
+
UNIQUE KEY meta_id (meta_id)
|
123 |
+
)
|
124 |
+
CHARACTER SET 'utf8';";
|
125 |
+
require_once( ABSPATH . 'wp-admin/includes/upgrade.php' );
|
126 |
+
dbDelta( $sql );
|
127 |
+
//オプションにDBバージョン保存
|
128 |
+
update_option( 'tsa_meta_version', $tsa_db_version );
|
129 |
+
}
|
130 |
+
}
|
131 |
+
|
132 |
+
/**
|
133 |
+
* スパム投稿の記録
|
134 |
+
* @param string $post_id
|
135 |
+
* @param string $ip_address
|
136 |
+
*/
|
137 |
+
function save_post_meta( $post_id, $ip_address ) {
|
138 |
+
if ( get_option('tsa_spam_data_save', $default_spam_data_save) != "1" ) return;
|
139 |
+
|
140 |
+
global $wpdb;
|
141 |
+
|
142 |
+
//保存するために配列にする
|
143 |
+
$set_arr = array(
|
144 |
+
'post_id' => $post_id,
|
145 |
+
'ip_address' => $ip_address
|
146 |
+
);
|
147 |
+
|
148 |
+
//レコード新規追加
|
149 |
+
$wpdb->insert( $this->table_name, $set_arr );
|
150 |
+
$wpdb->show_errors();
|
151 |
+
return;
|
152 |
+
}
|
153 |
+
|
154 |
+
function comment_form() {
|
155 |
+
global $default_caution_msg;
|
156 |
+
// 注意文言表示
|
157 |
+
$caution_msg = get_option( 'tsa_caution_message', $default_caution_msg );
|
158 |
+
echo '<div id="throwsSpamAway">'.$caution_msg.'</div>';
|
159 |
+
return TRUE;
|
160 |
+
}
|
161 |
+
|
162 |
+
function comment_post( $id ) {
|
163 |
+
global $newThrowsSpamAway;
|
164 |
+
global $user_ID;
|
165 |
+
global $default_back_second;
|
166 |
+
global $default_error_msg;
|
167 |
+
global $default_ng_key_error_msg;
|
168 |
+
global $default_must_key_error_msg;
|
169 |
+
global $default_block_ip_address_error_msg;
|
170 |
+
global $default_url_count_over_error_msg;
|
171 |
+
global $error_type;
|
172 |
+
|
173 |
+
if( $user_ID ) {
|
174 |
+
return $id;
|
175 |
+
}
|
176 |
+
// コメント(comment)及び名前(author)の中も検査
|
177 |
+
$author = $_POST["author"];
|
178 |
+
$comment = $_POST["comment"];
|
179 |
+
// IP系の検査
|
180 |
+
$ip = $_SERVER['REMOTE_ADDR'];
|
181 |
+
if ( !$newThrowsSpamAway->ip_check( $ip ) ) {
|
182 |
+
// アウト!
|
183 |
+
} else
|
184 |
+
// コメント検査
|
185 |
+
if ( $newThrowsSpamAway->validation( $comment, $author ) ) {
|
186 |
+
return $id;
|
187 |
+
}
|
188 |
+
$error_msg = "";
|
189 |
+
switch ( $error_type ) {
|
190 |
+
case "must_word" :
|
191 |
+
$error_msg = get_option( 'tsa_must_key_error_message', $default_must_key_error_msg );
|
192 |
+
break;
|
193 |
+
case "ng_word" :
|
194 |
+
$error_msg = get_option( 'tsa_ng_key_error_message', $default_ng_key_error_msg );
|
195 |
+
break;
|
196 |
+
case "block_ip" :
|
197 |
+
$error_msg = get_option( 'tsa_block_ip_address_error_message', $default_block_ip_address_error_msg );
|
198 |
+
break;
|
199 |
+
case "url_count_over" :
|
200 |
+
$error_msg = get_option( 'tsa_url_count_over_error_message', $default_url_count_over_error_msg );
|
201 |
+
break;
|
202 |
+
default :
|
203 |
+
$error_msg = get_option( 'tsa_error_message', $default_error_msg );
|
204 |
+
}
|
205 |
+
// 記録する場合はDB記録
|
206 |
+
if ( get_option( 'tsa_spam_data_save', $default_spam_data_save ) == "1" ) $this->save_post_meta( $id, $ip );
|
207 |
+
// 元画面へ戻るタイム計算
|
208 |
+
$back_time = ( (int) get_option( 'tsa_back_second', $default_back_second ) ) * 1000;
|
209 |
+
// タイム値が0なら元画面へそのままリダイレクト
|
210 |
+
if ( $back_time == 0 ) {
|
211 |
+
header( "Location:".$_SERVER['HTTP_REFERER'] );
|
212 |
+
die;
|
213 |
+
} else {
|
214 |
+
wp_die( __($error_msg."<script type=\"text/javascript\">window.setTimeout(location.href='".$_SERVER['HTTP_REFERER']."', ".$back_time.");</script>", 'throws-spam-away'));
|
215 |
+
}
|
216 |
+
}
|
217 |
+
|
218 |
+
/**
|
219 |
+
* IPアドレスのチェックメソッド
|
220 |
+
* @param string $target_ip
|
221 |
+
*/
|
222 |
+
function ip_check( $target_ip ) {
|
223 |
+
global $wpdb; // WordPress DBアクセス
|
224 |
+
global $newThrowsSpamAway;
|
225 |
+
global $error_type;
|
226 |
+
// IP制御 WordPressのスパムチェックにてスパム扱いしている投稿のIPをブロックするか
|
227 |
+
$ip_block_from_spam_chk_flg = get_option( 'tsa_ip_block_from_spam_chk_flg' );
|
228 |
+
|
229 |
+
if ($ip_block_from_spam_chk_flg === "1") {
|
230 |
+
// wp_commentsの comment_approved カラムが「spam」のIP_ADDRESSからの投稿は無視する
|
231 |
+
$results = $wpdb->get_results( "SELECT DISTINCT comment_author_IP FROM $wpdb->comments WHERE comment_approved = 'spam' ORDER BY comment_author_IP ASC " );
|
232 |
+
foreach ( $results as $item ) {
|
233 |
+
if ( trim( $item->comment_author_IP ) == trim( $target_ip ) ) {
|
234 |
+
// ブロックしたいIP
|
235 |
+
$error_type = "block_ip";
|
236 |
+
return FALSE;
|
237 |
+
}
|
238 |
+
}
|
239 |
+
}
|
240 |
+
// IP制御 任意のIPアドレスをあればブロックする
|
241 |
+
$block_ip_addresses = get_option( 'tsa_block_ip_addresses', "" );
|
242 |
+
if ( $block_ip_addresses != NULL && $block_ip_addresses != "" ) {
|
243 |
+
$ip_list = mb_split( ",", $block_ip_addresses );
|
244 |
+
foreach ( $ip_list as $ip ) {
|
245 |
+
// 指定IPが範囲指定の場合 例:192.168.1.0/24
|
246 |
+
if ( strpos( $ip, "/" ) != FALSE ) {
|
247 |
+
if ( $this->inCIDR( $target_ip, $ip ) ) {
|
248 |
+
// ブロックしたいIP
|
249 |
+
$error_type = "block_ip";
|
250 |
+
return FALSE;
|
251 |
+
}
|
252 |
+
} elseif ( trim( $ip ) == trim( $target_ip ) ) {
|
253 |
+
// ブロックしたいIP
|
254 |
+
$error_type = "block_ip";
|
255 |
+
return FALSE;
|
256 |
+
} else {
|
257 |
+
// セーフIP
|
258 |
+
}
|
259 |
+
}
|
260 |
+
}
|
261 |
+
return TRUE;
|
262 |
+
}
|
263 |
+
|
264 |
+
/**
|
265 |
+
* CIDRチェック
|
266 |
+
* @param string $ip
|
267 |
+
* @param string $cidr
|
268 |
+
* @return boolean
|
269 |
+
*/
|
270 |
+
function inCIDR($ip, $cidr) {
|
271 |
+
list($network, $mask_bit_len) = explode('/', $cidr);
|
272 |
+
if ( !is_nan($mask_bit_len) && $mask_bit_len <= 32) {
|
273 |
+
$host = 32 - $mask_bit_len;
|
274 |
+
$net = ip2long($network) >> $host << $host; // 11000000101010000000000000000000
|
275 |
+
$ip_net = ip2long($ip) >> $host << $host; // 11000000101010000000000000000000
|
276 |
+
return $net === $ip_net;
|
277 |
+
} else {
|
278 |
+
// 形式が不正ならば無視するためFALSE
|
279 |
+
return FALSE;
|
280 |
+
}
|
281 |
+
}
|
282 |
+
|
283 |
+
/**
|
284 |
+
* 日本語が含まれているかチェックメソッド
|
285 |
+
* @param string $comment
|
286 |
+
* @param string $author
|
287 |
+
*/
|
288 |
+
function validation( $comment, $author ) {
|
289 |
+
global $newThrowsSpamAway;
|
290 |
+
global $error_type;
|
291 |
+
global $default_url_count_check_flg; // URL数を制御するか初期設定値
|
292 |
+
global $default_ok_url_count; // 制限する場合のURL数初期設定値
|
293 |
+
global $default_japanese_string_min_count; // 日本語文字最小含有数
|
294 |
+
// まずはシングルバイトだけならエラー
|
295 |
+
if (get_option('tsa_on_flg') != "2" && strlen(bin2hex($comment)) / 2 == mb_strlen($comment)) {
|
296 |
+
return FALSE;
|
297 |
+
} else {
|
298 |
+
// OKフラグ
|
299 |
+
$flg = FALSE;
|
300 |
+
// マルチバイト文字が含まれている場合は日本語が含まれていればOK
|
301 |
+
if (get_option('tsa_on_flg') != "2") {
|
302 |
+
$count_flg = 0;
|
303 |
+
mb_regex_encoding('UTF-8');
|
304 |
+
$com_split = $newThrowsSpamAway->mb_str_split($comment);
|
305 |
+
foreach ($com_split as $it) {
|
306 |
+
if (preg_match('/[一-龠]+/u', $it)){ $count_flg += 1; }
|
307 |
+
if (preg_match('/[ァ-ヶー]+/u', $it)){ $count_flg += 1; }
|
308 |
+
if (preg_match('/[ぁ-ん]+/u', $it)){ $count_flg += 1; }
|
309 |
+
}
|
310 |
+
$flg = (intval(get_option('tsa_japanese_string_min_count', $default_japanese_string_min_count)) < $count_flg);
|
311 |
+
if ($flg == FALSE) {
|
312 |
+
return FALSE;
|
313 |
+
}
|
314 |
+
}
|
315 |
+
// 日本語文字列チェック抜けたらキーワードチェックを行う
|
316 |
+
// キーワード文字列群
|
317 |
+
$ng_keywords = get_option('tsa_ng_keywords');
|
318 |
+
if ($ng_keywords != NULL && $ng_keywords != "") {
|
319 |
+
$keyword_list = mb_split(",", $ng_keywords);
|
320 |
+
foreach ($keyword_list as $key) {
|
321 |
+
if (preg_match('/'.trim($key)."/u", $author.$comment)) {
|
322 |
+
$error_type = "ng_word";
|
323 |
+
return FALSE;
|
324 |
+
}
|
325 |
+
}
|
326 |
+
}
|
327 |
+
// キーワードチェック(ブラックリスト)を抜けたら必須キーワードチェックを行う
|
328 |
+
// キーワード文字列群 ※ブラックリストと重複するものはブラックリストのほうが優先です。
|
329 |
+
$must_keywords = get_option('tsa_must_keywords', "");
|
330 |
+
if ($must_keywords != NULL && $must_keywords != "") {
|
331 |
+
$keyword_list = mb_split(",", $must_keywords);
|
332 |
+
foreach ($keyword_list as $key) {
|
333 |
+
if (preg_match('/'.trim($key)."/u", $author.$comment)) {
|
334 |
+
// OK
|
335 |
+
} else {
|
336 |
+
// 必須ワードがなかったためエラー
|
337 |
+
$error_type = "must_word";
|
338 |
+
return FALSE;
|
339 |
+
}
|
340 |
+
}
|
341 |
+
}
|
342 |
+
// URL数チェック
|
343 |
+
$url_count_check = get_option('tsa_url_count_on_flg', $default_url_count_check_flg);
|
344 |
+
// 許容URL数設定値
|
345 |
+
$ok_url_count = intval(get_option('tsa_ok_url_count', $default_ok_url_count)); // デフォルト値3(3つまで許容)
|
346 |
+
if ( $url_count_check != "2" ) {
|
347 |
+
if ( substr_count( strtolower( $author.$comment ), 'http') > $ok_url_count) {
|
348 |
+
// URL文字列(httpの数)が多いエラー
|
349 |
+
$error_type = "url_count_over";
|
350 |
+
return FALSE;
|
351 |
+
}
|
352 |
+
}
|
353 |
+
|
354 |
+
return TRUE;
|
355 |
+
}
|
356 |
+
}
|
357 |
+
|
358 |
+
function mb_str_split( $string ) {
|
359 |
+
return preg_split('/(?<!^)(?!$)/u', $string );
|
360 |
+
}
|
361 |
+
|
362 |
+
/**
|
363 |
+
* Callback admin_menu
|
364 |
+
*/
|
365 |
+
function admin_menu() {
|
366 |
+
$mincap="level_8";
|
367 |
+
add_menu_page(__( 'Throws SPAM Away', $this->domain ), __( 'Throws SPAM Away', $this->domain ), $mincap, __FILE__, array( $this, 'options_page' ) );
|
368 |
+
|
369 |
+
// 従来通りスパムデータ保存しない場合はスルーする
|
370 |
+
if ( get_option( 'tsa_spam_data_save' ) != 1 ) {
|
371 |
+
// N/A
|
372 |
+
} else {
|
373 |
+
// プラグインアップデート時もチェックするため常に・・・
|
374 |
+
$this->tsa_createTbl(TRUE);
|
375 |
+
}
|
376 |
+
|
377 |
+
}
|
378 |
+
|
379 |
+
/**
|
380 |
+
* Admin options page
|
381 |
+
*/
|
382 |
+
function options_page() {
|
383 |
+
global $wpdb; // WordPress DBアクセス
|
384 |
+
global $default_japanese_string_min_count;
|
385 |
+
global $default_caution_msg;
|
386 |
+
global $default_back_second;
|
387 |
+
global $default_error_msg;
|
388 |
+
global $default_ng_key_error_msg;
|
389 |
+
global $default_must_key_error_msg;
|
390 |
+
global $default_block_ip_address_error_msg;
|
391 |
+
global $default_url_count_over_error_msg;
|
392 |
+
global $default_ok_url_count;
|
393 |
+
global $default_spam_data_save;
|
394 |
+
?>
|
395 |
<style>
|
396 |
table.form-table { }
|
397 |
table.form-table th {
|
398 |
+
width : 200px;
|
399 |
}
|
400 |
</style>
|
401 |
<script type="text/Javascript">
|
409 |
return false;
|
410 |
};
|
411 |
function addIpAddresses(newAddressStr) {
|
412 |
+
var str = document.getElementById('tsa_block_ip_addresses').value;
|
413 |
+
if (str.length > 0) { str += ","; }
|
414 |
+
str += newAddressStr;
|
415 |
+
var ary = str.split(",");
|
416 |
+
var newAry = new Array;
|
417 |
+
var ret = "";
|
418 |
+
|
419 |
+
for( var i=0 ; i < ary.length ; i++ ) {
|
420 |
+
if( !isDuplicate(newAry, ary[i]) ){
|
421 |
+
newAry.push(ary[i]);
|
422 |
+
}
|
423 |
+
}
|
424 |
+
document.getElementById('tsa_block_ip_addresses').value = newAry.join(',');
|
425 |
+
return false;
|
426 |
}
|
427 |
</script>
|
428 |
<div class="wrap">
|
429 |
+
<h2>Throws SPAM Away設定</h2>
|
430 |
+
<form method="post" action="options.php">
|
431 |
+
<h3>スパム対策機能 設定</h3>
|
432 |
+
<?php wp_nonce_field('update-options'); ?>
|
433 |
+
<table class="form-table">
|
434 |
+
<tr valign="top">
|
435 |
+
<th scope="row">日本語が存在しない場合、無視対象とする<br />(日本語文字列が存在しない場合無視対象となります。)</th>
|
436 |
+
<td><?php
|
437 |
+
$chk_1 = "";
|
438 |
+
$chk_2 = "";
|
439 |
+
if (get_option('tsa_on_flg', "1") == "2") {
|
440 |
+
$chk_2 = " checked=\"checked\"";
|
441 |
+
} else {
|
442 |
+
$chk_1 = " checked=\"checked\"";
|
443 |
+
}
|
444 |
+
?>
|
445 |
+
<label><input type="radio" name="tsa_on_flg" value="1"<?php echo $chk_1;?>/> する</label>
|
446 |
+
<label><input type="radio" name="tsa_on_flg" value="2"<?php echo $chk_2;?>/> しない</label>
|
447 |
+
</td>
|
448 |
+
</tr>
|
449 |
+
<tr valign="top">
|
450 |
+
<th scope="row">日本語文字列含有数<br />(この文字列に達していない場合無視対象となります。)</th>
|
451 |
+
<td><input type="text" name="tsa_japanese_string_min_count"
|
452 |
+
value="<?php echo get_option('tsa_japanese_string_min_count', $default_japanese_string_min_count); ?>" />
|
453 |
+
</td>
|
454 |
+
</tr>
|
455 |
+
<tr valign="top">
|
456 |
+
<th scope="row">元の記事に戻ってくる時間<br />(秒)※0の場合エラー画面表示しません。</th>
|
457 |
+
<td><input type="text" name="tsa_back_second"
|
458 |
+
value="<?php echo get_option('tsa_back_second', $default_back_second);?>" /></td>
|
459 |
+
</tr>
|
460 |
+
<tr valign="top">
|
461 |
+
<th scope="row">コメント欄の下に表示される注意文言</th>
|
462 |
+
<td><input type="text" name="tsa_caution_message" size="80"
|
463 |
+
value="<?php echo get_option('tsa_caution_message', $default_caution_msg);?>" /><br />(初期設定:<?php echo $default_caution_msg;?>)</td>
|
464 |
+
</tr>
|
465 |
+
<tr valign="top">
|
466 |
+
<th scope="row">日本語文字列規定値未満エラー時に表示される文言<br />(元の記事に戻ってくる時間の間のみ表示)</th>
|
467 |
+
<td><input type="text" name="tsa_error_message" size="80"
|
468 |
+
value="<?php echo get_option('tsa_error_message', $default_error_msg);?>" /><br />(初期設定:<?php echo $default_error_msg;?>)</td>
|
469 |
+
</tr>
|
470 |
+
</table>
|
471 |
+
<h3>URL文字列除外 設定</h3>
|
472 |
+
<table class="form-table">
|
473 |
+
<tr valign="top">
|
474 |
+
<th scope="row">URLらしき文字列が混入している場合エラーとするか</th>
|
475 |
+
<td><?php
|
476 |
+
$chk_1 = "";
|
477 |
+
$chk_2 = "";
|
478 |
+
if (get_option('tsa_url_count_on_flg', "1") == "2") {
|
479 |
+
$chk_2 = " checked=\"checked\"";
|
480 |
+
} else {
|
481 |
+
$chk_1 = " checked=\"checked\"";
|
482 |
+
}
|
483 |
+
?>
|
484 |
+
<label><input type="radio" name="tsa_url_count_on_flg" value="1"<?php echo $chk_1;?>/> する</label>
|
485 |
+
<label><input type="radio" name="tsa_url_count_on_flg" value="2"<?php echo $chk_2;?>/> しない</label><br />
|
486 |
+
する場合の制限数(入力数値まで許容):<input type="text" name="tsa_ok_url_count" size="2"
|
487 |
+
value="<?php echo get_option('tsa_ok_url_count', $default_ok_url_count);?>" />
|
488 |
+
</td>
|
489 |
+
</tr>
|
490 |
+
<tr valign="top">
|
491 |
+
<th scope="row">URLらしき文字列混入数オーバーエラー時に表示される文言
|
492 |
(元の記事に戻ってくる時間の間のみ表示)</th>
|
493 |
+
<td><input type="text" name="tsa_url_count_over_error_message" size="80"
|
494 |
+
value="<?php echo get_option('tsa_url_count_over_error_message', $default_url_count_over_error_msg);?>" /><br />(初期設定:<?php echo $default_url_count_over_error_msg;?>)</td>
|
495 |
+
</tr>
|
496 |
+
</table>
|
497 |
+
<h3>NGキーワード / 必須キーワード 制御設定</h3>
|
498 |
+
<table class="form-table">
|
499 |
+
<tr valign="top">
|
500 |
+
<th scope="row">その他NGキーワード<br />(日本語でも英語(その他)でもNGとしたいキーワードを半角カンマ区切りで複数設定できます。<br />挙動は同じです。NGキーワードだけでも使用できます。)</th>
|
501 |
+
<td><input type="text" name="tsa_ng_keywords" size="80"
|
502 |
+
value="<?php echo get_option('tsa_ng_keywords', "");?>" /></td>
|
503 |
+
</tr>
|
504 |
+
<tr valign="top">
|
505 |
+
<th scope="row">NGキーワードエラー時に表示される文言<br />(元の記事に戻ってくる時間の間のみ表示)</th>
|
506 |
+
<td><input type="text" name="tsa_ng_key_error_message" size="80"
|
507 |
+
value="<?php echo get_option('tsa_ng_key_error_message', $default_ng_key_error_msg);?>" /><br />(初期設定:<?php echo $default_ng_key_error_msg;?>)</td>
|
508 |
+
</tr>
|
509 |
+
<tr valign="top">
|
510 |
+
<th scope="row">その上での必須キーワード<br />(日本語でも英語(その他)でも必須としたいキーワードを半角カンマ区切りで複数設定できます。<br />指定文字列を含まない場合はエラーとなります。※複数の方が厳しくなります。<br />必須キーワードだけでも使用できます。)</th>
|
511 |
+
<td><input type="text" name="tsa_must_keywords" size="80"
|
512 |
+
value="<?php echo get_option('tsa_must_keywords', "");?>" /></td>
|
513 |
+
</tr>
|
514 |
+
<tr valign="top">
|
515 |
+
<th scope="row">必須キーワードエラー時に表示される文言<br />(元の記事に戻ってくる時間の間のみ表示)</th>
|
516 |
+
<td><input type="text" name="tsa_must_key_error_message" size="80"
|
517 |
+
value="<?php echo get_option('tsa_must_key_error_message', $default_must_key_error_msg);?>" /><br />(初期設定:<?php echo $default_must_key_error_msg;?>)</td>
|
518 |
+
</tr>
|
519 |
+
</table>
|
520 |
+
<h3>トラックバックへの対応設定</h3>
|
521 |
+
<table class="form-table">
|
522 |
+
<tr valign="top">
|
523 |
+
<th scope="row">上記設定をトラックバック記事にも採用する</th>
|
524 |
+
<td><?php
|
525 |
+
$chk_1 = "";
|
526 |
+
$chk_2 = "";
|
527 |
+
if (get_option('tsa_tb_on_flg', "2") == "2") {
|
528 |
+
$chk_2 = " checked=\"checked\"";
|
529 |
+
} else {
|
530 |
+
$chk_1 = " checked=\"checked\"";
|
531 |
+
}
|
532 |
+
?>
|
533 |
+
<label><input type="radio" name="tsa_tb_on_flg" value="1"<?php echo $chk_1;?>/> する</label>
|
534 |
+
<label><input type="radio" name="tsa_tb_on_flg" value="2"<?php echo $chk_2;?>/> しない</label>
|
535 |
+
</td>
|
536 |
+
</tr>
|
537 |
+
<tr valign="top">
|
538 |
+
<th scope="row">トラックバック記事にも採用する場合、ついでにこちらのURLが含まれているか判断する<br />(初期設定:「しない」)</th>
|
539 |
+
<td><?php
|
540 |
+
$chk_1 = "";
|
541 |
+
$chk_2 = "";
|
542 |
+
if (get_option('tsa_tb_url_flg', "2") == "2") {
|
543 |
+
$chk_2 = " checked=\"checked\"";
|
544 |
+
} else {
|
545 |
+
$chk_1 = " checked=\"checked\"";
|
546 |
+
}
|
547 |
+
?>
|
548 |
+
<label><input type="radio" name="tsa_tb_url_flg" value="1"<?php echo $chk_1;?>/> する</label>
|
549 |
+
<label><input type="radio" name="tsa_tb_url_flg" value="2"<?php echo $chk_2;?>/> しない</label>
|
550 |
+
</td>
|
551 |
+
</tr>
|
552 |
+
</table>
|
553 |
+
<h3>投稿IPアドレスによる制御設定</h3>
|
554 |
+
<table class="form-table">
|
555 |
+
<tr valign="top">
|
556 |
+
<th scope="row">WordPressのコメントで「スパム」にしたIPからの投稿にも採用する</th>
|
557 |
+
<td><?php
|
558 |
+
$chk = "";
|
559 |
+
if (get_option('tsa_ip_block_from_spam_chk_flg', "") == "1") {
|
560 |
+
$chk = "checked=\"checked\"";
|
561 |
+
} else {
|
562 |
+
$chk = "";
|
563 |
+
}
|
564 |
+
?>
|
565 |
+
<label><input type="checkbox" name="tsa_ip_block_from_spam_chk_flg" value="1"<?php echo $chk; ?>/> スパム投稿設定したIPアドレスからの投稿も無視する</label><br />
|
566 |
<?php
|
567 |
+
// wp_commentsの comment_approved カラムが「spam」のIP_ADDRESSからの投稿は無視する
|
568 |
+
$results = $wpdb->get_results("SELECT DISTINCT comment_author_IP FROM $wpdb->comments WHERE comment_approved = 'spam' ORDER BY comment_author_IP ASC ");
|
569 |
+
?>現在「spam」フラグが付いているIPアドレス:<br /><blockquote><?php
|
570 |
+
$add_ip_addresses = "";
|
571 |
+
foreach ($results as $item) {
|
572 |
+
$spam_ip = $item->comment_author_IP;
|
573 |
+
// ブロックしたいIP
|
574 |
+
if ( strlen( $add_ip_addresses ) > 0 ) {
|
575 |
+
$add_ip_addresses .= ",";
|
576 |
+
}
|
577 |
+
$add_ip_addresses .= $spam_ip;
|
578 |
?><b><?php echo $spam_ip; ?></b><br /><?php
|
579 |
+
}
|
580 |
+
?> <input type="button" onclick="javascript:addIpAddresses('<?php echo $add_ip_addresses; ?>');" value="これらのIPアドレスを任意のブロック対象IPアドレスにコピーする" /><br />
|
581 |
+
</blockquote>
|
582 |
+
</td>
|
583 |
+
</tr>
|
584 |
+
<tr valign="top">
|
585 |
+
<th scope="row">任意のIPアドレスからの投稿も無視したい場合、対象となるIPアドレスを記述してください。<br />カンマ区切りで複数設定できます。(半角数字とドットのみ)</th>
|
586 |
+
<td><input type="text" name="tsa_block_ip_addresses" id="tsa_block_ip_addresses" size="80"
|
587 |
+
value="<?php echo get_option('tsa_block_ip_addresses', "");?>" /></td>
|
588 |
+
</tr>
|
589 |
+
<tr valign="top">
|
590 |
+
<th scope="row">ブロック対象のIPアドレスからの投稿時に表示される文言<br />(元の記事に戻ってくる時間の間のみ表示)</th>
|
591 |
+
<td><input type="text" name="tsa_block_ip_address_error_message" size="80"
|
592 |
+
value="<?php echo get_option('tsa_block_ip_address_error_message', $default_block_ip_address_error_msg);?>" /><br />(初期設定:<?php echo $default_block_ip_address_error_msg; ?>)</td>
|
593 |
+
</tr>
|
594 |
+
</table>
|
595 |
+
<h3>スパムデータベース</h3>
|
596 |
+
<table class="form-table">
|
597 |
+
<tr valign="top">
|
598 |
+
<th scope="row">スパムコメント投稿情報を保存しますか?</th>
|
599 |
+
<td><?php
|
600 |
+
$chk = "";
|
601 |
+
if (get_option('tsa_spam_data_save', "") == "1") {
|
602 |
+
$chk = "checked=\"checked\"";
|
603 |
+
} else {
|
604 |
+
$chk = "";
|
605 |
+
}
|
606 |
+
?>
|
607 |
+
<label><input type="checkbox" name="tsa_spam_data_save" value="1"<?php echo $chk; ?>/> スパムコメント情報を保存する</label><br />※Throws SPAM Away設定画面表示時に時間がかかることがあります。<br />※「保存する」を解除した場合でもテーブルは残りますので30日以内の取得データは表示されます。
|
608 |
+
</td>
|
609 |
+
</tr>
|
610 |
+
</table>
|
611 |
+
|
612 |
+
<input type="hidden" name="action" value="update" /> <input
|
613 |
+
type="hidden" name="page_options"
|
614 |
+
value="tsa_on_flg,tsa_japanese_string_min_count,tsa_back_second,tsa_caution_message,tsa_error_message,tsa_ng_keywords,tsa_ng_key_error_message,tsa_must_keywords,tsa_must_key_error_message,tsa_tb_on_flg,tsa_tb_url_flg,tsa_block_ip_addresses,tsa_ip_block_from_spam_chk_flg,tsa_block_ip_address_error_message,tsa_url_count_on_flg,tsa_ok_url_count,tsa_url_count_over_error_message,tsa_spam_data_save" />
|
615 |
+
<p class="submit">
|
616 |
+
<input type="submit" class="button-primary"
|
617 |
+
value="<?php _e('Save Changes') ?>" />
|
618 |
+
</p>
|
619 |
+
|
620 |
+
<?php
|
621 |
+
if ( get_option( 'tsa_spam_data_save' ) == "1" ) {
|
622 |
+
// 日数
|
623 |
+
$gdays = 30;
|
624 |
+
// 表カラー
|
625 |
+
$unique_color="#114477";
|
626 |
+
$web_color="#3377B6";
|
627 |
+
|
628 |
+
$results = $wpdb->get_results("SELECT SUBSTRING(post_date,1,10) AS spam_date,COUNT(*) as spam_count FROM `".$this->table_name."` group by spam_date order by spam_date asc");
|
629 |
+
?>
|
630 |
+
<h3>スパム投稿30日間の推移</h3>
|
631 |
+
<?php
|
632 |
+
foreach ($results as $item) {
|
633 |
+
echo $item->spam_date .":". $item->spam_count."件<br />";
|
634 |
+
}
|
635 |
+
?>
|
636 |
+
<div class="clear"></div>
|
637 |
+
|
638 |
+
<div class="clear" style="background-color:#efefef;">
|
639 |
+
<table style="width:100%;border:none;"><tr>
|
640 |
+
<?php
|
641 |
+
$total_qry = "
|
642 |
+
SELECT count(ppd) as pageview, ppd
|
643 |
+
FROM (select ip_address, SUBSTRING(post_date,1,10) as ppd from $this->table_name) as A
|
644 |
+
GROUP BY ppd HAVING ppd >= '".gmdate('Y-m-d', current_time('timestamp')-86400*$gdays)."'
|
645 |
+
ORDER BY pageview DESC
|
646 |
+
LIMIT 1
|
647 |
+
";
|
648 |
+
$qry = $wpdb->get_row($total_qry);
|
649 |
+
$maxxday=$qry->pageview;
|
650 |
+
|
651 |
+
$total_vis = "
|
652 |
+
SELECT count(distinct ip_address) as vis, ppd
|
653 |
+
FROM (select ip_address, SUBSTRING(post_date,1,10) as ppd from $this->table_name) as B
|
654 |
+
GROUP BY ppd HAVING ppd >= '".gmdate('Y-m-d', current_time('timestamp')-86400*$gdays)."'
|
655 |
+
ORDER BY vis DESC
|
656 |
+
LIMIT 1
|
657 |
+
";
|
658 |
+
$qry_vis = $wpdb->get_row($total_vis);
|
659 |
+
$maxxday += $qry_vis->vis;
|
660 |
+
|
661 |
+
if($maxxday == 0) { $maxxday = 1; }
|
662 |
+
|
663 |
+
# Y
|
664 |
+
$gd=(100/$gdays).'%';
|
665 |
+
for($gg=$gdays-1;$gg>=0;$gg--)
|
666 |
+
{
|
667 |
+
#TOTAL VISITORS
|
668 |
+
$visitor_qry = "
|
669 |
+
SELECT count(DISTINCT ip_address) AS total
|
670 |
+
FROM (select ip_address, SUBSTRING(post_date,1,10) as ppd from $this->table_name) as B
|
671 |
+
WHERE ppd = '".gmdate('Y-m-d', current_time('timestamp')-86400*$gg)."'
|
672 |
+
";
|
673 |
+
$qry_visitors = $wpdb->get_row($visitor_qry);
|
674 |
+
$px_visitors = round($qry_visitors->total*100/$maxxday);
|
675 |
+
#TOTAL PAGEVIEWS (we do not delete the uniques, this is falsing the info.. uniques are not different visitors!)
|
676 |
+
$pageview_qry = "
|
677 |
+
SELECT count(ppd) as total
|
678 |
+
FROM (select ip_address, SUBSTRING(post_date,1,10) as ppd from $this->table_name) as C
|
679 |
+
WHERE ppd = '".gmdate('Y-m-d', current_time('timestamp')-86400*$gg)."'
|
680 |
+
";
|
681 |
+
$qry_pageviews = $wpdb->get_row($pageview_qry);
|
682 |
+
$px_pageviews = round($qry_pageviews->total*100/$maxxday);
|
683 |
+
$px_white = 100 - $px_pageviews - $px_visitors;
|
684 |
+
if ($px_white < 0) { $px_white = 0; }
|
685 |
+
|
686 |
+
print '<td width="'.$gd.'" valign="bottom"';
|
687 |
+
if($start_of_week == gmdate('w',current_time('timestamp')-86400*$gg)) { print ' style="border-left:2px dotted gray;"'; } # week-cut
|
688 |
+
print "><div style='float:left;width:100%;font-family:Helvetica;font-size:7pt;text-align:center;border-right:1px solid white;color:black;'>
|
689 |
+
<div style='background:#ffffff;width:100%;height:".$px_white."px;'></div>
|
690 |
+
<div style='background:$unique_color;width:100%;height:".$px_visitors."px;' title='".$qry_visitors->total." ip_addresses'></div>
|
691 |
+
<div style='background:$web_color;width:100%;height:".$px_pageviews."px;' title='".$qry_pageviews->total." spam comments'></div>
|
692 |
+
<div style='background:gray;width:100%;height:1px;'></div>
|
693 |
+
<br />".gmdate('d', current_time('timestamp')-86400*$gg) . ' ' . gmdate('M', current_time('timestamp')-86400*$gg) . "<br clear=\"all\" /></div></td>\n";
|
694 |
+
}
|
695 |
+
?>
|
696 |
+
</tr></table>
|
697 |
+
</div>
|
698 |
+
<br />
|
699 |
+
<div class="clear">
|
700 |
+
<?php
|
701 |
+
// wp_tsa_spam の ip_address カラムに存在するIP_ADDRESS投稿は無視するか
|
702 |
+
$results = $wpdb->get_results(
|
703 |
+
"SELECT count(ip_address) as cnt,ip_address FROM (select ip_address, SUBSTRING(post_date,1,10) as ppd from $this->table_name) as D
|
704 |
+
WHERE ppd >= '".gmdate('Y-m-d', current_time('timestamp')-86400*$gdays)."'
|
705 |
+
GROUP BY ip_address
|
706 |
+
ORDER BY cnt DESC"
|
707 |
+
);
|
708 |
+
?><h4>過去30日間に無視投稿されたIPアドレス</h4>
|
709 |
+
<p>※「このIPアドレスを任意のブロック対象IPアドレスにコピーする」ボタンを押した場合は上の<b>「変更を保存」</b>をクリックし内容を保存してください。</p>
|
710 |
+
<p>※IPアドレスをクリックすると特定のホストが存在するか確認し存在する場合は表示されます。</p>
|
711 |
+
<?php if ( count( $results ) > 0 ) { ?>
|
712 |
+
<div style="height: 500px; overflow:auto;"><blockquote>
|
713 |
+
<table style="width:100%;border:1px #cccccc solid;border-collapse: collapse;"><?php
|
714 |
+
foreach ($results as $item) {
|
715 |
+
$spam_ip = $item->ip_address;
|
716 |
+
$spam_cnt = $item->cnt;
|
717 |
+
$p_url = WP_PLUGIN_URL.'/'.str_replace(basename( __FILE__),"",plugin_basename(__FILE__));
|
718 |
+
?><tr style="border:1px #cccccc solid;border-collapse: collapse;"><td><b><a href="javascript:void(0);" onclick="window.open('<?php echo $p_url; ?>hostbyip.php?ip=<?php echo $spam_ip; ?>', 'hostbyip', 'width=350,height=250,scrollbars=no,location=no,menubar=no,toolbar=no,directories=no,status=no');"><?php echo $spam_ip; ?></a></b></td><td><?php echo $spam_cnt; ?>回</td><td> <input type="button" onclick="javascript:addIpAddresses('<?php echo $spam_ip; ?>');" value="このIPアドレスを任意のブロック対象IPアドレスにコピーする" /></td></tr><?php
|
719 |
+
}
|
720 |
+
?></table></blockquote></div>
|
721 |
+
<?php } ?>
|
722 |
+
</div>
|
723 |
+
<?php } ?>
|
724 |
+
</form>
|
725 |
+
<p>スパム投稿IPアドレスを参考にアクセス禁止対策を行なってください。</p>
|
726 |
+
<div class="clear"></div>
|
727 |
+
|
728 |
</div>
|
729 |
+
|
730 |
+
<?php
|
731 |
+
}
|
732 |
+
|
733 |
+
function trackback_spam_away($tb) {
|
734 |
+
global $newThrowsSpamAway;
|
735 |
+
|
736 |
+
$tsa_tb_on_flg = get_option( 'tsa_tb_on_flg' );
|
737 |
+
$tsa_tb_url_flg = get_option( 'tsa_tb_url_flg' );
|
738 |
+
$siteurl = get_option('siteurl');
|
739 |
+
// トラックバック OR ピンバック時にフィルタ発動
|
740 |
+
if ( $tsa_tb_on_flg == "2" || ( $tb['comment_type'] != 'trackback' && $tb['comment_type'] != 'pingback' ) ) return $tb;
|
741 |
+
|
742 |
+
// SPAMかどうかフラグ
|
743 |
+
$tb_val['is_spam'] = FALSE;
|
744 |
+
|
745 |
+
// コメント判定
|
746 |
+
$author = $tb["comment_author"];
|
747 |
+
$comment = $tb["comment_content"];
|
748 |
+
// IP系の検査
|
749 |
+
$ip = $_SERVER['REMOTE_ADDR'];
|
750 |
+
if ( !$newThrowsSpamAway->ip_check( $ip ) ) {
|
751 |
+
$tb_val['is_spam'] = TRUE;
|
752 |
+
} else
|
753 |
+
// 検査します!
|
754 |
+
if ( !$newThrowsSpamAway->validation( $comment, $author ) ) {
|
755 |
+
$tb_val['is_spam'] = TRUE;
|
756 |
+
} else
|
757 |
+
// URL検索する場合、URL包含検査 (このブログのURLを含んでない場合エラー
|
758 |
+
if ( $tsa_tb_url_flg == "1" && stripos( $comment, $siteurl ) == FALSE ) {
|
759 |
+
$tb_val['is_spam'] = TRUE; // スパム扱い
|
760 |
+
}
|
761 |
+
// トラックバックスパムがなければ返却・あったら捨てちゃう
|
762 |
+
if ( !$tb_val['is_spam'] ) {
|
763 |
+
// トラックバック内に日本語存在(または禁止語句混入なし)
|
764 |
+
return $tb;
|
765 |
+
} else {
|
766 |
+
die( 'Your Trackback Throws Away.' );
|
767 |
+
}
|
768 |
+
}
|
769 |
}
|
uninstall.php
CHANGED
@@ -1,6 +1,7 @@
|
|
1 |
<?php
|
2 |
/*
|
3 |
Throws SPAM Awayプラグインアンインストール
|
|
|
4 |
*/
|
5 |
|
6 |
if(!defined('ABSPATH') && !defined('WP_UNINSTALL_PLUGIN')) { exit(); }
|
@@ -22,7 +23,10 @@ delete_option('tsa_ip_block_from_spam_chk_flg');
|
|
22 |
delete_option('tsa_block_ip_addresses');
|
23 |
delete_option('tsa_block_ip_address_error_message');
|
24 |
// ver.2.2
|
25 |
-
delete_option('tsa_url_count_on_flg');
|
26 |
-
delete_option('tsa_ok_url_count');
|
27 |
-
delete_option('tsa_url_count_over_error_message');
|
|
|
|
|
|
|
28 |
?>
|
1 |
<?php
|
2 |
/*
|
3 |
Throws SPAM Awayプラグインアンインストール
|
4 |
+
2.3追加
|
5 |
*/
|
6 |
|
7 |
if(!defined('ABSPATH') && !defined('WP_UNINSTALL_PLUGIN')) { exit(); }
|
23 |
delete_option('tsa_block_ip_addresses');
|
24 |
delete_option('tsa_block_ip_address_error_message');
|
25 |
// ver.2.2
|
26 |
+
delete_option('tsa_url_count_on_flg');
|
27 |
+
delete_option('tsa_ok_url_count');
|
28 |
+
delete_option('tsa_url_count_over_error_message');
|
29 |
+
// ver.2.3
|
30 |
+
delete_option('tsa_meta_version');
|
31 |
+
delete_option('tsa_spam_data_save');
|
32 |
?>
|