2011-12-13 10:09:34 +00:00
|
|
|
|
<?php
|
2012-08-17 10:20:55 +00:00
|
|
|
|
class Pref_Filters extends Handler_Protected {
|
2011-12-13 10:09:34 +00:00
|
|
|
|
|
2021-12-20 04:56:16 +00:00
|
|
|
|
const ACTION_TAG = 4;
|
|
|
|
|
const ACTION_SCORE = 6;
|
|
|
|
|
const ACTION_LABEL = 7;
|
|
|
|
|
const ACTION_PLUGIN = 9;
|
|
|
|
|
const ACTION_REMOVE_TAG = 10;
|
|
|
|
|
|
|
|
|
|
const PARAM_ACTIONS = [self::ACTION_TAG, self::ACTION_SCORE,
|
|
|
|
|
self::ACTION_LABEL, self::ACTION_PLUGIN, self::ACTION_REMOVE_TAG];
|
|
|
|
|
|
2021-11-12 02:01:31 +00:00
|
|
|
|
function csrf_ignore(string $method): bool {
|
2021-02-12 12:50:06 +00:00
|
|
|
|
$csrf_ignored = array("index", "getfiltertree", "savefilterorder");
|
2011-12-26 08:02:52 +00:00
|
|
|
|
|
|
|
|
|
return array_search($method, $csrf_ignored) !== false;
|
|
|
|
|
}
|
|
|
|
|
|
2021-11-13 16:21:58 +00:00
|
|
|
|
function filtersortreset(): void {
|
2017-12-02 10:28:13 +00:00
|
|
|
|
$sth = $this->pdo->prepare("UPDATE ttrss_filters2
|
|
|
|
|
SET order_id = 0 WHERE owner_uid = ?");
|
|
|
|
|
$sth->execute([$_SESSION['uid']]);
|
2013-03-31 13:15:23 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-11-13 16:21:58 +00:00
|
|
|
|
function savefilterorder(): void {
|
2018-02-04 06:33:28 +00:00
|
|
|
|
$data = json_decode($_POST['payload'], true);
|
2013-03-31 13:15:23 +00:00
|
|
|
|
|
2017-12-03 20:35:38 +00:00
|
|
|
|
#file_put_contents("/tmp/saveorder.json", clean($_POST['payload']));
|
2013-03-31 13:15:23 +00:00
|
|
|
|
#$data = json_decode(file_get_contents("/tmp/saveorder.json"), true);
|
|
|
|
|
|
|
|
|
|
if (!is_array($data['items']))
|
|
|
|
|
$data['items'] = json_decode($data['items'], true);
|
|
|
|
|
|
|
|
|
|
$index = 0;
|
|
|
|
|
|
|
|
|
|
if (is_array($data) && is_array($data['items'])) {
|
2017-12-02 10:28:13 +00:00
|
|
|
|
|
|
|
|
|
$sth = $this->pdo->prepare("UPDATE ttrss_filters2 SET
|
|
|
|
|
order_id = ? WHERE id = ? AND
|
|
|
|
|
owner_uid = ?");
|
|
|
|
|
|
2013-03-31 13:15:23 +00:00
|
|
|
|
foreach ($data['items'][0]['items'] as $item) {
|
|
|
|
|
$filter_id = (int) str_replace("FILTER:", "", $item['_reference']);
|
|
|
|
|
|
|
|
|
|
if ($filter_id > 0) {
|
2017-12-02 10:28:13 +00:00
|
|
|
|
$sth->execute([$index, $filter_id, $_SESSION['uid']]);
|
2013-03-31 13:15:23 +00:00
|
|
|
|
++$index;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-11-13 16:21:58 +00:00
|
|
|
|
function testFilterDo(): void {
|
2017-12-03 20:35:38 +00:00
|
|
|
|
$offset = (int) clean($_REQUEST["offset"]);
|
|
|
|
|
$limit = (int) clean($_REQUEST["limit"]);
|
2013-03-31 13:15:23 +00:00
|
|
|
|
|
2012-09-03 11:05:43 +00:00
|
|
|
|
$filter = array();
|
2011-12-13 10:09:34 +00:00
|
|
|
|
|
2012-09-03 11:05:43 +00:00
|
|
|
|
$filter["enabled"] = true;
|
2021-03-08 08:16:32 +00:00
|
|
|
|
$filter["match_any_rule"] = checkbox_to_sql_bool(clean($_REQUEST["match_any_rule"] ?? false));
|
|
|
|
|
$filter["inverse"] = checkbox_to_sql_bool(clean($_REQUEST["inverse"] ?? false));
|
2013-03-25 15:46:43 +00:00
|
|
|
|
|
2012-09-03 11:05:43 +00:00
|
|
|
|
$filter["rules"] = array();
|
2015-07-13 09:40:56 +00:00
|
|
|
|
$filter["actions"] = array("dummy-action");
|
2011-12-13 10:09:34 +00:00
|
|
|
|
|
2017-12-02 10:28:13 +00:00
|
|
|
|
$res = $this->pdo->query("SELECT id,name FROM ttrss_filter_types");
|
2011-12-13 10:09:34 +00:00
|
|
|
|
|
2021-11-14 17:59:02 +00:00
|
|
|
|
/** @var array<int, string> */
|
|
|
|
|
$filter_types = [];
|
|
|
|
|
|
2017-12-02 10:28:13 +00:00
|
|
|
|
while ($line = $res->fetch()) {
|
2012-09-03 11:05:43 +00:00
|
|
|
|
$filter_types[$line["id"]] = $line["name"];
|
|
|
|
|
}
|
2011-12-13 10:09:34 +00:00
|
|
|
|
|
2015-07-13 09:40:56 +00:00
|
|
|
|
$scope_qparts = array();
|
|
|
|
|
|
2012-09-03 11:05:43 +00:00
|
|
|
|
$rctr = 0;
|
2021-11-14 17:59:02 +00:00
|
|
|
|
|
|
|
|
|
/** @var string $r */
|
2017-12-03 20:35:38 +00:00
|
|
|
|
foreach (clean($_REQUEST["rule"]) AS $r) {
|
2021-11-14 17:59:02 +00:00
|
|
|
|
/** @var array{'reg_exp': string, 'filter_type': int, 'feed_id': array<int, int|string>, 'name': string}|null */
|
2012-09-03 11:05:43 +00:00
|
|
|
|
$rule = json_decode($r, true);
|
2011-12-13 10:09:34 +00:00
|
|
|
|
|
2012-09-03 11:05:43 +00:00
|
|
|
|
if ($rule && $rctr < 5) {
|
|
|
|
|
$rule["type"] = $filter_types[$rule["filter_type"]];
|
|
|
|
|
unset($rule["filter_type"]);
|
2011-12-13 10:09:34 +00:00
|
|
|
|
|
2017-07-02 17:37:52 +00:00
|
|
|
|
$scope_inner_qparts = [];
|
2021-11-14 17:59:02 +00:00
|
|
|
|
|
|
|
|
|
/** @var int|string $feed_id may be a category string (e.g. 'CAT:7') or feed ID int */
|
2017-07-02 17:37:52 +00:00
|
|
|
|
foreach ($rule["feed_id"] as $feed_id) {
|
2017-07-02 17:27:21 +00:00
|
|
|
|
|
2021-11-14 17:59:02 +00:00
|
|
|
|
if (strpos("$feed_id", "CAT:") === 0) {
|
|
|
|
|
$cat_id = (int) substr("$feed_id", 4);
|
|
|
|
|
array_push($scope_inner_qparts, "cat_id = " . $cat_id);
|
|
|
|
|
} else if (is_numeric($feed_id) && $feed_id > 0) {
|
|
|
|
|
array_push($scope_inner_qparts, "feed_id = " . (int)$feed_id);
|
|
|
|
|
}
|
|
|
|
|
}
|
2017-07-02 17:37:52 +00:00
|
|
|
|
|
2021-11-14 17:59:02 +00:00
|
|
|
|
if (count($scope_inner_qparts) > 0) {
|
|
|
|
|
array_push($scope_qparts, "(" . implode(" OR ", $scope_inner_qparts) . ")");
|
|
|
|
|
}
|
2015-07-13 09:40:56 +00:00
|
|
|
|
|
2012-09-03 11:05:43 +00:00
|
|
|
|
array_push($filter["rules"], $rule);
|
2011-12-13 10:09:34 +00:00
|
|
|
|
|
2012-09-03 11:05:43 +00:00
|
|
|
|
++$rctr;
|
|
|
|
|
} else {
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
2011-12-13 10:09:34 +00:00
|
|
|
|
|
2017-07-02 17:37:52 +00:00
|
|
|
|
if (count($scope_qparts) == 0) $scope_qparts = ["true"];
|
|
|
|
|
|
2015-08-11 16:13:08 +00:00
|
|
|
|
$glue = $filter['match_any_rule'] ? " OR " : " AND ";
|
2015-07-13 09:40:56 +00:00
|
|
|
|
$scope_qpart = join($glue, $scope_qparts);
|
2013-07-14 17:55:14 +00:00
|
|
|
|
|
2015-07-13 09:53:13 +00:00
|
|
|
|
if (!$scope_qpart) $scope_qpart = "true";
|
|
|
|
|
|
2015-09-09 13:56:04 +00:00
|
|
|
|
$rv = array();
|
|
|
|
|
|
|
|
|
|
//while ($found < $limit && $offset < $limit * 1000 && time() - $started < ini_get("max_execution_time") * 0.7) {
|
2011-12-13 10:09:34 +00:00
|
|
|
|
|
2017-12-02 10:54:18 +00:00
|
|
|
|
$sth = $this->pdo->prepare("SELECT ttrss_entries.id,
|
|
|
|
|
ttrss_entries.title,
|
|
|
|
|
ttrss_feeds.id AS feed_id,
|
|
|
|
|
ttrss_feeds.title AS feed_title,
|
|
|
|
|
ttrss_feed_categories.id AS cat_id,
|
|
|
|
|
content,
|
|
|
|
|
date_entered,
|
|
|
|
|
link,
|
|
|
|
|
author,
|
|
|
|
|
tag_cache
|
|
|
|
|
FROM
|
|
|
|
|
ttrss_entries, ttrss_user_entries
|
|
|
|
|
LEFT JOIN ttrss_feeds ON (feed_id = ttrss_feeds.id)
|
|
|
|
|
LEFT JOIN ttrss_feed_categories ON (ttrss_feeds.cat_id = ttrss_feed_categories.id)
|
|
|
|
|
WHERE
|
|
|
|
|
ref_id = ttrss_entries.id AND
|
|
|
|
|
($scope_qpart) AND
|
|
|
|
|
ttrss_user_entries.owner_uid = ?
|
|
|
|
|
ORDER BY date_entered DESC LIMIT $limit OFFSET $offset");
|
2012-02-21 08:36:29 +00:00
|
|
|
|
|
2017-12-02 10:54:18 +00:00
|
|
|
|
$sth->execute([$_SESSION['uid']]);
|
2017-12-02 10:28:13 +00:00
|
|
|
|
|
2017-12-02 10:54:18 +00:00
|
|
|
|
while ($line = $sth->fetch()) {
|
2012-02-21 08:36:29 +00:00
|
|
|
|
|
2017-12-02 10:54:18 +00:00
|
|
|
|
$rc = RSSUtils::get_article_filters(array($filter), $line['title'], $line['content'], $line['link'],
|
|
|
|
|
$line['author'], explode(",", $line['tag_cache']));
|
2012-02-21 08:36:29 +00:00
|
|
|
|
|
2017-12-02 10:54:18 +00:00
|
|
|
|
if (count($rc) > 0) {
|
2012-02-21 08:36:29 +00:00
|
|
|
|
|
2017-12-02 10:54:18 +00:00
|
|
|
|
$line["content_preview"] = truncate_string(strip_tags($line["content"]), 200, '…');
|
2012-02-21 08:36:29 +00:00
|
|
|
|
|
2021-02-08 13:14:48 +00:00
|
|
|
|
$excerpt_length = 100;
|
|
|
|
|
|
|
|
|
|
PluginHost::getInstance()->chain_hooks_callback(PluginHost::HOOK_QUERY_HEADLINES,
|
|
|
|
|
function ($result) use (&$line) {
|
|
|
|
|
$line = $result;
|
|
|
|
|
},
|
|
|
|
|
$line, $excerpt_length);
|
2012-02-21 08:36:29 +00:00
|
|
|
|
|
2017-12-02 10:54:18 +00:00
|
|
|
|
$content_preview = $line["content_preview"];
|
2011-12-13 10:09:34 +00:00
|
|
|
|
|
2018-12-14 14:44:53 +00:00
|
|
|
|
$tmp = "<li><span class='title'>" . $line["title"] . "</span><br/>" .
|
|
|
|
|
"<span class='feed'>" . $line['feed_title'] . "</span>, <span class='date'>" . mb_substr($line["date_entered"], 0, 16) . "</span>" .
|
2019-03-08 07:11:57 +00:00
|
|
|
|
"<div class='preview text-muted'>" . $content_preview . "</div>" .
|
2018-12-14 14:44:53 +00:00
|
|
|
|
"</li>";
|
2013-01-22 09:34:02 +00:00
|
|
|
|
|
2017-12-02 10:54:18 +00:00
|
|
|
|
array_push($rv, $tmp);
|
2013-01-22 09:34:02 +00:00
|
|
|
|
|
2015-07-13 09:40:56 +00:00
|
|
|
|
}
|
2017-12-02 10:54:18 +00:00
|
|
|
|
}
|
2015-07-13 09:40:56 +00:00
|
|
|
|
|
2015-09-09 13:56:04 +00:00
|
|
|
|
print json_encode($rv);
|
|
|
|
|
}
|
|
|
|
|
|
2021-11-13 16:21:58 +00:00
|
|
|
|
private function _get_rules_list(int $filter_id): string {
|
2017-12-02 10:28:13 +00:00
|
|
|
|
$sth = $this->pdo->prepare("SELECT reg_exp,
|
2014-04-02 08:15:33 +00:00
|
|
|
|
inverse,
|
2017-07-02 17:37:52 +00:00
|
|
|
|
match_on,
|
2014-04-02 08:15:33 +00:00
|
|
|
|
feed_id,
|
|
|
|
|
cat_id,
|
|
|
|
|
cat_filter,
|
|
|
|
|
ttrss_filter_types.description AS field
|
|
|
|
|
FROM
|
|
|
|
|
ttrss_filters2_rules, ttrss_filter_types
|
|
|
|
|
WHERE
|
2017-12-02 10:28:13 +00:00
|
|
|
|
filter_id = ? AND filter_type = ttrss_filter_types.id
|
2016-02-19 15:52:54 +00:00
|
|
|
|
ORDER BY reg_exp");
|
2017-12-02 10:28:13 +00:00
|
|
|
|
$sth->execute([$filter_id]);
|
2014-04-02 08:15:33 +00:00
|
|
|
|
|
|
|
|
|
$rv = "";
|
|
|
|
|
|
2017-12-02 10:28:13 +00:00
|
|
|
|
while ($line = $sth->fetch()) {
|
2014-04-02 08:15:33 +00:00
|
|
|
|
|
2017-07-02 17:37:52 +00:00
|
|
|
|
if ($line["match_on"]) {
|
|
|
|
|
$feeds = json_decode($line["match_on"], true);
|
|
|
|
|
$feeds_fmt = [];
|
|
|
|
|
|
|
|
|
|
foreach ($feeds as $feed_id) {
|
|
|
|
|
|
|
|
|
|
if (strpos($feed_id, "CAT:") === 0) {
|
|
|
|
|
$feed_id = (int)substr($feed_id, 4);
|
2021-02-15 12:43:07 +00:00
|
|
|
|
array_push($feeds_fmt, Feeds::_get_cat_title($feed_id));
|
2017-07-02 17:37:52 +00:00
|
|
|
|
} else {
|
|
|
|
|
if ($feed_id)
|
2021-02-15 12:43:07 +00:00
|
|
|
|
array_push($feeds_fmt, Feeds::_get_title((int)$feed_id));
|
2017-07-02 17:37:52 +00:00
|
|
|
|
else
|
|
|
|
|
array_push($feeds_fmt, __("All feeds"));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$where = implode(", ", $feeds_fmt);
|
|
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
2017-12-03 06:26:11 +00:00
|
|
|
|
$where = $line["cat_filter"] ?
|
2021-07-28 09:59:47 +00:00
|
|
|
|
Feeds::_get_cat_title($line["cat_id"] ?? 0) :
|
2017-07-02 17:37:52 +00:00
|
|
|
|
($line["feed_id"] ?
|
2021-02-15 12:43:07 +00:00
|
|
|
|
Feeds::_get_title($line["feed_id"]) : __("All feeds"));
|
2017-07-02 17:37:52 +00:00
|
|
|
|
}
|
2014-04-02 08:15:33 +00:00
|
|
|
|
|
|
|
|
|
# $where = $line["cat_id"] . "/" . $line["feed_id"];
|
|
|
|
|
|
2017-12-03 06:26:11 +00:00
|
|
|
|
$inverse = $line["inverse"] ? "inverse" : "";
|
2014-04-02 08:15:33 +00:00
|
|
|
|
|
2018-12-19 09:08:06 +00:00
|
|
|
|
$rv .= "<li class='$inverse'>" . T_sprintf("%s on %s in %s %s",
|
2015-12-03 07:17:32 +00:00
|
|
|
|
htmlspecialchars($line["reg_exp"]),
|
2014-04-02 08:15:33 +00:00
|
|
|
|
$line["field"],
|
|
|
|
|
$where,
|
2018-12-19 09:08:06 +00:00
|
|
|
|
$line["inverse"] ? __("(inverse)") : "") . "</li>";
|
2014-04-02 08:15:33 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return $rv;
|
|
|
|
|
}
|
2011-12-13 10:09:34 +00:00
|
|
|
|
|
2021-11-13 16:21:58 +00:00
|
|
|
|
function getfiltertree(): void {
|
2011-12-13 10:09:34 +00:00
|
|
|
|
$root = array();
|
|
|
|
|
$root['id'] = 'root';
|
|
|
|
|
$root['name'] = __('Filters');
|
2020-07-01 06:48:27 +00:00
|
|
|
|
$root['enabled'] = true;
|
2011-12-13 10:09:34 +00:00
|
|
|
|
$root['items'] = array();
|
|
|
|
|
|
2021-02-06 13:13:11 +00:00
|
|
|
|
$filter_search = ($_SESSION["prefs_filter_search"] ?? "");
|
2012-08-31 11:14:12 +00:00
|
|
|
|
|
2017-12-02 10:28:13 +00:00
|
|
|
|
$sth = $this->pdo->prepare("SELECT *,
|
2012-08-31 11:40:19 +00: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 14:50:56 +00: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 08:54:37 +00: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 14:50:56 +00: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
|
2017-12-02 10:28:13 +00:00
|
|
|
|
owner_uid = ? ORDER BY order_id, title");
|
|
|
|
|
$sth->execute([$_SESSION['uid']]);
|
2012-08-31 11:14:12 +00:00
|
|
|
|
|
2012-08-31 08:54:37 +00:00
|
|
|
|
$folder = array();
|
|
|
|
|
$folder['items'] = array();
|
|
|
|
|
|
2017-12-02 10:28:13 +00:00
|
|
|
|
while ($line = $sth->fetch()) {
|
2011-12-13 10:09:34 +00:00
|
|
|
|
|
2021-02-15 13:07:22 +00:00
|
|
|
|
$name = $this->_get_name($line["id"]);
|
2011-12-13 10:09:34 +00:00
|
|
|
|
|
2012-08-31 11:14:12 +00:00
|
|
|
|
$match_ok = false;
|
|
|
|
|
if ($filter_search) {
|
2018-12-19 06:04:04 +00:00
|
|
|
|
if (mb_strpos($line['title'], $filter_search) !== false) {
|
|
|
|
|
$match_ok = true;
|
|
|
|
|
}
|
|
|
|
|
|
2018-03-21 10:38:36 +00:00
|
|
|
|
$rules_sth = $this->pdo->prepare("SELECT reg_exp
|
2017-12-02 10:28:13 +00:00
|
|
|
|
FROM ttrss_filters2_rules WHERE filter_id = ?");
|
|
|
|
|
$rules_sth->execute([$line['id']]);
|
2012-08-31 11:14:12 +00:00
|
|
|
|
|
2017-12-02 10:28:13 +00:00
|
|
|
|
while ($rule_line = $rules_sth->fetch()) {
|
2012-08-31 11:14:12 +00:00
|
|
|
|
if (mb_strpos($rule_line['reg_exp'], $filter_search) !== false) {
|
|
|
|
|
$match_ok = true;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-12-20 04:56:16 +00:00
|
|
|
|
if ($line['action_id'] == self::ACTION_LABEL) {
|
2017-12-02 10:28:13 +00:00
|
|
|
|
$label_sth = $this->pdo->prepare("SELECT fg_color, bg_color
|
|
|
|
|
FROM ttrss_labels2 WHERE caption = ? AND
|
|
|
|
|
owner_uid = ?");
|
|
|
|
|
$label_sth->execute([$line['action_param'], $_SESSION['uid']]);
|
2012-08-31 11:40:19 +00:00
|
|
|
|
|
2017-12-02 10:28:13 +00:00
|
|
|
|
if ($label_row = $label_sth->fetch()) {
|
2018-12-06 05:26:52 +00:00
|
|
|
|
//$fg_color = $label_row["fg_color"];
|
2017-12-02 10:28:13 +00:00
|
|
|
|
$bg_color = $label_row["bg_color"];
|
2012-08-31 11:40:19 +00:00
|
|
|
|
|
2018-12-06 05:26:52 +00:00
|
|
|
|
$name[1] = "<i class=\"material-icons\" style='color : $bg_color; margin-right : 4px'>label</i>" . $name[1];
|
2012-08-31 11:40:19 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2012-08-30 14:50:56 +00:00
|
|
|
|
$filter = array();
|
|
|
|
|
$filter['id'] = 'FILTER:' . $line['id'];
|
|
|
|
|
$filter['bare_id'] = $line['id'];
|
|
|
|
|
$filter['name'] = $name[0];
|
|
|
|
|
$filter['param'] = $name[1];
|
|
|
|
|
$filter['checkbox'] = false;
|
2020-09-23 10:04:26 +00:00
|
|
|
|
$filter['last_triggered'] = $line["last_triggered"] ? TimeHelper::make_local_datetime($line["last_triggered"], false) : null;
|
2020-07-01 06:49:53 +00:00
|
|
|
|
$filter['enabled'] = sql_bool_to_bool($line["enabled"]);
|
2021-02-15 13:07:22 +00:00
|
|
|
|
$filter['rules'] = $this->_get_rules_list($line['id']);
|
2011-12-13 10:09:34 +00:00
|
|
|
|
|
2012-08-31 11:14:12 +00:00
|
|
|
|
if (!$filter_search || $match_ok) {
|
|
|
|
|
array_push($folder['items'], $filter);
|
|
|
|
|
}
|
2011-12-13 10:09:34 +00:00
|
|
|
|
}
|
|
|
|
|
|
2013-03-31 12:52:33 +00:00
|
|
|
|
$root['items'] = $folder['items'];
|
2012-08-31 09:00:23 +00:00
|
|
|
|
|
2011-12-13 10:09:34 +00:00
|
|
|
|
$fl = array();
|
|
|
|
|
$fl['identifier'] = 'id';
|
|
|
|
|
$fl['label'] = 'name';
|
|
|
|
|
$fl['items'] = array($root);
|
|
|
|
|
|
|
|
|
|
print json_encode($fl);
|
|
|
|
|
}
|
|
|
|
|
|
2021-11-13 16:21:58 +00:00
|
|
|
|
function edit(): void {
|
2011-12-13 10:09:34 +00:00
|
|
|
|
|
2021-02-12 11:31:36 +00:00
|
|
|
|
$filter_id = (int) clean($_REQUEST["id"] ?? 0);
|
2011-12-13 10:09:34 +00:00
|
|
|
|
|
2018-03-21 10:38:36 +00:00
|
|
|
|
$sth = $this->pdo->prepare("SELECT * FROM ttrss_filters2
|
2017-12-02 10:28:13 +00:00
|
|
|
|
WHERE id = ? AND owner_uid = ?");
|
|
|
|
|
$sth->execute([$filter_id, $_SESSION['uid']]);
|
2011-12-13 10:09:34 +00:00
|
|
|
|
|
2021-02-21 06:35:07 +00:00
|
|
|
|
if (empty($filter_id) || $row = $sth->fetch()) {
|
|
|
|
|
$rv = [
|
|
|
|
|
"id" => $filter_id,
|
|
|
|
|
"enabled" => $row["enabled"] ?? true,
|
|
|
|
|
"match_any_rule" => $row["match_any_rule"] ?? false,
|
|
|
|
|
"inverse" => $row["inverse"] ?? false,
|
|
|
|
|
"title" => $row["title"] ?? "",
|
|
|
|
|
"rules" => [],
|
|
|
|
|
"actions" => [],
|
|
|
|
|
"filter_types" => [],
|
2021-02-21 07:28:59 +00:00
|
|
|
|
"action_types" => [],
|
|
|
|
|
"plugin_actions" => [],
|
2021-02-21 06:35:07 +00:00
|
|
|
|
"labels" => Labels::get_all($_SESSION["uid"])
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
$res = $this->pdo->query("SELECT id,description
|
|
|
|
|
FROM ttrss_filter_types WHERE id != 5 ORDER BY description");
|
|
|
|
|
|
|
|
|
|
while ($line = $res->fetch()) {
|
|
|
|
|
$rv["filter_types"][$line["id"]] = __($line["description"]);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$res = $this->pdo->query("SELECT id,description FROM ttrss_filter_actions
|
|
|
|
|
ORDER BY name");
|
|
|
|
|
|
|
|
|
|
while ($line = $res->fetch()) {
|
2021-02-21 07:28:59 +00:00
|
|
|
|
$rv["action_types"][$line["id"]] = __($line["description"]);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$filter_actions = PluginHost::getInstance()->get_filter_actions();
|
|
|
|
|
|
|
|
|
|
foreach ($filter_actions as $fclass => $factions) {
|
|
|
|
|
foreach ($factions as $faction) {
|
|
|
|
|
|
|
|
|
|
$rv["plugin_actions"][$fclass . ":" . $faction["action"]] =
|
|
|
|
|
$fclass . ": " . $faction["description"];
|
|
|
|
|
}
|
2021-02-21 06:35:07 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ($filter_id) {
|
|
|
|
|
$rules_sth = $this->pdo->prepare("SELECT * FROM ttrss_filters2_rules
|
|
|
|
|
WHERE filter_id = ? ORDER BY reg_exp, id");
|
|
|
|
|
$rules_sth->execute([$filter_id]);
|
|
|
|
|
|
|
|
|
|
while ($rrow = $rules_sth->fetch(PDO::FETCH_ASSOC)) {
|
|
|
|
|
if ($rrow["match_on"]) {
|
|
|
|
|
$rrow["feed_id"] = json_decode($rrow["match_on"], true);
|
|
|
|
|
} else {
|
|
|
|
|
if ($rrow["cat_filter"]) {
|
|
|
|
|
$feed_id = "CAT:" . (int)$rrow["cat_id"];
|
|
|
|
|
} else {
|
|
|
|
|
$feed_id = (int)$rrow["feed_id"];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$rrow["feed_id"] = ["" . $feed_id]; // set item type to string for in_array()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
unset($rrow["cat_filter"]);
|
|
|
|
|
unset($rrow["cat_id"]);
|
|
|
|
|
unset($rrow["filter_id"]);
|
|
|
|
|
unset($rrow["id"]);
|
|
|
|
|
if (!$rrow["inverse"]) unset($rrow["inverse"]);
|
|
|
|
|
unset($rrow["match_on"]);
|
|
|
|
|
|
|
|
|
|
$rrow["name"] = $this->_get_rule_name($rrow);
|
|
|
|
|
|
|
|
|
|
array_push($rv["rules"], $rrow);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$actions_sth = $this->pdo->prepare("SELECT * FROM ttrss_filters2_actions
|
|
|
|
|
WHERE filter_id = ? ORDER BY id");
|
|
|
|
|
$actions_sth->execute([$filter_id]);
|
|
|
|
|
|
|
|
|
|
while ($arow = $actions_sth->fetch(PDO::FETCH_ASSOC)) {
|
|
|
|
|
$arow["action_param_label"] = $arow["action_param"];
|
|
|
|
|
|
|
|
|
|
unset($arow["filter_id"]);
|
|
|
|
|
unset($arow["id"]);
|
|
|
|
|
|
|
|
|
|
$arow["name"] = $this->_get_action_name($arow);
|
|
|
|
|
|
|
|
|
|
array_push($rv["actions"], $arow);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
print json_encode($rv);
|
|
|
|
|
}
|
2011-12-13 10:09:34 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-11-13 16:21:58 +00:00
|
|
|
|
/**
|
|
|
|
|
* @param array<string, mixed>|null $rule
|
|
|
|
|
*/
|
|
|
|
|
private function _get_rule_name(?array $rule = null): string {
|
2017-12-03 20:35:38 +00:00
|
|
|
|
if (!$rule) $rule = json_decode(clean($_REQUEST["rule"]), true);
|
2011-12-13 10:09:34 +00:00
|
|
|
|
|
2017-07-02 17:37:52 +00:00
|
|
|
|
$feeds = $rule["feed_id"];
|
|
|
|
|
$feeds_fmt = [];
|
2011-12-13 10:09:34 +00:00
|
|
|
|
|
2017-07-02 17:37:52 +00:00
|
|
|
|
if (!is_array($feeds)) $feeds = [$feeds];
|
2017-07-02 17:27:21 +00:00
|
|
|
|
|
2017-07-02 17:37:52 +00:00
|
|
|
|
foreach ($feeds as $feed_id) {
|
|
|
|
|
|
|
|
|
|
if (strpos($feed_id, "CAT:") === 0) {
|
|
|
|
|
$feed_id = (int)substr($feed_id, 4);
|
2021-02-15 12:43:07 +00:00
|
|
|
|
array_push($feeds_fmt, Feeds::_get_cat_title($feed_id));
|
2017-07-02 17:37:52 +00:00
|
|
|
|
} else {
|
|
|
|
|
if ($feed_id)
|
2021-02-15 12:43:07 +00:00
|
|
|
|
array_push($feeds_fmt, Feeds::_get_title((int)$feed_id));
|
2017-07-02 17:37:52 +00:00
|
|
|
|
else
|
|
|
|
|
array_push($feeds_fmt, __("All feeds"));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$feed = implode(", ", $feeds_fmt);
|
2011-12-13 10:09:34 +00:00
|
|
|
|
|
2017-12-02 10:28:13 +00:00
|
|
|
|
$sth = $this->pdo->prepare("SELECT description FROM ttrss_filter_types
|
|
|
|
|
WHERE id = ?");
|
|
|
|
|
$sth->execute([(int)$rule["filter_type"]]);
|
|
|
|
|
|
|
|
|
|
if ($row = $sth->fetch()) {
|
|
|
|
|
$filter_type = $row["description"];
|
|
|
|
|
} else {
|
|
|
|
|
$filter_type = "?UNKNOWN?";
|
|
|
|
|
}
|
2012-08-26 08:36:08 +00:00
|
|
|
|
|
2014-04-02 08:15:33 +00:00
|
|
|
|
$inverse = isset($rule["inverse"]) ? "inverse" : "";
|
|
|
|
|
|
|
|
|
|
return "<span class='filterRule $inverse'>" .
|
2015-12-03 07:17:32 +00:00
|
|
|
|
T_sprintf("%s on %s in %s %s", htmlspecialchars($rule["reg_exp"]),
|
2020-11-27 09:27:12 +00:00
|
|
|
|
"<span class='field'>$filter_type</span>", "<span class='feed'>$feed</span>", isset($rule["inverse"]) ? __("(inverse)") : "") . "</span>";
|
2012-08-30 14:50:56 +00:00
|
|
|
|
}
|
2011-12-27 08:52:33 +00:00
|
|
|
|
|
2021-11-13 16:21:58 +00:00
|
|
|
|
function printRuleName(): void {
|
2021-02-15 13:07:22 +00:00
|
|
|
|
print $this->_get_rule_name(json_decode(clean($_REQUEST["rule"]), true));
|
2012-08-30 14:50:56 +00:00
|
|
|
|
}
|
2011-12-13 10:09:34 +00:00
|
|
|
|
|
2021-11-13 16:21:58 +00:00
|
|
|
|
/**
|
|
|
|
|
* @param array<string, mixed>|null $action
|
|
|
|
|
*/
|
|
|
|
|
private function _get_action_name(?array $action = null): string {
|
|
|
|
|
if (!$action) {
|
|
|
|
|
return "";
|
|
|
|
|
}
|
|
|
|
|
|
2017-12-02 10:28:13 +00:00
|
|
|
|
$sth = $this->pdo->prepare("SELECT description FROM
|
|
|
|
|
ttrss_filter_actions WHERE id = ?");
|
|
|
|
|
$sth->execute([(int)$action["action_id"]]);
|
|
|
|
|
|
|
|
|
|
$title = "";
|
|
|
|
|
|
|
|
|
|
if ($row = $sth->fetch()) {
|
2011-12-13 10:09:34 +00:00
|
|
|
|
|
2017-12-02 10:28:13 +00:00
|
|
|
|
$title = __($row["description"]);
|
2011-12-13 10:09:34 +00:00
|
|
|
|
|
2021-12-20 04:56:16 +00:00
|
|
|
|
if ($action["action_id"] == self::ACTION_PLUGIN) {
|
2017-12-02 10:28:13 +00:00
|
|
|
|
list ($pfclass, $pfaction) = explode(":", $action["action_param"]);
|
2015-08-11 20:28:41 +00:00
|
|
|
|
|
2017-12-02 10:28:13 +00:00
|
|
|
|
$filter_actions = PluginHost::getInstance()->get_filter_actions();
|
2015-08-11 20:28:41 +00:00
|
|
|
|
|
2017-12-02 10:28:13 +00:00
|
|
|
|
foreach ($filter_actions as $fclass => $factions) {
|
|
|
|
|
foreach ($factions as $faction) {
|
|
|
|
|
if ($pfaction == $faction["action"] && $pfclass == $fclass) {
|
|
|
|
|
$title .= ": " . $fclass . ": " . $faction["description"];
|
|
|
|
|
break;
|
|
|
|
|
}
|
2015-08-11 20:28:41 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2021-12-20 04:56:16 +00:00
|
|
|
|
} else if (in_array($action["action_id"], self::PARAM_ACTIONS)) {
|
|
|
|
|
$title .= ": " . $action["action_param"];
|
2015-08-11 20:28:41 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2012-08-30 14:50:56 +00:00
|
|
|
|
return $title;
|
|
|
|
|
}
|
2011-12-13 10:09:34 +00:00
|
|
|
|
|
2021-11-13 16:21:58 +00:00
|
|
|
|
function printActionName(): void {
|
|
|
|
|
print $this->_get_action_name(json_decode(clean($_REQUEST["action"] ?? ""), true));
|
2012-08-30 14:50:56 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-11-13 16:21:58 +00:00
|
|
|
|
function editSave(): void {
|
2021-11-14 17:59:02 +00:00
|
|
|
|
$filter_id = (int) clean($_REQUEST["id"]);
|
2021-02-05 20:41:32 +00:00
|
|
|
|
$enabled = checkbox_to_sql_bool(clean($_REQUEST["enabled"] ?? false));
|
2021-02-15 14:07:50 +00:00
|
|
|
|
$match_any_rule = checkbox_to_sql_bool(clean($_REQUEST["match_any_rule"] ?? false));
|
2021-02-05 20:41:32 +00:00
|
|
|
|
$inverse = checkbox_to_sql_bool(clean($_REQUEST["inverse"] ?? false));
|
2017-12-03 20:35:38 +00:00
|
|
|
|
$title = clean($_REQUEST["title"]);
|
2012-08-30 14:50:56 +00:00
|
|
|
|
|
2017-12-02 10:28:13 +00:00
|
|
|
|
$this->pdo->beginTransaction();
|
2012-08-30 14:50:56 +00:00
|
|
|
|
|
2017-12-02 10:28:13 +00:00
|
|
|
|
$sth = $this->pdo->prepare("UPDATE ttrss_filters2 SET enabled = ?,
|
|
|
|
|
match_any_rule = ?,
|
|
|
|
|
inverse = ?,
|
|
|
|
|
title = ?
|
|
|
|
|
WHERE id = ? AND owner_uid = ?");
|
|
|
|
|
|
|
|
|
|
$sth->execute([$enabled, $match_any_rule, $inverse, $title, $filter_id, $_SESSION['uid']]);
|
2012-08-30 14:50:56 +00:00
|
|
|
|
|
2021-02-15 13:07:22 +00:00
|
|
|
|
$this->_save_rules_and_actions($filter_id);
|
2011-12-13 10:09:34 +00:00
|
|
|
|
|
2017-12-02 10:28:13 +00:00
|
|
|
|
$this->pdo->commit();
|
2011-12-13 10:09:34 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-11-13 16:21:58 +00:00
|
|
|
|
function remove(): void {
|
2011-12-13 10:09:34 +00:00
|
|
|
|
|
2017-12-03 20:35:38 +00:00
|
|
|
|
$ids = explode(",", clean($_REQUEST["ids"]));
|
2017-12-02 10:28:13 +00:00
|
|
|
|
$ids_qmarks = arr_qmarks($ids);
|
2011-12-13 10:09:34 +00:00
|
|
|
|
|
2018-03-21 10:38:36 +00:00
|
|
|
|
$sth = $this->pdo->prepare("DELETE FROM ttrss_filters2 WHERE id IN ($ids_qmarks)
|
2017-12-02 10:28:13 +00:00
|
|
|
|
AND owner_uid = ?");
|
|
|
|
|
$sth->execute(array_merge($ids, [$_SESSION['uid']]));
|
2011-12-13 10:09:34 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-11-14 17:59:02 +00:00
|
|
|
|
private function _save_rules_and_actions(int $filter_id): void {
|
2011-12-13 10:09:34 +00:00
|
|
|
|
|
2017-12-02 10:28:13 +00:00
|
|
|
|
$sth = $this->pdo->prepare("DELETE FROM ttrss_filters2_rules WHERE filter_id = ?");
|
|
|
|
|
$sth->execute([$filter_id]);
|
2011-12-13 10:09:34 +00:00
|
|
|
|
|
2017-12-02 10:28:13 +00:00
|
|
|
|
$sth = $this->pdo->prepare("DELETE FROM ttrss_filters2_actions WHERE filter_id = ?");
|
|
|
|
|
$sth->execute([$filter_id]);
|
|
|
|
|
|
2021-02-05 20:41:32 +00:00
|
|
|
|
if (!is_array(clean($_REQUEST["rule"] ?? ""))) $_REQUEST["rule"] = [];
|
|
|
|
|
if (!is_array(clean($_REQUEST["action"] ?? ""))) $_REQUEST["action"] = [];
|
2018-03-21 10:38:36 +00:00
|
|
|
|
|
2012-08-30 14:50:56 +00:00
|
|
|
|
if ($filter_id) {
|
|
|
|
|
/* create rules */
|
2011-12-13 10:09:34 +00:00
|
|
|
|
|
2012-08-30 14:50:56 +00:00
|
|
|
|
$rules = array();
|
|
|
|
|
$actions = array();
|
2011-12-13 10:09:34 +00:00
|
|
|
|
|
2017-12-03 20:35:38 +00:00
|
|
|
|
foreach (clean($_REQUEST["rule"]) as $rule) {
|
2012-08-30 14:50:56 +00:00
|
|
|
|
$rule = json_decode($rule, true);
|
|
|
|
|
unset($rule["id"]);
|
2011-12-13 10:09:34 +00:00
|
|
|
|
|
2012-08-30 14:50:56 +00:00
|
|
|
|
if (array_search($rule, $rules) === false) {
|
|
|
|
|
array_push($rules, $rule);
|
|
|
|
|
}
|
|
|
|
|
}
|
2012-08-26 08:36:08 +00:00
|
|
|
|
|
2017-12-03 20:35:38 +00:00
|
|
|
|
foreach (clean($_REQUEST["action"]) as $action) {
|
2012-08-30 14:50:56 +00:00
|
|
|
|
$action = json_decode($action, true);
|
|
|
|
|
unset($action["id"]);
|
2011-12-27 08:52:33 +00:00
|
|
|
|
|
2012-08-30 14:50:56 +00:00
|
|
|
|
if (array_search($action, $actions) === false) {
|
|
|
|
|
array_push($actions, $action);
|
|
|
|
|
}
|
|
|
|
|
}
|
2011-12-13 10:09:34 +00:00
|
|
|
|
|
2017-12-02 10:28:13 +00:00
|
|
|
|
$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, ?, ?)");
|
|
|
|
|
|
2012-08-30 14:50:56 +00:00
|
|
|
|
foreach ($rules as $rule) {
|
|
|
|
|
if ($rule) {
|
2011-12-13 10:09:34 +00:00
|
|
|
|
|
2017-12-02 10:28:13 +00:00
|
|
|
|
$reg_exp = trim($rule["reg_exp"]);
|
2017-12-02 19:47:47 +00:00
|
|
|
|
$inverse = isset($rule["inverse"]) ? 1 : 0;
|
2013-03-25 15:46:43 +00:00
|
|
|
|
|
2017-12-02 10:28:13 +00:00
|
|
|
|
$filter_type = (int)trim($rule["filter_type"]);
|
|
|
|
|
$match_on = json_encode($rule["feed_id"]);
|
2011-12-13 10:09:34 +00:00
|
|
|
|
|
2017-12-02 10:28:13 +00:00
|
|
|
|
$rsth->execute([$filter_id, $reg_exp, $filter_type, $match_on, $inverse]);
|
2012-08-30 14:50:56 +00:00
|
|
|
|
}
|
2011-12-13 10:09:34 +00:00
|
|
|
|
}
|
|
|
|
|
|
2017-12-02 10:28:13 +00:00
|
|
|
|
$asth = $this->pdo->prepare("INSERT INTO ttrss_filters2_actions
|
|
|
|
|
(filter_id, action_id, action_param) VALUES
|
|
|
|
|
(?, ?, ?)");
|
|
|
|
|
|
2012-08-30 14:50:56 +00:00
|
|
|
|
foreach ($actions as $action) {
|
|
|
|
|
if ($action) {
|
|
|
|
|
|
2017-12-02 10:28:13 +00:00
|
|
|
|
$action_id = (int)$action["action_id"];
|
|
|
|
|
$action_param = $action["action_param"];
|
|
|
|
|
$action_param_label = $action["action_param_label"];
|
2012-08-30 14:50:56 +00:00
|
|
|
|
|
2021-12-20 04:56:16 +00:00
|
|
|
|
if ($action_id == self::ACTION_LABEL) {
|
2012-08-30 14:50:56 +00:00
|
|
|
|
$action_param = $action_param_label;
|
|
|
|
|
}
|
2011-12-13 10:09:34 +00:00
|
|
|
|
|
2021-12-20 04:56:16 +00:00
|
|
|
|
if ($action_id == self::ACTION_SCORE) {
|
2017-12-02 10:28:13 +00:00
|
|
|
|
$action_param = (int)str_replace("+", "", $action_param);
|
2012-08-30 14:50:56 +00:00
|
|
|
|
}
|
2011-12-13 10:09:34 +00:00
|
|
|
|
|
2021-12-20 04:56:16 +00:00
|
|
|
|
if (in_array($action_id, [self::ACTION_TAG, self::ACTION_REMOVE_TAG])) {
|
|
|
|
|
$action_param = implode(", ", FeedItem_Common::normalize_categories(
|
|
|
|
|
explode(",", $action_param)));
|
|
|
|
|
}
|
|
|
|
|
|
2017-12-02 10:28:13 +00:00
|
|
|
|
$asth->execute([$filter_id, $action_id, $action_param]);
|
2012-08-30 14:50:56 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2011-12-13 10:09:34 +00:00
|
|
|
|
}
|
2012-08-30 14:50:56 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-11-13 16:21:58 +00:00
|
|
|
|
function add(): void {
|
2021-02-15 14:07:50 +00:00
|
|
|
|
$enabled = checkbox_to_sql_bool(clean($_REQUEST["enabled"] ?? false));
|
|
|
|
|
$match_any_rule = checkbox_to_sql_bool(clean($_REQUEST["match_any_rule"] ?? false));
|
2017-12-03 20:35:38 +00:00
|
|
|
|
$title = clean($_REQUEST["title"]);
|
2021-02-15 14:07:50 +00:00
|
|
|
|
$inverse = checkbox_to_sql_bool(clean($_REQUEST["inverse"] ?? false));
|
2012-08-30 14:50:56 +00:00
|
|
|
|
|
2017-12-02 10:28:13 +00:00
|
|
|
|
$this->pdo->beginTransaction();
|
2012-08-30 14:50:56 +00:00
|
|
|
|
|
|
|
|
|
/* create base filter */
|
|
|
|
|
|
2017-12-02 10:28:13 +00:00
|
|
|
|
$sth = $this->pdo->prepare("INSERT INTO ttrss_filters2
|
2013-06-25 22:17:49 +00:00
|
|
|
|
(owner_uid, match_any_rule, enabled, title, inverse) VALUES
|
2017-12-02 10:28:13 +00:00
|
|
|
|
(?, ?, ?, ?, ?)");
|
2012-08-30 14:50:56 +00:00
|
|
|
|
|
2017-12-02 10:28:13 +00:00
|
|
|
|
$sth->execute([$_SESSION['uid'], $match_any_rule, $enabled, $title, $inverse]);
|
2012-08-30 14:50:56 +00:00
|
|
|
|
|
2017-12-02 10:28:13 +00:00
|
|
|
|
$sth = $this->pdo->prepare("SELECT MAX(id) AS id FROM ttrss_filters2
|
|
|
|
|
WHERE owner_uid = ?");
|
|
|
|
|
$sth->execute([$_SESSION['uid']]);
|
2012-08-30 14:50:56 +00:00
|
|
|
|
|
2017-12-02 10:28:13 +00:00
|
|
|
|
if ($row = $sth->fetch()) {
|
|
|
|
|
$filter_id = $row['id'];
|
2021-02-15 13:07:22 +00:00
|
|
|
|
$this->_save_rules_and_actions($filter_id);
|
2017-12-02 10:28:13 +00:00
|
|
|
|
}
|
2012-08-30 14:50:56 +00:00
|
|
|
|
|
2017-12-02 10:28:13 +00:00
|
|
|
|
$this->pdo->commit();
|
2011-12-13 10:09:34 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-11-13 16:21:58 +00:00
|
|
|
|
function index(): void {
|
2011-12-13 10:09:34 +00:00
|
|
|
|
if (array_key_exists("search", $_REQUEST)) {
|
2020-12-12 16:14:40 +00:00
|
|
|
|
$filter_search = clean($_REQUEST["search"]);
|
2011-12-13 10:09:34 +00:00
|
|
|
|
$_SESSION["prefs_filter_search"] = $filter_search;
|
|
|
|
|
} else {
|
2021-02-06 13:13:11 +00:00
|
|
|
|
$filter_search = ($_SESSION["prefs_filter_search"] ?? "");
|
2011-12-13 10:09:34 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-02-13 11:05:25 +00:00
|
|
|
|
?>
|
|
|
|
|
<div dojoType='dijit.layout.BorderContainer' gutters='false'>
|
|
|
|
|
<div style='padding : 0px' dojoType='dijit.layout.ContentPane' region='top'>
|
|
|
|
|
<div dojoType='fox.Toolbar'>
|
|
|
|
|
|
|
|
|
|
<div style='float : right; padding-right : 4px;'>
|
|
|
|
|
<input dojoType="dijit.form.TextBox" id="filter_search" size="20" type="search"
|
2021-02-14 06:15:51 +00:00
|
|
|
|
value="<?= htmlspecialchars($filter_search) ?>">
|
2021-02-13 11:05:25 +00:00
|
|
|
|
<button dojoType="dijit.form.Button" onclick="dijit.byId('filterTree').reload()">
|
2021-02-14 06:15:51 +00:00
|
|
|
|
<?= __('Search') ?></button>
|
2021-02-13 11:05:25 +00:00
|
|
|
|
</div>
|
2011-12-13 10:09:34 +00:00
|
|
|
|
|
2021-02-13 11:05:25 +00:00
|
|
|
|
<div dojoType="fox.form.DropDownButton">
|
2021-02-14 06:15:51 +00:00
|
|
|
|
<span><?= __('Select') ?></span>
|
2021-02-13 11:05:25 +00:00
|
|
|
|
<div dojoType="dijit.Menu" style="display: none;">
|
|
|
|
|
<div onclick="dijit.byId('filterTree').model.setAllChecked(true)"
|
2021-02-14 06:15:51 +00:00
|
|
|
|
dojoType="dijit.MenuItem"><?= __('All') ?></div>
|
2021-02-13 11:05:25 +00:00
|
|
|
|
<div onclick="dijit.byId('filterTree').model.setAllChecked(false)"
|
2021-02-14 06:15:51 +00:00
|
|
|
|
dojoType="dijit.MenuItem"><?= __('None') ?></div>
|
2021-02-13 11:05:25 +00:00
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2011-12-13 10:09:34 +00:00
|
|
|
|
|
2021-02-13 11:05:25 +00:00
|
|
|
|
<button dojoType="dijit.form.Button" onclick="return Filters.edit()">
|
2021-02-14 06:15:51 +00:00
|
|
|
|
<?= __('Create filter') ?></button>
|
2021-02-13 11:05:25 +00:00
|
|
|
|
<button dojoType="dijit.form.Button" onclick="return dijit.byId('filterTree').joinSelectedFilters()">
|
2021-02-14 06:15:51 +00:00
|
|
|
|
<?= __('Combine') ?></button>
|
2021-02-13 11:05:25 +00:00
|
|
|
|
<button dojoType="dijit.form.Button" onclick="return dijit.byId('filterTree').removeSelectedFilters()">
|
2021-02-14 06:15:51 +00:00
|
|
|
|
<?= __('Remove') ?></button>
|
2022-06-05 08:41:28 +00:00
|
|
|
|
<button dojoType="dijit.form.Button" onclick="return dijit.byId('filterTree').resetFilterOrder()">
|
|
|
|
|
<?= __('Reset sort order') ?></button>
|
|
|
|
|
<button dojoType="dijit.form.Button" onclick="return dijit.byId('filterTree').toggleRules()">
|
|
|
|
|
<?= __('Toggle rule display') ?></button>
|
2021-02-13 11:05:25 +00:00
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div style='padding : 0px' dojoType='dijit.layout.ContentPane' region='center'>
|
|
|
|
|
<div dojoType="fox.PrefFilterStore" 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="Filters"
|
|
|
|
|
childrenAttrs="items" checkboxStrict="false" checkboxAll="false">
|
|
|
|
|
</div>
|
|
|
|
|
<div dojoType="fox.PrefFilterTree" id="filterTree" dndController="dijit.tree.dndSource"
|
|
|
|
|
betweenThreshold="5" model="filterModel" openOnClick="true">
|
|
|
|
|
<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:')) {
|
|
|
|
|
Filters.edit(bare_id);
|
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<?php PluginHost::getInstance()->run_hooks(PluginHost::HOOK_PREFS_TAB, "prefFilters") ?>
|
2011-12-13 10:09:34 +00:00
|
|
|
|
</div>
|
2021-02-13 11:05:25 +00:00
|
|
|
|
<?php
|
2011-12-13 10:09:34 +00:00
|
|
|
|
}
|
2012-08-30 14:50:56 +00:00
|
|
|
|
|
2021-11-13 16:21:58 +00:00
|
|
|
|
function editrule(): void {
|
2021-11-14 17:59:02 +00:00
|
|
|
|
/** @var array<int, int|string> */
|
|
|
|
|
$feed_ids = explode(",", clean($_REQUEST["ids"]));
|
2021-02-21 06:35:07 +00:00
|
|
|
|
|
|
|
|
|
print json_encode([
|
2021-02-21 10:08:34 +00:00
|
|
|
|
"multiselect" => $this->_feed_multi_select("feed_id", $feed_ids, 'required="1" style="width : 100%; height : 300px" dojoType="fox.form.ValidationMultiSelect"')
|
2021-02-21 06:35:07 +00:00
|
|
|
|
]);
|
2012-08-30 14:50:56 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-11-13 16:21:58 +00:00
|
|
|
|
/**
|
|
|
|
|
* @return array<int, string>
|
|
|
|
|
*/
|
|
|
|
|
private function _get_name(int $id): array {
|
2013-03-31 12:40:24 +00:00
|
|
|
|
|
2017-12-02 10:28:13 +00:00
|
|
|
|
$sth = $this->pdo->prepare(
|
2019-03-05 05:52:45 +00:00
|
|
|
|
"SELECT title,match_any_rule,f.inverse AS inverse,COUNT(DISTINCT r.id) AS num_rules,COUNT(DISTINCT a.id) AS num_actions
|
2013-04-01 12:06:04 +00:00
|
|
|
|
FROM ttrss_filters2 AS f LEFT JOIN ttrss_filters2_rules AS r
|
|
|
|
|
ON (r.filter_id = f.id)
|
|
|
|
|
LEFT JOIN ttrss_filters2_actions AS a
|
2019-03-05 05:52:45 +00:00
|
|
|
|
ON (a.filter_id = f.id) WHERE f.id = ? GROUP BY f.title, f.match_any_rule, f.inverse");
|
2017-12-02 10:28:13 +00:00
|
|
|
|
$sth->execute([$id]);
|
2013-03-31 12:40:24 +00:00
|
|
|
|
|
2017-12-02 10:28:13 +00:00
|
|
|
|
if ($row = $sth->fetch()) {
|
2013-03-31 12:40:24 +00:00
|
|
|
|
|
2017-12-02 10:28:13 +00:00
|
|
|
|
$title = $row["title"];
|
|
|
|
|
$num_rules = $row["num_rules"];
|
|
|
|
|
$num_actions = $row["num_actions"];
|
2017-12-03 06:26:11 +00:00
|
|
|
|
$match_any_rule = $row["match_any_rule"];
|
2019-03-05 05:52:45 +00:00
|
|
|
|
$inverse = $row["inverse"];
|
2013-03-31 12:40:24 +00:00
|
|
|
|
|
2017-12-02 10:28:13 +00:00
|
|
|
|
if (!$title) $title = __("[No caption]");
|
2012-08-30 14:50:56 +00:00
|
|
|
|
|
2017-12-02 10:28:13 +00:00
|
|
|
|
$title = sprintf(_ngettext("%s (%d rule)", "%s (%d rules)", (int) $num_rules), $title, $num_rules);
|
2015-08-17 09:33:07 +00:00
|
|
|
|
|
2018-03-21 10:38:36 +00:00
|
|
|
|
$sth = $this->pdo->prepare("SELECT * FROM ttrss_filters2_actions
|
2017-12-02 10:28:13 +00:00
|
|
|
|
WHERE filter_id = ? ORDER BY id LIMIT 1");
|
|
|
|
|
$sth->execute([$id]);
|
2013-03-25 15:58:37 +00:00
|
|
|
|
|
2017-12-02 10:28:13 +00:00
|
|
|
|
$actions = "";
|
2013-03-31 12:52:33 +00:00
|
|
|
|
|
2017-12-02 10:28:13 +00:00
|
|
|
|
if ($line = $sth->fetch()) {
|
2021-02-15 13:07:22 +00:00
|
|
|
|
$actions = $this->_get_action_name($line);
|
2013-03-31 12:52:33 +00:00
|
|
|
|
|
2017-12-02 10:28:13 +00:00
|
|
|
|
$num_actions -= 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ($match_any_rule) $title .= " (" . __("matches any rule") . ")";
|
2019-03-05 05:52:45 +00:00
|
|
|
|
if ($inverse) $title .= " (" . __("inverse") . ")";
|
2012-08-30 14:50:56 +00:00
|
|
|
|
|
2017-12-02 10:28:13 +00:00
|
|
|
|
if ($num_actions > 0)
|
|
|
|
|
$actions = sprintf(_ngettext("%s (+%d action)", "%s (+%d actions)", (int) $num_actions), $actions, $num_actions);
|
2015-08-17 09:33:07 +00:00
|
|
|
|
|
2017-12-02 10:28:13 +00:00
|
|
|
|
return [$title, $actions];
|
|
|
|
|
}
|
2012-08-30 14:50:56 +00:00
|
|
|
|
|
2017-12-02 10:28:13 +00:00
|
|
|
|
return [];
|
2012-08-30 14:50:56 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-11-13 16:21:58 +00:00
|
|
|
|
function join(): void {
|
|
|
|
|
/** @var array<int, int> */
|
|
|
|
|
$ids = array_map("intval", explode(",", clean($_REQUEST["ids"])));
|
2012-08-30 14:50:56 +00:00
|
|
|
|
|
|
|
|
|
if (count($ids) > 1) {
|
|
|
|
|
$base_id = array_shift($ids);
|
2017-12-02 10:28:13 +00:00
|
|
|
|
$ids_qmarks = arr_qmarks($ids);
|
2012-08-30 14:50:56 +00:00
|
|
|
|
|
2017-12-02 10:28:13 +00:00
|
|
|
|
$this->pdo->beginTransaction();
|
2012-08-30 14:50:56 +00:00
|
|
|
|
|
2017-12-02 10:28:13 +00:00
|
|
|
|
$sth = $this->pdo->prepare("UPDATE ttrss_filters2_rules
|
|
|
|
|
SET filter_id = ? WHERE filter_id IN ($ids_qmarks)");
|
|
|
|
|
$sth->execute(array_merge([$base_id], $ids));
|
2012-08-30 14:50:56 +00:00
|
|
|
|
|
2017-12-02 10:28:13 +00:00
|
|
|
|
$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();
|
2012-08-30 14:50:56 +00:00
|
|
|
|
|
2021-02-15 13:07:22 +00:00
|
|
|
|
$this->_optimize($base_id);
|
2012-08-30 14:50:56 +00:00
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-11-13 16:21:58 +00:00
|
|
|
|
private function _optimize(int $id): void {
|
2017-12-02 10:28:13 +00:00
|
|
|
|
|
|
|
|
|
$this->pdo->beginTransaction();
|
|
|
|
|
|
|
|
|
|
$sth = $this->pdo->prepare("SELECT * FROM ttrss_filters2_actions
|
|
|
|
|
WHERE filter_id = ?");
|
|
|
|
|
$sth->execute([$id]);
|
2012-08-30 14:50:56 +00:00
|
|
|
|
|
|
|
|
|
$tmp = array();
|
|
|
|
|
$dupe_ids = array();
|
|
|
|
|
|
2017-12-02 10:28:13 +00:00
|
|
|
|
while ($line = $sth->fetch()) {
|
2012-08-30 14:50:56 +00:00
|
|
|
|
$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);
|
2017-12-02 10:28:13 +00:00
|
|
|
|
|
|
|
|
|
$this->pdo->query("DELETE FROM ttrss_filters2_actions WHERE id IN ($ids_str)");
|
2012-08-30 14:50:56 +00:00
|
|
|
|
}
|
|
|
|
|
|
2017-12-02 10:28:13 +00:00
|
|
|
|
$sth = $this->pdo->prepare("SELECT * FROM ttrss_filters2_rules
|
|
|
|
|
WHERE filter_id = ?");
|
|
|
|
|
$sth->execute([$id]);
|
2012-08-30 14:50:56 +00:00
|
|
|
|
|
|
|
|
|
$tmp = array();
|
|
|
|
|
$dupe_ids = array();
|
|
|
|
|
|
2017-12-02 10:28:13 +00:00
|
|
|
|
while ($line = $sth->fetch()) {
|
2012-08-30 14:50:56 +00:00
|
|
|
|
$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);
|
2017-12-02 10:28:13 +00:00
|
|
|
|
|
|
|
|
|
$this->pdo->query("DELETE FROM ttrss_filters2_rules WHERE id IN ($ids_str)");
|
2012-08-30 14:50:56 +00:00
|
|
|
|
}
|
|
|
|
|
|
2017-12-02 10:28:13 +00:00
|
|
|
|
$this->pdo->commit();
|
2012-08-30 14:50:56 +00:00
|
|
|
|
}
|
2021-02-16 15:50:18 +00:00
|
|
|
|
|
2021-11-14 17:59:02 +00:00
|
|
|
|
/**
|
|
|
|
|
* @param array<int, int|string> $default_ids
|
|
|
|
|
*/
|
|
|
|
|
private function _feed_multi_select(string $id, array $default_ids = [], string $attributes = "",
|
|
|
|
|
bool $include_all_feeds = true, ?int $root_id = null, int $nest_level = 0): string {
|
2021-02-16 15:50:18 +00:00
|
|
|
|
|
2021-02-21 06:35:07 +00:00
|
|
|
|
$pdo = Db::pdo();
|
2021-02-16 15:50:18 +00:00
|
|
|
|
|
2021-02-21 06:35:07 +00:00
|
|
|
|
$rv = "";
|
2021-02-16 15:50:18 +00:00
|
|
|
|
|
2021-02-21 06:35:07 +00:00
|
|
|
|
// print_r(in_array("CAT:6",$default_ids));
|
2021-02-16 15:50:18 +00:00
|
|
|
|
|
2021-02-21 06:35:07 +00:00
|
|
|
|
if (!$root_id) {
|
|
|
|
|
$rv .= "<select multiple=\true\" id=\"$id\" name=\"$id\" $attributes>";
|
|
|
|
|
if ($include_all_feeds) {
|
|
|
|
|
$is_selected = (in_array("0", $default_ids)) ? "selected=\"1\"" : "";
|
|
|
|
|
$rv .= "<option $is_selected value=\"0\">".__('All feeds')."</option>";
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-02-16 15:50:18 +00:00
|
|
|
|
|
2021-02-25 11:49:58 +00:00
|
|
|
|
if (get_pref(Prefs::ENABLE_FEED_CATS)) {
|
2021-02-16 15:50:18 +00:00
|
|
|
|
|
2021-02-21 06:35:07 +00:00
|
|
|
|
if (!$root_id) $root_id = null;
|
2021-02-16 15:50:18 +00:00
|
|
|
|
|
2021-02-21 06:35:07 +00:00
|
|
|
|
$sth = $pdo->prepare("SELECT id,title,
|
|
|
|
|
(SELECT COUNT(id) FROM ttrss_feed_categories AS c2 WHERE
|
|
|
|
|
c2.parent_cat = ttrss_feed_categories.id) AS num_children
|
|
|
|
|
FROM ttrss_feed_categories
|
|
|
|
|
WHERE owner_uid = :uid AND
|
|
|
|
|
(parent_cat = :root_id OR (:root_id IS NULL AND parent_cat IS NULL)) ORDER BY title");
|
2021-02-16 15:50:18 +00:00
|
|
|
|
|
2021-02-21 06:35:07 +00:00
|
|
|
|
$sth->execute([":uid" => $_SESSION['uid'], ":root_id" => $root_id]);
|
2021-02-16 15:50:18 +00:00
|
|
|
|
|
2021-02-21 06:35:07 +00:00
|
|
|
|
while ($line = $sth->fetch()) {
|
2021-02-16 15:50:18 +00:00
|
|
|
|
|
2021-02-21 06:35:07 +00:00
|
|
|
|
for ($i = 0; $i < $nest_level; $i++)
|
|
|
|
|
$line["title"] = " " . $line["title"];
|
2021-02-16 15:50:18 +00:00
|
|
|
|
|
2021-02-21 06:35:07 +00:00
|
|
|
|
$is_selected = in_array("CAT:".$line["id"], $default_ids) ? "selected=\"1\"" : "";
|
2021-02-16 15:50:18 +00:00
|
|
|
|
|
2021-02-21 06:35:07 +00:00
|
|
|
|
$rv .= sprintf("<option $is_selected value='CAT:%d'>%s</option>",
|
|
|
|
|
$line["id"], htmlspecialchars($line["title"]));
|
2021-02-16 15:50:18 +00:00
|
|
|
|
|
2021-02-21 06:35:07 +00:00
|
|
|
|
if ($line["num_children"] > 0)
|
2021-02-21 07:28:59 +00:00
|
|
|
|
$rv .= $this->_feed_multi_select($id, $default_ids, $attributes,
|
2021-02-21 06:35:07 +00:00
|
|
|
|
$include_all_feeds, $line["id"], $nest_level+1);
|
2021-02-16 15:50:18 +00:00
|
|
|
|
|
2021-02-21 06:35:07 +00:00
|
|
|
|
$f_sth = $pdo->prepare("SELECT id,title FROM ttrss_feeds
|
|
|
|
|
WHERE cat_id = ? AND owner_uid = ? ORDER BY title");
|
2021-02-16 15:50:18 +00:00
|
|
|
|
|
2021-02-21 06:35:07 +00:00
|
|
|
|
$f_sth->execute([$line['id'], $_SESSION['uid']]);
|
2021-02-16 15:50:18 +00:00
|
|
|
|
|
2021-02-21 06:35:07 +00:00
|
|
|
|
while ($fline = $f_sth->fetch()) {
|
|
|
|
|
$is_selected = (in_array($fline["id"], $default_ids)) ? "selected=\"1\"" : "";
|
2021-02-16 15:50:18 +00:00
|
|
|
|
|
|
|
|
|
$fline["title"] = " " . $fline["title"];
|
|
|
|
|
|
2021-02-21 06:35:07 +00:00
|
|
|
|
for ($i = 0; $i < $nest_level; $i++)
|
|
|
|
|
$fline["title"] = " " . $fline["title"];
|
2021-02-16 15:50:18 +00:00
|
|
|
|
|
2021-02-21 06:35:07 +00:00
|
|
|
|
$rv .= sprintf("<option $is_selected value='%d'>%s</option>",
|
|
|
|
|
$fline["id"], htmlspecialchars($fline["title"]));
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-02-16 15:50:18 +00:00
|
|
|
|
|
2021-02-21 06:35:07 +00:00
|
|
|
|
if (!$root_id) {
|
|
|
|
|
$is_selected = in_array("CAT:0", $default_ids) ? "selected=\"1\"" : "";
|
2021-02-16 15:50:18 +00:00
|
|
|
|
|
2021-02-21 06:35:07 +00:00
|
|
|
|
$rv .= sprintf("<option $is_selected value='CAT:0'>%s</option>",
|
|
|
|
|
__("Uncategorized"));
|
2021-02-16 15:50:18 +00:00
|
|
|
|
|
2021-02-21 06:35:07 +00:00
|
|
|
|
$f_sth = $pdo->prepare("SELECT id,title FROM ttrss_feeds
|
|
|
|
|
WHERE cat_id IS NULL AND owner_uid = ? ORDER BY title");
|
|
|
|
|
$f_sth->execute([$_SESSION['uid']]);
|
2021-02-16 15:50:18 +00:00
|
|
|
|
|
2021-02-21 06:35:07 +00:00
|
|
|
|
while ($fline = $f_sth->fetch()) {
|
|
|
|
|
$is_selected = in_array($fline["id"], $default_ids) ? "selected=\"1\"" : "";
|
2021-02-16 15:50:18 +00:00
|
|
|
|
|
|
|
|
|
$fline["title"] = " " . $fline["title"];
|
|
|
|
|
|
2021-02-21 06:35:07 +00:00
|
|
|
|
for ($i = 0; $i < $nest_level; $i++)
|
|
|
|
|
$fline["title"] = " " . $fline["title"];
|
|
|
|
|
|
|
|
|
|
$rv .= sprintf("<option $is_selected value='%d'>%s</option>",
|
|
|
|
|
$fline["id"], htmlspecialchars($fline["title"]));
|
|
|
|
|
}
|
2021-02-16 15:50:18 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-02-21 06:35:07 +00:00
|
|
|
|
} else {
|
|
|
|
|
$sth = $pdo->prepare("SELECT id,title FROM ttrss_feeds
|
|
|
|
|
WHERE owner_uid = ? ORDER BY title");
|
|
|
|
|
$sth->execute([$_SESSION['uid']]);
|
2021-02-16 15:50:18 +00:00
|
|
|
|
|
2021-02-21 06:35:07 +00:00
|
|
|
|
while ($line = $sth->fetch()) {
|
2021-02-16 15:50:18 +00:00
|
|
|
|
|
2021-02-21 06:35:07 +00:00
|
|
|
|
$is_selected = (in_array($line["id"], $default_ids)) ? "selected=\"1\"" : "";
|
2021-02-16 15:50:18 +00:00
|
|
|
|
|
2021-02-21 06:35:07 +00:00
|
|
|
|
$rv .= sprintf("<option $is_selected value='%d'>%s</option>",
|
|
|
|
|
$line["id"], htmlspecialchars($line["title"]));
|
|
|
|
|
}
|
2021-02-16 15:50:18 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-02-21 06:35:07 +00:00
|
|
|
|
if (!$root_id) {
|
|
|
|
|
$rv .= "</select>";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return $rv;
|
2021-02-16 15:50:18 +00:00
|
|
|
|
}
|
|
|
|
|
}
|