forked from jfcherng-roundcube/plugin-filters
-
Notifications
You must be signed in to change notification settings - Fork 0
/
filters.php
541 lines (480 loc) · 23.4 KB
/
filters.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
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
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
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
<?php
/**
* Filters.
*
* Plugin that adds a new tab to the settings section to create client-side e-mail filtering.
*
* @version 2.1.9
*
* @author Roberto Zarrelli <zarrelli@unimol.it>
* @developer Artur Petrov <artur@phpchain.ru>
*/
final class filters extends rcube_plugin
{
public $task = 'login|mail|settings';
private $autoAddSpamFilterRule;
private $spam_subject;
private $spam_headers = [];
private $caseInsensitiveSearch;
private $decodeBase64Msg;
private $searchstring = [];
private $srcfolder = [];
private $destfolder = [];
private $msg_uids = [];
private $open_mbox;
public function init()
{
// Filters parameters initialization. See readme.txt
$this->load_config();
$rcmail = rcmail::get_instance();
$this->rc = &$rcmail;
$this->autoAddSpamFilterRule = $this->rc->config->get('autoAddSpamFilterRule', true);
$this->spam_subject = $this->rc->config->get('spam_subject', '[SPAM]');
$this->caseInsensitiveSearch = $this->rc->config->get('caseInsensitiveSearch', true);
$this->decodeBase64Msg = $this->rc->config->get('decodeBase64Msg', false);
$this->spam_headers = $this->rc->config->get('spam_headers', 'X-Spam-Flag');
if ($this->rc->task == 'mail' && !isset($_GET['_q'])) {
$this->add_hook('storage_init', [$this, 'storage_init']);
$this->add_hook('messages_list', [$this, 'filters_checkmsg']);
} elseif ($this->rc->task == 'settings') {
$this->add_hook('settings_actions', [$this, 'settings_actions']);
$this->register_action('plugin.filters', [$this, 'filters_init']);
$this->register_action('plugin.filters-save', [$this, 'filters_save']);
$this->register_action('plugin.filters-delete', [$this, 'filters_delete']);
$this->add_texts('localization/', ['filters', 'nosearchstring']);
$this->rc->output->add_label('filters');
$this->include_script('js/filters.min.js');
} elseif ($this->rc->task == 'login') {
if ($this->autoAddSpamFilterRule) {
$this->add_hook('login_after', [$this, 'filters_addMoveSpamRule']);
}
}
// frontend assets
$this->include_stylesheet($this->local_skin_path() . '/main.css');
}
public function storage_init($p)
{
if (!isset($p['fetch_headers'])) {
$p['fetch_headers'] = '';
}
if ($add_headers = (array) $this->rc->config->get('spam_headers', [])) {
$p['fetch_headers'] = \trim($p['fetch_headers'] . ' ' . \strtoupper(\implode(' ', $add_headers)));
}
return $p;
}
public function settings_actions(array $args)
{
$args['actions'][] = [
'action' => 'plugin.filters',
'class' => 'filters',
'label' => 'filters',
'domain' => 'filters',
];
return $args;
}
public function filters_checkmsg(array $mlist)
{
$user = $this->rc->user;
if (\method_exists($this->rc->storage, 'get_mailbox_name')) {
$imap = $this->rc->storage;
$open_mbox = $imap->get_mailbox_name();
} else {
$imap = $this->rc->storage;
$open_mbox = $imap->get_folder();
}
$this->open_mbox = $open_mbox;
// does not consider the messages already in the trash
//if ($open_mbox == $this->rc->config->get('trash_mbox'))
//return;
//load filters
$arr_prefs = $this->rc->config->get('filters', []);
foreach ($arr_prefs as $key => $saved_filter) {
if (!isset($saved_filter['filterpriority'])) {
$saved_filter['filterpriority'] = 0;
}
if (!isset($saved_filter['markread'])) {
$saved_filter['markread'] = '';
}
// if saved destination folder exists and current folder is "check folder"
if (\method_exists($imap, 'mailbox_exists')) {
if ($imap->mailbox_exists($saved_filter['destfolder']) && $imap->mailbox_exists($saved_filter['srcfolder']) && $saved_filter['srcfolder'] == $open_mbox && $saved_filter['destfolder'] != $saved_filter['srcfolder']) {
$saved_filter['searchstring'] = \html_entity_decode($saved_filter['searchstring']);
// destfolder#messages#filterpriority#markread
$this->searchstring[$saved_filter['whatfilter']][$saved_filter['searchstring']] =
$saved_filter['destfolder'] . '#' . $saved_filter['messages'] . '#' . $saved_filter['filterpriority'] . '#' . $saved_filter['markread'];
}
}
if (!\method_exists($imap, 'mailbox_exists')) {
if ($imap->folder_exists($saved_filter['destfolder']) && $imap->folder_exists($saved_filter['srcfolder']) && $saved_filter['srcfolder'] == $open_mbox && $saved_filter['destfolder'] != $saved_filter['srcfolder']) {
$saved_filter['searchstring'] = \html_entity_decode($saved_filter['searchstring']);
// destfolder#messages#filterpriority#markread
$this->searchstring[$saved_filter['whatfilter']][$saved_filter['searchstring']] =
$saved_filter['destfolder'] . '#' . $saved_filter['messages'] . '#' . $saved_filter['filterpriority'] . '#' . $saved_filter['markread'];
}
}
}
// if there aren't filters return
if (!\count($arr_prefs) || !\count($this->searchstring) || !isset($mlist['messages']) || !\is_array($mlist['messages'])) {
return;
}
// scan the messages
foreach ($mlist['messages'] as $message) {
$this->filters_search($message);
}
// move the filtered messages
if (\count($this->destfolder) > 0) {
foreach ($this->destfolder as $dfolder) {
$uids = [];
foreach ($this->msg_uids[$dfolder] as $muids) {
$uids[] = $muids;
}
if (\count($uids)) {
$imap->move_message($uids, $dfolder, $open_mbox);
// refresh
$unseen = $this->rc->storage->count($dfolder, 'UNSEEN');
$this->api->output->command('set_unread_count', $dfolder, $unseen);
$this->api->output->command('list_mailbox');
$this->api->output->send();
}
}
}
}
public function filters_init()
{
$this->add_texts('localization/');
$this->register_handler('plugin.body', [$this, 'filters_form']);
$this->rc->output->set_pagetitle($this->gettext('filters'));
$this->rc->output->send('plugin');
}
public function filters_save()
{
$user = $this->rc->user;
$this->add_texts('localization/');
$this->register_handler('plugin.body', [$this, 'filters_form']);
$this->rc->output->set_pagetitle($this->gettext('filters'));
$searchstring = \trim(rcube_utils::get_input_value('_searchstring', rcube_utils::INPUT_POST, true));
$srcfolder = \trim(rcube_utils::get_input_value('_srcfolders', rcube_utils::INPUT_POST, true));
$destfolder = \trim(rcube_utils::get_input_value('_folders', rcube_utils::INPUT_POST, true));
$whatfilter = \trim(rcube_utils::get_input_value('_whatfilter', rcube_utils::INPUT_POST, true));
$messages = \trim(rcube_utils::get_input_value('_messages', rcube_utils::INPUT_POST, true));
$filterpriority = \trim(rcube_utils::get_input_value('_checkbox', rcube_utils::INPUT_POST, true));
$markread = \trim(rcube_utils::get_input_value('_markread', rcube_utils::INPUT_POST, true));
if ($searchstring == '') {
$this->rc->output->command('display_message', $this->gettext('nosearchstring'), 'error');
} else {
$new_arr['whatfilter'] = $whatfilter;
$new_arr['searchstring'] = \htmlspecialchars(\addslashes($searchstring));
$new_arr['srcfolder'] = \addslashes($srcfolder);
$new_arr['destfolder'] = \addslashes($destfolder);
$new_arr['messages'] = $messages;
$new_arr['filterpriority'] = $filterpriority;
$new_arr['markread'] = $markread;
$arr_prefs = $user->get_prefs();
$arr_prefs['filters'][] = $new_arr;
if ($user->save_prefs($arr_prefs)) {
$this->rc->output->command('display_message', $this->gettext('successfullysaved'), 'confirmation');
} else {
$this->rc->output->command('display_message', $this->gettext('unsuccessfullysaved'), 'error');
}
}
$this->rc->overwrite_action('plugin.filters');
$this->rc->output->send('plugin');
}
public function filters_delete()
{
$user = $this->rc->user;
$this->add_texts('localization/');
$this->register_handler('plugin.body', [$this, 'filters_form']);
$this->rc->output->set_pagetitle($this->gettext('filters'));
if (isset($_GET['filterid'])) {
$filter_id = $_GET['filterid'];
$arr_prefs = $user->get_prefs();
$arr_prefs['filters'][$filter_id] = '';
$arr_prefs['filters'] = \array_diff($arr_prefs['filters'], ['']);
if ($user->save_prefs($arr_prefs)) {
$this->rc->output->command('display_message', $this->gettext('successfullydeleted'), 'confirmation');
} else {
$this->rc->output->command('display_message', $this->gettext('unsuccessfullydeleted'), 'error');
}
}
if (\function_exists('rcmail::get_instance()->overwrite_action')) {
rcmail::get_instance()->overwrite_action('plugin.filters');
} else {
$this->rc->overwrite_action('plugin.filters');
}
$this->rc->output->send('plugin');
}
public function filters_form()
{
if (\method_exists($this->rc, 'imap_connect')) {
$this->rc->imap_connect();
} else {
$this->rc->storage_connect();
}
$table = new html_table(['cols' => 2]);
$table->add('title', rcube_utils::rep_specialchars_output($this->gettext('whatfilter') . ':', 'html'));
$select = new html_select(['name' => '_whatfilter', 'id' => 'whatfilter']);
$select->add($this->gettext('from'), 'from');
$select->add($this->gettext('to'), 'to');
$select->add($this->gettext('cc'), 'cc');
$select->add($this->gettext('subject'), 'subject');
foreach ($this->spam_headers as $spam_header) {
$select->add($spam_header, $spam_header);
}
$table->add('', $select->show($this->gettext('from')));
$table->add('title', rcube_utils::rep_specialchars_output($this->gettext('searchstring') . ':'), 'html');
$inputfield = new html_inputfield(['name' => '_searchstring', 'id' => 'searchstring']);
$table->add('', $inputfield->show(''));
// new option: source folder
$table->add('title', rcube_utils::rep_specialchars_output($this->gettext('movefrom') . ':'));
if (\function_exists('rcmail::get_instance()->folder_selector')) {
$select = rcmail::get_instance()->folder_selector(['name' => '_srcfolders', 'id' => 'srcfolders']);
} else {
$select = $this->rc->folder_selector(['name' => '_srcfolders', 'id' => 'srcfolders']);
}
$table->add('title', $select->show());
$table->add('title', rcube_utils::rep_specialchars_output($this->gettext('moveto') . ':'));
if (\function_exists('rcmail::get_instance()->folder_selector')) {
$select = rcmail::get_instance()->folder_selector(['name' => '_folders', 'id' => 'folders']);
} else {
$select = $this->rc->folder_selector(['name' => '_folders', 'id' => 'folders']);
}
$table->add('title', $select->show());
// new option: all, read and unread messages
$table->add('title', rcube_utils::rep_specialchars_output($this->gettext('messagecount') . ':'), 'html');
$select = new html_select(['name' => '_messages', 'id' => 'messages']);
$select->add($this->gettext('all'), 'all');
$select->add($this->gettext('unread'), 'unread');
$select->add($this->gettext('isread'), 'isread');
$table->add('', $select->show($this->gettext('all')));
// new option: markread or markunread messages
$table->add('title', rcube_utils::rep_specialchars_output($this->gettext('markmessages') . ':'), 'html');
$select = new html_select(['name' => '_markread', 'id' => 'markread']);
$select->add($this->gettext('none'), 'none');
$select->add($this->gettext('markunread'), 'markunread');
$select->add($this->gettext('markread'), 'markread');
$table->add('', $select->show($this->gettext('none')));
// new option: filter priority, "on" as enable and "" as disable
$table->add('title', rcube_utils::rep_specialchars_output($this->gettext('filterpriority') . ':'), 'html');
$checkbox = new html_checkbox(['name' => '_checkbox', 'id' => 'checkbox']);
$table->add('', $checkbox->show('0'));
// load saved filters
$user = $this->rc->user;
$arr_prefs = $user->get_prefs();
$i = 1;
$table2 = new html_table(['cols' => 2]);
if (empty($arr_prefs['filters'])) {
$table2->add('title', rcube_utils::rep_specialchars_output($this->gettext('msg_no_stored_filters'), 'html'));
} else {
foreach ($arr_prefs['filters'] as $key => $saved_filter) {
if (empty($saved_filter['markread'])) {
$saved_filter['markread'] = 'none';
}
$srcfolder_id = $saved_filter['srcfolder'];
$folder_id = $saved_filter['destfolder'];
if (\function_exists('rcmail::get_instance()->localize_folderpath')) {
$srcfolder_name = rcmail::get_instance()->localize_folderpath($srcfolder_id);
$folder_name = rcmail::get_instance()->localize_folderpath($folder_id);
} else {
$srcfolder_name = $this->rc->localize_folderpath($srcfolder_id);
$folder_name = $this->rc->localize_folderpath($folder_id);
}
$messages = $saved_filter['messages'];
$msg = $i . ' - ' . $this->gettext('msg_if_field') . ' <b>' . $this->gettext($saved_filter['whatfilter']) . '</b> ' . $this->gettext('msg_contains') .
' <b>' . \stripslashes($saved_filter['searchstring']) . '</b> ' . $this->gettext('msg_move_msg_in') . ' <b>' . $folder_name .
'</b> ' . $this->gettext('msg_move_msg_from') . ' <b>' . $srcfolder_name . '</b> ' .
'(' . $this->gettext('messagecount') . ': ' . $this->gettext($saved_filter['messages']) .
', ' . $this->gettext('mark') . ': ' . $this->gettext($saved_filter['markread']) . ')';
if (!empty($saved_filter['filterpriority'])) {
$msg = "<font color='green'>" . $msg . '</font>';
}
$table2->add('title', $msg);
$dlink = "<a href='./?_task=settings&_action=plugin.filters-delete&filterid=" . $key . "'>" . $this->gettext('delete') . '</a>';
$table2->add('title', $dlink);
++$i;
}
}
$out = html::div(
['class' => 'box'],
html::div(['id' => 'prefs-title', 'class' => 'boxtitle'], $this->gettext('filters')) .
html::div(['class' => 'boxcontent'], $table->show() .
html::p(
null,
$this->rc->output->button([
'command' => 'plugin.filters-save',
'type' => 'input',
'class' => 'button mainaction',
'label' => 'save',
])
))
);
$out .= html::div(
['class' => 'box'],
html::div(['id' => 'prefs-title', 'class' => 'boxtitle'], $this->gettext('storedfilters')) .
html::div(['class' => 'boxcontent'], $table2->show())
);
$this->rc->output->add_gui_object('filtersform', 'filters-form');
return '<style> .contentbox { overflow: auto; } </style>' . $this->rc->output->form_tag([
'id' => 'filters-form',
'name' => 'filters-form',
'method' => 'post',
'class' => 'contentbox propform',
'action' => './?_task=settings&_action=plugin.filters-save',
], $out);
}
public function filters_search($message)
{
// check if a message has been read
if (isset($message->flags['SEEN']) && $message->flags['SEEN']) {
$msg_read = 1;
}
$headers = \array_merge(['from', 'to', 'cc', 'subject'], $this->spam_headers);
$destination_folder = '';
$filter_flag = '';
$mark_flag = '';
foreach ($headers as $whatfilter) {
if (isset($this->searchstring[$whatfilter])) {
foreach ($this->searchstring[$whatfilter] as $from => $dest) {
$arr = \explode('#', $dest);
$destination = $arr[0];
$msg_filter = $arr[1];
$filterpriority = $arr[2];
$markread = $arr[3];
$field = isset($message->{$whatfilter}) ? $message->{$whatfilter} : (isset($message->others[\strtolower($whatfilter)]) ? $message->others[\strtolower($whatfilter)] : '');
if ($this->filters_searchString($field, $from) != false && $destination != $this->open_mbox) {
if (!empty($filterpriority)) {
$destination_folder = $destination;
$filter_flag = $msg_filter;
$mark_flag = $markread;
break 2;
}
if (empty($destination_folder)) {
$destination_folder = $destination;
$filter_flag = $msg_filter;
$mark_flag = $markread;
}
}
}
}
}
if (!empty($destination_folder)) {
// if message as read and need unread message, then exit from function
// Если сообщение как прочитанное и нужно непрочитанное сообщение, то выход из функции
if (!empty($msg_read) && $filter_flag == 'unread') {
return;
}
// if message as unread and need read message, then exit from function
// Если сообщение как непрочитанное и нужно прочитанное сообщение, то выход из функции
if (empty($msg_read) && $filter_flag == 'isread') {
return;
}
$this->msg_uids[$destination_folder][] = $message->uid;
if (!\in_array($destination_folder, $this->destfolder)) {
$this->destfolder[] = $destination_folder;
}
// Mark message as read if need mark message as read
// Отметить сообщение как прочитанное
if ($mark_flag == 'markread') {
$this->filters_markread($message);
}
// Mark message as unread if need mark message as unread
// Отметить сообщение как непрочитанное
if ($mark_flag == 'markunread') {
$this->filters_markread($message, 'UNSEEN');
}
}
}
// Mark message as read (SEEN) or as unread (UNSEEN)
public function filters_markread($message, $markread = 'SEEN')
{
$storage = $this->rc->storage;
$storage->set_flag($message->uid, $markread, null);
}
public function filters_searchString($msg, $stringToSearch)
{
$ret = false;
$ciSearch = $this->caseInsensitiveSearch;
$decode_msg = rcube_mime::decode_header((string) $msg);
$stringToSearch = \stripslashes($stringToSearch);
$decode_msg = \addslashes($decode_msg);
$stringToSearch = \addslashes($stringToSearch);
if ($ciSearch) {
if (\function_exists('mb_stripos')) {
$tmp = \mb_stripos($decode_msg, $stringToSearch);
} else {
$tmp = \stripos($decode_msg, $stringToSearch);
}
} else {
if (\function_exists('mb_strpos')) {
$tmp = \mb_strpos($decode_msg, $stringToSearch);
} else {
$tmp = \strpos($decode_msg, $stringToSearch);
}
}
if ($tmp !== false) {
$ret = true;
} else {
if ($this->decodeBase64Msg === true) {
// decode and search BASE64 msg
$decode_msg = rcube_mime::decode_header(\base64_decode($msg));
if ($decode_msg !== false) {
if ($ciSearch) {
if (\function_exists('mb_stripos')) {
$tmp = \mb_stripos($decode_msg, $stringToSearch);
} else {
$tmp = \stripos($decode_msg, $stringToSearch);
}
} else {
if (\function_exists('mb_strpos')) {
$tmp = \mb_strpos($decode_msg, $stringToSearch);
} else {
$tmp = \strpos($decode_msg, $stringToSearch);
}
}
if ($tmp !== false) {
$ret = true;
}
}
}
}
return $ret;
}
public function filters_addMoveSpamRule()
{
$user = $this->rc->user;
$searchstring = $this->spam_subject;
$destfolder = $this->rc->config->get('junk_mbox', null);
$whatfilter = 'subject';
$messages = 'all';
//load filters
$arr_prefs = $this->rc->config->get('filters', []);
// check if the rule is already enabled
$found = false;
foreach ($arr_prefs as $key => $saved_filter) {
if ($saved_filter['searchstring'] == $searchstring && $saved_filter['whatfilter'] == $whatfilter) {
$found = true;
}
if ($saved_filter['searchstring'] == 'Yes' && $saved_filter['whatfilter'] == 'X-Spam-Flag') {
$found = true;
}
}
if (!$found && $destfolder !== null && $destfolder !== '') {
$new_arr['whatfilter'] = $whatfilter;
$new_arr['searchstring'] = $searchstring;
$new_arr['srcfolder'] = 'INBOX';
$new_arr['destfolder'] = $destfolder;
$new_arr['messages'] = $messages;
$arr_prefs = $user->get_prefs();
$arr_prefs['filters'][] = $new_arr;
$user->save_prefs($arr_prefs);
$new_arr['whatfilter'] = 'X-Spam-Flag';
$new_arr['searchstring'] = 'Yes';
$new_arr['srcfolder'] = 'INBOX';
$new_arr['destfolder'] = $destfolder;
$new_arr['messages'] = $messages;
$arr_prefs = $user->get_prefs();
$arr_prefs['filters'][] = $new_arr;
$user->save_prefs($arr_prefs);
}
}
}