2011-12-13 11:09:34 +01:00
|
|
|
<?php
|
2012-08-17 12:20:55 +02:00
|
|
|
class Pref_Filters extends Handler_Protected {
|
2011-12-13 11:09:34 +01:00
|
|
|
|
2011-12-26 09:02:52 +01:00
|
|
|
function csrf_ignore($method) {
|
2012-08-30 16:50:56 +02:00
|
|
|
$csrf_ignored = array("index", "getfiltertree", "edit", "newfilter", "newrule",
|
|
|
|
"newaction");
|
2011-12-26 09:02:52 +01:00
|
|
|
|
|
|
|
return array_search($method, $csrf_ignored) !== false;
|
|
|
|
}
|
|
|
|
|
2012-09-03 13:05:43 +02:00
|
|
|
function testFilter() {
|
|
|
|
$filter = array();
|
2011-12-13 11:09:34 +01:00
|
|
|
|
2012-09-03 13:05:43 +02:00
|
|
|
$filter["enabled"] = true;
|
|
|
|
$filter["match_any_rule"] = sql_bool_to_bool(
|
2013-03-22 06:14:55 +01:00
|
|
|
checkbox_to_sql_bool(db_escape_string($this->link, $_REQUEST["match_any_rule"])));
|
2013-03-25 16:46:43 +01:00
|
|
|
$filter["inverse"] = sql_bool_to_bool(
|
|
|
|
checkbox_to_sql_bool(db_escape_string($this->link, $_REQUEST["inverse"])));
|
|
|
|
|
2012-09-03 13:05:43 +02:00
|
|
|
$filter["rules"] = array();
|
2011-12-13 11:09:34 +01:00
|
|
|
|
2012-09-03 13:05:43 +02:00
|
|
|
$result = db_query($this->link, "SELECT id,name FROM ttrss_filter_types");
|
2011-12-13 11:09:34 +01:00
|
|
|
|
2012-09-03 13:05:43 +02:00
|
|
|
$filter_types = array();
|
|
|
|
while ($line = db_fetch_assoc($result)) {
|
|
|
|
$filter_types[$line["id"]] = $line["name"];
|
|
|
|
}
|
2011-12-13 11:09:34 +01:00
|
|
|
|
2012-09-03 13:05:43 +02:00
|
|
|
$rctr = 0;
|
|
|
|
foreach ($_REQUEST["rule"] AS $r) {
|
|
|
|
$rule = json_decode($r, true);
|
2011-12-13 11:09:34 +01:00
|
|
|
|
2012-09-03 13:05:43 +02:00
|
|
|
if ($rule && $rctr < 5) {
|
|
|
|
$rule["type"] = $filter_types[$rule["filter_type"]];
|
|
|
|
unset($rule["filter_type"]);
|
2011-12-13 11:09:34 +01:00
|
|
|
|
2012-09-03 13:05:43 +02:00
|
|
|
if (strpos($rule["feed_id"], "CAT:") === 0) {
|
|
|
|
$rule["cat_id"] = (int) substr($rule["feed_id"], 4);
|
|
|
|
unset($rule["feed_id"]);
|
|
|
|
}
|
2011-12-13 11:09:34 +01:00
|
|
|
|
2012-09-03 13:05:43 +02:00
|
|
|
array_push($filter["rules"], $rule);
|
2011-12-13 11:09:34 +01:00
|
|
|
|
2012-09-03 13:05:43 +02:00
|
|
|
++$rctr;
|
|
|
|
} else {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2011-12-13 11:09:34 +01:00
|
|
|
|
2012-09-03 13:05:43 +02:00
|
|
|
$feed_title = getFeedTitle($this->link, $feed);
|
2011-12-13 11:09:34 +01:00
|
|
|
|
2012-09-03 13:05:43 +02:00
|
|
|
$qfh_ret = queryFeedHeadlines($this->link, -4, 30, "", false, false, false,
|
2013-03-21 00:36:30 +01:00
|
|
|
"date_entered DESC", 0, $_SESSION["uid"], $filter);
|
2011-12-13 11:09:34 +01:00
|
|
|
|
2012-09-03 13:05:43 +02:00
|
|
|
$result = $qfh_ret[0];
|
2011-12-13 11:09:34 +01:00
|
|
|
|
2012-09-03 13:05:43 +02:00
|
|
|
$articles = array();
|
|
|
|
$found = 0;
|
2011-12-13 11:09:34 +01:00
|
|
|
|
2012-09-03 13:05:43 +02:00
|
|
|
print __("Articles matching this filter:");
|
2011-12-13 11:09:34 +01:00
|
|
|
|
2012-09-03 13:05:43 +02:00
|
|
|
print "<div class=\"filterTestHolder\">";
|
|
|
|
print "<table width=\"100%\" cellspacing=\"0\" id=\"prefErrorFeedList\">";
|
2011-12-13 11:09:34 +01:00
|
|
|
|
2012-09-03 13:05:43 +02:00
|
|
|
while ($line = db_fetch_assoc($result)) {
|
2011-12-13 11:09:34 +01:00
|
|
|
|
2012-09-03 13:05:43 +02:00
|
|
|
$entry_timestamp = strtotime($line["updated"]);
|
|
|
|
$entry_tags = get_article_tags($this->link, $line["id"], $_SESSION["uid"]);
|
2011-12-13 11:09:34 +01:00
|
|
|
|
2012-09-03 13:05:43 +02:00
|
|
|
$content_preview = truncate_string(
|
|
|
|
strip_tags($line["content_preview"]), 100, '...');
|
2012-02-21 09:36:29 +01:00
|
|
|
|
2012-09-03 13:05:43 +02:00
|
|
|
if ($line["feed_title"])
|
|
|
|
$feed_title = $line["feed_title"];
|
2012-02-21 09:36:29 +01:00
|
|
|
|
2012-09-03 13:05:43 +02:00
|
|
|
print "<tr>";
|
2012-02-21 09:36:29 +01:00
|
|
|
|
2012-09-03 13:05:43 +02:00
|
|
|
print "<td width='5%' align='center'><input
|
|
|
|
dojoType=\"dijit.form.CheckBox\" checked=\"1\"
|
|
|
|
disabled=\"1\" type=\"checkbox\"></td>";
|
|
|
|
print "<td>";
|
2012-02-21 09:36:29 +01:00
|
|
|
|
2012-09-03 13:05:43 +02:00
|
|
|
print $line["title"];
|
|
|
|
print " (";
|
|
|
|
print "<b>" . $feed_title . "</b>";
|
|
|
|
print "): ";
|
|
|
|
print "<span class=\"insensitive\">" . $content_preview . "</span>";
|
|
|
|
print " " . mb_substr($line["date_entered"], 0, 16);
|
2012-02-21 09:36:29 +01:00
|
|
|
|
2012-09-03 13:05:43 +02:00
|
|
|
print "</td></tr>";
|
2012-02-21 09:36:29 +01:00
|
|
|
|
2012-09-03 13:05:43 +02:00
|
|
|
$found++;
|
|
|
|
}
|
2011-12-13 11:09:34 +01:00
|
|
|
|
2012-09-03 13:05:43 +02:00
|
|
|
if ($found == 0) {
|
|
|
|
print "<tr><td align='center'>" .
|
2013-01-22 10:34:02 +01:00
|
|
|
__("No recent articles matching this filter have been found.");
|
|
|
|
|
|
|
|
print "</td></tr><tr><td class='insensitive' align='center'>";
|
|
|
|
|
|
|
|
print __("Complex expressions might not give results while testing due to issues with database server regexp implementation.");
|
|
|
|
|
|
|
|
print "</td></tr>";
|
|
|
|
|
2011-12-13 11:09:34 +01:00
|
|
|
}
|
|
|
|
|
2012-09-03 13:05:43 +02:00
|
|
|
print "</table></div>";
|
|
|
|
|
|
|
|
print "<div style='text-align : center'>";
|
|
|
|
print "<button dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('filterTestDlg').hide()\">".
|
|
|
|
__('Close this window')."</button>";
|
2011-12-13 11:09:34 +01:00
|
|
|
print "</div>";
|
|
|
|
|
2012-09-03 13:05:43 +02:00
|
|
|
}
|
|
|
|
|
2011-12-13 11:09:34 +01:00
|
|
|
|
|
|
|
function getfiltertree() {
|
|
|
|
$root = array();
|
|
|
|
$root['id'] = 'root';
|
|
|
|
$root['name'] = __('Filters');
|
|
|
|
$root['items'] = array();
|
|
|
|
|
2012-08-31 13:14:12 +02:00
|
|
|
$filter_search = $_SESSION["prefs_filter_search"];
|
|
|
|
|
2012-08-30 16:50:56 +02:00
|
|
|
$result = db_query($this->link, "SELECT *,
|
2012-08-31 13:40:19 +02:00
|
|
|
(SELECT action_param FROM ttrss_filters2_actions
|
|
|
|
WHERE filter_id = ttrss_filters2.id ORDER BY id LIMIT 1) AS action_param,
|
2012-08-30 16:50:56 +02:00
|
|
|
(SELECT action_id FROM ttrss_filters2_actions
|
|
|
|
WHERE filter_id = ttrss_filters2.id ORDER BY id LIMIT 1) AS action_id,
|
2012-08-31 10:54:37 +02:00
|
|
|
(SELECT description FROM ttrss_filter_actions
|
|
|
|
WHERE id = (SELECT action_id FROM ttrss_filters2_actions
|
|
|
|
WHERE filter_id = ttrss_filters2.id ORDER BY id LIMIT 1)) AS action_name,
|
2012-08-30 16:50:56 +02:00
|
|
|
(SELECT reg_exp FROM ttrss_filters2_rules
|
|
|
|
WHERE filter_id = ttrss_filters2.id ORDER BY id LIMIT 1) AS reg_exp
|
|
|
|
FROM ttrss_filters2 WHERE
|
|
|
|
owner_uid = ".$_SESSION["uid"]." ORDER BY action_id,reg_exp");
|
2011-12-13 11:09:34 +01:00
|
|
|
|
2012-08-31 13:14:12 +02:00
|
|
|
|
2012-08-31 10:54:37 +02:00
|
|
|
$action_id = -1;
|
|
|
|
$folder = array();
|
|
|
|
$folder['items'] = array();
|
|
|
|
|
2012-08-30 16:50:56 +02:00
|
|
|
while ($line = db_fetch_assoc($result)) {
|
2011-12-13 11:09:34 +01:00
|
|
|
|
2012-08-31 10:54:37 +02:00
|
|
|
if ($action_id != $line["action_id"]) {
|
|
|
|
if (count($folder['items']) > 0) {
|
|
|
|
array_push($root['items'], $folder);
|
|
|
|
}
|
2012-08-31 11:00:23 +02:00
|
|
|
|
2012-08-31 10:54:37 +02:00
|
|
|
$folder = array();
|
2012-08-31 11:00:23 +02:00
|
|
|
$folder['id'] = $line["action_id"];
|
2012-11-22 13:07:40 +01:00
|
|
|
$folder['name'] = __($line["action_name"]);
|
2012-08-31 10:54:37 +02:00
|
|
|
$folder['items'] = array();
|
|
|
|
$action_id = $line["action_id"];
|
|
|
|
}
|
|
|
|
|
2012-08-30 16:50:56 +02:00
|
|
|
$name = $this->getFilterName($line["id"]);
|
2011-12-13 11:09:34 +01:00
|
|
|
|
2012-08-31 13:14:12 +02:00
|
|
|
$match_ok = false;
|
|
|
|
if ($filter_search) {
|
|
|
|
$rules_result = db_query($this->link,
|
|
|
|
"SELECT reg_exp FROM ttrss_filters2_rules WHERE filter_id = ".$line["id"]);
|
|
|
|
|
|
|
|
while ($rule_line = db_fetch_assoc($rules_result)) {
|
|
|
|
if (mb_strpos($rule_line['reg_exp'], $filter_search) !== false) {
|
|
|
|
$match_ok = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-08-31 13:40:19 +02:00
|
|
|
if ($line['action_id'] == 7) {
|
|
|
|
$label_result = db_query($this->link, "SELECT fg_color, bg_color
|
2013-03-22 06:14:55 +01:00
|
|
|
FROM ttrss_labels2 WHERE caption = '".db_escape_string($this->link, $line['action_param'])."' AND
|
2012-08-31 13:40:19 +02:00
|
|
|
owner_uid = " . $_SESSION["uid"]);
|
|
|
|
|
|
|
|
if (db_num_rows($label_result) > 0) {
|
|
|
|
$fg_color = db_fetch_result($label_result, 0, "fg_color");
|
|
|
|
$bg_color = db_fetch_result($label_result, 0, "bg_color");
|
|
|
|
|
|
|
|
$name[1] = "<span class=\"labelColorIndicator\" id=\"label-editor-indicator\" style='color : $fg_color; background-color : $bg_color; margin-right : 4px'>α</span>" . $name[1];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-08-30 16:50:56 +02:00
|
|
|
$filter = array();
|
|
|
|
$filter['id'] = 'FILTER:' . $line['id'];
|
|
|
|
$filter['bare_id'] = $line['id'];
|
|
|
|
$filter['name'] = $name[0];
|
|
|
|
$filter['param'] = $name[1];
|
|
|
|
$filter['checkbox'] = false;
|
2012-08-31 10:27:50 +02:00
|
|
|
$filter['enabled'] = sql_bool_to_bool($line["enabled"]);
|
2011-12-13 11:09:34 +01:00
|
|
|
|
2012-08-31 13:14:12 +02:00
|
|
|
if (!$filter_search || $match_ok) {
|
|
|
|
array_push($folder['items'], $filter);
|
|
|
|
}
|
2011-12-13 11:09:34 +01:00
|
|
|
}
|
|
|
|
|
2012-08-31 11:00:23 +02:00
|
|
|
if (count($folder['items']) > 0) {
|
|
|
|
array_push($root['items'], $folder);
|
|
|
|
}
|
|
|
|
|
2011-12-13 11:09:34 +01:00
|
|
|
$fl = array();
|
|
|
|
$fl['identifier'] = 'id';
|
|
|
|
$fl['label'] = 'name';
|
|
|
|
$fl['items'] = array($root);
|
|
|
|
|
|
|
|
print json_encode($fl);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
function edit() {
|
|
|
|
|
2013-03-22 06:14:55 +01:00
|
|
|
$filter_id = db_escape_string($this->link, $_REQUEST["id"]);
|
2011-12-13 11:09:34 +01:00
|
|
|
|
|
|
|
$result = db_query($this->link,
|
2012-08-30 16:50:56 +02:00
|
|
|
"SELECT * FROM ttrss_filters2 WHERE id = '$filter_id' AND owner_uid = " . $_SESSION["uid"]);
|
2011-12-13 11:09:34 +01:00
|
|
|
|
|
|
|
$enabled = sql_bool_to_bool(db_fetch_result($result, 0, "enabled"));
|
2012-08-30 16:50:56 +02:00
|
|
|
$match_any_rule = sql_bool_to_bool(db_fetch_result($result, 0, "match_any_rule"));
|
2013-03-25 16:46:43 +01:00
|
|
|
$inverse = sql_bool_to_bool(db_fetch_result($result, 0, "inverse"));
|
2011-12-13 11:09:34 +01:00
|
|
|
|
|
|
|
print "<form id=\"filter_edit_form\" onsubmit='return false'>";
|
|
|
|
|
|
|
|
print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"op\" value=\"pref-filters\">";
|
|
|
|
print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"id\" value=\"$filter_id\">";
|
|
|
|
print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"method\" value=\"editSave\">";
|
2011-12-26 13:02:59 +01:00
|
|
|
print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"csrf_token\" value=\"".$_SESSION['csrf_token']."\">";
|
2011-12-13 11:09:34 +01:00
|
|
|
|
|
|
|
print "<div class=\"dlgSec\">".__("Match")."</div>";
|
|
|
|
|
2012-08-30 16:50:56 +02:00
|
|
|
print "<div dojoType=\"dijit.Toolbar\">";
|
2011-12-13 11:09:34 +01:00
|
|
|
|
2012-08-30 16:50:56 +02:00
|
|
|
print "<div dojoType=\"dijit.form.DropDownButton\">".
|
|
|
|
"<span>" . __('Select')."</span>";
|
|
|
|
print "<div dojoType=\"dijit.Menu\" style=\"display: none;\">";
|
|
|
|
print "<div onclick=\"dijit.byId('filterEditDlg').selectRules(true)\"
|
|
|
|
dojoType=\"dijit.MenuItem\">".__('All')."</div>";
|
|
|
|
print "<div onclick=\"dijit.byId('filterEditDlg').selectRules(false)\"
|
|
|
|
dojoType=\"dijit.MenuItem\">".__('None')."</div>";
|
|
|
|
print "</div></div>";
|
2011-12-13 11:09:34 +01:00
|
|
|
|
2012-08-30 16:50:56 +02:00
|
|
|
print "<button dojoType=\"dijit.form.Button\" onclick=\"return dijit.byId('filterEditDlg').addRule()\">".
|
|
|
|
__('Add')."</button> ";
|
2011-12-13 11:09:34 +01:00
|
|
|
|
2012-08-30 16:50:56 +02:00
|
|
|
print "<button dojoType=\"dijit.form.Button\" onclick=\"return dijit.byId('filterEditDlg').deleteRule()\">".
|
|
|
|
__('Delete')."</button> ";
|
2011-12-13 11:09:34 +01:00
|
|
|
|
2012-08-30 16:50:56 +02:00
|
|
|
print "</div>";
|
2011-12-13 11:09:34 +01:00
|
|
|
|
2012-08-30 16:50:56 +02:00
|
|
|
print "<ul id='filterDlg_Matches'>";
|
2011-12-13 11:09:34 +01:00
|
|
|
|
2012-08-30 16:50:56 +02:00
|
|
|
$rules_result = db_query($this->link, "SELECT * FROM ttrss_filters2_rules
|
2012-10-25 10:24:24 +02:00
|
|
|
WHERE filter_id = '$filter_id' ORDER BY reg_exp, id");
|
2011-12-13 11:09:34 +01:00
|
|
|
|
2012-08-30 16:50:56 +02:00
|
|
|
while ($line = db_fetch_assoc($rules_result)) {
|
2012-08-31 10:24:13 +02:00
|
|
|
if (sql_bool_to_bool($line["cat_filter"])) {
|
2012-08-30 16:50:56 +02:00
|
|
|
$line["feed_id"] = "CAT:" . (int)$line["cat_id"];
|
|
|
|
}
|
2011-12-13 11:09:34 +01:00
|
|
|
|
2012-09-03 13:05:43 +02:00
|
|
|
unset($line["cat_filter"]);
|
|
|
|
unset($line["cat_id"]);
|
|
|
|
unset($line["filter_id"]);
|
|
|
|
unset($line["id"]);
|
2013-03-25 16:46:43 +01:00
|
|
|
if (!sql_bool_to_bool($line["inverse"])) unset($line["inverse"]);
|
2012-09-03 13:05:43 +02:00
|
|
|
|
2012-08-30 16:50:56 +02:00
|
|
|
$data = htmlspecialchars(json_encode($line));
|
2011-12-13 11:09:34 +01:00
|
|
|
|
2012-08-31 13:26:11 +02:00
|
|
|
print "<li><input dojoType='dijit.form.CheckBox' type='checkbox' onclick='toggleSelectListRow2(this)'>".
|
2012-08-30 16:50:56 +02:00
|
|
|
"<span onclick=\"dijit.byId('filterEditDlg').editRule(this)\">".$this->getRuleName($line)."</span>".
|
|
|
|
"<input type='hidden' name='rule[]' value=\"$data\"/></li>";
|
|
|
|
}
|
2011-12-27 09:52:33 +01:00
|
|
|
|
2012-08-30 16:50:56 +02:00
|
|
|
print "</ul>";
|
2011-12-27 09:52:33 +01:00
|
|
|
|
2011-12-13 11:09:34 +01:00
|
|
|
print "</div>";
|
|
|
|
|
2012-08-30 16:50:56 +02:00
|
|
|
print "<div class=\"dlgSec\">".__("Apply actions")."</div>";
|
2011-12-13 11:09:34 +01:00
|
|
|
|
2012-08-30 16:50:56 +02:00
|
|
|
print "<div dojoType=\"dijit.Toolbar\">";
|
2011-12-13 11:09:34 +01:00
|
|
|
|
2012-08-30 16:50:56 +02:00
|
|
|
print "<div dojoType=\"dijit.form.DropDownButton\">".
|
|
|
|
"<span>" . __('Select')."</span>";
|
|
|
|
print "<div dojoType=\"dijit.Menu\" style=\"display: none;\">";
|
|
|
|
print "<div onclick=\"dijit.byId('filterEditDlg').selectActions(true)\"
|
|
|
|
dojoType=\"dijit.MenuItem\">".__('All')."</div>";
|
|
|
|
print "<div onclick=\"dijit.byId('filterEditDlg').selectActions(false)\"
|
|
|
|
dojoType=\"dijit.MenuItem\">".__('None')."</div>";
|
|
|
|
print "</div></div>";
|
2011-12-13 11:09:34 +01:00
|
|
|
|
2012-08-30 16:50:56 +02:00
|
|
|
print "<button dojoType=\"dijit.form.Button\" onclick=\"return dijit.byId('filterEditDlg').addAction()\">".
|
|
|
|
__('Add')."</button> ";
|
2011-12-13 11:09:34 +01:00
|
|
|
|
2012-08-30 16:50:56 +02:00
|
|
|
print "<button dojoType=\"dijit.form.Button\" onclick=\"return dijit.byId('filterEditDlg').deleteAction()\">".
|
|
|
|
__('Delete')."</button> ";
|
2011-12-13 11:09:34 +01:00
|
|
|
|
2012-08-30 16:50:56 +02:00
|
|
|
print "</div>";
|
2011-12-13 11:09:34 +01:00
|
|
|
|
2012-08-30 16:50:56 +02:00
|
|
|
print "<ul id='filterDlg_Actions'>";
|
2011-12-13 11:09:34 +01:00
|
|
|
|
2012-08-30 16:50:56 +02:00
|
|
|
$actions_result = db_query($this->link, "SELECT * FROM ttrss_filters2_actions
|
|
|
|
WHERE filter_id = '$filter_id' ORDER BY id");
|
2011-12-13 11:09:34 +01:00
|
|
|
|
2012-08-30 16:50:56 +02:00
|
|
|
while ($line = db_fetch_assoc($actions_result)) {
|
|
|
|
$line["action_param_label"] = $line["action_param"];
|
2012-09-03 13:05:43 +02:00
|
|
|
|
|
|
|
unset($line["filter_id"]);
|
|
|
|
unset($line["id"]);
|
|
|
|
|
2012-08-30 16:50:56 +02:00
|
|
|
$data = htmlspecialchars(json_encode($line));
|
2011-12-13 11:09:34 +01:00
|
|
|
|
2012-08-31 13:26:11 +02:00
|
|
|
print "<li><input dojoType='dijit.form.CheckBox' type='checkbox' onclick='toggleSelectListRow2(this)'>".
|
2012-08-30 16:50:56 +02:00
|
|
|
"<span onclick=\"dijit.byId('filterEditDlg').editAction(this)\">".$this->getActionName($line)."</span>".
|
|
|
|
"<input type='hidden' name='action[]' value=\"$data\"/></li>";
|
|
|
|
}
|
2011-12-13 11:09:34 +01:00
|
|
|
|
2012-08-30 16:50:56 +02:00
|
|
|
print "</ul>";
|
2011-12-13 11:09:34 +01:00
|
|
|
|
|
|
|
print "</div>";
|
|
|
|
|
|
|
|
if ($enabled) {
|
|
|
|
$checked = "checked=\"1\"";
|
|
|
|
} else {
|
|
|
|
$checked = "";
|
|
|
|
}
|
|
|
|
|
|
|
|
print "<input dojoType=\"dijit.form.CheckBox\" type=\"checkbox\" name=\"enabled\" id=\"enabled\" $checked>
|
2012-08-30 16:50:56 +02:00
|
|
|
<label for=\"enabled\">".__('Enabled')."</label>";
|
2011-12-13 11:09:34 +01:00
|
|
|
|
2012-08-30 16:50:56 +02:00
|
|
|
if ($match_any_rule) {
|
2011-12-13 11:09:34 +01:00
|
|
|
$checked = "checked=\"1\"";
|
|
|
|
} else {
|
|
|
|
$checked = "";
|
|
|
|
}
|
|
|
|
|
2012-08-30 16:50:56 +02:00
|
|
|
print "<br/><input dojoType=\"dijit.form.CheckBox\" type=\"checkbox\" name=\"match_any_rule\" id=\"match_any_rule\" $checked>
|
|
|
|
<label for=\"match_any_rule\">".__('Match any rule')."</label>";
|
2011-12-13 11:09:34 +01:00
|
|
|
|
2013-03-25 16:46:43 +01:00
|
|
|
if ($inverse) {
|
|
|
|
$checked = "checked=\"1\"";
|
|
|
|
} else {
|
|
|
|
$checked = "";
|
|
|
|
}
|
|
|
|
|
|
|
|
print "<br/><input dojoType=\"dijit.form.CheckBox\" type=\"checkbox\" name=\"inverse\" id=\"inverse\" $checked>
|
|
|
|
<label for=\"inverse\">".__('Inverse matching')."</label>";
|
|
|
|
|
2012-08-30 16:50:56 +02:00
|
|
|
print "<p/>";
|
2011-12-13 11:09:34 +01:00
|
|
|
|
|
|
|
print "<div class=\"dlgButtons\">";
|
|
|
|
|
|
|
|
print "<div style=\"float : left\">";
|
|
|
|
print "<button dojoType=\"dijit.form.Button\" onclick=\"return dijit.byId('filterEditDlg').removeFilter()\">".
|
|
|
|
__('Remove')."</button>";
|
|
|
|
print "</div>";
|
|
|
|
|
2012-09-03 13:05:43 +02:00
|
|
|
print "<button dojoType=\"dijit.form.Button\" onclick=\"return dijit.byId('filterEditDlg').test()\">".
|
|
|
|
__('Test')."</button> ";
|
2011-12-13 11:09:34 +01:00
|
|
|
|
|
|
|
print "<button dojoType=\"dijit.form.Button\" onclick=\"return dijit.byId('filterEditDlg').execute()\">".
|
|
|
|
__('Save')."</button> ";
|
|
|
|
|
|
|
|
print "<button dojoType=\"dijit.form.Button\" onclick=\"return dijit.byId('filterEditDlg').hide()\">".
|
|
|
|
__('Cancel')."</button>";
|
|
|
|
|
|
|
|
print "</div>";
|
|
|
|
}
|
|
|
|
|
2012-08-30 16:50:56 +02:00
|
|
|
private function getRuleName($rule) {
|
|
|
|
if (!$rule) $rule = json_decode($_REQUEST["rule"], true);
|
2011-12-13 11:09:34 +01:00
|
|
|
|
2012-08-30 16:50:56 +02:00
|
|
|
$feed_id = $rule["feed_id"];
|
2011-12-13 11:09:34 +01:00
|
|
|
|
2012-08-26 10:36:08 +02:00
|
|
|
if (strpos($feed_id, "CAT:") === 0) {
|
2012-08-30 16:50:56 +02:00
|
|
|
$feed_id = (int) substr($feed_id, 4);
|
|
|
|
$feed = getCategoryTitle($this->link, $feed_id);
|
2011-12-13 11:09:34 +01:00
|
|
|
} else {
|
2012-08-26 10:36:08 +02:00
|
|
|
$feed_id = (int) $feed_id;
|
2012-08-30 16:50:56 +02:00
|
|
|
|
|
|
|
if ($rule["feed_id"])
|
|
|
|
$feed = getFeedTitle($this->link, (int)$rule["feed_id"]);
|
|
|
|
else
|
|
|
|
$feed = __("All feeds");
|
2011-12-13 11:09:34 +01:00
|
|
|
}
|
|
|
|
|
2012-08-30 16:50:56 +02:00
|
|
|
$result = db_query($this->link, "SELECT description FROM ttrss_filter_types
|
|
|
|
WHERE id = ".(int)$rule["filter_type"]);
|
2013-03-21 00:36:30 +01:00
|
|
|
$filter_type = db_fetch_result($result, 0, "description");
|
2012-08-26 10:36:08 +02:00
|
|
|
|
2013-03-25 16:46:43 +01:00
|
|
|
return T_sprintf("%s on %s in %s %s", strip_tags($rule["reg_exp"]),
|
|
|
|
$filter_type, $feed, isset($rule["inverse"]) ? __("(inverse)") : "");
|
2012-08-30 16:50:56 +02:00
|
|
|
}
|
2011-12-27 09:52:33 +01:00
|
|
|
|
2012-08-30 16:50:56 +02:00
|
|
|
function printRuleName() {
|
|
|
|
print $this->getRuleName(json_decode($_REQUEST["rule"], true));
|
|
|
|
}
|
2011-12-13 11:09:34 +01:00
|
|
|
|
2012-08-30 16:50:56 +02:00
|
|
|
private function getActionName($action) {
|
|
|
|
$result = db_query($this->link, "SELECT description FROM
|
|
|
|
ttrss_filter_actions WHERE id = " .(int)$action["action_id"]);
|
2011-12-13 11:09:34 +01:00
|
|
|
|
2012-08-30 16:50:56 +02:00
|
|
|
$title = __(db_fetch_result($result, 0, "description"));
|
2011-12-13 11:09:34 +01:00
|
|
|
|
2012-08-30 16:50:56 +02:00
|
|
|
if ($action["action_id"] == 4 || $action["action_id"] == 6 ||
|
|
|
|
$action["action_id"] == 7)
|
|
|
|
$title .= ": " . $action["action_param"];
|
2011-12-13 11:09:34 +01:00
|
|
|
|
2012-08-30 16:50:56 +02:00
|
|
|
return $title;
|
|
|
|
}
|
2011-12-13 11:09:34 +01:00
|
|
|
|
2012-08-30 16:50:56 +02:00
|
|
|
function printActionName() {
|
|
|
|
print $this->getActionName(json_decode($_REQUEST["action"], true));
|
|
|
|
}
|
|
|
|
|
|
|
|
function editSave() {
|
2012-09-03 13:05:43 +02:00
|
|
|
if ($_REQUEST["savemode"] && $_REQUEST["savemode"] == "test") {
|
|
|
|
return $this->testFilter();
|
|
|
|
}
|
2012-08-30 16:50:56 +02:00
|
|
|
|
|
|
|
# print_r($_REQUEST);
|
|
|
|
|
2013-03-22 06:14:55 +01:00
|
|
|
$filter_id = db_escape_string($this->link, $_REQUEST["id"]);
|
|
|
|
$enabled = checkbox_to_sql_bool(db_escape_string($this->link, $_REQUEST["enabled"]));
|
|
|
|
$match_any_rule = checkbox_to_sql_bool(db_escape_string($this->link, $_REQUEST["match_any_rule"]));
|
2013-03-25 16:46:43 +01:00
|
|
|
$inverse = checkbox_to_sql_bool(db_escape_string($this->link, $_REQUEST["inverse"]));
|
2012-08-30 16:50:56 +02:00
|
|
|
|
|
|
|
$result = db_query($this->link, "UPDATE ttrss_filters2 SET enabled = $enabled,
|
2013-03-25 16:46:43 +01:00
|
|
|
match_any_rule = $match_any_rule,
|
|
|
|
inverse = $inverse
|
2012-08-30 16:50:56 +02:00
|
|
|
WHERE id = '$filter_id'
|
|
|
|
AND owner_uid = ". $_SESSION["uid"]);
|
|
|
|
|
|
|
|
$this->saveRulesAndActions($filter_id);
|
2011-12-13 11:09:34 +01:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
function remove() {
|
|
|
|
|
2013-03-22 06:14:55 +01:00
|
|
|
$ids = split(",", db_escape_string($this->link, $_REQUEST["ids"]));
|
2011-12-13 11:09:34 +01:00
|
|
|
|
|
|
|
foreach ($ids as $id) {
|
2012-08-30 16:50:56 +02:00
|
|
|
db_query($this->link, "DELETE FROM ttrss_filters2 WHERE id = '$id' AND owner_uid = ". $_SESSION["uid"]);
|
2011-12-13 11:09:34 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-08-30 16:50:56 +02:00
|
|
|
private function saveRulesAndActions($filter_id) {
|
2011-12-13 11:09:34 +01:00
|
|
|
|
2012-08-30 16:50:56 +02:00
|
|
|
db_query($this->link, "DELETE FROM ttrss_filters2_rules WHERE filter_id = '$filter_id'");
|
|
|
|
db_query($this->link, "DELETE FROM ttrss_filters2_actions WHERE filter_id = '$filter_id'");
|
2011-12-13 11:09:34 +01:00
|
|
|
|
2012-08-30 16:50:56 +02:00
|
|
|
if ($filter_id) {
|
|
|
|
/* create rules */
|
2011-12-13 11:09:34 +01:00
|
|
|
|
2012-08-30 16:50:56 +02:00
|
|
|
$rules = array();
|
|
|
|
$actions = array();
|
2011-12-13 11:09:34 +01:00
|
|
|
|
2012-08-30 16:50:56 +02:00
|
|
|
foreach ($_REQUEST["rule"] as $rule) {
|
|
|
|
$rule = json_decode($rule, true);
|
|
|
|
unset($rule["id"]);
|
2011-12-13 11:09:34 +01:00
|
|
|
|
2012-08-30 16:50:56 +02:00
|
|
|
if (array_search($rule, $rules) === false) {
|
|
|
|
array_push($rules, $rule);
|
|
|
|
}
|
|
|
|
}
|
2012-08-26 10:36:08 +02:00
|
|
|
|
2012-08-30 16:50:56 +02:00
|
|
|
foreach ($_REQUEST["action"] as $action) {
|
|
|
|
$action = json_decode($action, true);
|
|
|
|
unset($action["id"]);
|
2011-12-27 09:52:33 +01:00
|
|
|
|
2012-08-30 16:50:56 +02:00
|
|
|
if (array_search($action, $actions) === false) {
|
|
|
|
array_push($actions, $action);
|
|
|
|
}
|
|
|
|
}
|
2011-12-13 11:09:34 +01:00
|
|
|
|
2012-08-30 16:50:56 +02:00
|
|
|
foreach ($rules as $rule) {
|
|
|
|
if ($rule) {
|
2011-12-13 11:09:34 +01:00
|
|
|
|
2013-03-22 06:14:55 +01:00
|
|
|
$reg_exp = strip_tags(db_escape_string($this->link, trim($rule["reg_exp"])));
|
2013-03-25 16:46:43 +01:00
|
|
|
$inverse = isset($rule["inverse"]) ? "true" : "false";
|
|
|
|
|
2013-03-22 06:14:55 +01:00
|
|
|
$filter_type = (int) db_escape_string($this->link, trim($rule["filter_type"]));
|
|
|
|
$feed_id = db_escape_string($this->link, trim($rule["feed_id"]));
|
2012-08-30 16:50:56 +02:00
|
|
|
|
|
|
|
if (strpos($feed_id, "CAT:") === 0) {
|
2012-08-31 10:24:13 +02:00
|
|
|
|
2012-08-30 16:50:56 +02:00
|
|
|
$cat_filter = bool_to_sql_bool(true);
|
|
|
|
$cat_id = (int) substr($feed_id, 4);
|
|
|
|
$feed_id = "NULL";
|
2011-12-13 11:09:34 +01:00
|
|
|
|
2012-08-30 16:50:56 +02:00
|
|
|
if (!$cat_id) $cat_id = "NULL"; // Uncategorized
|
|
|
|
} else {
|
|
|
|
$cat_filter = bool_to_sql_bool(false);
|
|
|
|
$feed_id = (int) $feed_id;
|
|
|
|
$cat_id = "NULL";
|
|
|
|
|
|
|
|
if (!$feed_id) $feed_id = "NULL"; // Uncategorized
|
|
|
|
}
|
|
|
|
|
|
|
|
$query = "INSERT INTO ttrss_filters2_rules
|
2013-03-25 16:46:43 +01:00
|
|
|
(filter_id, reg_exp,filter_type,feed_id,cat_id,cat_filter,inverse) VALUES
|
|
|
|
('$filter_id', '$reg_exp', '$filter_type', $feed_id, $cat_id, $cat_filter, $inverse)";
|
2012-08-30 16:50:56 +02:00
|
|
|
|
|
|
|
db_query($this->link, $query);
|
|
|
|
}
|
2011-12-13 11:09:34 +01:00
|
|
|
}
|
|
|
|
|
2012-08-30 16:50:56 +02:00
|
|
|
foreach ($actions as $action) {
|
|
|
|
if ($action) {
|
|
|
|
|
2013-03-22 06:14:55 +01:00
|
|
|
$action_id = (int) db_escape_string($this->link, $action["action_id"]);
|
|
|
|
$action_param = db_escape_string($this->link, $action["action_param"]);
|
|
|
|
$action_param_label = db_escape_string($this->link, $action["action_param_label"]);
|
2012-08-30 16:50:56 +02:00
|
|
|
|
|
|
|
if ($action_id == 7) {
|
|
|
|
$action_param = $action_param_label;
|
|
|
|
}
|
2011-12-13 11:09:34 +01:00
|
|
|
|
2012-08-30 16:50:56 +02:00
|
|
|
if ($action_id == 6) {
|
|
|
|
$action_param = (int) str_replace("+", "", $action_param);
|
|
|
|
}
|
2011-12-13 11:09:34 +01:00
|
|
|
|
2012-08-30 16:50:56 +02:00
|
|
|
$query = "INSERT INTO ttrss_filters2_actions
|
|
|
|
(filter_id, action_id, action_param) VALUES
|
|
|
|
('$filter_id', '$action_id', '$action_param')";
|
2011-12-13 11:09:34 +01:00
|
|
|
|
2012-08-30 16:50:56 +02:00
|
|
|
db_query($this->link, $query);
|
|
|
|
}
|
|
|
|
}
|
2011-12-13 11:09:34 +01:00
|
|
|
}
|
2012-08-30 16:50:56 +02:00
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
function add() {
|
2012-09-03 13:05:43 +02:00
|
|
|
if ($_REQUEST["savemode"] && $_REQUEST["savemode"] == "test") {
|
|
|
|
return $this->testFilter();
|
|
|
|
}
|
|
|
|
|
2012-08-30 16:50:56 +02:00
|
|
|
# print_r($_REQUEST);
|
|
|
|
|
|
|
|
$enabled = checkbox_to_sql_bool($_REQUEST["enabled"]);
|
|
|
|
$match_any_rule = checkbox_to_sql_bool($_REQUEST["match_any_rule"]);
|
|
|
|
|
|
|
|
db_query($this->link, "BEGIN");
|
|
|
|
|
|
|
|
/* create base filter */
|
|
|
|
|
|
|
|
$result = db_query($this->link, "INSERT INTO ttrss_filters2
|
|
|
|
(owner_uid, match_any_rule, enabled) VALUES
|
|
|
|
(".$_SESSION["uid"].",$match_any_rule,$enabled)");
|
|
|
|
|
|
|
|
$result = db_query($this->link, "SELECT MAX(id) AS id FROM ttrss_filters2
|
|
|
|
WHERE owner_uid = ".$_SESSION["uid"]);
|
|
|
|
|
|
|
|
$filter_id = db_fetch_result($result, 0, "id");
|
|
|
|
|
|
|
|
$this->saveRulesAndActions($filter_id);
|
|
|
|
|
|
|
|
db_query($this->link, "COMMIT");
|
2011-12-13 11:09:34 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
function index() {
|
|
|
|
|
2013-03-22 06:14:55 +01:00
|
|
|
$sort = db_escape_string($this->link, $_REQUEST["sort"]);
|
2011-12-13 11:09:34 +01:00
|
|
|
|
|
|
|
if (!$sort || $sort == "undefined") {
|
|
|
|
$sort = "reg_exp";
|
|
|
|
}
|
|
|
|
|
2013-03-22 06:14:55 +01:00
|
|
|
$filter_search = db_escape_string($this->link, $_REQUEST["search"]);
|
2011-12-13 11:09:34 +01:00
|
|
|
|
|
|
|
if (array_key_exists("search", $_REQUEST)) {
|
|
|
|
$_SESSION["prefs_filter_search"] = $filter_search;
|
|
|
|
} else {
|
|
|
|
$filter_search = $_SESSION["prefs_filter_search"];
|
|
|
|
}
|
|
|
|
|
|
|
|
print "<div id=\"pref-filter-wrap\" dojoType=\"dijit.layout.BorderContainer\" gutters=\"false\">";
|
|
|
|
print "<div id=\"pref-filter-header\" dojoType=\"dijit.layout.ContentPane\" region=\"top\">";
|
|
|
|
print "<div id=\"pref-filter-toolbar\" dojoType=\"dijit.Toolbar\">";
|
|
|
|
|
2013-03-22 06:14:55 +01:00
|
|
|
$filter_search = db_escape_string($this->link, $_REQUEST["search"]);
|
2012-06-29 11:11:39 +02:00
|
|
|
|
|
|
|
if (array_key_exists("search", $_REQUEST)) {
|
|
|
|
$_SESSION["prefs_filter_search"] = $filter_search;
|
|
|
|
} else {
|
|
|
|
$filter_search = $_SESSION["prefs_filter_search"];
|
|
|
|
}
|
|
|
|
|
|
|
|
print "<div style='float : right; padding-right : 4px;'>
|
|
|
|
<input dojoType=\"dijit.form.TextBox\" id=\"filter_search\" size=\"20\" type=\"search\"
|
|
|
|
value=\"$filter_search\">
|
|
|
|
<button dojoType=\"dijit.form.Button\" onclick=\"updateFilterList()\">".
|
|
|
|
__('Search')."</button>
|
|
|
|
</div>";
|
|
|
|
|
2011-12-13 11:09:34 +01:00
|
|
|
print "<div dojoType=\"dijit.form.DropDownButton\">".
|
|
|
|
"<span>" . __('Select')."</span>";
|
|
|
|
print "<div dojoType=\"dijit.Menu\" style=\"display: none;\">";
|
|
|
|
print "<div onclick=\"dijit.byId('filterTree').model.setAllChecked(true)\"
|
|
|
|
dojoType=\"dijit.MenuItem\">".__('All')."</div>";
|
|
|
|
print "<div onclick=\"dijit.byId('filterTree').model.setAllChecked(false)\"
|
|
|
|
dojoType=\"dijit.MenuItem\">".__('None')."</div>";
|
|
|
|
print "</div></div>";
|
|
|
|
|
|
|
|
print "<button dojoType=\"dijit.form.Button\" onclick=\"return quickAddFilter()\">".
|
|
|
|
__('Create filter')."</button> ";
|
|
|
|
|
2012-08-30 16:50:56 +02:00
|
|
|
print "<button dojoType=\"dijit.form.Button\" onclick=\"return joinSelectedFilters()\">".
|
|
|
|
__('Combine')."</button> ";
|
|
|
|
|
2011-12-13 11:09:34 +01:00
|
|
|
print "<button dojoType=\"dijit.form.Button\" onclick=\"return editSelectedFilter()\">".
|
|
|
|
__('Edit')."</button> ";
|
|
|
|
|
|
|
|
print "<button dojoType=\"dijit.form.Button\" onclick=\"return removeSelectedFilters()\">".
|
|
|
|
__('Remove')."</button> ";
|
|
|
|
|
|
|
|
if (defined('_ENABLE_FEED_DEBUGGING')) {
|
|
|
|
print "<button dojoType=\"dijit.form.Button\" onclick=\"rescore_all_feeds()\">".
|
|
|
|
__('Rescore articles')."</button> ";
|
|
|
|
}
|
|
|
|
|
|
|
|
print "</div>"; # toolbar
|
|
|
|
print "</div>"; # toolbar-frame
|
|
|
|
print "<div id=\"pref-filter-content\" dojoType=\"dijit.layout.ContentPane\" region=\"center\">";
|
|
|
|
|
|
|
|
print "<div id=\"filterlistLoading\">
|
|
|
|
<img src='images/indicator_tiny.gif'>".
|
|
|
|
__("Loading, please wait...")."</div>";
|
|
|
|
|
|
|
|
print "<div dojoType=\"dojo.data.ItemFileWriteStore\" jsId=\"filterStore\"
|
|
|
|
url=\"backend.php?op=pref-filters&method=getfiltertree\">
|
|
|
|
</div>
|
|
|
|
<div dojoType=\"lib.CheckBoxStoreModel\" jsId=\"filterModel\" store=\"filterStore\"
|
|
|
|
query=\"{id:'root'}\" rootId=\"root\" rootLabel=\"Feeds\"
|
|
|
|
childrenAttrs=\"items\" checkboxStrict=\"false\" checkboxAll=\"false\">
|
|
|
|
</div>
|
|
|
|
<div dojoType=\"fox.PrefFilterTree\" id=\"filterTree\"
|
|
|
|
model=\"filterModel\" openOnClick=\"true\">
|
|
|
|
<script type=\"dojo/method\" event=\"onLoad\" args=\"item\">
|
|
|
|
Element.hide(\"filterlistLoading\");
|
|
|
|
</script>
|
|
|
|
<script type=\"dojo/method\" event=\"onClick\" args=\"item\">
|
|
|
|
var id = String(item.id);
|
|
|
|
var bare_id = id.substr(id.indexOf(':')+1);
|
|
|
|
|
|
|
|
if (id.match('FILTER:')) {
|
|
|
|
editFilter(bare_id);
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
</div>";
|
|
|
|
|
|
|
|
print "</div>"; #pane
|
2012-12-23 13:15:34 +01:00
|
|
|
|
|
|
|
global $pluginhost;
|
|
|
|
$pluginhost->run_hooks($pluginhost::HOOK_PREFS_TAB,
|
|
|
|
"hook_prefs_tab", "prefFilters");
|
|
|
|
|
2011-12-13 11:09:34 +01:00
|
|
|
print "</div>"; #container
|
|
|
|
|
|
|
|
}
|
2012-08-30 16:50:56 +02:00
|
|
|
|
|
|
|
function newfilter() {
|
|
|
|
|
|
|
|
print "<form name='filter_new_form' id='filter_new_form'>";
|
|
|
|
|
|
|
|
print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"op\" value=\"pref-filters\">";
|
|
|
|
print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"method\" value=\"add\">";
|
|
|
|
print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"csrf_token\" value=\"".$_SESSION['csrf_token']."\">";
|
|
|
|
|
|
|
|
print "<div class=\"dlgSec\">".__("Match")."</div>";
|
|
|
|
|
|
|
|
print "<div dojoType=\"dijit.Toolbar\">";
|
|
|
|
|
|
|
|
print "<div dojoType=\"dijit.form.DropDownButton\">".
|
|
|
|
"<span>" . __('Select')."</span>";
|
|
|
|
print "<div dojoType=\"dijit.Menu\" style=\"display: none;\">";
|
|
|
|
print "<div onclick=\"dijit.byId('filterEditDlg').selectRules(true)\"
|
|
|
|
dojoType=\"dijit.MenuItem\">".__('All')."</div>";
|
|
|
|
print "<div onclick=\"dijit.byId('filterEditDlg').selectRules(false)\"
|
|
|
|
dojoType=\"dijit.MenuItem\">".__('None')."</div>";
|
|
|
|
print "</div></div>";
|
|
|
|
|
|
|
|
print "<button dojoType=\"dijit.form.Button\" onclick=\"return dijit.byId('filterEditDlg').addRule()\">".
|
|
|
|
__('Add')."</button> ";
|
|
|
|
|
|
|
|
print "<button dojoType=\"dijit.form.Button\" onclick=\"return dijit.byId('filterEditDlg').deleteRule()\">".
|
|
|
|
__('Delete')."</button> ";
|
|
|
|
|
|
|
|
print "</div>";
|
|
|
|
|
|
|
|
print "<ul id='filterDlg_Matches'>";
|
|
|
|
# print "<li>No rules</li>";
|
|
|
|
print "</ul>";
|
|
|
|
|
|
|
|
print "</div>";
|
|
|
|
|
|
|
|
print "<div class=\"dlgSec\">".__("Apply actions")."</div>";
|
|
|
|
|
|
|
|
print "<div dojoType=\"dijit.Toolbar\">";
|
|
|
|
|
|
|
|
print "<div dojoType=\"dijit.form.DropDownButton\">".
|
|
|
|
"<span>" . __('Select')."</span>";
|
|
|
|
print "<div dojoType=\"dijit.Menu\" style=\"display: none;\">";
|
|
|
|
print "<div onclick=\"dijit.byId('filterEditDlg').selectActions(true)\"
|
|
|
|
dojoType=\"dijit.MenuItem\">".__('All')."</div>";
|
|
|
|
print "<div onclick=\"dijit.byId('filterEditDlg').selectActions(false)\"
|
|
|
|
dojoType=\"dijit.MenuItem\">".__('None')."</div>";
|
|
|
|
print "</div></div>";
|
|
|
|
|
|
|
|
print "<button dojoType=\"dijit.form.Button\" onclick=\"return dijit.byId('filterEditDlg').addAction()\">".
|
|
|
|
__('Add')."</button> ";
|
|
|
|
|
|
|
|
print "<button dojoType=\"dijit.form.Button\" onclick=\"return dijit.byId('filterEditDlg').deleteAction()\">".
|
|
|
|
__('Delete')."</button> ";
|
|
|
|
|
|
|
|
print "</div>";
|
|
|
|
|
|
|
|
print "<ul id='filterDlg_Actions'>";
|
|
|
|
# print "<li>No actions</li>";
|
|
|
|
print "</ul>";
|
|
|
|
|
|
|
|
/* print "<div class=\"dlgSec\">".__("Options")."</div>";
|
|
|
|
print "<div class=\"dlgSecCont\">"; */
|
|
|
|
|
|
|
|
print "<input dojoType=\"dijit.form.CheckBox\" type=\"checkbox\" name=\"enabled\" id=\"enabled\" checked=\"1\">
|
|
|
|
<label for=\"enabled\">".__('Enabled')."</label>";
|
|
|
|
|
|
|
|
print "<br/><input dojoType=\"dijit.form.CheckBox\" type=\"checkbox\" name=\"match_any_rule\" id=\"match_any_rule\">
|
|
|
|
<label for=\"match_any_rule\">".__('Match any rule')."</label>";
|
|
|
|
|
2013-03-25 16:46:43 +01:00
|
|
|
print "<br/><input dojoType=\"dijit.form.CheckBox\" type=\"checkbox\" name=\"inverse\" id=\"inverse\">
|
|
|
|
<label for=\"inverse\">".__('Inverse matching')."</label>";
|
2012-08-30 16:50:56 +02:00
|
|
|
|
|
|
|
// print "</div>";
|
|
|
|
|
|
|
|
print "<div class=\"dlgButtons\">";
|
|
|
|
|
2012-09-03 13:05:43 +02:00
|
|
|
print "<button dojoType=\"dijit.form.Button\" onclick=\"return dijit.byId('filterEditDlg').test()\">".
|
|
|
|
__('Test')."</button> ";
|
2012-08-30 16:50:56 +02:00
|
|
|
|
|
|
|
print "<button dojoType=\"dijit.form.Button\" onclick=\"return dijit.byId('filterEditDlg').execute()\">".
|
|
|
|
__('Create')."</button> ";
|
|
|
|
|
|
|
|
print "<button dojoType=\"dijit.form.Button\" onclick=\"return dijit.byId('filterEditDlg').hide()\">".
|
|
|
|
__('Cancel')."</button>";
|
|
|
|
|
|
|
|
print "</div>";
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
function newrule() {
|
|
|
|
$rule = json_decode($_REQUEST["rule"], true);
|
|
|
|
|
|
|
|
if ($rule) {
|
|
|
|
$reg_exp = htmlspecialchars($rule["reg_exp"]);
|
|
|
|
$filter_type = $rule["filter_type"];
|
|
|
|
$feed_id = $rule["feed_id"];
|
2013-03-25 16:46:43 +01:00
|
|
|
$inverse_checked = isset($rule["inverse"]) ? "checked" : "";
|
2012-08-30 16:50:56 +02:00
|
|
|
} else {
|
|
|
|
$reg_exp = "";
|
|
|
|
$filter_type = 1;
|
|
|
|
$feed_id = 0;
|
2013-03-25 16:46:43 +01:00
|
|
|
$inverse_checked = "";
|
2012-08-30 16:50:56 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (strpos($feed_id, "CAT:") === 0) {
|
|
|
|
$feed_id = substr($feed_id, 4);
|
|
|
|
$cat_filter = true;
|
|
|
|
} else {
|
|
|
|
$cat_filter = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
print "<form name='filter_new_rule_form' id='filter_new_rule_form'>";
|
|
|
|
|
|
|
|
$result = db_query($this->link, "SELECT id,description
|
2012-08-31 10:54:37 +02:00
|
|
|
FROM ttrss_filter_types WHERE id != 5 ORDER BY description");
|
2012-08-30 16:50:56 +02:00
|
|
|
|
|
|
|
$filter_types = array();
|
|
|
|
|
|
|
|
while ($line = db_fetch_assoc($result)) {
|
|
|
|
$filter_types[$line["id"]] = __($line["description"]);
|
|
|
|
}
|
|
|
|
|
|
|
|
print "<div class=\"dlgSec\">".__("Match")."</div>";
|
|
|
|
|
|
|
|
print "<div class=\"dlgSecCont\">";
|
|
|
|
|
|
|
|
print "<input dojoType=\"dijit.form.ValidationTextBox\"
|
|
|
|
required=\"true\" id=\"filterDlg_regExp\"
|
2012-08-31 15:45:07 +02:00
|
|
|
style=\"font-size : 16px; width : 20em;\"
|
2012-08-30 16:50:56 +02:00
|
|
|
name=\"reg_exp\" value=\"$reg_exp\"/>";
|
|
|
|
|
2013-03-25 17:08:34 +01:00
|
|
|
print "<hr/>";
|
|
|
|
print "<input id=\"filterDlg_inverse\" dojoType=\"dijit.form.CheckBox\"
|
|
|
|
name=\"inverse\" $inverse_checked/>";
|
|
|
|
print "<label for=\"filterDlg_inverse\">".__("Inverse regular expression matching")."</label>";
|
|
|
|
|
2012-08-30 16:50:56 +02:00
|
|
|
print "<hr/>" . __("on field") . " ";
|
|
|
|
print_select_hash("filter_type", $filter_type, $filter_types,
|
|
|
|
'dojoType="dijit.form.Select"');
|
|
|
|
|
|
|
|
print "<hr/>";
|
|
|
|
|
|
|
|
print __("in") . " ";
|
|
|
|
|
|
|
|
print "<span id='filterDlg_feeds'>";
|
|
|
|
print_feed_select($this->link, "feed_id",
|
|
|
|
$cat_filter ? "CAT:$feed_id" : $feed_id,
|
|
|
|
'dojoType="dijit.form.FilteringSelect"');
|
|
|
|
print "</span>";
|
|
|
|
|
|
|
|
print "</div>";
|
|
|
|
|
|
|
|
print "<div class=\"dlgButtons\">";
|
|
|
|
|
|
|
|
print "<button dojoType=\"dijit.form.Button\" onclick=\"return dijit.byId('filterNewRuleDlg').execute()\">".
|
|
|
|
($rule ? __("Save rule") : __('Add rule'))."</button> ";
|
|
|
|
|
|
|
|
print "<button dojoType=\"dijit.form.Button\" onclick=\"return dijit.byId('filterNewRuleDlg').hide()\">".
|
|
|
|
__('Cancel')."</button>";
|
|
|
|
|
|
|
|
print "</div>";
|
|
|
|
|
|
|
|
print "</form>";
|
|
|
|
}
|
|
|
|
|
|
|
|
function newaction() {
|
|
|
|
$action = json_decode($_REQUEST["action"], true);
|
|
|
|
|
|
|
|
if ($action) {
|
2013-03-22 06:14:55 +01:00
|
|
|
$action_param = db_escape_string($this->link, $action["action_param"]);
|
2012-08-30 16:50:56 +02:00
|
|
|
$action_id = (int)$action["action_id"];
|
|
|
|
} else {
|
|
|
|
$action_param = "";
|
|
|
|
$action_id = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
print "<form name='filter_new_action_form' id='filter_new_action_form'>";
|
|
|
|
|
|
|
|
print "<div class=\"dlgSec\">".__("Perform Action")."</div>";
|
|
|
|
|
|
|
|
print "<div class=\"dlgSecCont\">";
|
|
|
|
|
|
|
|
print "<select name=\"action_id\" dojoType=\"dijit.form.Select\"
|
|
|
|
onchange=\"filterDlgCheckAction(this)\">";
|
|
|
|
|
|
|
|
$result = db_query($this->link, "SELECT id,description FROM ttrss_filter_actions
|
|
|
|
ORDER BY name");
|
|
|
|
|
|
|
|
while ($line = db_fetch_assoc($result)) {
|
|
|
|
$is_selected = ($line["id"] == $action_id) ? "selected='1'" : "";
|
|
|
|
printf("<option $is_selected value='%d'>%s</option>", $line["id"], __($line["description"]));
|
|
|
|
}
|
|
|
|
|
|
|
|
print "</select>";
|
|
|
|
|
|
|
|
$param_box_hidden = ($action_id == 7 || $action_id == 4 || $action_id == 6) ?
|
|
|
|
"" : "display : none";
|
|
|
|
|
|
|
|
$param_hidden = ($action_id == 4 || $action_id == 6) ?
|
|
|
|
"" : "display : none";
|
|
|
|
|
|
|
|
$label_param_hidden = ($action_id == 7) ? "" : "display : none";
|
|
|
|
|
|
|
|
print "<span id=\"filterDlg_paramBox\" style=\"$param_box_hidden\">";
|
|
|
|
print " " . __("with parameters:") . " ";
|
|
|
|
print "<input dojoType=\"dijit.form.TextBox\"
|
|
|
|
id=\"filterDlg_actionParam\" style=\"$param_hidden\"
|
|
|
|
name=\"action_param\" value=\"$action_param\">";
|
|
|
|
|
|
|
|
print_label_select($this->link, "action_param_label", $action_param,
|
|
|
|
"id=\"filterDlg_actionParamLabel\" style=\"$label_param_hidden\"
|
|
|
|
dojoType=\"dijit.form.Select\"");
|
|
|
|
|
|
|
|
print "</span>";
|
|
|
|
|
|
|
|
print " "; // tiny layout hack
|
|
|
|
|
|
|
|
print "</div>";
|
|
|
|
|
|
|
|
print "<div class=\"dlgButtons\">";
|
|
|
|
|
|
|
|
print "<button dojoType=\"dijit.form.Button\" onclick=\"return dijit.byId('filterNewActionDlg').execute()\">".
|
|
|
|
($action ? __("Save action") : __('Add action'))."</button> ";
|
|
|
|
|
|
|
|
print "<button dojoType=\"dijit.form.Button\" onclick=\"return dijit.byId('filterNewActionDlg').hide()\">".
|
|
|
|
__('Cancel')."</button>";
|
|
|
|
|
|
|
|
print "</div>";
|
|
|
|
|
|
|
|
print "</form>";
|
|
|
|
}
|
|
|
|
|
|
|
|
private function getFilterName($id) {
|
|
|
|
$result = db_query($this->link,
|
|
|
|
"SELECT * FROM ttrss_filters2_rules WHERE filter_id = '$id' ORDER BY id
|
|
|
|
LIMIT 3");
|
|
|
|
|
|
|
|
$titles = array();
|
|
|
|
$count = 0;
|
|
|
|
|
|
|
|
while ($line = db_fetch_assoc($result)) {
|
|
|
|
|
2012-08-31 10:24:13 +02:00
|
|
|
if (sql_bool_to_bool($line["cat_filter"])) {
|
2012-08-30 16:50:56 +02:00
|
|
|
unset($line["cat_filter"]);
|
|
|
|
$line["feed_id"] = "CAT:" . (int)$line["cat_id"];
|
|
|
|
unset($line["cat_id"]);
|
|
|
|
}
|
|
|
|
|
2013-03-25 16:58:37 +01:00
|
|
|
if (!sql_bool_to_bool($line["inverse"])) unset($line["inverse"]);
|
|
|
|
|
2012-08-30 16:50:56 +02:00
|
|
|
if ($count < 2) {
|
|
|
|
array_push($titles, $this->getRuleName($line));
|
|
|
|
} else {
|
|
|
|
array_push($titles, "...");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
++$count;
|
|
|
|
}
|
|
|
|
|
|
|
|
$result = db_query($this->link,
|
|
|
|
"SELECT * FROM ttrss_filters2_actions WHERE filter_id = '$id' ORDER BY id LIMIT 3");
|
|
|
|
|
|
|
|
$actions = array();
|
|
|
|
$count = 0;
|
|
|
|
|
|
|
|
while ($line = db_fetch_assoc($result)) {
|
|
|
|
if ($count < 2) {
|
|
|
|
array_push($actions, $this->getActionName($line));
|
|
|
|
} else {
|
|
|
|
array_push($actions, "...");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
++$count;
|
|
|
|
}
|
|
|
|
|
|
|
|
return array(join(", ", $titles), join(", ", $actions));
|
|
|
|
}
|
|
|
|
|
|
|
|
function join() {
|
2013-03-22 06:14:55 +01:00
|
|
|
$ids = explode(",", db_escape_string($this->link, $_REQUEST["ids"]));
|
2012-08-30 16:50:56 +02:00
|
|
|
|
|
|
|
if (count($ids) > 1) {
|
|
|
|
$base_id = array_shift($ids);
|
|
|
|
$ids_str = join(",", $ids);
|
|
|
|
|
|
|
|
db_query($this->link, "BEGIN");
|
|
|
|
db_query($this->link, "UPDATE ttrss_filters2_rules
|
|
|
|
SET filter_id = '$base_id' WHERE filter_id IN ($ids_str)");
|
|
|
|
db_query($this->link, "UPDATE ttrss_filters2_actions
|
|
|
|
SET filter_id = '$base_id' WHERE filter_id IN ($ids_str)");
|
|
|
|
|
|
|
|
db_query($this->link, "DELETE FROM ttrss_filters2 WHERE id IN ($ids_str)");
|
|
|
|
db_query($this->link, "UPDATE ttrss_filters2 SET match_any_rule = true WHERE id = '$base_id'");
|
|
|
|
|
|
|
|
db_query($this->link, "COMMIT");
|
|
|
|
|
|
|
|
$this->optimizeFilter($base_id);
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private function optimizeFilter($id) {
|
|
|
|
db_query($this->link, "BEGIN");
|
|
|
|
$result = db_query($this->link, "SELECT * FROM ttrss_filters2_actions
|
|
|
|
WHERE filter_id = '$id'");
|
|
|
|
|
|
|
|
$tmp = array();
|
|
|
|
$dupe_ids = array();
|
|
|
|
|
|
|
|
while ($line = db_fetch_assoc($result)) {
|
|
|
|
$id = $line["id"];
|
|
|
|
unset($line["id"]);
|
|
|
|
|
|
|
|
if (array_search($line, $tmp) === false) {
|
|
|
|
array_push($tmp, $line);
|
|
|
|
} else {
|
|
|
|
array_push($dupe_ids, $id);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (count($dupe_ids) > 0) {
|
|
|
|
$ids_str = join(",", $dupe_ids);
|
|
|
|
db_query($this->link, "DELETE FROM ttrss_filters2_actions
|
|
|
|
WHERE id IN ($ids_str)");
|
|
|
|
}
|
|
|
|
|
|
|
|
$result = db_query($this->link, "SELECT * FROM ttrss_filters2_rules
|
|
|
|
WHERE filter_id = '$id'");
|
|
|
|
|
|
|
|
$tmp = array();
|
|
|
|
$dupe_ids = array();
|
|
|
|
|
|
|
|
while ($line = db_fetch_assoc($result)) {
|
|
|
|
$id = $line["id"];
|
|
|
|
unset($line["id"]);
|
|
|
|
|
|
|
|
if (array_search($line, $tmp) === false) {
|
|
|
|
array_push($tmp, $line);
|
|
|
|
} else {
|
|
|
|
array_push($dupe_ids, $id);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (count($dupe_ids) > 0) {
|
|
|
|
$ids_str = join(",", $dupe_ids);
|
|
|
|
db_query($this->link, "DELETE FROM ttrss_filters2_rules
|
|
|
|
WHERE id IN ($ids_str)");
|
|
|
|
}
|
|
|
|
|
|
|
|
db_query($this->link, "COMMIT");
|
|
|
|
}
|
2011-12-13 11:09:34 +01:00
|
|
|
}
|
|
|
|
?>
|