]> git.wh0rd.org - tt-rss.git/blob - classes/pref/filters.php
filters: remove sql_bool_to_bool()
[tt-rss.git] / classes / pref / filters.php
1 <?php
2 class Pref_Filters extends Handler_Protected {
3
4 function csrf_ignore($method) {
5 $csrf_ignored = array("index", "getfiltertree", "edit", "newfilter", "newrule",
6 "newaction", "savefilterorder");
7
8 return array_search($method, $csrf_ignored) !== false;
9 }
10
11 function filtersortreset() {
12 $sth = $this->pdo->prepare("UPDATE ttrss_filters2
13 SET order_id = 0 WHERE owner_uid = ?");
14 $sth->execute([$_SESSION['uid']]);
15 return;
16 }
17
18 function savefilterorder() {
19 $data = json_decode($_POST['payload'], true);
20
21 #file_put_contents("/tmp/saveorder.json", $_POST['payload']);
22 #$data = json_decode(file_get_contents("/tmp/saveorder.json"), true);
23
24 if (!is_array($data['items']))
25 $data['items'] = json_decode($data['items'], true);
26
27 $index = 0;
28
29 if (is_array($data) && is_array($data['items'])) {
30
31 $sth = $this->pdo->prepare("UPDATE ttrss_filters2 SET
32 order_id = ? WHERE id = ? AND
33 owner_uid = ?");
34
35 foreach ($data['items'][0]['items'] as $item) {
36 $filter_id = (int) str_replace("FILTER:", "", $item['_reference']);
37
38 if ($filter_id > 0) {
39 $sth->execute([$index, $filter_id, $_SESSION['uid']]);
40 ++$index;
41 }
42 }
43 }
44
45 return;
46 }
47
48 function testFilterDo() {
49 $offset = (int) $_REQUEST["offset"];
50 $limit = (int) $_REQUEST["limit"];
51
52 $filter = array();
53
54 $filter["enabled"] = true;
55 $filter["match_any_rule"] = checkbox_to_sql_bool($_REQUEST["match_any_rule"]);
56 $filter["inverse"] = checkbox_to_sql_bool($_REQUEST["inverse"]);
57
58 $filter["rules"] = array();
59 $filter["actions"] = array("dummy-action");
60
61 $res = $this->pdo->query("SELECT id,name FROM ttrss_filter_types");
62
63 $filter_types = array();
64 while ($line = $res->fetch()) {
65 $filter_types[$line["id"]] = $line["name"];
66 }
67
68 $scope_qparts = array();
69
70 $rctr = 0;
71 foreach ($_REQUEST["rule"] AS $r) {
72 $rule = json_decode($r, true);
73
74 if ($rule && $rctr < 5) {
75 $rule["type"] = $filter_types[$rule["filter_type"]];
76 unset($rule["filter_type"]);
77
78 $scope_inner_qparts = [];
79 foreach ($rule["feed_id"] as $feed_id) {
80
81 if (strpos($feed_id, "CAT:") === 0) {
82 $cat_id = (int) substr($feed_id, 4);
83 array_push($scope_inner_qparts, "cat_id = " . $this->pdo->quote($cat_id));
84 } else if ($feed_id > 0) {
85 array_push($scope_inner_qparts, "feed_id = " . $this->pdo->quote($feed_id));
86 }
87 }
88
89 if (count($scope_inner_qparts) > 0) {
90 array_push($scope_qparts, "(" . implode(" OR ", $scope_inner_qparts) . ")");
91 }
92
93 array_push($filter["rules"], $rule);
94
95 ++$rctr;
96 } else {
97 break;
98 }
99 }
100
101 if (count($scope_qparts) == 0) $scope_qparts = ["true"];
102
103 $glue = $filter['match_any_rule'] ? " OR " : " AND ";
104 $scope_qpart = join($glue, $scope_qparts);
105
106 if (!$scope_qpart) $scope_qpart = "true";
107
108 $rv = array();
109
110 //while ($found < $limit && $offset < $limit * 1000 && time() - $started < ini_get("max_execution_time") * 0.7) {
111
112 $sth = $this->pdo->prepare("SELECT ttrss_entries.id,
113 ttrss_entries.title,
114 ttrss_feeds.id AS feed_id,
115 ttrss_feeds.title AS feed_title,
116 ttrss_feed_categories.id AS cat_id,
117 content,
118 date_entered,
119 link,
120 author,
121 tag_cache
122 FROM
123 ttrss_entries, ttrss_user_entries
124 LEFT JOIN ttrss_feeds ON (feed_id = ttrss_feeds.id)
125 LEFT JOIN ttrss_feed_categories ON (ttrss_feeds.cat_id = ttrss_feed_categories.id)
126 WHERE
127 ref_id = ttrss_entries.id AND
128 ($scope_qpart) AND
129 ttrss_user_entries.owner_uid = ?
130 ORDER BY date_entered DESC LIMIT $limit OFFSET $offset");
131
132 $sth->execute([$_SESSION['uid']]);
133
134 while ($line = $sth->fetch()) {
135
136 $rc = RSSUtils::get_article_filters(array($filter), $line['title'], $line['content'], $line['link'],
137 $line['author'], explode(",", $line['tag_cache']));
138
139 if (count($rc) > 0) {
140
141 $line["content_preview"] = truncate_string(strip_tags($line["content"]), 200, '&hellip;');
142
143 foreach (PluginHost::getInstance()->get_hooks(PluginHost::HOOK_QUERY_HEADLINES) as $p) {
144 $line = $p->hook_query_headlines($line, 100);
145 }
146
147 $content_preview = $line["content_preview"];
148
149 $tmp = "<tr style='margin-top : 5px'>";
150
151 #$tmp .= "<td width='5%' align='center'><input dojoType=\"dijit.form.CheckBox\"
152 # checked=\"1\" disabled=\"1\" type=\"checkbox\"></td>";
153
154 $id = $line['id'];
155 $tmp .= "<td width='5%' align='center'><img style='cursor : pointer' title='".__("Preview article")."'
156 src='images/information.png' onclick='openArticlePopup($id)'></td><td>";
157
158 /*foreach ($filter['rules'] as $rule) {
159 $reg_exp = str_replace('/', '\/', $rule["reg_exp"]);
160
161 $line["title"] = preg_replace("/($reg_exp)/i",
162 "<span class=\"highlight\">$1</span>", $line["title"]);
163
164 $content_preview = preg_replace("/($reg_exp)/i",
165 "<span class=\"highlight\">$1</span>", $content_preview);
166 }*/
167
168 $tmp .= "<strong>" . $line["title"] . "</strong><br/>";
169 $tmp .= $line['feed_title'] . ", " . mb_substr($line["date_entered"], 0, 16);
170 $tmp .= "<div class='insensitive'>" . $content_preview . "</div>";
171 $tmp .= "</td></tr>";
172
173 array_push($rv, $tmp);
174
175 /*array_push($rv, array("title" => $line["title"],
176 "content" => $content_preview,
177 "date" => $line["date_entered"],
178 "feed" => $line["feed_title"])); */
179
180 }
181 }
182
183 //$offset += $limit;
184 //}
185
186 /*if ($found == 0) {
187 print "<tr><td align='center'>" .
188 __("No recent articles matching this filter have been found.");
189 }*/
190
191 print json_encode($rv);
192 }
193
194 function testFilter() {
195
196 if (isset($_REQUEST["offset"])) return $this->testFilterDo();
197
198 //print __("Articles matching this filter:");
199
200 print "<div><img id='prefFilterLoadingIndicator' src='images/indicator_tiny.gif'>&nbsp;<span id='prefFilterProgressMsg'>Looking for articles...</span></div>";
201
202 print "<br/><div class=\"filterTestHolder\">";
203 print "<table width=\"100%\" cellspacing=\"0\" id=\"prefFilterTestResultList\">";
204 print "</table></div>";
205
206 print "<div style='text-align : center'>";
207 print "<button dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('filterTestDlg').hide()\">".
208 __('Close this window')."</button>";
209 print "</div>";
210
211 }
212
213 private function getfilterrules_concise($filter_id) {
214 $sth = $this->pdo->prepare("SELECT reg_exp,
215 inverse,
216 match_on,
217 feed_id,
218 cat_id,
219 cat_filter,
220 ttrss_filter_types.description AS field
221 FROM
222 ttrss_filters2_rules, ttrss_filter_types
223 WHERE
224 filter_id = ? AND filter_type = ttrss_filter_types.id
225 ORDER BY reg_exp");
226 $sth->execute([$filter_id]);
227
228 $rv = "";
229
230 while ($line = $sth->fetch()) {
231
232 if ($line["match_on"]) {
233 $feeds = json_decode($line["match_on"], true);
234 $feeds_fmt = [];
235
236 foreach ($feeds as $feed_id) {
237
238 if (strpos($feed_id, "CAT:") === 0) {
239 $feed_id = (int)substr($feed_id, 4);
240 array_push($feeds_fmt, Feeds::getCategoryTitle($feed_id));
241 } else {
242 if ($feed_id)
243 array_push($feeds_fmt, Feeds::getFeedTitle((int)$feed_id));
244 else
245 array_push($feeds_fmt, __("All feeds"));
246 }
247 }
248
249 $where = implode(", ", $feeds_fmt);
250
251 } else {
252
253 $where = $line["cat_filter"] ?
254 Feeds::getCategoryTitle($line["cat_id"]) :
255 ($line["feed_id"] ?
256 Feeds::getFeedTitle($line["feed_id"]) : __("All feeds"));
257 }
258
259 # $where = $line["cat_id"] . "/" . $line["feed_id"];
260
261 $inverse = $line["inverse"] ? "inverse" : "";
262
263 $rv .= "<span class='$inverse'>" . T_sprintf("%s on %s in %s %s",
264 htmlspecialchars($line["reg_exp"]),
265 $line["field"],
266 $where,
267 $line["inverse"] ? __("(inverse)") : "") . "</span>";
268 }
269
270 return $rv;
271 }
272
273 function getfiltertree() {
274 $root = array();
275 $root['id'] = 'root';
276 $root['name'] = __('Filters');
277 $root['items'] = array();
278
279 $filter_search = $_SESSION["prefs_filter_search"];
280
281 $sth = $this->pdo->prepare("SELECT *,
282 (SELECT action_param FROM ttrss_filters2_actions
283 WHERE filter_id = ttrss_filters2.id ORDER BY id LIMIT 1) AS action_param,
284 (SELECT action_id FROM ttrss_filters2_actions
285 WHERE filter_id = ttrss_filters2.id ORDER BY id LIMIT 1) AS action_id,
286 (SELECT description FROM ttrss_filter_actions
287 WHERE id = (SELECT action_id FROM ttrss_filters2_actions
288 WHERE filter_id = ttrss_filters2.id ORDER BY id LIMIT 1)) AS action_name,
289 (SELECT reg_exp FROM ttrss_filters2_rules
290 WHERE filter_id = ttrss_filters2.id ORDER BY id LIMIT 1) AS reg_exp
291 FROM ttrss_filters2 WHERE
292 owner_uid = ? ORDER BY order_id, title");
293 $sth->execute([$_SESSION['uid']]);
294
295 $folder = array();
296 $folder['items'] = array();
297
298 while ($line = $sth->fetch()) {
299
300 $name = $this->getFilterName($line["id"]);
301
302 $match_ok = false;
303 if ($filter_search) {
304 $rules_sth = $this->pdo->prepare("SELECT reg_exp
305 FROM ttrss_filters2_rules WHERE filter_id = ?");
306 $rules_sth->execute([$line['id']]);
307
308 while ($rule_line = $rules_sth->fetch()) {
309 if (mb_strpos($rule_line['reg_exp'], $filter_search) !== false) {
310 $match_ok = true;
311 break;
312 }
313 }
314 }
315
316 if ($line['action_id'] == 7) {
317 $label_sth = $this->pdo->prepare("SELECT fg_color, bg_color
318 FROM ttrss_labels2 WHERE caption = ? AND
319 owner_uid = ?");
320 $label_sth->execute([$line['action_param'], $_SESSION['uid']]);
321
322 if ($label_row = $label_sth->fetch()) {
323 $fg_color = $label_row["fg_color"];
324 $bg_color = $label_row["bg_color"];
325
326 $name[1] = "<span class=\"labelColorIndicator\" id=\"label-editor-indicator\" style='color : $fg_color; background-color : $bg_color; margin-right : 4px'>&alpha;</span>" . $name[1];
327 }
328 }
329
330 $filter = array();
331 $filter['id'] = 'FILTER:' . $line['id'];
332 $filter['bare_id'] = $line['id'];
333 $filter['name'] = $name[0];
334 $filter['param'] = $name[1];
335 $filter['checkbox'] = false;
336 $filter['enabled'] = $line["enabled"];
337 $filter['rules'] = $this->getfilterrules_concise($line['id']);
338
339 if (!$filter_search || $match_ok) {
340 array_push($folder['items'], $filter);
341 }
342 }
343
344 $root['items'] = $folder['items'];
345
346 $fl = array();
347 $fl['identifier'] = 'id';
348 $fl['label'] = 'name';
349 $fl['items'] = array($root);
350
351 print json_encode($fl);
352 return;
353 }
354
355 function edit() {
356
357 $filter_id = $_REQUEST["id"];
358
359 $sth = $this->pdo->prepare("SELECT * FROM ttrss_filters2
360 WHERE id = ? AND owner_uid = ?");
361 $sth->execute([$filter_id, $_SESSION['uid']]);
362
363 if ($row = $sth->fetch()) {
364
365 $enabled = $row["enabled"];
366 $match_any_rule = $row["match_any_rule"];
367 $inverse = $row["inverse"];
368 $title = htmlspecialchars($row["title"]);
369
370 print "<form id=\"filter_edit_form\" onsubmit='return false'>";
371
372 print_hidden("op", "pref-filters");
373 print_hidden("id", "$filter_id");
374 print_hidden("method", "editSave");
375 print_hidden("csrf_token", $_SESSION['csrf_token']);
376
377 print "<div class=\"dlgSec\">".__("Caption")."</div>";
378
379 print "<input required=\"true\" dojoType=\"dijit.form.ValidationTextBox\" style=\"width : 20em;\" name=\"title\" value=\"$title\">";
380
381 print "</div>";
382
383 print "<div class=\"dlgSec\">".__("Match")."</div>";
384
385 print "<div dojoType=\"dijit.Toolbar\">";
386
387 print "<div dojoType=\"dijit.form.DropDownButton\">".
388 "<span>" . __('Select')."</span>";
389 print "<div dojoType=\"dijit.Menu\" style=\"display: none;\">";
390 print "<div onclick=\"dijit.byId('filterEditDlg').selectRules(true)\"
391 dojoType=\"dijit.MenuItem\">".__('All')."</div>";
392 print "<div onclick=\"dijit.byId('filterEditDlg').selectRules(false)\"
393 dojoType=\"dijit.MenuItem\">".__('None')."</div>";
394 print "</div></div>";
395
396 print "<button dojoType=\"dijit.form.Button\" onclick=\"return dijit.byId('filterEditDlg').addRule()\">".
397 __('Add')."</button> ";
398
399 print "<button dojoType=\"dijit.form.Button\" onclick=\"return dijit.byId('filterEditDlg').deleteRule()\">".
400 __('Delete')."</button> ";
401
402 print "</div>";
403
404 print "<ul id='filterDlg_Matches'>";
405
406 $rules_sth = $this->pdo->prepare("SELECT * FROM ttrss_filters2_rules
407 WHERE filter_id = ? ORDER BY reg_exp, id");
408 $rules_sth->execute([$filter_id]);
409
410 while ($line = $rules_sth->fetch()) {
411 if ($line["match_on"]) {
412 $line["feed_id"] = json_decode($line["match_on"], true);
413 } else {
414 if ($line["cat_filter"]) {
415 $feed_id = "CAT:" . (int)$line["cat_id"];
416 } else {
417 $feed_id = (int)$line["feed_id"];
418 }
419
420 $line["feed_id"] = ["" . $feed_id]; // set item type to string for in_array()
421 }
422
423 unset($line["cat_filter"]);
424 unset($line["cat_id"]);
425 unset($line["filter_id"]);
426 unset($line["id"]);
427 if (!$line["inverse"]) unset($line["inverse"]);
428 unset($line["match_on"]);
429
430 $data = htmlspecialchars(json_encode($line));
431
432 print "<li><input dojoType='dijit.form.CheckBox' type='checkbox' onclick='toggleSelectListRow2(this)'>".
433 "<span onclick=\"dijit.byId('filterEditDlg').editRule(this)\">".$this->getRuleName($line)."</span>".
434 "<input type='hidden' name='rule[]' value=\"$data\"/></li>";
435 }
436
437 print "</ul>";
438
439 print "</div>";
440
441 print "<div class=\"dlgSec\">".__("Apply actions")."</div>";
442
443 print "<div dojoType=\"dijit.Toolbar\">";
444
445 print "<div dojoType=\"dijit.form.DropDownButton\">".
446 "<span>" . __('Select')."</span>";
447 print "<div dojoType=\"dijit.Menu\" style=\"display: none;\">";
448 print "<div onclick=\"dijit.byId('filterEditDlg').selectActions(true)\"
449 dojoType=\"dijit.MenuItem\">".__('All')."</div>";
450 print "<div onclick=\"dijit.byId('filterEditDlg').selectActions(false)\"
451 dojoType=\"dijit.MenuItem\">".__('None')."</div>";
452 print "</div></div>";
453
454 print "<button dojoType=\"dijit.form.Button\" onclick=\"return dijit.byId('filterEditDlg').addAction()\">".
455 __('Add')."</button> ";
456
457 print "<button dojoType=\"dijit.form.Button\" onclick=\"return dijit.byId('filterEditDlg').deleteAction()\">".
458 __('Delete')."</button> ";
459
460 print "</div>";
461
462 print "<ul id='filterDlg_Actions'>";
463
464 $actions_sth = $this->pdo->prepare("SELECT * FROM ttrss_filters2_actions
465 WHERE filter_id = ? ORDER BY id");
466 $actions_sth->execute([$filter_id]);
467
468 while ($line = $actions_sth->fetch()) {
469 $line["action_param_label"] = $line["action_param"];
470
471 unset($line["filter_id"]);
472 unset($line["id"]);
473
474 $data = htmlspecialchars(json_encode($line));
475
476 print "<li><input dojoType='dijit.form.CheckBox' type='checkbox' onclick='toggleSelectListRow2(this)'>".
477 "<span onclick=\"dijit.byId('filterEditDlg').editAction(this)\">".$this->getActionName($line)."</span>".
478 "<input type='hidden' name='action[]' value=\"$data\"/></li>";
479 }
480
481 print "</ul>";
482
483 print "</div>";
484
485 if ($enabled) {
486 $checked = "checked=\"1\"";
487 } else {
488 $checked = "";
489 }
490
491 print "<input dojoType=\"dijit.form.CheckBox\" type=\"checkbox\" name=\"enabled\" id=\"enabled\" $checked>
492 <label for=\"enabled\">".__('Enabled')."</label>";
493
494 if ($match_any_rule) {
495 $checked = "checked=\"1\"";
496 } else {
497 $checked = "";
498 }
499
500 print "<br/><input dojoType=\"dijit.form.CheckBox\" type=\"checkbox\" name=\"match_any_rule\" id=\"match_any_rule\" $checked>
501 <label for=\"match_any_rule\">".__('Match any rule')."</label>";
502
503 if ($inverse) {
504 $checked = "checked=\"1\"";
505 } else {
506 $checked = "";
507 }
508
509 print "<br/><input dojoType=\"dijit.form.CheckBox\" type=\"checkbox\" name=\"inverse\" id=\"inverse\" $checked>
510 <label for=\"inverse\">".__('Inverse matching')."</label>";
511
512 print "<p/>";
513
514 print "<div class=\"dlgButtons\">";
515
516 print "<div style=\"float : left\">";
517 print "<button dojoType=\"dijit.form.Button\" onclick=\"return dijit.byId('filterEditDlg').removeFilter()\">".
518 __('Remove')."</button>";
519 print "</div>";
520
521 print "<button dojoType=\"dijit.form.Button\" onclick=\"return dijit.byId('filterEditDlg').test()\">".
522 __('Test')."</button> ";
523
524 print "<button dojoType=\"dijit.form.Button\" onclick=\"return dijit.byId('filterEditDlg').execute()\">".
525 __('Save')."</button> ";
526
527 print "<button dojoType=\"dijit.form.Button\" onclick=\"return dijit.byId('filterEditDlg').hide()\">".
528 __('Cancel')."</button>";
529
530 print "</div>";
531
532 }
533 }
534
535 private function getRuleName($rule) {
536 if (!$rule) $rule = json_decode($_REQUEST["rule"], true);
537
538 $feeds = $rule["feed_id"];
539 $feeds_fmt = [];
540
541 if (!is_array($feeds)) $feeds = [$feeds];
542
543 foreach ($feeds as $feed_id) {
544
545 if (strpos($feed_id, "CAT:") === 0) {
546 $feed_id = (int)substr($feed_id, 4);
547 array_push($feeds_fmt, Feeds::getCategoryTitle($feed_id));
548 } else {
549 if ($feed_id)
550 array_push($feeds_fmt, Feeds::getFeedTitle((int)$feed_id));
551 else
552 array_push($feeds_fmt, __("All feeds"));
553 }
554 }
555
556 $feed = implode(", ", $feeds_fmt);
557
558 $sth = $this->pdo->prepare("SELECT description FROM ttrss_filter_types
559 WHERE id = ?");
560 $sth->execute([(int)$rule["filter_type"]]);
561
562 if ($row = $sth->fetch()) {
563 $filter_type = $row["description"];
564 } else {
565 $filter_type = "?UNKNOWN?";
566 }
567
568 $inverse = isset($rule["inverse"]) ? "inverse" : "";
569
570 return "<span class='filterRule $inverse'>" .
571 T_sprintf("%s on %s in %s %s", htmlspecialchars($rule["reg_exp"]),
572 $filter_type, $feed, isset($rule["inverse"]) ? __("(inverse)") : "") . "</span>";
573 }
574
575 function printRuleName() {
576 print $this->getRuleName(json_decode($_REQUEST["rule"], true));
577 }
578
579 private function getActionName($action) {
580 $sth = $this->pdo->prepare("SELECT description FROM
581 ttrss_filter_actions WHERE id = ?");
582 $sth->execute([(int)$action["action_id"]]);
583
584 $title = "";
585
586 if ($row = $sth->fetch()) {
587
588 $title = __($row["description"]);
589
590 if ($action["action_id"] == 4 || $action["action_id"] == 6 ||
591 $action["action_id"] == 7)
592 $title .= ": " . $action["action_param"];
593
594 if ($action["action_id"] == 9) {
595 list ($pfclass, $pfaction) = explode(":", $action["action_param"]);
596
597 $filter_actions = PluginHost::getInstance()->get_filter_actions();
598
599 foreach ($filter_actions as $fclass => $factions) {
600 foreach ($factions as $faction) {
601 if ($pfaction == $faction["action"] && $pfclass == $fclass) {
602 $title .= ": " . $fclass . ": " . $faction["description"];
603 break;
604 }
605 }
606 }
607 }
608 }
609
610 return $title;
611 }
612
613 function printActionName() {
614 print $this->getActionName(json_decode($_REQUEST["action"], true));
615 }
616
617 function editSave() {
618 if ($_REQUEST["savemode"] && $_REQUEST["savemode"] == "test") {
619 return $this->testFilter();
620 }
621
622 $filter_id = $_REQUEST["id"];
623 $enabled = checkbox_to_sql_bool($_REQUEST["enabled"]);
624 $match_any_rule = checkbox_to_sql_bool($_REQUEST["match_any_rule"]);
625 $inverse = checkbox_to_sql_bool($_REQUEST["inverse"]);
626 $title = $_REQUEST["title"];
627
628 $this->pdo->beginTransaction();
629
630 $sth = $this->pdo->prepare("UPDATE ttrss_filters2 SET enabled = ?,
631 match_any_rule = ?,
632 inverse = ?,
633 title = ?
634 WHERE id = ? AND owner_uid = ?");
635
636 $sth->execute([$enabled, $match_any_rule, $inverse, $title, $filter_id, $_SESSION['uid']]);
637
638 $this->saveRulesAndActions($filter_id);
639
640 $this->pdo->commit();
641 }
642
643 function remove() {
644
645 $ids = explode(",", $_REQUEST["ids"]);
646 $ids_qmarks = arr_qmarks($ids);
647
648 $sth = $this->pdo->prepare("DELETE FROM ttrss_filters2 WHERE id IN ($ids_qmarks)
649 AND owner_uid = ?");
650 $sth->execute(array_merge($ids, [$_SESSION['uid']]));
651 }
652
653 private function saveRulesAndActions($filter_id)
654 {
655
656 $sth = $this->pdo->prepare("DELETE FROM ttrss_filters2_rules WHERE filter_id = ?");
657 $sth->execute([$filter_id]);
658
659 $sth = $this->pdo->prepare("DELETE FROM ttrss_filters2_actions WHERE filter_id = ?");
660 $sth->execute([$filter_id]);
661
662 if (!is_array($_REQUEST["rule"])) $_REQUEST["rule"] = [];
663 if (!is_array($_REQUEST["action"])) $_REQUEST["action"] = [];
664
665 if ($filter_id) {
666 /* create rules */
667
668 $rules = array();
669 $actions = array();
670
671 foreach ($_REQUEST["rule"] as $rule) {
672 $rule = json_decode($rule, true);
673 unset($rule["id"]);
674
675 if (array_search($rule, $rules) === false) {
676 array_push($rules, $rule);
677 }
678 }
679
680 foreach ($_REQUEST["action"] as $action) {
681 $action = json_decode($action, true);
682 unset($action["id"]);
683
684 if (array_search($action, $actions) === false) {
685 array_push($actions, $action);
686 }
687 }
688
689 $rsth = $this->pdo->prepare("INSERT INTO ttrss_filters2_rules
690 (filter_id, reg_exp,filter_type,feed_id,cat_id,match_on,inverse) VALUES
691 (?, ?, ?, NULL, NULL, ?, ?)");
692
693 foreach ($rules as $rule) {
694 if ($rule) {
695
696 $reg_exp = trim($rule["reg_exp"]);
697 $inverse = isset($rule["inverse"]) ? 1 : 0;
698
699 $filter_type = (int)trim($rule["filter_type"]);
700 $match_on = json_encode($rule["feed_id"]);
701
702 $rsth->execute([$filter_id, $reg_exp, $filter_type, $match_on, $inverse]);
703 }
704 }
705
706 $asth = $this->pdo->prepare("INSERT INTO ttrss_filters2_actions
707 (filter_id, action_id, action_param) VALUES
708 (?, ?, ?)");
709
710 foreach ($actions as $action) {
711 if ($action) {
712
713 $action_id = (int)$action["action_id"];
714 $action_param = $action["action_param"];
715 $action_param_label = $action["action_param_label"];
716
717 if ($action_id == 7) {
718 $action_param = $action_param_label;
719 }
720
721 if ($action_id == 6) {
722 $action_param = (int)str_replace("+", "", $action_param);
723 }
724
725 $asth->execute([$filter_id, $action_id, $action_param]);
726 }
727 }
728 }
729 }
730
731 function add() {
732 if ($_REQUEST["savemode"] && $_REQUEST["savemode"] == "test") {
733 return $this->testFilter();
734 }
735
736 $enabled = checkbox_to_sql_bool($_REQUEST["enabled"]);
737 $match_any_rule = checkbox_to_sql_bool($_REQUEST["match_any_rule"]);
738 $title = $_REQUEST["title"];
739 $inverse = checkbox_to_sql_bool($_REQUEST["inverse"]);
740
741 $this->pdo->beginTransaction();
742
743 /* create base filter */
744
745 $sth = $this->pdo->prepare("INSERT INTO ttrss_filters2
746 (owner_uid, match_any_rule, enabled, title, inverse) VALUES
747 (?, ?, ?, ?, ?)");
748
749 $sth->execute([$_SESSION['uid'], $match_any_rule, $enabled, $title, $inverse]);
750
751 $sth = $this->pdo->prepare("SELECT MAX(id) AS id FROM ttrss_filters2
752 WHERE owner_uid = ?");
753 $sth->execute([$_SESSION['uid']]);
754
755 if ($row = $sth->fetch()) {
756 $filter_id = $row['id'];
757 $this->saveRulesAndActions($filter_id);
758 }
759
760 $this->pdo->commit();
761 }
762
763 function index() {
764
765 $sort = $_REQUEST["sort"];
766
767 if (!$sort || $sort == "undefined") {
768 $sort = "reg_exp";
769 }
770
771 $filter_search = $_REQUEST["search"];
772
773 if (array_key_exists("search", $_REQUEST)) {
774 $_SESSION["prefs_filter_search"] = $filter_search;
775 } else {
776 $filter_search = $_SESSION["prefs_filter_search"];
777 }
778
779 print "<div id=\"pref-filter-wrap\" dojoType=\"dijit.layout.BorderContainer\" gutters=\"false\">";
780 print "<div id=\"pref-filter-header\" dojoType=\"dijit.layout.ContentPane\" region=\"top\">";
781 print "<div id=\"pref-filter-toolbar\" dojoType=\"dijit.Toolbar\">";
782
783 $filter_search = $_REQUEST["search"];
784
785 if (array_key_exists("search", $_REQUEST)) {
786 $_SESSION["prefs_filter_search"] = $filter_search;
787 } else {
788 $filter_search = $_SESSION["prefs_filter_search"];
789 }
790
791 print "<div style='float : right; padding-right : 4px;'>
792 <input dojoType=\"dijit.form.TextBox\" id=\"filter_search\" size=\"20\" type=\"search\"
793 value=\"$filter_search\">
794 <button dojoType=\"dijit.form.Button\" onclick=\"updateFilterList()\">".
795 __('Search')."</button>
796 </div>";
797
798 print "<div dojoType=\"dijit.form.DropDownButton\">".
799 "<span>" . __('Select')."</span>";
800 print "<div dojoType=\"dijit.Menu\" style=\"display: none;\">";
801 print "<div onclick=\"dijit.byId('filterTree').model.setAllChecked(true)\"
802 dojoType=\"dijit.MenuItem\">".__('All')."</div>";
803 print "<div onclick=\"dijit.byId('filterTree').model.setAllChecked(false)\"
804 dojoType=\"dijit.MenuItem\">".__('None')."</div>";
805 print "</div></div>";
806
807 print "<button dojoType=\"dijit.form.Button\" onclick=\"return quickAddFilter()\">".
808 __('Create filter')."</button> ";
809
810 print "<button dojoType=\"dijit.form.Button\" onclick=\"return joinSelectedFilters()\">".
811 __('Combine')."</button> ";
812
813 print "<button dojoType=\"dijit.form.Button\" onclick=\"return editSelectedFilter()\">".
814 __('Edit')."</button> ";
815
816 print "<button dojoType=\"dijit.form.Button\" onclick=\"return resetFilterOrder()\">".
817 __('Reset sort order')."</button> ";
818
819
820 print "<button dojoType=\"dijit.form.Button\" onclick=\"return removeSelectedFilters()\">".
821 __('Remove')."</button> ";
822
823 print "</div>"; # toolbar
824 print "</div>"; # toolbar-frame
825 print "<div id=\"pref-filter-content\" dojoType=\"dijit.layout.ContentPane\" region=\"center\">";
826
827 print "<div id=\"filterlistLoading\">
828 <img src='images/indicator_tiny.gif'>".
829 __("Loading, please wait...")."</div>";
830
831 print "<div dojoType=\"fox.PrefFilterStore\" jsId=\"filterStore\"
832 url=\"backend.php?op=pref-filters&method=getfiltertree\">
833 </div>
834 <div dojoType=\"lib.CheckBoxStoreModel\" jsId=\"filterModel\" store=\"filterStore\"
835 query=\"{id:'root'}\" rootId=\"root\" rootLabel=\"Filters\"
836 childrenAttrs=\"items\" checkboxStrict=\"false\" checkboxAll=\"false\">
837 </div>
838 <div dojoType=\"fox.PrefFilterTree\" id=\"filterTree\"
839 dndController=\"dijit.tree.dndSource\"
840 betweenThreshold=\"5\"
841 model=\"filterModel\" openOnClick=\"true\">
842 <script type=\"dojo/method\" event=\"onLoad\" args=\"item\">
843 Element.hide(\"filterlistLoading\");
844 </script>
845 <script type=\"dojo/method\" event=\"onClick\" args=\"item\">
846 var id = String(item.id);
847 var bare_id = id.substr(id.indexOf(':')+1);
848
849 if (id.match('FILTER:')) {
850 editFilter(bare_id);
851 }
852 </script>
853
854 </div>";
855
856 print "</div>"; #pane
857
858 PluginHost::getInstance()->run_hooks(PluginHost::HOOK_PREFS_TAB,
859 "hook_prefs_tab", "prefFilters");
860
861 print "</div>"; #container
862
863 }
864
865 function newfilter() {
866
867 print "<form name='filter_new_form' id='filter_new_form'>";
868
869 print_hidden("op", "pref-filters");
870 print_hidden("method", "add");
871 print_hidden("csrf_token", $_SESSION['csrf_token']);
872
873 print "<div class=\"dlgSec\">".__("Caption")."</div>";
874
875 print "<input required=\"true\" dojoType=\"dijit.form.ValidationTextBox\" style=\"width : 20em;\" name=\"title\" value=\"\">";
876
877 print "<div class=\"dlgSec\">".__("Match")."</div>";
878
879 print "<div dojoType=\"dijit.Toolbar\">";
880
881 print "<div dojoType=\"dijit.form.DropDownButton\">".
882 "<span>" . __('Select')."</span>";
883 print "<div dojoType=\"dijit.Menu\" style=\"display: none;\">";
884 print "<div onclick=\"dijit.byId('filterEditDlg').selectRules(true)\"
885 dojoType=\"dijit.MenuItem\">".__('All')."</div>";
886 print "<div onclick=\"dijit.byId('filterEditDlg').selectRules(false)\"
887 dojoType=\"dijit.MenuItem\">".__('None')."</div>";
888 print "</div></div>";
889
890 print "<button dojoType=\"dijit.form.Button\" onclick=\"return dijit.byId('filterEditDlg').addRule()\">".
891 __('Add')."</button> ";
892
893 print "<button dojoType=\"dijit.form.Button\" onclick=\"return dijit.byId('filterEditDlg').deleteRule()\">".
894 __('Delete')."</button> ";
895
896 print "</div>";
897
898 print "<ul id='filterDlg_Matches'>";
899 # print "<li>No rules</li>";
900 print "</ul>";
901
902 print "</div>";
903
904 print "<div class=\"dlgSec\">".__("Apply actions")."</div>";
905
906 print "<div dojoType=\"dijit.Toolbar\">";
907
908 print "<div dojoType=\"dijit.form.DropDownButton\">".
909 "<span>" . __('Select')."</span>";
910 print "<div dojoType=\"dijit.Menu\" style=\"display: none;\">";
911 print "<div onclick=\"dijit.byId('filterEditDlg').selectActions(true)\"
912 dojoType=\"dijit.MenuItem\">".__('All')."</div>";
913 print "<div onclick=\"dijit.byId('filterEditDlg').selectActions(false)\"
914 dojoType=\"dijit.MenuItem\">".__('None')."</div>";
915 print "</div></div>";
916
917 print "<button dojoType=\"dijit.form.Button\" onclick=\"return dijit.byId('filterEditDlg').addAction()\">".
918 __('Add')."</button> ";
919
920 print "<button dojoType=\"dijit.form.Button\" onclick=\"return dijit.byId('filterEditDlg').deleteAction()\">".
921 __('Delete')."</button> ";
922
923 print "</div>";
924
925 print "<ul id='filterDlg_Actions'>";
926 # print "<li>No actions</li>";
927 print "</ul>";
928
929 /* print "<div class=\"dlgSec\">".__("Options")."</div>";
930 print "<div class=\"dlgSecCont\">"; */
931
932 print "<input dojoType=\"dijit.form.CheckBox\" type=\"checkbox\" name=\"enabled\" id=\"enabled\" checked=\"1\">
933 <label for=\"enabled\">".__('Enabled')."</label>";
934
935 print "<br/><input dojoType=\"dijit.form.CheckBox\" type=\"checkbox\" name=\"match_any_rule\" id=\"match_any_rule\">
936 <label for=\"match_any_rule\">".__('Match any rule')."</label>";
937
938 print "<br/><input dojoType=\"dijit.form.CheckBox\" type=\"checkbox\" name=\"inverse\" id=\"inverse\">
939 <label for=\"inverse\">".__('Inverse matching')."</label>";
940
941 // print "</div>";
942
943 print "<div class=\"dlgButtons\">";
944
945 print "<button dojoType=\"dijit.form.Button\" onclick=\"return dijit.byId('filterEditDlg').test()\">".
946 __('Test')."</button> ";
947
948 print "<button dojoType=\"dijit.form.Button\" onclick=\"return dijit.byId('filterEditDlg').execute()\">".
949 __('Create')."</button> ";
950
951 print "<button dojoType=\"dijit.form.Button\" onclick=\"return dijit.byId('filterEditDlg').hide()\">".
952 __('Cancel')."</button>";
953
954 print "</div>";
955
956 }
957
958 function newrule() {
959 $rule = json_decode($_REQUEST["rule"], true);
960
961 if ($rule) {
962 $reg_exp = htmlspecialchars($rule["reg_exp"]);
963 $filter_type = $rule["filter_type"];
964 $feed_id = $rule["feed_id"];
965 $inverse_checked = isset($rule["inverse"]) ? "checked" : "";
966 } else {
967 $reg_exp = "";
968 $filter_type = 1;
969 $feed_id = ["0"];
970 $inverse_checked = "";
971 }
972
973 print "<form name='filter_new_rule_form' id='filter_new_rule_form'>";
974
975 $res = $this->pdo->query("SELECT id,description
976 FROM ttrss_filter_types WHERE id != 5 ORDER BY description");
977
978 $filter_types = array();
979
980 while ($line = $res->fetch()) {
981 $filter_types[$line["id"]] = __($line["description"]);
982 }
983
984 print "<div class=\"dlgSec\">".__("Match")."</div>";
985
986 print "<div class=\"dlgSecCont\">";
987
988 print "<input dojoType=\"dijit.form.ValidationTextBox\"
989 required=\"true\" id=\"filterDlg_regExp\"
990 style=\"font-size : 16px; width : 20em;\"
991 name=\"reg_exp\" value=\"$reg_exp\"/>";
992
993 print "<hr/>";
994 print "<input id=\"filterDlg_inverse\" dojoType=\"dijit.form.CheckBox\"
995 name=\"inverse\" $inverse_checked/>";
996 print "<label for=\"filterDlg_inverse\">".__("Inverse regular expression matching")."</label>";
997
998 print "<hr/>" . __("on field") . " ";
999 print_select_hash("filter_type", $filter_type, $filter_types,
1000 'dojoType="dijit.form.Select"');
1001
1002 print "<hr/>";
1003
1004 print __("in") . " ";
1005
1006 print "<span id='filterDlg_feeds'>";
1007 print_feed_multi_select("feed_id",
1008 $feed_id,
1009 'dojoType="dijit.form.MultiSelect"');
1010 print "</span>";
1011
1012 print "</div>";
1013
1014 print "<div class=\"dlgButtons\">";
1015
1016 print "<div style=\"float : left\">
1017 <a class=\"visibleLink\" target=\"_blank\" href=\"http://tt-rss.org/wiki/ContentFilters\">".__("Wiki: Filters")."</a>
1018 </div>";
1019
1020
1021 print "<button dojoType=\"dijit.form.Button\" onclick=\"return dijit.byId('filterNewRuleDlg').execute()\">".
1022 ($rule ? __("Save rule") : __('Add rule'))."</button> ";
1023
1024 print "<button dojoType=\"dijit.form.Button\" onclick=\"return dijit.byId('filterNewRuleDlg').hide()\">".
1025 __('Cancel')."</button>";
1026
1027 print "</div>";
1028
1029 print "</form>";
1030 }
1031
1032 function newaction() {
1033 $action = json_decode($_REQUEST["action"], true);
1034
1035 if ($action) {
1036 $action_param = $action["action_param"];
1037 $action_id = (int)$action["action_id"];
1038 } else {
1039 $action_param = "";
1040 $action_id = 0;
1041 }
1042
1043 print "<form name='filter_new_action_form' id='filter_new_action_form'>";
1044
1045 print "<div class=\"dlgSec\">".__("Perform Action")."</div>";
1046
1047 print "<div class=\"dlgSecCont\">";
1048
1049 print "<select name=\"action_id\" dojoType=\"dijit.form.Select\"
1050 onchange=\"filterDlgCheckAction(this)\">";
1051
1052 $res = $this->pdo->query("SELECT id,description FROM ttrss_filter_actions
1053 ORDER BY name");
1054
1055 while ($line = $res->fetch()) {
1056 $is_selected = ($line["id"] == $action_id) ? "selected='1'" : "";
1057 printf("<option $is_selected value='%d'>%s</option>", $line["id"], __($line["description"]));
1058 }
1059
1060 print "</select>";
1061
1062 $param_box_hidden = ($action_id == 7 || $action_id == 4 || $action_id == 6 || $action_id == 9) ?
1063 "" : "display : none";
1064
1065 $param_hidden = ($action_id == 4 || $action_id == 6) ?
1066 "" : "display : none";
1067
1068 $label_param_hidden = ($action_id == 7) ? "" : "display : none";
1069 $plugin_param_hidden = ($action_id == 9) ? "" : "display : none";
1070
1071 print "<span id=\"filterDlg_paramBox\" style=\"$param_box_hidden\">";
1072 print " ";
1073 //print " " . __("with parameters:") . " ";
1074 print "<input dojoType=\"dijit.form.TextBox\"
1075 id=\"filterDlg_actionParam\" style=\"$param_hidden\"
1076 name=\"action_param\" value=\"$action_param\">";
1077
1078 print_label_select("action_param_label", $action_param,
1079 "id=\"filterDlg_actionParamLabel\" style=\"$label_param_hidden\"
1080 dojoType=\"dijit.form.Select\"");
1081
1082 $filter_actions = PluginHost::getInstance()->get_filter_actions();
1083 $filter_action_hash = array();
1084
1085 foreach ($filter_actions as $fclass => $factions) {
1086 foreach ($factions as $faction) {
1087
1088 $filter_action_hash[$fclass . ":" . $faction["action"]] =
1089 $fclass . ": " . $faction["description"];
1090 }
1091 }
1092
1093 if (count($filter_action_hash) == 0) {
1094 $filter_plugin_disabled = "disabled";
1095
1096 $filter_action_hash["no-data"] = __("No actions available");
1097
1098 } else {
1099 $filter_plugin_disabled = "";
1100 }
1101
1102 print_select_hash("filterDlg_actionParamPlugin", $action_param, $filter_action_hash,
1103 "style=\"$plugin_param_hidden\" dojoType=\"dijit.form.Select\" $filter_plugin_disabled",
1104 "action_param_plugin");
1105
1106 print "</span>";
1107
1108 print "&nbsp;"; // tiny layout hack
1109
1110 print "</div>";
1111
1112 print "<div class=\"dlgButtons\">";
1113
1114 print "<button dojoType=\"dijit.form.Button\" onclick=\"return dijit.byId('filterNewActionDlg').execute()\">".
1115 ($action ? __("Save action") : __('Add action'))."</button> ";
1116
1117 print "<button dojoType=\"dijit.form.Button\" onclick=\"return dijit.byId('filterNewActionDlg').hide()\">".
1118 __('Cancel')."</button>";
1119
1120 print "</div>";
1121
1122 print "</form>";
1123 }
1124
1125 private function getFilterName($id) {
1126
1127 $sth = $this->pdo->prepare(
1128 "SELECT title,match_any_rule,COUNT(DISTINCT r.id) AS num_rules,COUNT(DISTINCT a.id) AS num_actions
1129 FROM ttrss_filters2 AS f LEFT JOIN ttrss_filters2_rules AS r
1130 ON (r.filter_id = f.id)
1131 LEFT JOIN ttrss_filters2_actions AS a
1132 ON (a.filter_id = f.id) WHERE f.id = ? GROUP BY f.title, f.match_any_rule");
1133 $sth->execute([$id]);
1134
1135 if ($row = $sth->fetch()) {
1136
1137 $title = $row["title"];
1138 $num_rules = $row["num_rules"];
1139 $num_actions = $row["num_actions"];
1140 $match_any_rule = $row["match_any_rule"];
1141
1142 if (!$title) $title = __("[No caption]");
1143
1144 $title = sprintf(_ngettext("%s (%d rule)", "%s (%d rules)", (int) $num_rules), $title, $num_rules);
1145
1146 $sth = $this->pdo->prepare("SELECT * FROM ttrss_filters2_actions
1147 WHERE filter_id = ? ORDER BY id LIMIT 1");
1148 $sth->execute([$id]);
1149
1150 $actions = "";
1151
1152 if ($line = $sth->fetch()) {
1153 $actions = $this->getActionName($line);
1154
1155 $num_actions -= 1;
1156 }
1157
1158 if ($match_any_rule) $title .= " (" . __("matches any rule") . ")";
1159
1160 if ($num_actions > 0)
1161 $actions = sprintf(_ngettext("%s (+%d action)", "%s (+%d actions)", (int) $num_actions), $actions, $num_actions);
1162
1163 return [$title, $actions];
1164 }
1165
1166 return [];
1167 }
1168
1169 function join() {
1170 $ids = explode(",", $_REQUEST["ids"]);
1171
1172 if (count($ids) > 1) {
1173 $base_id = array_shift($ids);
1174 $ids_qmarks = arr_qmarks($ids);
1175
1176 $this->pdo->beginTransaction();
1177
1178 $sth = $this->pdo->prepare("UPDATE ttrss_filters2_rules
1179 SET filter_id = ? WHERE filter_id IN ($ids_qmarks)");
1180 $sth->execute(array_merge([$base_id], $ids));
1181
1182 $sth = $this->pdo->prepare("UPDATE ttrss_filters2_actions
1183 SET filter_id = ? WHERE filter_id IN ($ids_qmarks)");
1184 $sth->execute(array_merge([$base_id], $ids));
1185
1186 $sth = $this->pdo->prepare("DELETE FROM ttrss_filters2 WHERE id IN ($ids_qmarks)");
1187 $sth->execute($ids);
1188
1189 $sth = $this->pdo->prepare("UPDATE ttrss_filters2 SET match_any_rule = true WHERE id = ?");
1190 $sth->execute([$base_id]);
1191
1192 $this->pdo->commit();
1193
1194 $this->optimizeFilter($base_id);
1195
1196 }
1197 }
1198
1199 private function optimizeFilter($id) {
1200
1201 $this->pdo->beginTransaction();
1202
1203 $sth = $this->pdo->prepare("SELECT * FROM ttrss_filters2_actions
1204 WHERE filter_id = ?");
1205 $sth->execute([$id]);
1206
1207 $tmp = array();
1208 $dupe_ids = array();
1209
1210 while ($line = $sth->fetch()) {
1211 $id = $line["id"];
1212 unset($line["id"]);
1213
1214 if (array_search($line, $tmp) === false) {
1215 array_push($tmp, $line);
1216 } else {
1217 array_push($dupe_ids, $id);
1218 }
1219 }
1220
1221 if (count($dupe_ids) > 0) {
1222 $ids_str = join(",", $dupe_ids);
1223
1224 $this->pdo->query("DELETE FROM ttrss_filters2_actions WHERE id IN ($ids_str)");
1225 }
1226
1227 $sth = $this->pdo->prepare("SELECT * FROM ttrss_filters2_rules
1228 WHERE filter_id = ?");
1229 $sth->execute([$id]);
1230
1231 $tmp = array();
1232 $dupe_ids = array();
1233
1234 while ($line = $sth->fetch()) {
1235 $id = $line["id"];
1236 unset($line["id"]);
1237
1238 if (array_search($line, $tmp) === false) {
1239 array_push($tmp, $line);
1240 } else {
1241 array_push($dupe_ids, $id);
1242 }
1243 }
1244
1245 if (count($dupe_ids) > 0) {
1246 $ids_str = join(",", $dupe_ids);
1247
1248 $this->pdo->query("DELETE FROM ttrss_filters2_rules WHERE id IN ($ids_str)");
1249 }
1250
1251 $this->pdo->commit();
1252 }
1253 }