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.8.2.1 |
Comparing to | |
See all releases |
Code changes from version 2.8.2 to 2.8.2.1
- bbpress_spam_away.php +0 -209
- readme.txt +2 -1
- throws_spam_away.php +1 -4
bbpress_spam_away.php
DELETED
@@ -1,209 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
/*
|
3 |
-
Plugin Name: bbPress SPAM Away
|
4 |
-
Plugin URI: https://gti.jp/throws-spam-away/
|
5 |
-
Description: コメント内に日本語の記述が存在しない場合はあたかも受け付けたように振る舞いながらも捨ててしまうプラグイン
|
6 |
-
Author: 株式会社ジーティーアイ さとう たけし
|
7 |
-
Version: 0.1
|
8 |
-
Author URI: https://gti.co.jp/
|
9 |
-
License: GPL2
|
10 |
-
*/
|
11 |
-
/* Copyright 2016 Takeshi Satoh (http://gti.jp/)
|
12 |
-
|
13 |
-
This program is free software; you can redistribute it and/or modify
|
14 |
-
it under the terms of the GNU General Public License, version 2, as
|
15 |
-
published by the Free Software Foundation.
|
16 |
-
|
17 |
-
This program is distributed in the hope that it will be useful,
|
18 |
-
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
19 |
-
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
20 |
-
GNU General Public License for more details.
|
21 |
-
|
22 |
-
You should have received a copy of the GNU General Public License
|
23 |
-
along with this program; if not, write to the Free Software
|
24 |
-
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
25 |
-
*/
|
26 |
-
require_once 'throws_spam_away.class.php';
|
27 |
-
|
28 |
-
/**
|
29 |
-
* 設定値一覧
|
30 |
-
* デフォルト設定
|
31 |
-
*/
|
32 |
-
|
33 |
-
$tsa_spam_tbl_name = 'tsa_spam';
|
34 |
-
|
35 |
-
// Throws SPAM Awayバージョン
|
36 |
-
$tsa_version = '2.8.1';
|
37 |
-
// スパムデータベースバージョン
|
38 |
-
$tsa_db_version = 2.6; // 2.6からデータベース変更 [error_type]追加
|
39 |
-
|
40 |
-
/** 初期設定 */
|
41 |
-
/**
|
42 |
-
* 設定値変更 2.6.2から
|
43 |
-
*/
|
44 |
-
|
45 |
-
// ダミー項目でのスパム判定をするか
|
46 |
-
$default_dummy_param_field_flg = '1'; // 1: する 2:しない
|
47 |
-
|
48 |
-
// 日本語が存在しない場合無視対象とするか
|
49 |
-
$default_on_flg = 1; // 1:する
|
50 |
-
|
51 |
-
// タイトルの文字列はカウントから排除するか since 2.6.4
|
52 |
-
$default_without_title_str = 1; // 1:する
|
53 |
-
|
54 |
-
// 日本語文字最小含有数
|
55 |
-
$default_japanese_string_min_count = 3;
|
56 |
-
|
57 |
-
// 無視後、元画面に戻る時間
|
58 |
-
$default_back_second = 0;
|
59 |
-
|
60 |
-
// コメント欄下に表示される注意文言(初期設定)
|
61 |
-
$default_caution_msg = '日本語が含まれない投稿は無視されますのでご注意ください。(スパム対策)';
|
62 |
-
|
63 |
-
// コメント欄下に表示する位置(初期設定)1:コメント送信ボタンの上 2:コメント送信フォームの下
|
64 |
-
$default_caution_msg_point = '1'; //1:"comment_form", 2:"comment_form_after"
|
65 |
-
|
66 |
-
// エラー時に表示されるエラー文言(初期設定)
|
67 |
-
$default_error_msg = '日本語を規定文字数以上含まない記事は投稿できませんよ。';
|
68 |
-
|
69 |
-
/** URL文字列除外 設定 */
|
70 |
-
// URL数の制限をするか
|
71 |
-
$default_url_count_check_flg = '1'; // 1:する
|
72 |
-
|
73 |
-
// URL数の制限数
|
74 |
-
$default_ok_url_count = 3; // 3つまで許容
|
75 |
-
|
76 |
-
// URL数制限値オーバーのエラー文言(初期設定)
|
77 |
-
$default_url_count_over_error_msg = '';
|
78 |
-
|
79 |
-
/** NGキーワード/必須キーワード 制御設定 */
|
80 |
-
|
81 |
-
// キーワードNGエラー時に表示されるエラー文言(初期設定)
|
82 |
-
$default_ng_key_error_msg = 'NGキーワードが含まれているため投稿できません。';
|
83 |
-
|
84 |
-
// 必須キーワードが含まれないエラー文言(初期設定)
|
85 |
-
$default_must_key_error_msg = '必須キーワードが含まれていないため投稿できません。';
|
86 |
-
|
87 |
-
/** トラックバックへの対応設定 */
|
88 |
-
|
89 |
-
// トラックバックへの対応 1: する
|
90 |
-
$default_tb_on_flg = '1';
|
91 |
-
|
92 |
-
// トラックバック記事に当サイトURLがなければ無視するか
|
93 |
-
$default_tb_url_flg = '1';
|
94 |
-
|
95 |
-
/** 投稿IPアドレスによる制御設定 */
|
96 |
-
/** ver 2.6.5から */
|
97 |
-
// スパムちゃんぷるーホスト
|
98 |
-
//$spam_champuru_host = 'dnsbl.spam-champuru.livedoor.com';
|
99 |
-
// すぱむちゃんぷるー代替リスト化
|
100 |
-
// リスト廃止 2.6.9
|
101 |
-
//$spam_champuru_hosts = array("bsb.spamlookup.net", "bsb.empty.us", "list.dsbl.org", "all.rbl.jp");
|
102 |
-
|
103 |
-
//$default_spam_champuru_hosts = array("bsb.spamlookup.net");
|
104 |
-
|
105 |
-
// スパムブラックリスト by テキスト
|
106 |
-
$default_spam_champuru_by_text = "";
|
107 |
-
|
108 |
-
// すぱむちゃんぷるー利用初期設定
|
109 |
-
$default_spam_champuru_flg = '2'; // "2":しない
|
110 |
-
|
111 |
-
/** /2.6.5 */
|
112 |
-
|
113 |
-
// WordPressのcommentsテーブルで「spam」判定されたことがあるIPアドレスからの投稿を無視するか
|
114 |
-
$default_ip_block_from_spam_chk_flg = '1'; // "1":する
|
115 |
-
|
116 |
-
// ブロックIPアドレスからの投稿の場合に表示されるエラー文言(初期設定)
|
117 |
-
$default_block_ip_address_error_msg = '';
|
118 |
-
|
119 |
-
/** ver.2.8から */
|
120 |
-
// ホワイトリスト以外無視するか
|
121 |
-
$default_only_whitelist_ip_flg = '2'; // "2":しない
|
122 |
-
/** /ver.2.8 */
|
123 |
-
|
124 |
-
/** スパムデータベース */
|
125 |
-
|
126 |
-
// スパムデータベース保存するか "0":保存しない
|
127 |
-
$default_spam_data_save = '0';
|
128 |
-
|
129 |
-
// 期間が過ぎたデータを削除するか? "1":する
|
130 |
-
$default_spam_data_delete_flg = '1';
|
131 |
-
|
132 |
-
// スパムデータ保持期間(日)
|
133 |
-
$default_spam_keep_day_count = 15; /** 30 -> 15 */
|
134 |
-
|
135 |
-
// 最低保存期間(日)
|
136 |
-
$lower_spam_keep_day_count =1;
|
137 |
-
|
138 |
-
// ○分以内に○回スパムとなったら○分間そのIPからのコメントははじくかの設定
|
139 |
-
$default_spam_limit_flg = 0; // 1:する Other:しない ※スパム情報保存がデフォルトではないのでこちらも基本はしない方向です。
|
140 |
-
// ※スパム情報保存していないと機能しません。
|
141 |
-
$default_spam_limit_minutes = 10; // 10分以内に・・・
|
142 |
-
$default_spam_limit_count = 2; // 2回までは許そうか。
|
143 |
-
$default_spam_limit_over_interval = 10; // だがそれを超えたら(デフォルト3回目以降)10分はOKコメントでもスパム扱いするんでよろしく!
|
144 |
-
$default_spam_limit_over_interval_error_msg = ''; // そしてその際のエラーメッセージは・・・
|
145 |
-
|
146 |
-
|
147 |
-
|
148 |
-
/** オプションキー */
|
149 |
-
// ダミーフィールドを生成しそこに入力がある場合はエラーとするかフラグ [tsa_dummy_param_field_flg] 1:する 2:しない
|
150 |
-
// 日本語が存在しない時エラーとするかフラグ [tsa_on_flg] 1:する 2:しない
|
151 |
-
// 日本語文字列含有数 (入力値以下ならエラー) [tsa_japanese_string_min_count] 数値型
|
152 |
-
// 元の記事に戻ってくる時間(秒) [tsa_back_second] 数値型
|
153 |
-
// コメント欄の下に表示される注意文言 [tsa_caution_message] 文字列型
|
154 |
-
// コメント欄の下に表示される注意文言の位置 [tsa_caution_message_point] 文字列型("1" or "2")
|
155 |
-
// 日本語文字列規定値未満エラー時に表示される文言(元の記事に戻ってくる時間の間のみ表示)
|
156 |
-
// [tsa_error_message] 文字列型
|
157 |
-
// その他NGキーワード(日本語でも英語(その他)でもNGとしたいキーワードを半角カンマ区切りで複数設定できます。挙動は同じです。NGキーワードだけでも使用できます。)
|
158 |
-
// [tsa_ng_keywords] 文字列型(半角カンマ区切り文字列)
|
159 |
-
// NGキーワードエラー時に表示される文言(元の記事に戻ってくる時間の間のみ表示)
|
160 |
-
// [tsa_ng_key_error_message] 文字列型
|
161 |
-
// 必須キーワード(日本語でも英語(その他)でも必須としたいキーワードを半角カンマ区切りで複数設定できます。指定文字列を含まない場合はエラーとなります。※複数の方が厳しくなります。必須キーワードだけでも使用できます。)
|
162 |
-
// [tsa_must_keywords] 文字列型(半角カンマ区切り文字列)
|
163 |
-
// 必須キーワードエラー時に表示される文言(元の記事に戻ってくる時間の間のみ表示)
|
164 |
-
// [tsa_must_key_error_message] 文字列型
|
165 |
-
// この設定をトラックバック記事にも採用するか [tsa_tb_on_flg] 1:する 2:しない
|
166 |
-
// トラックバック記事にも採用する場合、ついでにこちらのURLが含まれているか判断するか
|
167 |
-
// [tsa_tb_url_flg] 1:する 2:しない
|
168 |
-
// WordPressのcommentsテーブルで「spam」判定されたことがあるIPアドレスからの投稿を無視するか
|
169 |
-
// [tsa_ip_block_from_spam_chk_flg] 1:する その他:しない
|
170 |
-
// ブロックしたいIPアドレスを任意で入力(半角カンマ区切りで複数設定できます。)
|
171 |
-
// [tsa_block_ip_addresses] 文字列型
|
172 |
-
// ブロック対象IPアドレスからの投稿時に表示される文言(元の記事に戻ってくる時間の間のみ表示)
|
173 |
-
// [tsa_block_ip_address_error_message] 文字列型
|
174 |
-
// ホワイトリスト登録IPアドレスのみ許可フラグ
|
175 |
-
// [tsa_only_whitelist_ip_flg] 1:する その他:しない
|
176 |
-
// URL(単純に'http'文字列のチェックのみ)文字列数を制限するか [tsa_url_count_on_flg] 1:する その他:しない
|
177 |
-
// URL(単純に'http'文字列のチェックのみ)文字列の許容数 [tsa_ok_url_count] 数値型
|
178 |
-
// URL(単純に'http'文字列のチェックのみ)文字列許容数オーバー時に表示される文言(元の記事に戻ってくる時間の間のみ表示)
|
179 |
-
// [tsa_url_count_over_error_message] 文字列型
|
180 |
-
|
181 |
-
// スパムブラックリスト [tsa_spam_champuru_hosts] 配列型
|
182 |
-
// スパムブラックリスト by テキスト [tsa_spam_chmapuru_by_text] 文字列型(カンマ区切り)
|
183 |
-
|
184 |
-
|
185 |
-
|
186 |
-
|
187 |
-
/** プロセス */
|
188 |
-
$newThrowsSpamAway = new ThrowsSpamAway;
|
189 |
-
/**
|
190 |
-
// トラックバックチェックフィルター
|
191 |
-
add_filter( 'preprocess_comment', array( &$newThrowsSpamAway, 'trackback_spam_away' ), 1, 1 );
|
192 |
-
// ダミーフィールド作成
|
193 |
-
$dummy_param_field_flg = get_option( 'tsa_dummy_param_field_flg', $default_dummy_param_field_flg );
|
194 |
-
if ( '1' == $dummy_param_field_flg ) {
|
195 |
-
add_action( 'wp_head', array( &$newThrowsSpamAway, 'tsa_scripts_init' ), 9997 );
|
196 |
-
add_action( "comment_form", array(&$newThrowsSpamAway, "comment_form_dummy_param_field" ), 9998);
|
197 |
-
}
|
198 |
-
// 注意文言表示
|
199 |
-
// コメントフォーム表示
|
200 |
-
$comment_disp_point = 'comment_form';
|
201 |
-
$comment_form_action_point = get_option( 'tsa_caution_msg_point', $default_caution_msg_point );
|
202 |
-
// フォーム内かフォーム外か判断する
|
203 |
-
if ( '2' == $comment_form_action_point ) {
|
204 |
-
$comment_disp_point = 'comment_form_after';
|
205 |
-
}
|
206 |
-
add_action( $comment_disp_point, array( &$newThrowsSpamAway, 'comment_form' ), 9999 );
|
207 |
-
*/
|
208 |
-
// コメントチェックフィルター
|
209 |
-
add_action( 'bbp_new_forum_pre_insert', array( &$newThrowsSpamAway, 'comment_post' ), 1 );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: http://gti.jp/throws-spam-away
|
|
4 |
Tags: comments, spam
|
5 |
Requires at least: 3.1
|
6 |
Tested up to: 4.7-RC1
|
7 |
-
Stable tag: 2.8.2
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -86,6 +86,7 @@ IPアドレスの指定「ブロックリスト」「ホワイトリスト」共
|
|
86 |
※コメント投稿時のスパムコメント対応の煩わしさが原因で作ったものですのでスパム判定されたコメントを保持しておりません。
|
87 |
|
88 |
-- これまでの変更点について
|
|
|
89 |
・バージョン 2.8.2
|
90 |
2016/12/1
|
91 |
ロードバランサ経由のクライアントIP取得ができるように HTTP_X_FORWARDED_FOR を取得するようにしました。
|
4 |
Tags: comments, spam
|
5 |
Requires at least: 3.1
|
6 |
Tested up to: 4.7-RC1
|
7 |
+
Stable tag: 2.8.2.1
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
86 |
※コメント投稿時のスパムコメント対応の煩わしさが原因で作ったものですのでスパム判定されたコメントを保持しておりません。
|
87 |
|
88 |
-- これまでの変更点について
|
89 |
+
|
90 |
・バージョン 2.8.2
|
91 |
2016/12/1
|
92 |
ロードバランサ経由のクライアントIP取得ができるように HTTP_X_FORWARDED_FOR を取得するようにしました。
|
throws_spam_away.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
Plugin URI: https://gti.co.jp/throws-spam-away/
|
5 |
Description: コメント内に日本語の記述が存在しない場合はあたかも受け付けたように振る舞いながらも捨ててしまうプラグイン
|
6 |
Author: 株式会社ジーティーアイ さとう たけし
|
7 |
-
Version: 2.8.
|
8 |
Author URI: https://gti.co.jp/
|
9 |
License: GPL2
|
10 |
*/
|
@@ -181,9 +181,6 @@ $default_spam_limit_over_interval_error_msg = ''; // そしてその際のエ
|
|
181 |
// スパムブラックリスト [tsa_spam_champuru_hosts] 配列型
|
182 |
// スパムブラックリスト by テキスト [tsa_spam_chmapuru_by_text] 文字列型(カンマ区切り)
|
183 |
|
184 |
-
|
185 |
-
|
186 |
-
|
187 |
/** プロセス */
|
188 |
$newThrowsSpamAway = new ThrowsSpamAway;
|
189 |
// トラックバックチェックフィルター
|
4 |
Plugin URI: https://gti.co.jp/throws-spam-away/
|
5 |
Description: コメント内に日本語の記述が存在しない場合はあたかも受け付けたように振る舞いながらも捨ててしまうプラグイン
|
6 |
Author: 株式会社ジーティーアイ さとう たけし
|
7 |
+
Version: 2.8.2
|
8 |
Author URI: https://gti.co.jp/
|
9 |
License: GPL2
|
10 |
*/
|
181 |
// スパムブラックリスト [tsa_spam_champuru_hosts] 配列型
|
182 |
// スパムブラックリスト by テキスト [tsa_spam_chmapuru_by_text] 文字列型(カンマ区切り)
|
183 |
|
|
|
|
|
|
|
184 |
/** プロセス */
|
185 |
$newThrowsSpamAway = new ThrowsSpamAway;
|
186 |
// トラックバックチェックフィルター
|