2011-12-12 20:32:29 +01:00
|
|
|
<?php
|
2012-08-17 12:20:55 +02:00
|
|
|
class RPC extends Handler_Protected {
|
2011-12-12 20:32:29 +01:00
|
|
|
|
2021-11-12 03:01:31 +01:00
|
|
|
/*function csrf_ignore(string $method): bool {
|
2021-02-18 09:54:22 +01:00
|
|
|
$csrf_ignored = array("completelabels");
|
2011-12-26 09:02:52 +01:00
|
|
|
|
|
|
|
return array_search($method, $csrf_ignored) !== false;
|
2021-02-20 11:37:21 +01:00
|
|
|
}*/
|
2011-12-26 09:02:52 +01:00
|
|
|
|
2021-11-12 06:42:55 +01:00
|
|
|
/**
|
|
|
|
* @return array<string, string>
|
|
|
|
*/
|
|
|
|
private function _translations_as_array(): array {
|
2021-02-26 07:21:17 +01:00
|
|
|
|
|
|
|
global $text_domains;
|
|
|
|
|
|
|
|
$rv = [];
|
|
|
|
|
|
|
|
foreach (array_keys($text_domains) as $domain) {
|
2021-02-26 07:24:43 +01:00
|
|
|
|
|
|
|
/** @var gettext_reader $l10n */
|
2021-02-26 07:21:17 +01:00
|
|
|
$l10n = _get_reader($domain);
|
|
|
|
|
|
|
|
for ($i = 0; $i < $l10n->total; $i++) {
|
|
|
|
if (isset($l10n->table_originals[$i * 2 + 2]) && $orig = $l10n->get_original_string($i)) {
|
|
|
|
if(strpos($orig, "\000") !== false) { // Plural forms
|
|
|
|
$key = explode(chr(0), $orig);
|
|
|
|
|
|
|
|
$rv[$key[0]] = _ngettext($key[0], $key[1], 1); // Singular
|
|
|
|
$rv[$key[1]] = _ngettext($key[0], $key[1], 2); // Plural
|
|
|
|
} else {
|
|
|
|
$translation = _dgettext($domain,$orig);
|
|
|
|
$rv[$orig] = $translation;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-11-12 06:42:55 +01:00
|
|
|
function togglepref(): void {
|
2017-12-03 21:35:38 +01:00
|
|
|
$key = clean($_REQUEST["key"]);
|
2013-04-17 16:34:18 +02:00
|
|
|
set_pref($key, !get_pref($key));
|
|
|
|
$value = get_pref($key);
|
2011-12-12 20:32:29 +01:00
|
|
|
|
|
|
|
print json_encode(array("param" =>$key, "value" => $value));
|
|
|
|
}
|
|
|
|
|
2021-11-12 06:42:55 +01:00
|
|
|
function setpref(): void {
|
2012-02-13 09:46:20 +01:00
|
|
|
// set_pref escapes input, so no need to double escape it here
|
2017-12-03 21:35:38 +01:00
|
|
|
$key = clean($_REQUEST['key']);
|
2017-12-04 06:27:25 +01:00
|
|
|
$value = $_REQUEST['value'];
|
2011-12-12 20:32:29 +01:00
|
|
|
|
2021-02-25 10:58:00 +01:00
|
|
|
set_pref($key, $value, $_SESSION["uid"], $key != 'USER_STYLESHEET');
|
2011-12-12 20:32:29 +01:00
|
|
|
|
|
|
|
print json_encode(array("param" =>$key, "value" => $value));
|
|
|
|
}
|
|
|
|
|
2021-11-12 06:42:55 +01:00
|
|
|
function mark(): void {
|
2017-12-03 21:35:38 +01:00
|
|
|
$mark = clean($_REQUEST["mark"]);
|
|
|
|
$id = clean($_REQUEST["id"]);
|
2011-12-12 20:32:29 +01:00
|
|
|
|
2017-12-01 21:49:14 +01:00
|
|
|
$sth = $this->pdo->prepare("UPDATE ttrss_user_entries SET marked = ?,
|
2013-03-17 12:32:44 +01:00
|
|
|
last_marked = NOW()
|
2017-12-01 21:49:14 +01:00
|
|
|
WHERE ref_id = ? AND owner_uid = ?");
|
|
|
|
|
|
|
|
$sth->execute([$mark, $id, $_SESSION['uid']]);
|
2011-12-12 20:32:29 +01:00
|
|
|
|
|
|
|
print json_encode(array("message" => "UPDATE_COUNTERS"));
|
|
|
|
}
|
|
|
|
|
2021-11-12 06:42:55 +01:00
|
|
|
function delete(): void {
|
2017-12-03 21:35:38 +01:00
|
|
|
$ids = explode(",", clean($_REQUEST["ids"]));
|
2017-12-01 21:49:14 +01:00
|
|
|
$ids_qmarks = arr_qmarks($ids);
|
2011-12-12 20:32:29 +01:00
|
|
|
|
2017-12-01 21:49:14 +01:00
|
|
|
$sth = $this->pdo->prepare("DELETE FROM ttrss_user_entries
|
|
|
|
WHERE ref_id IN ($ids_qmarks) AND owner_uid = ?");
|
2022-08-12 17:31:19 +02:00
|
|
|
$sth->execute([...$ids, $_SESSION['uid']]);
|
2011-12-12 20:32:29 +01:00
|
|
|
|
2021-02-15 13:52:28 +01:00
|
|
|
Article::_purge_orphans();
|
2013-03-29 12:20:26 +01:00
|
|
|
|
2011-12-12 20:32:29 +01:00
|
|
|
print json_encode(array("message" => "UPDATE_COUNTERS"));
|
|
|
|
}
|
|
|
|
|
2021-11-12 06:42:55 +01:00
|
|
|
function publ(): void {
|
2017-12-03 21:35:38 +01:00
|
|
|
$pub = clean($_REQUEST["pub"]);
|
|
|
|
$id = clean($_REQUEST["id"]);
|
2011-12-12 20:32:29 +01:00
|
|
|
|
2017-12-01 21:49:14 +01:00
|
|
|
$sth = $this->pdo->prepare("UPDATE ttrss_user_entries SET
|
|
|
|
published = ?, last_published = NOW()
|
|
|
|
WHERE ref_id = ? AND owner_uid = ?");
|
2011-12-12 20:32:29 +01:00
|
|
|
|
2017-12-01 21:49:14 +01:00
|
|
|
$sth->execute([$pub, $id, $_SESSION['uid']]);
|
2011-12-12 20:32:29 +01:00
|
|
|
|
2017-05-16 09:41:20 +02:00
|
|
|
print json_encode(array("message" => "UPDATE_COUNTERS"));
|
2011-12-12 20:32:29 +01:00
|
|
|
}
|
|
|
|
|
2021-11-12 06:42:55 +01:00
|
|
|
function getRuntimeInfo(): void {
|
2021-02-19 11:44:56 +01:00
|
|
|
$reply = [
|
2021-02-26 07:21:17 +01:00
|
|
|
'runtime-info' => $this->_make_runtime_info()
|
2021-02-19 11:44:56 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
print json_encode($reply);
|
|
|
|
}
|
|
|
|
|
2021-11-12 06:42:55 +01:00
|
|
|
function getAllCounters(): void {
|
2023-04-09 21:15:16 +02:00
|
|
|
$scope = Tracer::start(__METHOD__);
|
2023-04-09 19:50:33 +02:00
|
|
|
|
2018-12-12 18:06:44 +01:00
|
|
|
@$seq = (int) $_REQUEST['seq'];
|
2011-12-12 20:32:29 +01:00
|
|
|
|
2022-02-25 10:41:53 +01:00
|
|
|
$feed_id_count = (int) ($_REQUEST["feed_id_count"] ?? -1);
|
|
|
|
$label_id_count = (int) ($_REQUEST["label_id_count"] ?? -1);
|
2021-02-24 13:07:31 +01:00
|
|
|
|
|
|
|
// it seems impossible to distinguish empty array [] from a null - both become unset in $_REQUEST
|
|
|
|
// so, count is >= 0 means we had an array, -1 means null
|
|
|
|
// we need null because it means "return all counters"; [] would return nothing
|
|
|
|
if ($feed_id_count == -1)
|
|
|
|
$feed_ids = null;
|
|
|
|
else
|
|
|
|
$feed_ids = array_map("intval", clean($_REQUEST["feed_ids"] ?? []));
|
|
|
|
|
|
|
|
if ($label_id_count == -1)
|
|
|
|
$label_ids = null;
|
|
|
|
else
|
|
|
|
$label_ids = array_map("intval", clean($_REQUEST["label_ids"] ?? []));
|
|
|
|
|
2021-02-27 09:25:07 +01:00
|
|
|
$counters = is_array($feed_ids) && !get_pref(Prefs::DISABLE_CONDITIONAL_COUNTERS) ?
|
|
|
|
Counters::get_conditional($feed_ids, $label_ids) : Counters::get_all();
|
2021-02-24 07:47:26 +01:00
|
|
|
|
2018-12-12 18:06:44 +01:00
|
|
|
$reply = [
|
2021-02-24 07:47:26 +01:00
|
|
|
'counters' => $counters,
|
2018-12-15 11:17:34 +01:00
|
|
|
'seq' => $seq
|
2018-12-12 18:06:44 +01:00
|
|
|
];
|
2011-12-12 20:32:29 +01:00
|
|
|
|
2023-04-09 19:50:33 +02:00
|
|
|
$scope->close();
|
2013-02-01 10:09:43 +01:00
|
|
|
print json_encode($reply);
|
2011-12-12 20:32:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* GET["cmode"] = 0 - mark as read, 1 - as unread, 2 - toggle */
|
2021-11-12 06:42:55 +01:00
|
|
|
function catchupSelected(): void {
|
2021-02-24 10:07:25 +01:00
|
|
|
$ids = array_map("intval", clean($_REQUEST["ids"] ?? []));
|
2019-03-21 05:44:39 +01:00
|
|
|
$cmode = (int)clean($_REQUEST["cmode"]);
|
2011-12-12 20:32:29 +01:00
|
|
|
|
2021-02-24 13:07:31 +01:00
|
|
|
if (count($ids) > 0)
|
|
|
|
Article::_catchup_by_id($ids, $cmode);
|
2011-12-12 20:32:29 +01:00
|
|
|
|
2021-02-24 13:07:31 +01:00
|
|
|
print json_encode(["message" => "UPDATE_COUNTERS",
|
|
|
|
"labels" => Article::_labels_of($ids),
|
|
|
|
"feeds" => Article::_feeds_of($ids)]);
|
2011-12-12 20:32:29 +01:00
|
|
|
}
|
|
|
|
|
2021-11-12 06:42:55 +01:00
|
|
|
function markSelected(): void {
|
2021-02-24 10:07:25 +01:00
|
|
|
$ids = array_map("intval", clean($_REQUEST["ids"] ?? []));
|
2017-12-03 21:35:38 +01:00
|
|
|
$cmode = (int)clean($_REQUEST["cmode"]);
|
2011-12-12 20:32:29 +01:00
|
|
|
|
2021-02-24 13:07:31 +01:00
|
|
|
if (count($ids) > 0)
|
|
|
|
$this->markArticlesById($ids, $cmode);
|
2011-12-12 20:32:29 +01:00
|
|
|
|
2021-03-02 10:08:54 +01:00
|
|
|
print json_encode(["message" => "UPDATE_COUNTERS",
|
|
|
|
"labels" => Article::_labels_of($ids),
|
|
|
|
"feeds" => Article::_feeds_of($ids)]);
|
2011-12-12 20:32:29 +01:00
|
|
|
}
|
|
|
|
|
2021-11-12 06:42:55 +01:00
|
|
|
function publishSelected(): void {
|
2021-02-24 10:07:25 +01:00
|
|
|
$ids = array_map("intval", clean($_REQUEST["ids"] ?? []));
|
2017-12-03 21:35:38 +01:00
|
|
|
$cmode = (int)clean($_REQUEST["cmode"]);
|
2011-12-12 20:32:29 +01:00
|
|
|
|
2021-02-24 13:07:31 +01:00
|
|
|
if (count($ids) > 0)
|
|
|
|
$this->publishArticlesById($ids, $cmode);
|
2011-12-12 20:32:29 +01:00
|
|
|
|
2021-03-02 10:08:54 +01:00
|
|
|
print json_encode(["message" => "UPDATE_COUNTERS",
|
|
|
|
"labels" => Article::_labels_of($ids),
|
|
|
|
"feeds" => Article::_feeds_of($ids)]);
|
2011-12-12 20:32:29 +01:00
|
|
|
}
|
|
|
|
|
2021-11-12 06:42:55 +01:00
|
|
|
function sanityCheck(): void {
|
2021-11-18 19:23:44 +01:00
|
|
|
$_SESSION["hasSandbox"] = self::_param_to_bool($_REQUEST["hasSandbox"] ?? false);
|
2017-12-03 21:35:38 +01:00
|
|
|
$_SESSION["clientTzOffset"] = clean($_REQUEST["clientTzOffset"]);
|
2011-12-12 20:32:29 +01:00
|
|
|
|
2021-02-26 12:14:44 +01:00
|
|
|
$client_location = $_REQUEST["clientLocation"];
|
|
|
|
|
2021-02-23 20:26:07 +01:00
|
|
|
$error = Errors::E_SUCCESS;
|
2021-02-26 12:14:44 +01:00
|
|
|
$error_params = [];
|
|
|
|
|
|
|
|
$client_scheme = parse_url($client_location, PHP_URL_SCHEME);
|
2021-03-02 06:16:41 +01:00
|
|
|
$server_scheme = parse_url(Config::get_self_url(), PHP_URL_SCHEME);
|
2011-12-12 20:32:29 +01:00
|
|
|
|
2021-03-04 07:22:24 +01:00
|
|
|
if (Config::is_migration_needed()) {
|
2021-02-23 20:26:07 +01:00
|
|
|
$error = Errors::E_SCHEMA_MISMATCH;
|
2021-02-26 12:14:44 +01:00
|
|
|
} else if ($client_scheme != $server_scheme) {
|
|
|
|
$error = Errors::E_URL_SCHEME_MISMATCH;
|
|
|
|
$error_params["client_scheme"] = $client_scheme;
|
|
|
|
$error_params["server_scheme"] = $server_scheme;
|
2021-03-02 06:16:41 +01:00
|
|
|
$error_params["self_url_path"] = Config::get_self_url();
|
2021-02-23 20:26:07 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if ($error == Errors::E_SUCCESS) {
|
|
|
|
$reply = [];
|
2011-12-12 20:32:29 +01:00
|
|
|
|
2021-02-26 07:21:17 +01:00
|
|
|
$reply['init-params'] = $this->_make_init_params();
|
|
|
|
$reply['runtime-info'] = $this->_make_runtime_info();
|
|
|
|
$reply['translations'] = $this->_translations_as_array();
|
2011-12-12 20:32:29 +01:00
|
|
|
|
2021-02-23 20:26:07 +01:00
|
|
|
print json_encode($reply);
|
|
|
|
} else {
|
2021-02-26 12:14:44 +01:00
|
|
|
print Errors::to_json($error, $error_params);
|
2021-02-23 20:26:07 +01:00
|
|
|
}
|
2011-12-12 20:32:29 +01:00
|
|
|
}
|
|
|
|
|
2021-02-20 11:37:21 +01:00
|
|
|
/*function completeLabels() {
|
2017-12-03 21:35:38 +01:00
|
|
|
$search = clean($_REQUEST["search"]);
|
2012-10-31 09:55:24 +01:00
|
|
|
|
2017-12-03 07:06:43 +01:00
|
|
|
$sth = $this->pdo->prepare("SELECT DISTINCT caption FROM
|
2012-10-31 09:55:24 +01:00
|
|
|
ttrss_labels2
|
2017-12-01 21:49:14 +01:00
|
|
|
WHERE owner_uid = ? AND
|
|
|
|
LOWER(caption) LIKE LOWER(?) ORDER BY caption
|
2012-10-31 09:55:24 +01:00
|
|
|
LIMIT 5");
|
2017-12-01 21:49:14 +01:00
|
|
|
$sth->execute([$_SESSION['uid'], "%$search%"]);
|
2012-10-31 09:55:24 +01:00
|
|
|
|
|
|
|
print "<ul>";
|
2017-12-01 21:49:14 +01:00
|
|
|
while ($line = $sth->fetch()) {
|
2012-10-31 09:55:24 +01:00
|
|
|
print "<li>" . $line["caption"] . "</li>";
|
|
|
|
}
|
|
|
|
print "</ul>";
|
2021-02-20 11:37:21 +01:00
|
|
|
}*/
|
2012-10-31 09:55:24 +01:00
|
|
|
|
2021-11-12 06:42:55 +01:00
|
|
|
function catchupFeed(): void {
|
2017-12-03 21:35:38 +01:00
|
|
|
$feed_id = clean($_REQUEST['feed_id']);
|
2021-11-18 19:23:44 +01:00
|
|
|
$is_cat = self::_param_to_bool($_REQUEST['is_cat'] ?? false);
|
2021-02-19 22:46:30 +01:00
|
|
|
$mode = clean($_REQUEST['mode'] ?? '');
|
2017-12-03 21:35:38 +01:00
|
|
|
$search_query = clean($_REQUEST['search_query']);
|
|
|
|
$search_lang = clean($_REQUEST['search_lang']);
|
2011-12-12 20:32:29 +01:00
|
|
|
|
2021-11-12 05:48:06 +01:00
|
|
|
Feeds::_catchup($feed_id, $is_cat, null, $mode, [$search_query, $search_lang]);
|
2011-12-12 20:32:29 +01:00
|
|
|
|
2019-01-03 08:47:41 +01:00
|
|
|
// return counters here synchronously so that frontend can figure out next unread feed properly
|
2021-02-15 14:00:54 +01:00
|
|
|
print json_encode(['counters' => Counters::get_all()]);
|
2019-01-03 08:47:41 +01:00
|
|
|
|
|
|
|
//print json_encode(array("message" => "UPDATE_COUNTERS"));
|
2011-12-12 20:32:29 +01:00
|
|
|
}
|
|
|
|
|
2021-11-12 06:42:55 +01:00
|
|
|
function setWidescreen(): void {
|
2017-12-03 21:35:38 +01:00
|
|
|
$wide = (int) clean($_REQUEST["wide"]);
|
2013-01-19 07:55:51 +01:00
|
|
|
|
2021-03-02 10:22:48 +01:00
|
|
|
set_pref(Prefs::WIDESCREEN_MODE, $wide);
|
2013-01-19 07:55:51 +01:00
|
|
|
|
2021-03-02 10:22:48 +01:00
|
|
|
print json_encode(["wide" => $wide]);
|
2013-01-19 07:55:51 +01:00
|
|
|
}
|
|
|
|
|
2021-11-12 06:42:55 +01:00
|
|
|
static function updaterandomfeed_real(): void {
|
2013-07-24 10:55:10 +02:00
|
|
|
|
2021-02-25 12:20:54 +01:00
|
|
|
$default_interval = (int) Prefs::get_default(Prefs::DEFAULT_UPDATE_INTERVAL);
|
|
|
|
|
2013-01-22 16:49:47 +01:00
|
|
|
// Test if the feed need a update (update interval exceded).
|
2021-02-22 19:47:48 +01:00
|
|
|
if (Config::get(Config::DB_TYPE) == "pgsql") {
|
2013-01-22 16:49:47 +01:00
|
|
|
$update_limit_qpart = "AND ((
|
2021-02-25 12:20:54 +01:00
|
|
|
update_interval = 0
|
2021-02-26 19:48:20 +01:00
|
|
|
AND (p.value IS NULL OR p.value != '-1')
|
2021-02-25 12:20:54 +01:00
|
|
|
AND last_updated < NOW() - CAST((COALESCE(p.value, '$default_interval') || ' minutes') AS INTERVAL)
|
2013-01-22 16:49:47 +01:00
|
|
|
) OR (
|
2021-02-25 12:20:54 +01:00
|
|
|
update_interval > 0
|
|
|
|
AND last_updated < NOW() - CAST((update_interval || ' minutes') AS INTERVAL)
|
2020-09-22 19:33:51 +02:00
|
|
|
) OR (
|
2021-02-25 12:20:54 +01:00
|
|
|
update_interval >= 0
|
2021-02-26 19:48:20 +01:00
|
|
|
AND (p.value IS NULL OR p.value != '-1')
|
2021-02-25 12:20:54 +01:00
|
|
|
AND (last_updated = '1970-01-01 00:00:00' OR last_updated IS NULL)
|
2020-09-17 14:40:50 +02:00
|
|
|
))";
|
2013-01-22 16:49:47 +01:00
|
|
|
} else {
|
|
|
|
$update_limit_qpart = "AND ((
|
2021-02-25 12:20:54 +01:00
|
|
|
update_interval = 0
|
2021-02-26 19:48:20 +01:00
|
|
|
AND (p.value IS NULL OR p.value != '-1')
|
2021-02-25 12:20:54 +01:00
|
|
|
AND last_updated < DATE_SUB(NOW(), INTERVAL CONVERT(COALESCE(p.value, '$default_interval'), SIGNED INTEGER) MINUTE)
|
2013-01-22 16:49:47 +01:00
|
|
|
) OR (
|
2021-02-25 12:20:54 +01:00
|
|
|
update_interval > 0
|
|
|
|
AND last_updated < DATE_SUB(NOW(), INTERVAL update_interval MINUTE)
|
2020-09-22 19:33:51 +02:00
|
|
|
) OR (
|
2021-02-25 12:20:54 +01:00
|
|
|
update_interval >= 0
|
2021-02-26 19:48:20 +01:00
|
|
|
AND (p.value IS NULL OR p.value != '-1')
|
2021-02-25 12:20:54 +01:00
|
|
|
AND (last_updated = '1970-01-01 00:00:00' OR last_updated IS NULL)
|
2020-09-17 14:40:50 +02:00
|
|
|
))";
|
2013-01-22 16:49:47 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Test if feed is currently being updated by another process.
|
2021-02-22 19:47:48 +01:00
|
|
|
if (Config::get(Config::DB_TYPE) == "pgsql") {
|
2021-02-25 12:20:54 +01:00
|
|
|
$updstart_thresh_qpart = "AND (last_update_started IS NULL OR last_update_started < NOW() - INTERVAL '5 minutes')";
|
2013-01-22 16:49:47 +01:00
|
|
|
} else {
|
2021-02-25 12:20:54 +01:00
|
|
|
$updstart_thresh_qpart = "AND (last_update_started IS NULL OR last_update_started < DATE_SUB(NOW(), INTERVAL 5 MINUTE))";
|
2013-01-22 16:49:47 +01:00
|
|
|
}
|
|
|
|
|
2020-09-22 08:04:33 +02:00
|
|
|
$random_qpart = Db::sql_random_function();
|
2013-01-22 16:49:47 +01:00
|
|
|
|
2017-12-01 21:49:14 +01:00
|
|
|
$pdo = Db::pdo();
|
|
|
|
|
2013-08-25 15:34:27 +02:00
|
|
|
// we could be invoked from public.php with no active session
|
2021-02-25 12:20:54 +01:00
|
|
|
if (!empty($_SESSION["uid"])) {
|
|
|
|
$owner_check_qpart = "AND f.owner_uid = ".$pdo->quote($_SESSION["uid"]);
|
2013-08-25 15:34:27 +02:00
|
|
|
} else {
|
|
|
|
$owner_check_qpart = "";
|
|
|
|
}
|
|
|
|
|
2021-02-25 12:20:54 +01:00
|
|
|
$query = "SELECT f.feed_url,f.id
|
2013-01-22 16:49:47 +01:00
|
|
|
FROM
|
2021-02-25 12:20:54 +01:00
|
|
|
ttrss_feeds f, ttrss_users u LEFT JOIN ttrss_user_prefs2 p ON
|
|
|
|
(p.owner_uid = u.id AND profile IS NULL AND pref_name = 'DEFAULT_UPDATE_INTERVAL')
|
2013-01-22 16:49:47 +01:00
|
|
|
WHERE
|
2021-11-10 18:44:51 +01:00
|
|
|
f.owner_uid = u.id AND
|
|
|
|
u.access_level NOT IN (".sprintf("%d, %d", UserHelper::ACCESS_LEVEL_DISABLED, UserHelper::ACCESS_LEVEL_READONLY).")
|
2013-08-25 15:34:27 +02:00
|
|
|
$owner_check_qpart
|
|
|
|
$update_limit_qpart
|
|
|
|
$updstart_thresh_qpart
|
2021-02-25 12:20:54 +01:00
|
|
|
ORDER BY $random_qpart LIMIT 30";
|
|
|
|
|
|
|
|
$res = $pdo->query($query);
|
2013-01-22 16:49:47 +01:00
|
|
|
|
|
|
|
$num_updated = 0;
|
|
|
|
|
|
|
|
$tstart = time();
|
|
|
|
|
2017-12-01 21:49:14 +01:00
|
|
|
while ($line = $res->fetch()) {
|
2013-01-22 16:49:47 +01:00
|
|
|
$feed_id = $line["id"];
|
|
|
|
|
2013-01-22 17:07:34 +01:00
|
|
|
if (time() - $tstart < ini_get("max_execution_time") * 0.7) {
|
2017-05-05 17:10:07 +02:00
|
|
|
RSSUtils::update_rss_feed($feed_id, true);
|
2013-01-22 16:49:47 +01:00
|
|
|
++$num_updated;
|
|
|
|
} else {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-03-28 05:19:28 +01:00
|
|
|
// Purge orphans and cleanup tags
|
2021-02-15 13:52:28 +01:00
|
|
|
Article::_purge_orphans();
|
2016-01-04 08:42:24 +01:00
|
|
|
//cleanup_tags(14, 50000);
|
2013-03-28 05:19:28 +01:00
|
|
|
|
2013-01-22 16:49:47 +01:00
|
|
|
if ($num_updated > 0) {
|
|
|
|
print json_encode(array("message" => "UPDATE_COUNTERS",
|
|
|
|
"num_updated" => $num_updated));
|
|
|
|
} else {
|
|
|
|
print json_encode(array("message" => "NOTHING_TO_UPDATE"));
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2021-11-12 06:42:55 +01:00
|
|
|
function updaterandomfeed(): void {
|
2020-09-22 13:54:15 +02:00
|
|
|
self::updaterandomfeed_real();
|
2013-07-24 10:55:10 +02:00
|
|
|
}
|
|
|
|
|
2021-11-12 06:42:55 +01:00
|
|
|
/**
|
|
|
|
* @param array<int, int> $ids
|
|
|
|
*/
|
|
|
|
private function markArticlesById(array $ids, int $cmode): void {
|
2013-01-22 19:32:17 +01:00
|
|
|
|
2017-12-01 21:49:14 +01:00
|
|
|
$ids_qmarks = arr_qmarks($ids);
|
2013-01-22 19:32:17 +01:00
|
|
|
|
2021-11-12 02:50:40 +01:00
|
|
|
if ($cmode == Article::CATCHUP_MODE_MARK_AS_READ) {
|
2017-12-01 21:49:14 +01:00
|
|
|
$sth = $this->pdo->prepare("UPDATE ttrss_user_entries SET
|
|
|
|
marked = false, last_marked = NOW()
|
|
|
|
WHERE ref_id IN ($ids_qmarks) AND owner_uid = ?");
|
2021-11-12 02:50:40 +01:00
|
|
|
} else if ($cmode == Article::CATCHUP_MODE_MARK_AS_UNREAD) {
|
2017-12-01 21:49:14 +01:00
|
|
|
$sth = $this->pdo->prepare("UPDATE ttrss_user_entries SET
|
|
|
|
marked = true, last_marked = NOW()
|
|
|
|
WHERE ref_id IN ($ids_qmarks) AND owner_uid = ?");
|
2013-01-22 19:32:17 +01:00
|
|
|
} else {
|
2017-12-01 21:49:14 +01:00
|
|
|
$sth = $this->pdo->prepare("UPDATE ttrss_user_entries SET
|
|
|
|
marked = NOT marked,last_marked = NOW()
|
|
|
|
WHERE ref_id IN ($ids_qmarks) AND owner_uid = ?");
|
2013-01-22 19:32:17 +01:00
|
|
|
}
|
2017-12-01 21:49:14 +01:00
|
|
|
|
2022-08-12 17:31:19 +02:00
|
|
|
$sth->execute([...$ids, $_SESSION['uid']]);
|
2013-01-22 19:32:17 +01:00
|
|
|
}
|
|
|
|
|
2021-11-12 06:42:55 +01:00
|
|
|
/**
|
|
|
|
* @param array<int, int> $ids
|
|
|
|
*/
|
|
|
|
private function publishArticlesById(array $ids, int $cmode): void {
|
2013-01-22 19:32:17 +01:00
|
|
|
|
2017-12-01 21:49:14 +01:00
|
|
|
$ids_qmarks = arr_qmarks($ids);
|
2013-01-22 19:32:17 +01:00
|
|
|
|
2021-11-12 02:50:40 +01:00
|
|
|
if ($cmode == Article::CATCHUP_MODE_MARK_AS_READ) {
|
2017-12-01 21:49:14 +01:00
|
|
|
$sth = $this->pdo->prepare("UPDATE ttrss_user_entries SET
|
|
|
|
published = false, last_published = NOW()
|
|
|
|
WHERE ref_id IN ($ids_qmarks) AND owner_uid = ?");
|
2021-11-12 02:50:40 +01:00
|
|
|
} else if ($cmode == Article::CATCHUP_MODE_MARK_AS_UNREAD) {
|
2017-12-01 21:49:14 +01:00
|
|
|
$sth = $this->pdo->prepare("UPDATE ttrss_user_entries SET
|
|
|
|
published = true, last_published = NOW()
|
|
|
|
WHERE ref_id IN ($ids_qmarks) AND owner_uid = ?");
|
2013-01-22 19:32:17 +01:00
|
|
|
} else {
|
2017-12-01 21:49:14 +01:00
|
|
|
$sth = $this->pdo->prepare("UPDATE ttrss_user_entries SET
|
|
|
|
published = NOT published,last_published = NOW()
|
|
|
|
WHERE ref_id IN ($ids_qmarks) AND owner_uid = ?");
|
2013-01-22 19:32:17 +01:00
|
|
|
}
|
2017-12-01 21:49:14 +01:00
|
|
|
|
2022-08-12 17:31:19 +02:00
|
|
|
$sth->execute([...$ids, $_SESSION['uid']]);
|
2013-01-22 19:32:17 +01:00
|
|
|
}
|
|
|
|
|
2021-11-12 06:42:55 +01:00
|
|
|
function log(): void {
|
2021-03-08 09:16:32 +01:00
|
|
|
$msg = clean($_REQUEST['msg'] ?? "");
|
|
|
|
$file = basename(clean($_REQUEST['file'] ?? ""));
|
|
|
|
$line = (int) clean($_REQUEST['line'] ?? 0);
|
|
|
|
$context = clean($_REQUEST['context'] ?? "");
|
2013-04-20 08:43:21 +02:00
|
|
|
|
2017-03-05 08:50:15 +01:00
|
|
|
if ($msg) {
|
2021-02-25 13:49:30 +01:00
|
|
|
Logger::log_error(E_USER_WARNING,
|
2017-03-05 08:50:15 +01:00
|
|
|
$msg, 'client-js:' . $file, $line, $context);
|
2013-04-20 08:43:21 +02:00
|
|
|
|
2017-03-05 08:50:15 +01:00
|
|
|
echo json_encode(array("message" => "HOST_ERROR_LOGGED"));
|
|
|
|
}
|
2013-04-20 08:43:21 +02:00
|
|
|
}
|
2018-12-16 17:05:37 +01:00
|
|
|
|
2021-11-12 06:42:55 +01:00
|
|
|
function checkforupdates(): void {
|
2021-02-27 17:14:13 +01:00
|
|
|
$rv = ["changeset" => [], "plugins" => []];
|
2018-12-16 17:05:37 +01:00
|
|
|
|
2021-03-02 04:14:21 +01:00
|
|
|
$version = Config::get_version(false);
|
2019-12-05 11:23:54 +01:00
|
|
|
|
2021-03-01 11:43:37 +01:00
|
|
|
$git_timestamp = $version["timestamp"] ?? false;
|
|
|
|
$git_commit = $version["commit"] ?? false;
|
2019-12-05 11:23:54 +01:00
|
|
|
|
2021-11-10 18:44:51 +01:00
|
|
|
if (Config::get(Config::CHECK_FOR_UPDATES) && $_SESSION["access_level"] >= UserHelper::ACCESS_LEVEL_ADMIN && $git_timestamp) {
|
2020-09-22 08:04:33 +02:00
|
|
|
$content = @UrlHelper::fetch(["url" => "https://tt-rss.org/version.json"]);
|
2018-12-16 17:05:37 +01:00
|
|
|
|
|
|
|
if ($content) {
|
|
|
|
$content = json_decode($content, true);
|
|
|
|
|
|
|
|
if ($content && isset($content["changeset"])) {
|
2019-12-05 11:23:54 +01:00
|
|
|
if ($git_timestamp < (int)$content["changeset"]["timestamp"] &&
|
|
|
|
$git_commit != $content["changeset"]["id"]) {
|
2018-12-16 17:05:37 +01:00
|
|
|
|
2021-02-27 17:14:13 +01:00
|
|
|
$rv["changeset"] = $content["changeset"];
|
2018-12-16 17:05:37 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-02-27 17:14:13 +01:00
|
|
|
|
|
|
|
$rv["plugins"] = Pref_Prefs::_get_updated_plugins();
|
2018-12-16 17:05:37 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
print json_encode($rv);
|
|
|
|
}
|
|
|
|
|
2021-11-12 06:42:55 +01:00
|
|
|
/**
|
|
|
|
* @return array<string, mixed>
|
|
|
|
*/
|
|
|
|
private function _make_init_params(): array {
|
2020-09-22 08:04:33 +02:00
|
|
|
$params = array();
|
|
|
|
|
2021-02-25 12:59:02 +01:00
|
|
|
foreach ([Prefs::ON_CATCHUP_SHOW_NEXT_FEED, Prefs::HIDE_READ_FEEDS,
|
|
|
|
Prefs::ENABLE_FEED_CATS, Prefs::FEEDS_SORT_BY_UNREAD,
|
|
|
|
Prefs::CONFIRM_FEED_CATCHUP, Prefs::CDM_AUTO_CATCHUP,
|
|
|
|
Prefs::FRESH_ARTICLE_MAX_AGE, Prefs::HIDE_READ_SHOWS_SPECIAL,
|
2021-03-10 06:33:56 +01:00
|
|
|
Prefs::COMBINED_DISPLAY_MODE, Prefs::DEBUG_HEADLINE_IDS, Prefs::CDM_ENABLE_GRID] as $param) {
|
2020-09-22 08:04:33 +02:00
|
|
|
|
|
|
|
$params[strtolower($param)] = (int) get_pref($param);
|
|
|
|
}
|
|
|
|
|
2021-02-11 19:19:57 +01:00
|
|
|
$params["safe_mode"] = !empty($_SESSION["safe_mode"]);
|
2021-02-22 20:35:27 +01:00
|
|
|
$params["check_for_updates"] = Config::get(Config::CHECK_FOR_UPDATES);
|
2022-11-28 18:40:42 +01:00
|
|
|
$params["icons_url"] = Config::get_self_url() . '/public.php';
|
2021-02-22 19:47:48 +01:00
|
|
|
$params["cookie_lifetime"] = Config::get(Config::SESSION_COOKIE_LIFETIME);
|
2021-02-25 12:49:58 +01:00
|
|
|
$params["default_view_mode"] = get_pref(Prefs::_DEFAULT_VIEW_MODE);
|
|
|
|
$params["default_view_limit"] = (int) get_pref(Prefs::_DEFAULT_VIEW_LIMIT);
|
|
|
|
$params["default_view_order_by"] = get_pref(Prefs::_DEFAULT_VIEW_ORDER_BY);
|
2021-03-04 16:32:18 +01:00
|
|
|
$params["bw_limit"] = (int) ($_SESSION["bw_limit"] ?? false);
|
2021-03-01 13:24:18 +01:00
|
|
|
$params["is_default_pw"] = UserHelper::is_default_password();
|
2021-02-06 15:19:07 +01:00
|
|
|
$params["label_base_index"] = LABEL_BASE_INDEX;
|
2020-09-22 08:04:33 +02:00
|
|
|
|
2021-02-25 12:49:58 +01:00
|
|
|
$theme = get_pref(Prefs::USER_CSS_THEME);
|
2020-09-22 08:04:33 +02:00
|
|
|
$params["theme"] = theme_exists($theme) ? $theme : "";
|
|
|
|
|
|
|
|
$params["plugins"] = implode(", ", PluginHost::getInstance()->get_plugin_names());
|
|
|
|
|
|
|
|
$params["php_platform"] = PHP_OS;
|
|
|
|
$params["php_version"] = PHP_VERSION;
|
|
|
|
|
|
|
|
$pdo = Db::pdo();
|
|
|
|
|
|
|
|
$sth = $pdo->prepare("SELECT MAX(id) AS mid, COUNT(*) AS nf FROM
|
|
|
|
ttrss_feeds WHERE owner_uid = ?");
|
|
|
|
$sth->execute([$_SESSION['uid']]);
|
|
|
|
$row = $sth->fetch();
|
|
|
|
|
|
|
|
$max_feed_id = $row["mid"];
|
|
|
|
$num_feeds = $row["nf"];
|
|
|
|
|
2021-03-02 06:16:41 +01:00
|
|
|
$params["self_url_prefix"] = Config::get_self_url();
|
2020-09-22 08:04:33 +02:00
|
|
|
$params["max_feed_id"] = (int) $max_feed_id;
|
|
|
|
$params["num_feeds"] = (int) $num_feeds;
|
|
|
|
$params["hotkeys"] = $this->get_hotkeys_map();
|
2021-03-02 10:22:48 +01:00
|
|
|
$params["widescreen"] = (int) get_pref(Prefs::WIDESCREEN_MODE);
|
2021-02-22 20:35:27 +01:00
|
|
|
$params['simple_update'] = Config::get(Config::SIMPLE_UPDATE_MODE);
|
2020-09-22 08:04:33 +02:00
|
|
|
$params["icon_indicator_white"] = $this->image_to_base64("images/indicator_white.gif");
|
2021-03-16 19:32:44 +01:00
|
|
|
$params["icon_oval"] = $this->image_to_base64("images/oval.svg");
|
|
|
|
$params["icon_three_dots"] = $this->image_to_base64("images/three-dots.svg");
|
2021-03-22 14:18:59 +01:00
|
|
|
$params["icon_blank"] = $this->image_to_base64("images/blank_icon.gif");
|
2021-02-21 07:35:07 +01:00
|
|
|
$params["labels"] = Labels::get_all($_SESSION["uid"]);
|
2020-09-22 08:04:33 +02:00
|
|
|
|
|
|
|
return $params;
|
|
|
|
}
|
|
|
|
|
2021-11-12 06:42:55 +01:00
|
|
|
private function image_to_base64(string $filename): string {
|
2020-09-22 08:04:33 +02:00
|
|
|
if (file_exists($filename)) {
|
|
|
|
$ext = pathinfo($filename, PATHINFO_EXTENSION);
|
|
|
|
|
2021-03-16 19:32:44 +01:00
|
|
|
if ($ext == "svg") $ext = "svg+xml";
|
|
|
|
|
2021-02-06 15:19:07 +01:00
|
|
|
return "data:image/$ext;base64," . base64_encode((string)file_get_contents($filename));
|
2020-09-22 08:04:33 +02:00
|
|
|
} else {
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-12 06:42:55 +01:00
|
|
|
/**
|
|
|
|
* @return array<string, mixed>
|
|
|
|
*/
|
|
|
|
static function _make_runtime_info(): array {
|
2020-09-22 08:04:33 +02:00
|
|
|
$data = array();
|
|
|
|
|
|
|
|
$pdo = Db::pdo();
|
|
|
|
|
|
|
|
$sth = $pdo->prepare("SELECT MAX(id) AS mid, COUNT(*) AS nf FROM
|
|
|
|
ttrss_feeds WHERE owner_uid = ?");
|
|
|
|
$sth->execute([$_SESSION['uid']]);
|
|
|
|
$row = $sth->fetch();
|
|
|
|
|
|
|
|
$max_feed_id = $row['mid'];
|
|
|
|
$num_feeds = $row['nf'];
|
|
|
|
|
|
|
|
$data["max_feed_id"] = (int) $max_feed_id;
|
|
|
|
$data["num_feeds"] = (int) $num_feeds;
|
2021-02-25 12:49:58 +01:00
|
|
|
$data['cdm_expanded'] = get_pref(Prefs::CDM_EXPANDED);
|
2021-02-21 07:35:07 +01:00
|
|
|
$data["labels"] = Labels::get_all($_SESSION["uid"]);
|
2020-09-22 08:04:33 +02:00
|
|
|
|
2021-11-10 18:44:51 +01:00
|
|
|
if (Config::get(Config::LOG_DESTINATION) == 'sql' && $_SESSION['access_level'] >= UserHelper::ACCESS_LEVEL_ADMIN) {
|
2021-02-22 19:47:48 +01:00
|
|
|
if (Config::get(Config::DB_TYPE) == 'pgsql') {
|
2020-09-22 08:04:33 +02:00
|
|
|
$log_interval = "created_at > NOW() - interval '1 hour'";
|
|
|
|
} else {
|
|
|
|
$log_interval = "created_at > DATE_SUB(NOW(), INTERVAL 1 HOUR)";
|
|
|
|
}
|
|
|
|
|
2021-02-08 20:15:35 +01:00
|
|
|
$sth = $pdo->prepare("SELECT COUNT(id) AS cid
|
|
|
|
FROM ttrss_error_log
|
|
|
|
WHERE
|
2021-02-17 12:14:10 +01:00
|
|
|
errno NOT IN (".E_USER_NOTICE.", ".E_USER_DEPRECATED.") AND
|
2021-02-08 20:15:35 +01:00
|
|
|
$log_interval AND
|
2021-08-23 17:38:37 +02:00
|
|
|
errstr NOT LIKE '%Returning bool from comparison function is deprecated%' AND
|
2021-02-08 20:15:35 +01:00
|
|
|
errstr NOT LIKE '%imagecreatefromstring(): Data is not in a recognized format%'");
|
2020-09-22 08:04:33 +02:00
|
|
|
$sth->execute();
|
|
|
|
|
|
|
|
if ($row = $sth->fetch()) {
|
|
|
|
$data['recent_log_events'] = $row['cid'];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-22 19:47:48 +01:00
|
|
|
if (file_exists(Config::get(Config::LOCK_DIRECTORY) . "/update_daemon.lock")) {
|
2020-09-22 08:04:33 +02:00
|
|
|
|
|
|
|
$data['daemon_is_running'] = (int) file_is_locked("update_daemon.lock");
|
|
|
|
|
2021-02-05 21:41:32 +01:00
|
|
|
if (time() - ($_SESSION["daemon_stamp_check"] ?? 0) > 30) {
|
2020-09-22 08:04:33 +02:00
|
|
|
|
2021-02-22 19:47:48 +01:00
|
|
|
$stamp = (int) @file_get_contents(Config::get(Config::LOCK_DIRECTORY) . "/update_daemon.stamp");
|
2020-09-22 08:04:33 +02:00
|
|
|
|
|
|
|
if ($stamp) {
|
|
|
|
$stamp_delta = time() - $stamp;
|
|
|
|
|
|
|
|
if ($stamp_delta > 1800) {
|
|
|
|
$stamp_check = 0;
|
|
|
|
} else {
|
|
|
|
$stamp_check = 1;
|
|
|
|
$_SESSION["daemon_stamp_check"] = time();
|
|
|
|
}
|
|
|
|
|
|
|
|
$data['daemon_stamp_ok'] = $stamp_check;
|
|
|
|
|
|
|
|
$stamp_fmt = date("Y.m.d, G:i", $stamp);
|
|
|
|
|
|
|
|
$data['daemon_stamp'] = $stamp_fmt;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $data;
|
|
|
|
}
|
|
|
|
|
2021-11-12 06:42:55 +01:00
|
|
|
/**
|
|
|
|
* @return array<string, array<string, string>>
|
|
|
|
*/
|
|
|
|
static function get_hotkeys_info(): array {
|
2020-09-22 08:04:33 +02:00
|
|
|
$hotkeys = array(
|
|
|
|
__("Navigation") => array(
|
|
|
|
"next_feed" => __("Open next feed"),
|
2021-05-20 19:32:00 +02:00
|
|
|
"next_unread_feed" => __("Open next unread feed"),
|
2020-09-22 08:04:33 +02:00
|
|
|
"prev_feed" => __("Open previous feed"),
|
2021-05-20 19:32:00 +02:00
|
|
|
"prev_unread_feed" => __("Open previous unread feed"),
|
2020-09-22 08:04:33 +02:00
|
|
|
"next_article_or_scroll" => __("Open next article (in combined mode, scroll down)"),
|
|
|
|
"prev_article_or_scroll" => __("Open previous article (in combined mode, scroll up)"),
|
|
|
|
"next_headlines_page" => __("Scroll headlines by one page down"),
|
|
|
|
"prev_headlines_page" => __("Scroll headlines by one page up"),
|
|
|
|
"next_article_noscroll" => __("Open next article"),
|
|
|
|
"prev_article_noscroll" => __("Open previous article"),
|
|
|
|
"next_article_noexpand" => __("Move to next article (don't expand)"),
|
|
|
|
"prev_article_noexpand" => __("Move to previous article (don't expand)"),
|
|
|
|
"search_dialog" => __("Show search dialog"),
|
|
|
|
"cancel_search" => __("Cancel active search")),
|
|
|
|
__("Article") => array(
|
|
|
|
"toggle_mark" => __("Toggle starred"),
|
|
|
|
"toggle_publ" => __("Toggle published"),
|
|
|
|
"toggle_unread" => __("Toggle unread"),
|
|
|
|
"edit_tags" => __("Edit tags"),
|
|
|
|
"open_in_new_window" => __("Open in new window"),
|
|
|
|
"catchup_below" => __("Mark below as read"),
|
|
|
|
"catchup_above" => __("Mark above as read"),
|
|
|
|
"article_scroll_down" => __("Scroll down"),
|
|
|
|
"article_scroll_up" => __("Scroll up"),
|
|
|
|
"article_page_down" => __("Scroll down page"),
|
|
|
|
"article_page_up" => __("Scroll up page"),
|
|
|
|
"select_article_cursor" => __("Select article under cursor"),
|
|
|
|
"email_article" => __("Email article"),
|
|
|
|
"close_article" => __("Close/collapse article"),
|
|
|
|
"toggle_expand" => __("Toggle article expansion (combined mode)"),
|
|
|
|
"toggle_widescreen" => __("Toggle widescreen mode"),
|
|
|
|
"toggle_full_text" => __("Toggle full article text via Readability")),
|
|
|
|
__("Article selection") => array(
|
|
|
|
"select_all" => __("Select all articles"),
|
|
|
|
"select_unread" => __("Select unread"),
|
|
|
|
"select_marked" => __("Select starred"),
|
|
|
|
"select_published" => __("Select published"),
|
|
|
|
"select_invert" => __("Invert selection"),
|
|
|
|
"select_none" => __("Deselect everything")),
|
|
|
|
__("Feed") => array(
|
|
|
|
"feed_refresh" => __("Refresh current feed"),
|
|
|
|
"feed_unhide_read" => __("Un/hide read feeds"),
|
|
|
|
"feed_subscribe" => __("Subscribe to feed"),
|
|
|
|
"feed_edit" => __("Edit feed"),
|
|
|
|
"feed_catchup" => __("Mark as read"),
|
|
|
|
"feed_reverse" => __("Reverse headlines"),
|
|
|
|
"feed_toggle_vgroup" => __("Toggle headline grouping"),
|
2021-03-10 08:01:22 +01:00
|
|
|
"feed_toggle_grid" => __("Toggle grid view"),
|
2020-09-22 08:04:33 +02:00
|
|
|
"feed_debug_update" => __("Debug feed update"),
|
|
|
|
"feed_debug_viewfeed" => __("Debug viewfeed()"),
|
|
|
|
"catchup_all" => __("Mark all feeds as read"),
|
|
|
|
"cat_toggle_collapse" => __("Un/collapse current category"),
|
|
|
|
"toggle_cdm_expanded" => __("Toggle auto expand in combined mode"),
|
|
|
|
"toggle_combined_mode" => __("Toggle combined mode")),
|
|
|
|
__("Go to") => array(
|
|
|
|
"goto_all" => __("All articles"),
|
|
|
|
"goto_fresh" => __("Fresh"),
|
|
|
|
"goto_marked" => __("Starred"),
|
|
|
|
"goto_published" => __("Published"),
|
|
|
|
"goto_read" => __("Recently read"),
|
|
|
|
"goto_prefs" => __("Preferences")),
|
|
|
|
__("Other") => array(
|
|
|
|
"create_label" => __("Create label"),
|
|
|
|
"create_filter" => __("Create filter"),
|
|
|
|
"collapse_sidebar" => __("Un/collapse sidebar"),
|
|
|
|
"help_dialog" => __("Show help dialog"))
|
|
|
|
);
|
|
|
|
|
2021-02-08 14:14:48 +01:00
|
|
|
PluginHost::getInstance()->chain_hooks_callback(PluginHost::HOOK_HOTKEY_INFO,
|
|
|
|
function ($result) use (&$hotkeys) {
|
|
|
|
$hotkeys = $result;
|
|
|
|
},
|
|
|
|
$hotkeys);
|
2020-09-22 08:04:33 +02:00
|
|
|
|