-
Notifications
You must be signed in to change notification settings - Fork 2
/
qa-akismet.php
382 lines (315 loc) · 10.3 KB
/
qa-akismet.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
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
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
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
<?php
/*
Question2Answer (c) Gideon Greenspan
http://www.question2answer.org/
File: qa-plugin/akismet-spam-filter/qa-akismet.php
Version: See define()s at top of qa-include/qa-base.php
Description: Akismet Spam Filter
*/
if (!defined('QA_VERSION')) { // don't allow this page to be requested directly from browser
header('Location: ../');
exit;
}
class qa_akismet {
function admin_form(&$qa_content)
{
$saved = false;
if (qa_clicked('akismet_save_button'))
{
qa_opt('akismet_api_key', qa_post_text('akismet_api_key_field'));
qa_opt('akismet_user_points_moderation_on', (int)qa_post_text('akismet_user_points_moderation_on_field'));
qa_opt('akismet_user_points', (int)qa_post_text('akismet_user_points_field'));
qa_opt('akismet_post_links_moderation_on', (int)qa_post_text('akismet_post_links_moderation_on_field'));
qa_opt('akismet_links_user_points', (int)qa_post_text('akismet_links_user_points_field'));
qa_opt('akismet_mod_anon_posts', (int)qa_post_text('akismet_mod_anon_posts_field'));
$check_key = $this->check_akismet_key();
$saved=true;
}
$check_key = $this->check_akismet_key();
qa_set_display_rules($qa_content, array(
'akismet_user_points_display' => 'akismet_user_points_moderation_on_field',
'akismet_user_points_links_display' => 'akismet_post_links_moderation_on_field',
'akismet_mod_anon_posts_display' => 'akismet_post_links_moderation_on_field',
));
return array(
'ok' => $saved ? 'Akismet settings saved' : null,
'fields' => array(
array(
'label' => 'Akismet API Key:',
'value' => qa_opt('akismet_api_key'),
'tags' => 'NAME="akismet_api_key_field"',
'error' => "$check_key",
),
array(
'label' => '(Optional) Only enable the Akismet Spam Filter when :',
'type' => 'checkbox',
'value' => qa_opt('akismet_user_points_moderation_on'),
'tags' => 'NAME="akismet_user_points_moderation_on_field" ID="akismet_user_points_moderation_on_field"',
),
array(
'id' => 'akismet_user_points_display',
'label' => 'The user has less than',
'suffix' => 'points',
'type' => 'number',
'value' => (int)qa_opt('akismet_user_points'),
'tags' => 'NAME="akismet_user_points_field"',
),
array(
'label' => '(Optional) Moderate questions/answers/comments that contain links when :',
'type' => 'checkbox',
'value' => qa_opt('akismet_post_links_moderation_on'),
'tags' => 'NAME="akismet_post_links_moderation_on_field" ID="akismet_post_links_moderation_on_field"',
),
array(
'id' => 'akismet_user_points_links_display',
'label' => 'The user has less than',
'suffix' => 'points',
'type' => 'number',
'value' => (int)qa_opt('akismet_links_user_points'),
'tags' => 'NAME="akismet_links_user_points_field" ID="akismet_links_user_points_field"',
),
array(
'id' => 'akismet_mod_anon_posts_display',
'label' => 'The user is not logged in (Anonymous)',
'type' => 'checkbox',
'value' => (int)qa_opt('akismet_mod_anon_posts'),
'tags' => 'NAME="akismet_mod_anon_posts_field" ID=NAME="akismet_mod_anon_posts_field"',
),
),
'buttons' => array(
array(
'label' => 'Save Changes',
'tags' => 'NAME="akismet_save_button"',
),
),
);
}
var $directory;
function load_module($directory, $urltoroot)
{
$this->directory=$directory;
}
function check_akismet_key()
{
require_once $this->directory.'akismet.class.php';
$akismet_key = qa_opt('akismet_api_key');
$akismet = new akismet($akismet_key);
if ($akismet->valid_key())
{
$valid = '<font color="green">Akismet API key is valid - spam protection is enabled.</font>';
}
else if (!strlen(trim($akismet_key)))
{
$valid = 'To use Akismet spam filter, you need to <a href="https://akismet.com/signup/" target="_blank">sign up for an API key</a>.';
}
else
{
$valid = 'Invalid Akismet API key! - spam protection is disabled.';
}
return $valid;
}
function filter_question(&$question, &$errors, $oldquestion)
{
require_once $this->directory.'akismet.class.php';
$akismet_key = qa_opt('akismet_api_key');
$akismet = new akismet($akismet_key);
// combine question title and content for spam processing
$combined_content = $question['title'].' '.$question['text'];
$content = $question['content'];
$text = $question['text'];
$check_content = array(
'comment_author_email' => $question['email'],
'comment_content' => $combined_content,
);
$userid = qa_get_logged_in_userid();
$user_points = qa_get_logged_in_points();
$akismet_user_mod_on = qa_opt('akismet_user_points_moderation_on');
$akismet_min_user_points = qa_opt('akismet_user_points');
$akismet_post_links_on = qa_opt('akismet_post_links_moderation_on');
$akismet_post_links_points = qa_opt('akismet_links_user_points');
$akismet_mod_anon_posts = qa_opt('akismet_mod_anon_posts');
if(!$akismet->error)
{
if ($akismet_user_mod_on && $user_points < $akismet_min_user_points)
{
// User does not have the required points - use the akismet spam filter
if ($akismet->is_spam($check_content))
{
$question['queued']=true;
}
}
else if ($akismet_user_mod_on && $user_points > $akismet_min_user_points)
{
// User has more points than required - do not use the akismet spam filter
}
else
{
// Optional option is not enabled - enable akismet spam filter for everyone
if ($akismet->is_spam($check_content))
{
$question['queued']=true;
}
}
}
if (isset($akismet_post_links_on))
{
if ($user_points < $akismet_post_links_points)
{
if (stristr($content,'href='))
{
$question['queued']=true;
}
if (stristr($text,'href='))
{
$question['queued']=true;
}
}
}
if (!isset($userid) && isset($akismet_mod_anon_posts))
{
if (stristr($content,'href='))
{
$question['queued']=true;
}
if (stristr($text,'href='))
{
$question['queued']=true;
}
}
}
function filter_answer(&$answer, &$errors, $question, $oldanswer)
{
require_once $this->directory.'akismet.class.php';
$akismet_key = qa_opt('akismet_api_key');
$akismet = new akismet($akismet_key);
$content = $answer['content'];
$text = $answer['text'];
$check_content = array(
'comment_content' => $answer['text'],
);
$userid = qa_get_logged_in_userid();
$user_points = qa_get_logged_in_points();
$akismet_user_mod_on = qa_opt('akismet_user_points_moderation_on');
$akismet_min_user_points = qa_opt('akismet_user_points');
$akismet_post_links_on = qa_opt('akismet_post_links_moderation_on');
$akismet_post_links_points = qa_opt('akismet_links_user_points');
$akismet_mod_anon_posts = qa_opt('akismet_mod_anon_posts');
if(!$akismet->error)
{
if ($akismet_user_mod_on && $user_points < $akismet_min_user_points)
{
// User does not have the required points - use the akismet spam filter
if ($akismet->is_spam($check_content))
{
$answer['queued']=true;
}
}
else if ($akismet_user_mod_on && $user_points > $akismet_min_user_points)
{
// User has more points than required - do not use the akismet spam filter
}
else
{
// Optional option is not enabled - enable akismet spam filter for everyone
if ($akismet->is_spam($check_content))
{
$answer['queued']=true;
}
}
}
if (isset($akismet_post_links_on))
{
if ($user_points < $akismet_post_links_points)
{
if (stristr($content,'href='))
{
$answer['queued']=true;
}
if (stristr($text,'href='))
{
$answer['queued']=true;
}
}
}
if (!isset($userid) && isset($akismet_mod_anon_posts))
{
if (stristr($content,'href='))
{
$answer['queued']=true;
}
if (stristr($text,'href='))
{
$answer['queued']=true;
}
}
}
function filter_comment(&$comment, &$errors, $question, $parent, $oldcomment)
{
require_once $this->directory.'akismet.class.php';
$akismet_key = qa_opt('akismet_api_key');
$akismet = new akismet($akismet_key);
$content = $comment['content'];
$text = $comment['text'];
$check_content = array(
'comment_content' => $comment['text'],
);
$userid = qa_get_logged_in_userid();
$user_points = qa_get_logged_in_points();
$akismet_user_mod_on = qa_opt('akismet_user_points_moderation_on');
$akismet_min_user_points = qa_opt('akismet_user_points');
$akismet_post_links_on = qa_opt('akismet_post_links_moderation_on');
$akismet_post_links_points = qa_opt('akismet_links_user_points');
$akismet_mod_anon_posts = qa_opt('akismet_mod_anon_posts');
if(!$akismet->error)
{
if ($akismet_user_mod_on && $user_points < $akismet_min_user_points)
{
// User does not have the required points - use the akismet spam filter
if ($akismet->is_spam($check_content))
{
$comment['queued']=true;
}
}
else if ($akismet_user_mod_on && $user_points > $akismet_min_user_points)
{
// User has more points than required - do not use the akismet spam filter
}
else
{
// Optional option is not enabled - enable akismet spam filter for everyone
if ($akismet->is_spam($check_content))
{
$comment['queued']=true;
}
}
}
if (isset($akismet_post_links_on))
{
if ($user_points < $akismet_post_links_points)
{
if (stristr($content,'href='))
{
$comment['queued']=true;
}
if (stristr($text,'href='))
{
$comment['queued']=true;
}
}
}
if (!isset($userid) && isset($akismet_mod_anon_posts))
{
if (stristr($content,'href='))
{
$comment['queued']=true;
}
if (stristr($text,'href='))
{
$comment['queued']=true;
}
}
}
}
/*
Omit PHP closing tag to help avoid accidental output
*/