ttrss/classes/pref/filters.php

931 lines
28 KiB
PHP
Raw Normal View History

2011-12-13 11:09:34 +01:00
<?php
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-08-30 16:50:56 +02:00
/* function filter_test($filter_type, $reg_exp,
$action_id, $action_param, $filter_param, $inverse, $feed_id, $cat_id,
$cat_filter) {
2011-12-13 11:09:34 +01:00
$result = db_query($this->link, "SELECT name FROM ttrss_filter_types WHERE
id = " . $filter_type);
$type_name = db_fetch_result($result, 0, "name");
$result = db_query($this->link, "SELECT name FROM ttrss_filter_actions WHERE
id = " . $action_id);
$action_name = db_fetch_result($result, 0, "name");
$filter["reg_exp"] = $reg_exp;
$filter["action"] = $action_name;
$filter["type"] = $type_name;
$filter["action_param"] = $action_param;
$filter["filter_param"] = $filter_param;
$filter["inverse"] = $inverse;
$filters[$type_name] = array($filter);
if ($feed_id)
$feed = $feed_id;
else
$feed = -4;
$regexp_valid = preg_match('/' . $filter['reg_exp'] . '/',
$filter['reg_exp']) !== FALSE;
2011-12-13 11:09:34 +01:00
print __("Articles matching this filter:");
print "<div class=\"filterTestHolder\">";
2011-12-13 11:09:34 +01:00
print "<table width=\"100%\" cellspacing=\"0\" id=\"prefErrorFeedList\">";
if ($regexp_valid) {
2011-12-13 11:09:34 +01:00
$feed_title = getFeedTitle($this->link, $feed);
2011-12-13 11:09:34 +01:00
$qfh_ret = queryFeedHeadlines($this->link, $cat_filter ? $cat_id : $feed,
30, "", $cat_filter, false, false,
false, "date_entered DESC", 0, $_SESSION["uid"], $filter);
2011-12-13 11:09:34 +01:00
$result = $qfh_ret[0];
2011-12-13 11:09:34 +01:00
$articles = array();
$found = 0;
2011-12-13 11:09:34 +01:00
while ($line = db_fetch_assoc($result)) {
2011-12-13 11:09:34 +01: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
$content_preview = truncate_string(
strip_tags($line["content_preview"]), 100, '...');
2011-12-13 11:09:34 +01:00
if ($line["feed_title"])
$feed_title = $line["feed_title"];
print "<tr>";
print "<td width='5%' align='center'><input
dojoType=\"dijit.form.CheckBox\" checked=\"1\"
disabled=\"1\" type=\"checkbox\"></td>";
print "<td>";
print $line["title"];
print "&nbsp;(";
print "<b>" . $feed_title . "</b>";
print "):&nbsp;";
print "<span class=\"insensitive\">" . $content_preview . "</span>";
print " " . mb_substr($line["date_entered"], 0, 16);
print "</td></tr>";
$found++;
}
if ($found == 0) {
print "<tr><td align='center'>" .
__("No articles matching this filter has been found.") . "</td></tr>";
}
} else {
print "<tr><td align='center' class='error'>" .
__("Invalid regular expression.") . "</td></tr>";
2011-12-13 11:09:34 +01:00
}
print "</table>";
print "</div>";
2012-08-30 16:50:56 +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-30 16:50:56 +02:00
$result = db_query($this->link, "SELECT *,
(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 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"];
$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-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 10:54:37 +02:00
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() {
$filter_id = db_escape_string($_REQUEST["id"]);
$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"));
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
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($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
unset($line["cat_filter"]);
$line["feed_id"] = "CAT:" . (int)$line["cat_id"];
unset($line["cat_id"]);
}
2011-12-13 11:09:34 +01:00
2012-08-30 16:50:56 +02:00
$data = htmlspecialchars(json_encode($line));
2011-12-13 11:09:34 +01:00
2012-08-30 16:50:56 +02:00
print "<li><input type='checkbox' onclick='toggleSelectListRow(this)'>".
"<span onclick=\"dijit.byId('filterEditDlg').editRule(this)\">".$this->getRuleName($line)."</span>".
"<input type='hidden' name='rule[]' value=\"$data\"/></li>";
}
2012-08-30 16:50:56 +02:00
print "</ul>";
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"];
$data = htmlspecialchars(json_encode($line));
2011-12-13 11:09:34 +01:00
2012-08-30 16:50:56 +02:00
print "<li><input type='checkbox' onclick='toggleSelectListRow(this)'>".
"<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
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-08-30 16:50:56 +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
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 {
$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"]);
$match_on = db_fetch_result($result, 0, "description");
2012-08-30 16:50:56 +02:00
return T_sprintf("%s on %s in %s", $rule["reg_exp"], $match_on, $feed);
}
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() {
# print_r($_REQUEST);
$filter_id = db_escape_string($_REQUEST["id"]);
$enabled = checkbox_to_sql_bool(db_escape_string($_REQUEST["enabled"]));
$match_any_rule = checkbox_to_sql_bool(db_escape_string($_REQUEST["match_any_rule"]));
$result = db_query($this->link, "UPDATE ttrss_filters2 SET enabled = $enabled,
match_any_rule = $match_any_rule
WHERE id = '$filter_id'
AND owner_uid = ". $_SESSION["uid"]);
$this->saveRulesAndActions($filter_id);
2011-12-13 11:09:34 +01:00
}
function remove() {
$ids = split(",", db_escape_string($_REQUEST["ids"]));
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-30 16:50:56 +02:00
foreach ($_REQUEST["action"] as $action) {
$action = json_decode($action, true);
unset($action["id"]);
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
2012-08-30 16:50:56 +02:00
$reg_exp = strip_tags(db_escape_string(trim($rule["reg_exp"])));
$filter_type = (int) db_escape_string(trim($rule["filter_type"]));
$feed_id = db_escape_string(trim($rule["feed_id"]));
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
(filter_id, reg_exp,filter_type,feed_id,cat_id,cat_filter) VALUES
('$filter_id', '$reg_exp', '$filter_type', $feed_id, $cat_id, $cat_filter)";
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) {
$action_id = (int) db_escape_string($action["action_id"]);
$action_param = db_escape_string($action["action_param"]);
$action_param_label = db_escape_string($action["action_param_label"]);
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() {
# 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() {
$sort = db_escape_string($_REQUEST["sort"]);
if (!$sort || $sort == "undefined") {
$sort = "reg_exp";
}
$filter_search = db_escape_string($_REQUEST["search"]);
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\">";
2012-06-29 11:11:39 +02:00
$filter_search = db_escape_string($_REQUEST["search"]);
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
print "</div>"; #container
}
2012-08-30 16:50:56 +02:00
function newfilter() {
print "<form name='filter_new_form' id='filter_new_form'>";
$active_feed_id = (int) db_escape_string($_REQUEST["feed"]);
$cat_filter = db_escape_string($_REQUEST["is_cat"]) == "true";
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>";
print "<p/>";
/* print "<input dojoType=\"dijit.form.CheckBox\" type=\"checkbox\" name=\"inverse\" id=\"inverse\">
<label for=\"inverse\">".__('Inverse match')."</label><hr/>"; */
// print "</div>";
print "<div class=\"dlgButtons\">";
# print "<button dojoType=\"dijit.form.Button\" onclick=\"return dijit.byId('filterEditDlg').test()\">".
# __('Test')."</button> ";
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"];
} else {
$reg_exp = "";
$filter_type = 1;
$feed_id = 0;
}
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\"
style=\"font-size : 16px\"
name=\"reg_exp\" value=\"$reg_exp\"/>";
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) {
$action_param = db_escape_string($action["action_param"]);
$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 "&nbsp;"; // 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"]);
}
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() {
$ids = explode(",", db_escape_string($_REQUEST["ids"]));
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
}
?>