filters: use PDO

master
Andrew Dolgov 7 years ago
parent 21295a52aa
commit f594717d18

@ -9,8 +9,9 @@ class Pref_Filters extends Handler_Protected {
} }
function filtersortreset() { function filtersortreset() {
$this->dbh->query("UPDATE ttrss_filters2 $sth = $this->pdo->prepare("UPDATE ttrss_filters2
SET order_id = 0 WHERE owner_uid = " . $_SESSION["uid"]); SET order_id = 0 WHERE owner_uid = ?");
$sth->execute([$_SESSION['uid']]);
return; return;
} }
@ -26,15 +27,16 @@ class Pref_Filters extends Handler_Protected {
$index = 0; $index = 0;
if (is_array($data) && is_array($data['items'])) { if (is_array($data) && is_array($data['items'])) {
$sth = $this->pdo->prepare("UPDATE ttrss_filters2 SET
order_id = ? WHERE id = ? AND
owner_uid = ?");
foreach ($data['items'][0]['items'] as $item) { foreach ($data['items'][0]['items'] as $item) {
$filter_id = (int) str_replace("FILTER:", "", $item['_reference']); $filter_id = (int) str_replace("FILTER:", "", $item['_reference']);
if ($filter_id > 0) { if ($filter_id > 0) {
$sth->execute([$index, $filter_id, $_SESSION['uid']]);
$this->dbh->query("UPDATE ttrss_filters2 SET
order_id = $index WHERE id = '$filter_id' AND
owner_uid = " .$_SESSION["uid"]);
++$index; ++$index;
} }
} }
@ -44,24 +46,24 @@ class Pref_Filters extends Handler_Protected {
} }
function testFilterDo() { function testFilterDo() {
$offset = (int) db_escape_string($_REQUEST["offset"]); $offset = (int) $_REQUEST["offset"];
$limit = (int) db_escape_string($_REQUEST["limit"]); $limit = (int) $_REQUEST["limit"];
$filter = array(); $filter = array();
$filter["enabled"] = true; $filter["enabled"] = true;
$filter["match_any_rule"] = sql_bool_to_bool( $filter["match_any_rule"] = sql_bool_to_bool(
checkbox_to_sql_bool($this->dbh->escape_string($_REQUEST["match_any_rule"]))); checkbox_to_sql_bool($_REQUEST["match_any_rule"]));
$filter["inverse"] = sql_bool_to_bool( $filter["inverse"] = sql_bool_to_bool(
checkbox_to_sql_bool($this->dbh->escape_string($_REQUEST["inverse"]))); checkbox_to_sql_bool($_REQUEST["inverse"]));
$filter["rules"] = array(); $filter["rules"] = array();
$filter["actions"] = array("dummy-action"); $filter["actions"] = array("dummy-action");
$result = $this->dbh->query("SELECT id,name FROM ttrss_filter_types"); $res = $this->pdo->query("SELECT id,name FROM ttrss_filter_types");
$filter_types = array(); $filter_types = array();
while ($line = $this->dbh->fetch_assoc($result)) { while ($line = $res->fetch()) {
$filter_types[$line["id"]] = $line["name"]; $filter_types[$line["id"]] = $line["name"];
} }
@ -80,9 +82,9 @@ class Pref_Filters extends Handler_Protected {
if (strpos($feed_id, "CAT:") === 0) { if (strpos($feed_id, "CAT:") === 0) {
$cat_id = (int) substr($feed_id, 4); $cat_id = (int) substr($feed_id, 4);
array_push($scope_inner_qparts, "cat_id = " . $cat_id); array_push($scope_inner_qparts, "cat_id = " . $this->pdo->quote($cat_id));
} else if ($feed_id > 0) { } else if ($feed_id > 0) {
array_push($scope_inner_qparts, "feed_id = " . $feed_id); array_push($scope_inner_qparts, "feed_id = " . $this->pdo->quote($feed_id));
} }
} }
@ -109,7 +111,7 @@ class Pref_Filters extends Handler_Protected {
//while ($found < $limit && $offset < $limit * 1000 && time() - $started < ini_get("max_execution_time") * 0.7) { //while ($found < $limit && $offset < $limit * 1000 && time() - $started < ini_get("max_execution_time") * 0.7) {
$result = db_query("SELECT ttrss_entries.id, $sth = $this->pdo->prepare("SELECT ttrss_entries.id,
ttrss_entries.title, ttrss_entries.title,
ttrss_feeds.id AS feed_id, ttrss_feeds.id AS feed_id,
ttrss_feeds.title AS feed_title, ttrss_feeds.title AS feed_title,
@ -126,10 +128,12 @@ class Pref_Filters extends Handler_Protected {
WHERE WHERE
ref_id = ttrss_entries.id AND ref_id = ttrss_entries.id AND
($scope_qpart) AND ($scope_qpart) AND
ttrss_user_entries.owner_uid = " . $_SESSION["uid"] . " ttrss_user_entries.owner_uid = ?
ORDER BY date_entered DESC LIMIT $limit OFFSET $offset"); ORDER BY date_entered DESC LIMIT ?OFFSET ?");
while ($line = db_fetch_assoc($result)) { $sth->execute([$_SESSION['uid'], $limit, $offset]);;
while ($line = $sth->fetch()) {
$rc = RSSUtils::get_article_filters(array($filter), $line['title'], $line['content'], $line['link'], $rc = RSSUtils::get_article_filters(array($filter), $line['title'], $line['content'], $line['link'],
$line['author'], explode(",", $line['tag_cache'])); $line['author'], explode(",", $line['tag_cache']));
@ -209,7 +213,7 @@ class Pref_Filters extends Handler_Protected {
} }
private function getfilterrules_concise($filter_id) { private function getfilterrules_concise($filter_id) {
$result = $this->dbh->query("SELECT reg_exp, $sth = $this->pdo->prepare("SELECT reg_exp,
inverse, inverse,
match_on, match_on,
feed_id, feed_id,
@ -219,12 +223,13 @@ class Pref_Filters extends Handler_Protected {
FROM FROM
ttrss_filters2_rules, ttrss_filter_types ttrss_filters2_rules, ttrss_filter_types
WHERE WHERE
filter_id = '$filter_id' AND filter_type = ttrss_filter_types.id filter_id = ? AND filter_type = ttrss_filter_types.id
ORDER BY reg_exp"); ORDER BY reg_exp");
$sth->execute([$filter_id]);
$rv = ""; $rv = "";
while ($line = $this->dbh->fetch_assoc($result)) { while ($line = $sth->fetch()) {
if ($line["match_on"]) { if ($line["match_on"]) {
$feeds = json_decode($line["match_on"], true); $feeds = json_decode($line["match_on"], true);
@ -275,7 +280,7 @@ class Pref_Filters extends Handler_Protected {
$filter_search = $_SESSION["prefs_filter_search"]; $filter_search = $_SESSION["prefs_filter_search"];
$result = $this->dbh->query("SELECT *, $sth = $this->pdo->prepare("SELECT *,
(SELECT action_param FROM ttrss_filters2_actions (SELECT action_param FROM ttrss_filters2_actions
WHERE filter_id = ttrss_filters2.id ORDER BY id LIMIT 1) AS action_param, WHERE filter_id = ttrss_filters2.id ORDER BY id LIMIT 1) AS action_param,
(SELECT action_id FROM ttrss_filters2_actions (SELECT action_id FROM ttrss_filters2_actions
@ -286,22 +291,23 @@ class Pref_Filters extends Handler_Protected {
(SELECT reg_exp FROM ttrss_filters2_rules (SELECT reg_exp FROM ttrss_filters2_rules
WHERE filter_id = ttrss_filters2.id ORDER BY id LIMIT 1) AS reg_exp WHERE filter_id = ttrss_filters2.id ORDER BY id LIMIT 1) AS reg_exp
FROM ttrss_filters2 WHERE FROM ttrss_filters2 WHERE
owner_uid = ".$_SESSION["uid"]." ORDER BY order_id, title"); owner_uid = ? ORDER BY order_id, title");
$sth->execute([$_SESSION['uid']]);
$folder = array(); $folder = array();
$folder['items'] = array(); $folder['items'] = array();
while ($line = $this->dbh->fetch_assoc($result)) { while ($line = $sth->fetch()) {
$name = $this->getFilterName($line["id"]); $name = $this->getFilterName($line["id"]);
$match_ok = false; $match_ok = false;
if ($filter_search) { if ($filter_search) {
$rules_result = $this->dbh->query( $rules_sth = $this->pdo->prepare("SELECT reg_exp
"SELECT reg_exp FROM ttrss_filters2_rules WHERE filter_id = ".$line["id"]); FROM ttrss_filters2_rules WHERE filter_id = ?");
$rules_sth->execute([$line['id']]);
while ($rule_line = $this->dbh->fetch_assoc($rules_result)) { while ($rule_line = $rules_sth->fetch()) {
if (mb_strpos($rule_line['reg_exp'], $filter_search) !== false) { if (mb_strpos($rule_line['reg_exp'], $filter_search) !== false) {
$match_ok = true; $match_ok = true;
break; break;
@ -310,13 +316,14 @@ class Pref_Filters extends Handler_Protected {
} }
if ($line['action_id'] == 7) { if ($line['action_id'] == 7) {
$label_result = $this->dbh->query("SELECT fg_color, bg_color $label_sth = $this->pdo->prepare("SELECT fg_color, bg_color
FROM ttrss_labels2 WHERE caption = '".$this->dbh->escape_string($line['action_param'])."' AND FROM ttrss_labels2 WHERE caption = ? AND
owner_uid = " . $_SESSION["uid"]); owner_uid = ?");
$label_sth->execute([$line['action_param'], $_SESSION['uid']]);
if ($this->dbh->num_rows($label_result) > 0) { if ($label_row = $label_sth->fetch()) {
$fg_color = $this->dbh->fetch_result($label_result, 0, "fg_color"); $fg_color = $label_row["fg_color"];
$bg_color = $this->dbh->fetch_result($label_result, 0, "bg_color"); $bg_color = $label_row["bg_color"];
$name[1] = "<span class=\"labelColorIndicator\" id=\"label-editor-indicator\" style='color : $fg_color; background-color : $bg_color; margin-right : 4px'>&alpha;</span>" . $name[1]; $name[1] = "<span class=\"labelColorIndicator\" id=\"label-editor-indicator\" style='color : $fg_color; background-color : $bg_color; margin-right : 4px'>&alpha;</span>" . $name[1];
} }
@ -336,10 +343,6 @@ class Pref_Filters extends Handler_Protected {
} }
} }
/* if (count($folder['items']) > 0) {
array_push($root['items'], $folder);
} */
$root['items'] = $folder['items']; $root['items'] = $folder['items'];
$fl = array(); $fl = array();
@ -353,15 +356,18 @@ class Pref_Filters extends Handler_Protected {
function edit() { function edit() {
$filter_id = $this->dbh->escape_string($_REQUEST["id"]); $filter_id = $_REQUEST["id"];
$result = $this->dbh->query( $sth = $this->pdo->prepare("SELECT * FROM ttrss_filters2
"SELECT * FROM ttrss_filters2 WHERE id = '$filter_id' AND owner_uid = " . $_SESSION["uid"]); WHERE id = ? AND owner_uid = ?");
$sth->execute([$filter_id, $_SESSION['uid']]);
$enabled = sql_bool_to_bool($this->dbh->fetch_result($result, 0, "enabled")); if ($row = $sth->fetch()) {
$match_any_rule = sql_bool_to_bool($this->dbh->fetch_result($result, 0, "match_any_rule"));
$inverse = sql_bool_to_bool($this->dbh->fetch_result($result, 0, "inverse")); $enabled = sql_bool_to_bool($row["enabled"]);
$title = htmlspecialchars($this->dbh->fetch_result($result, 0, "title")); $match_any_rule = sql_bool_to_bool($row["match_any_rule"]);
$inverse = sql_bool_to_bool($row["inverse"]);
$title = htmlspecialchars($row["title"]);
print "<form id=\"filter_edit_form\" onsubmit='return false'>"; print "<form id=\"filter_edit_form\" onsubmit='return false'>";
@ -399,10 +405,11 @@ class Pref_Filters extends Handler_Protected {
print "<ul id='filterDlg_Matches'>"; print "<ul id='filterDlg_Matches'>";
$rules_result = $this->dbh->query("SELECT * FROM ttrss_filters2_rules $rules_sth = $this->pdo->prepare("SELECT * FROM ttrss_filters2_rules
WHERE filter_id = '$filter_id' ORDER BY reg_exp, id"); WHERE filter_id = ? ORDER BY reg_exp, id");
$rules_sth->execute([$filter_id]);
while ($line = $this->dbh->fetch_assoc($rules_result)) { while ($line = $rules_sth->fetch()) {
if ($line["match_on"]) { if ($line["match_on"]) {
$line["feed_id"] = json_decode($line["match_on"], true); $line["feed_id"] = json_decode($line["match_on"], true);
} else { } else {
@ -456,10 +463,11 @@ class Pref_Filters extends Handler_Protected {
print "<ul id='filterDlg_Actions'>"; print "<ul id='filterDlg_Actions'>";
$actions_result = $this->dbh->query("SELECT * FROM ttrss_filters2_actions $actions_sth = $this->pdo->prepare("SELECT * FROM ttrss_filters2_actions
WHERE filter_id = '$filter_id' ORDER BY id"); WHERE filter_id = ? ORDER BY id");
$actions_sth->execute([$filter_id]);
while ($line = $this->dbh->fetch_assoc($actions_result)) { while ($line = $actions_sth->fetch()) {
$line["action_param_label"] = $line["action_param"]; $line["action_param_label"] = $line["action_param"];
unset($line["filter_id"]); unset($line["filter_id"]);
@ -522,6 +530,8 @@ class Pref_Filters extends Handler_Protected {
__('Cancel')."</button>"; __('Cancel')."</button>";
print "</div>"; print "</div>";
}
} }
private function getRuleName($rule) { private function getRuleName($rule) {
@ -547,9 +557,15 @@ class Pref_Filters extends Handler_Protected {
$feed = implode(", ", $feeds_fmt); $feed = implode(", ", $feeds_fmt);
$result = $this->dbh->query("SELECT description FROM ttrss_filter_types $sth = $this->pdo->prepare("SELECT description FROM ttrss_filter_types
WHERE id = ".(int)$rule["filter_type"]); WHERE id = ?");
$filter_type = $this->dbh->fetch_result($result, 0, "description"); $sth->execute([(int)$rule["filter_type"]]);
if ($row = $sth->fetch()) {
$filter_type = $row["description"];
} else {
$filter_type = "?UNKNOWN?";
}
$inverse = isset($rule["inverse"]) ? "inverse" : ""; $inverse = isset($rule["inverse"]) ? "inverse" : "";
@ -563,10 +579,15 @@ class Pref_Filters extends Handler_Protected {
} }
private function getActionName($action) { private function getActionName($action) {
$result = $this->dbh->query("SELECT description FROM $sth = $this->pdo->prepare("SELECT description FROM
ttrss_filter_actions WHERE id = " .(int)$action["action_id"]); ttrss_filter_actions WHERE id = ?");
$sth->execute([(int)$action["action_id"]]);
$title = "";
$title = __($this->dbh->fetch_result($result, 0, "description")); if ($row = $sth->fetch()) {
$title = __($row["description"]);
if ($action["action_id"] == 4 || $action["action_id"] == 6 || if ($action["action_id"] == 4 || $action["action_id"] == 6 ||
$action["action_id"] == 7) $action["action_id"] == 7)
@ -586,6 +607,7 @@ class Pref_Filters extends Handler_Protected {
} }
} }
} }
}
return $title; return $title;
} }
@ -599,38 +621,48 @@ class Pref_Filters extends Handler_Protected {
return $this->testFilter(); return $this->testFilter();
} }
# print_r($_REQUEST); $filter_id = $_REQUEST["id"];
$enabled = checkbox_to_sql_bool($_REQUEST["enabled"]);
$match_any_rule = checkbox_to_sql_bool($_REQUEST["match_any_rule"]);
$inverse = checkbox_to_sql_bool($_REQUEST["inverse"]);
$title = $_REQUEST["title"];
$this->pdo->beginTransaction();
$filter_id = $this->dbh->escape_string($_REQUEST["id"]); $sth = $this->pdo->prepare("UPDATE ttrss_filters2 SET enabled = ?,
$enabled = checkbox_to_sql_bool($this->dbh->escape_string($_REQUEST["enabled"])); match_any_rule = ?,
$match_any_rule = checkbox_to_sql_bool($this->dbh->escape_string($_REQUEST["match_any_rule"])); inverse = ?,
$inverse = checkbox_to_sql_bool($this->dbh->escape_string($_REQUEST["inverse"])); title = ?
$title = $this->dbh->escape_string($_REQUEST["title"]); WHERE id = ? AND owner_uid = ?");
$this->dbh->query("UPDATE ttrss_filters2 SET enabled = $enabled, $sth->execute([$enabled, $match_any_rule, $inverse, $title, $filter_id, $_SESSION['uid']]);
match_any_rule = $match_any_rule,
inverse = $inverse,
title = '$title'
WHERE id = '$filter_id'
AND owner_uid = ". $_SESSION["uid"]);
$this->saveRulesAndActions($filter_id); $this->saveRulesAndActions($filter_id);
$this->pdo->commit();
} }
function remove() { function remove() {
$ids = explode(",", $this->dbh->escape_string($_REQUEST["ids"])); $ids = explode(",", $_REQUEST["ids"]);
$ids_qmarks = arr_qmarks($ids);
foreach ($ids as $id) { $sth = $this->pdo->prepare("DELETE FROM ttrss_filters2 WHERE id IN ($ids_qmarks)
$this->dbh->query("DELETE FROM ttrss_filters2 WHERE id = '$id' AND owner_uid = ". $_SESSION["uid"]); AND owner_uid = ?");
} $sth->execute(array_merge($ids, [$_SESSION['uid']]));
} }
private function saveRulesAndActions($filter_id) { private function saveRulesAndActions($filter_id)
{
$this->dbh->query("DELETE FROM ttrss_filters2_rules WHERE filter_id = '$filter_id'"); $sth = $this->pdo->prepare("DELETE FROM ttrss_filters2_rules WHERE filter_id = ?");
$this->dbh->query("DELETE FROM ttrss_filters2_actions WHERE filter_id = '$filter_id'"); $sth->execute([$filter_id]);
$sth = $this->pdo->prepare("DELETE FROM ttrss_filters2_actions WHERE filter_id = ?");
$sth->execute([$filter_id]);
if (!is_array($_REQUEST["rule"])) $_REQUEST["rule"] = [];
if (!is_array($_REQUEST["action"])) $_REQUEST["action"] = [];
if ($filter_id) { if ($filter_id) {
/* create rules */ /* create rules */
@ -656,44 +688,33 @@ class Pref_Filters extends Handler_Protected {
} }
} }
$rsth = $this->pdo->prepare("INSERT INTO ttrss_filters2_rules
(filter_id, reg_exp,filter_type,feed_id,cat_id,match_on,inverse) VALUES
(?, ?, ?, NULL, NULL, ?, ?)");
foreach ($rules as $rule) { foreach ($rules as $rule) {
if ($rule) { if ($rule) {
$reg_exp = $this->dbh->escape_string(trim($rule["reg_exp"]), false); $reg_exp = trim($rule["reg_exp"]);
$inverse = isset($rule["inverse"]) ? "true" : "false"; $inverse = isset($rule["inverse"]) ? "true" : "false";
$filter_type = (int) $this->dbh->escape_string(trim($rule["filter_type"])); $filter_type = (int)trim($rule["filter_type"]);
$match_on = $this->dbh->escape_string(json_encode($rule["feed_id"])); $match_on = json_encode($rule["feed_id"]);
/*if (strpos($feed_id, "CAT:") === 0) {
$cat_filter = bool_to_sql_bool(true);
$cat_id = (int) substr($feed_id, 4);
$feed_id = "NULL";
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,match_on,inverse) VALUES
('$filter_id', '$reg_exp', '$filter_type', NULL, NULL, '$match_on', $inverse)";
$this->dbh->query($query); $rsth->execute([$filter_id, $reg_exp, $filter_type, $match_on, $inverse]);
} }
} }
$asth = $this->pdo->prepare("INSERT INTO ttrss_filters2_actions
(filter_id, action_id, action_param) VALUES
(?, ?, ?)");
foreach ($actions as $action) { foreach ($actions as $action) {
if ($action) { if ($action) {
$action_id = (int) $this->dbh->escape_string($action["action_id"]); $action_id = (int)$action["action_id"];
$action_param = $this->dbh->escape_string($action["action_param"]); $action_param = $action["action_param"];
$action_param_label = $this->dbh->escape_string($action["action_param_label"]); $action_param_label = $action["action_param_label"];
if ($action_id == 7) { if ($action_id == 7) {
$action_param = $action_param_label; $action_param = $action_param_label;
@ -703,16 +724,10 @@ class Pref_Filters extends Handler_Protected {
$action_param = (int)str_replace("+", "", $action_param); $action_param = (int)str_replace("+", "", $action_param);
} }
$query = "INSERT INTO ttrss_filters2_actions $asth->execute([$filter_id, $action_id, $action_param]);
(filter_id, action_id, action_param) VALUES
('$filter_id', '$action_id', '$action_param')";
$this->dbh->query($query);
} }
} }
} }
} }
function add() { function add() {
@ -720,40 +735,42 @@ class Pref_Filters extends Handler_Protected {
return $this->testFilter(); return $this->testFilter();
} }
# print_r($_REQUEST);
$enabled = checkbox_to_sql_bool($_REQUEST["enabled"]); $enabled = checkbox_to_sql_bool($_REQUEST["enabled"]);
$match_any_rule = checkbox_to_sql_bool($_REQUEST["match_any_rule"]); $match_any_rule = checkbox_to_sql_bool($_REQUEST["match_any_rule"]);
$title = $this->dbh->escape_string($_REQUEST["title"]); $title = $_REQUEST["title"];
$inverse = checkbox_to_sql_bool($_REQUEST["inverse"]); $inverse = checkbox_to_sql_bool($_REQUEST["inverse"]);
$this->dbh->query("BEGIN"); $this->pdo->beginTransaction();
/* create base filter */ /* create base filter */
$result = $this->dbh->query("INSERT INTO ttrss_filters2 $sth = $this->pdo->prepare("INSERT INTO ttrss_filters2
(owner_uid, match_any_rule, enabled, title, inverse) VALUES (owner_uid, match_any_rule, enabled, title, inverse) VALUES
(".$_SESSION["uid"].",$match_any_rule,$enabled, '$title', $inverse)"); (?, ?, ?, ?, ?)");
$result = $this->dbh->query("SELECT MAX(id) AS id FROM ttrss_filters2 $sth->execute([$_SESSION['uid'], $match_any_rule, $enabled, $title, $inverse]);
WHERE owner_uid = ".$_SESSION["uid"]);
$filter_id = $this->dbh->fetch_result($result, 0, "id"); $sth = $this->pdo->prepare("SELECT MAX(id) AS id FROM ttrss_filters2
WHERE owner_uid = ?");
$sth->execute([$_SESSION['uid']]);
if ($row = $sth->fetch()) {
$filter_id = $row['id'];
$this->saveRulesAndActions($filter_id); $this->saveRulesAndActions($filter_id);
}
$this->dbh->query("COMMIT"); $this->pdo->commit();
} }
function index() { function index() {
$sort = $this->dbh->escape_string($_REQUEST["sort"]); $sort = $_REQUEST["sort"];
if (!$sort || $sort == "undefined") { if (!$sort || $sort == "undefined") {
$sort = "reg_exp"; $sort = "reg_exp";
} }
$filter_search = $this->dbh->escape_string($_REQUEST["search"]); $filter_search = $_REQUEST["search"];
if (array_key_exists("search", $_REQUEST)) { if (array_key_exists("search", $_REQUEST)) {
$_SESSION["prefs_filter_search"] = $filter_search; $_SESSION["prefs_filter_search"] = $filter_search;
@ -765,7 +782,7 @@ class Pref_Filters extends Handler_Protected {
print "<div id=\"pref-filter-header\" dojoType=\"dijit.layout.ContentPane\" region=\"top\">"; print "<div id=\"pref-filter-header\" dojoType=\"dijit.layout.ContentPane\" region=\"top\">";
print "<div id=\"pref-filter-toolbar\" dojoType=\"dijit.Toolbar\">"; print "<div id=\"pref-filter-toolbar\" dojoType=\"dijit.Toolbar\">";
$filter_search = $this->dbh->escape_string($_REQUEST["search"]); $filter_search = $_REQUEST["search"];
if (array_key_exists("search", $_REQUEST)) { if (array_key_exists("search", $_REQUEST)) {
$_SESSION["prefs_filter_search"] = $filter_search; $_SESSION["prefs_filter_search"] = $filter_search;
@ -960,21 +977,14 @@ class Pref_Filters extends Handler_Protected {
$inverse_checked = ""; $inverse_checked = "";
} }
/*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'>"; print "<form name='filter_new_rule_form' id='filter_new_rule_form'>";
$result = $this->dbh->query("SELECT id,description $res = $this->pdo->query("SELECT id,description
FROM ttrss_filter_types WHERE id != 5 ORDER BY description"); FROM ttrss_filter_types WHERE id != 5 ORDER BY description");
$filter_types = array(); $filter_types = array();
while ($line = $this->dbh->fetch_assoc($result)) { while ($line = $res->fetch()) {
$filter_types[$line["id"]] = __($line["description"]); $filter_types[$line["id"]] = __($line["description"]);
} }
@ -1030,7 +1040,7 @@ class Pref_Filters extends Handler_Protected {
$action = json_decode($_REQUEST["action"], true); $action = json_decode($_REQUEST["action"], true);
if ($action) { if ($action) {
$action_param = $this->dbh->escape_string($action["action_param"]); $action_param = $action["action_param"];
$action_id = (int)$action["action_id"]; $action_id = (int)$action["action_id"];
} else { } else {
$action_param = ""; $action_param = "";
@ -1046,10 +1056,10 @@ class Pref_Filters extends Handler_Protected {
print "<select name=\"action_id\" dojoType=\"dijit.form.Select\" print "<select name=\"action_id\" dojoType=\"dijit.form.Select\"
onchange=\"filterDlgCheckAction(this)\">"; onchange=\"filterDlgCheckAction(this)\">";
$result = $this->dbh->query("SELECT id,description FROM ttrss_filter_actions $res = $this->pdo->query("SELECT id,description FROM ttrss_filter_actions
ORDER BY name"); ORDER BY name");
while ($line = $this->dbh->fetch_assoc($result)) { while ($line = $res->fetch()) {
$is_selected = ($line["id"] == $action_id) ? "selected='1'" : ""; $is_selected = ($line["id"] == $action_id) ? "selected='1'" : "";
printf("<option $is_selected value='%d'>%s</option>", $line["id"], __($line["description"])); printf("<option $is_selected value='%d'>%s</option>", $line["id"], __($line["description"]));
} }
@ -1121,30 +1131,32 @@ class Pref_Filters extends Handler_Protected {
private function getFilterName($id) { private function getFilterName($id) {
$result = $this->dbh->query( $sth = $this->pdo->prepare(
"SELECT title,match_any_rule,COUNT(DISTINCT r.id) AS num_rules,COUNT(DISTINCT a.id) AS num_actions "SELECT title,match_any_rule,COUNT(DISTINCT r.id) AS num_rules,COUNT(DISTINCT a.id) AS num_actions
FROM ttrss_filters2 AS f LEFT JOIN ttrss_filters2_rules AS r FROM ttrss_filters2 AS f LEFT JOIN ttrss_filters2_rules AS r
ON (r.filter_id = f.id) ON (r.filter_id = f.id)
LEFT JOIN ttrss_filters2_actions AS a LEFT JOIN ttrss_filters2_actions AS a
ON (a.filter_id = f.id) WHERE f.id = '$id' GROUP BY f.title, f.match_any_rule"); ON (a.filter_id = f.id) WHERE f.id = ? GROUP BY f.title, f.match_any_rule");
$sth->execute([$id]);
if ($row = $sth->fetch()) {
$title = $this->dbh->fetch_result($result, 0, "title"); $title = $row["title"];
$num_rules = $this->dbh->fetch_result($result, 0, "num_rules"); $num_rules = $row["num_rules"];
$num_actions = $this->dbh->fetch_result($result, 0, "num_actions"); $num_actions = $row["num_actions"];
$match_any_rule = sql_bool_to_bool($this->dbh->fetch_result($result, 0, "match_any_rule")); $match_any_rule = sql_bool_to_bool($row["match_any_rule"]);
if (!$title) $title = __("[No caption]"); if (!$title) $title = __("[No caption]");
$title = sprintf(_ngettext("%s (%d rule)", "%s (%d rules)", (int) $num_rules), $title, $num_rules); $title = sprintf(_ngettext("%s (%d rule)", "%s (%d rules)", (int) $num_rules), $title, $num_rules);
$sth = $this->pdo->prepare("SELECT * FROM ttrss_filters2_actions
$result = $this->dbh->query( WHERE filter_id = ? ORDER BY id LIMIT 1");
"SELECT * FROM ttrss_filters2_actions WHERE filter_id = '$id' ORDER BY id LIMIT 1"); $sth->execute([$id]);
$actions = ""; $actions = "";
if ($this->dbh->num_rows($result) > 0) { if ($line = $sth->fetch()) {
$line = $this->dbh->fetch_assoc($result);
$actions = $this->getActionName($line); $actions = $this->getActionName($line);
$num_actions -= 1; $num_actions -= 1;
@ -1155,26 +1167,36 @@ class Pref_Filters extends Handler_Protected {
if ($num_actions > 0) if ($num_actions > 0)
$actions = sprintf(_ngettext("%s (+%d action)", "%s (+%d actions)", (int) $num_actions), $actions, $num_actions); $actions = sprintf(_ngettext("%s (+%d action)", "%s (+%d actions)", (int) $num_actions), $actions, $num_actions);
return array($title, $actions); return [$title, $actions];
}
return [];
} }
function join() { function join() {
$ids = explode(",", $this->dbh->escape_string($_REQUEST["ids"])); $ids = explode(",", $_REQUEST["ids"]);
if (count($ids) > 1) { if (count($ids) > 1) {
$base_id = array_shift($ids); $base_id = array_shift($ids);
$ids_str = join(",", $ids); $ids_qmarks = arr_qmarks($ids);
$this->dbh->query("BEGIN"); $this->pdo->beginTransaction();
$this->dbh->query("UPDATE ttrss_filters2_rules
SET filter_id = '$base_id' WHERE filter_id IN ($ids_str)");
$this->dbh->query("UPDATE ttrss_filters2_actions
SET filter_id = '$base_id' WHERE filter_id IN ($ids_str)");
$this->dbh->query("DELETE FROM ttrss_filters2 WHERE id IN ($ids_str)"); $sth = $this->pdo->prepare("UPDATE ttrss_filters2_rules
$this->dbh->query("UPDATE ttrss_filters2 SET match_any_rule = true WHERE id = '$base_id'"); SET filter_id = ? WHERE filter_id IN ($ids_qmarks)");
$sth->execute(array_merge([$base_id], $ids));
$this->dbh->query("COMMIT"); $sth = $this->pdo->prepare("UPDATE ttrss_filters2_actions
SET filter_id = ? WHERE filter_id IN ($ids_qmarks)");
$sth->execute(array_merge([$base_id], $ids));
$sth = $this->pdo->prepare("DELETE FROM ttrss_filters2 WHERE id IN ($ids_qmarks)");
$sth->execute($ids);
$sth = $this->pdo->prepare("UPDATE ttrss_filters2 SET match_any_rule = true WHERE id = ?");
$sth->execute([$base_id]);
$this->pdo->commit();
$this->optimizeFilter($base_id); $this->optimizeFilter($base_id);
@ -1182,14 +1204,17 @@ class Pref_Filters extends Handler_Protected {
} }
private function optimizeFilter($id) { private function optimizeFilter($id) {
$this->dbh->query("BEGIN");
$result = $this->dbh->query("SELECT * FROM ttrss_filters2_actions $this->pdo->beginTransaction();
WHERE filter_id = '$id'");
$sth = $this->pdo->prepare("SELECT * FROM ttrss_filters2_actions
WHERE filter_id = ?");
$sth->execute([$id]);
$tmp = array(); $tmp = array();
$dupe_ids = array(); $dupe_ids = array();
while ($line = $this->dbh->fetch_assoc($result)) { while ($line = $sth->fetch()) {
$id = $line["id"]; $id = $line["id"];
unset($line["id"]); unset($line["id"]);
@ -1202,17 +1227,18 @@ class Pref_Filters extends Handler_Protected {
if (count($dupe_ids) > 0) { if (count($dupe_ids) > 0) {
$ids_str = join(",", $dupe_ids); $ids_str = join(",", $dupe_ids);
$this->dbh->query("DELETE FROM ttrss_filters2_actions
WHERE id IN ($ids_str)"); $this->pdo->query("DELETE FROM ttrss_filters2_actions WHERE id IN ($ids_str)");
} }
$result = $this->dbh->query("SELECT * FROM ttrss_filters2_rules $sth = $this->pdo->prepare("SELECT * FROM ttrss_filters2_rules
WHERE filter_id = '$id'"); WHERE filter_id = ?");
$sth->execute([$id]);
$tmp = array(); $tmp = array();
$dupe_ids = array(); $dupe_ids = array();
while ($line = $this->dbh->fetch_assoc($result)) { while ($line = $sth->fetch()) {
$id = $line["id"]; $id = $line["id"];
unset($line["id"]); unset($line["id"]);
@ -1225,10 +1251,10 @@ class Pref_Filters extends Handler_Protected {
if (count($dupe_ids) > 0) { if (count($dupe_ids) > 0) {
$ids_str = join(",", $dupe_ids); $ids_str = join(",", $dupe_ids);
$this->dbh->query("DELETE FROM ttrss_filters2_rules
WHERE id IN ($ids_str)"); $this->pdo->query("DELETE FROM ttrss_filters2_rules WHERE id IN ($ids_str)");
} }
$this->dbh->query("COMMIT"); $this->pdo->commit();
} }
} }
Loading…
Cancel
Save