Address PHPStan warnings in 'classes/article.php'.

Also related changes in some other classes.
This commit is contained in:
wn_ 2021-11-12 01:50:40 +00:00
parent a0f37c3206
commit 57bf56f794
5 changed files with 71 additions and 39 deletions

View File

@ -4,7 +4,11 @@ class Article extends Handler_Protected {
const ARTICLE_KIND_VIDEO = 2; const ARTICLE_KIND_VIDEO = 2;
const ARTICLE_KIND_YOUTUBE = 3; const ARTICLE_KIND_YOUTUBE = 3;
function redirect() { const CATCHUP_MODE_MARK_AS_READ = 0;
const CATCHUP_MODE_MARK_AS_UNREAD = 1;
const CATCHUP_MODE_TOGGLE = 2;
function redirect(): void {
$article = ORM::for_table('ttrss_entries') $article = ORM::for_table('ttrss_entries')
->table_alias('e') ->table_alias('e')
->join('ttrss_user_entries', [ 'ref_id', '=', 'e.id'], 'ue') ->join('ttrss_user_entries', [ 'ref_id', '=', 'e.id'], 'ue')
@ -24,8 +28,7 @@ class Article extends Handler_Protected {
print "Article not found or has an empty URL."; print "Article not found or has an empty URL.";
} }
static function _create_published_article($title, $url, $content, $labels_str, static function _create_published_article(string $title, string $url, string $content, string $labels_str, int $owner_uid): bool {
$owner_uid) {
$guid = 'SHA1:' . sha1("ttshared:" . $url . $owner_uid); // include owner_uid to prevent global GUID clash $guid = 'SHA1:' . sha1("ttshared:" . $url . $owner_uid); // include owner_uid to prevent global GUID clash
@ -158,14 +161,14 @@ class Article extends Handler_Protected {
return $rc; return $rc;
} }
function printArticleTags() { function printArticleTags(): void {
$id = (int) clean($_REQUEST['id'] ?? 0); $id = (int) clean($_REQUEST['id'] ?? 0);
print json_encode(["id" => $id, print json_encode(["id" => $id,
"tags" => self::_get_tags($id)]); "tags" => self::_get_tags($id)]);
} }
function setScore() { function setScore(): void {
$ids = array_map("intval", clean($_REQUEST['ids'] ?? [])); $ids = array_map("intval", clean($_REQUEST['ids'] ?? []));
$score = (int)clean($_REQUEST['score']); $score = (int)clean($_REQUEST['score']);
@ -179,7 +182,7 @@ class Article extends Handler_Protected {
print json_encode(["id" => $ids, "score" => $score]); print json_encode(["id" => $ids, "score" => $score]);
} }
function setArticleTags() { function setArticleTags(): void {
$id = clean($_REQUEST["id"]); $id = clean($_REQUEST["id"]);
@ -254,18 +257,18 @@ class Article extends Handler_Protected {
print "</ul>"; print "</ul>";
}*/ }*/
function assigntolabel() { function assigntolabel(): void {
return $this->_label_ops(true); $this->_label_ops(true);
} }
function removefromlabel() { function removefromlabel(): void {
return $this->_label_ops(false); $this->_label_ops(false);
} }
private function _label_ops($assign) { private function _label_ops(bool $assign): void {
$reply = array(); $reply = array();
$ids = explode(",", clean($_REQUEST["ids"])); $ids = array_map("intval", explode(",", clean($_REQUEST["ids"] ?? [])));
$label_id = clean($_REQUEST["lid"]); $label_id = clean($_REQUEST["lid"]);
$label = Labels::find_caption($label_id, $_SESSION["uid"]); $label = Labels::find_caption($label_id, $_SESSION["uid"]);
@ -289,11 +292,10 @@ class Article extends Handler_Protected {
print json_encode($reply); print json_encode($reply);
} }
static function _format_enclosures($id, /**
$always_display_enclosures, * @return array{'formatted': string, 'entries': array<int, array<string, mixed>>}
$article_content, */
$hide_images = false) { static function _format_enclosures(int $id, bool $always_display_enclosures, string $article_content, bool $hide_images = false): array {
$enclosures = self::_get_enclosures($id); $enclosures = self::_get_enclosures($id);
$enclosures_formatted = ""; $enclosures_formatted = "";
@ -366,7 +368,10 @@ class Article extends Handler_Protected {
return $rv; return $rv;
} }
static function _get_tags($id, $owner_uid = 0, $tag_cache = false) { /**
* @return array<int, string>
*/
static function _get_tags(int $id, int $owner_uid = 0, ?string $tag_cache = null): array {
$a_id = $id; $a_id = $id;
@ -383,12 +388,14 @@ class Article extends Handler_Protected {
/* check cache first */ /* check cache first */
if ($tag_cache === false) { if (!$tag_cache) {
$csth = $pdo->prepare("SELECT tag_cache FROM ttrss_user_entries $csth = $pdo->prepare("SELECT tag_cache FROM ttrss_user_entries
WHERE ref_id = ? AND owner_uid = ?"); WHERE ref_id = ? AND owner_uid = ?");
$csth->execute([$id, $owner_uid]); $csth->execute([$id, $owner_uid]);
if ($row = $csth->fetch()) $tag_cache = $row["tag_cache"]; if ($row = $csth->fetch()) {
$tag_cache = $row["tag_cache"];
}
} }
if ($tag_cache) { if ($tag_cache) {
@ -416,7 +423,7 @@ class Article extends Handler_Protected {
return $tags; return $tags;
} }
function getmetadatabyid() { function getmetadatabyid(): void {
$article = ORM::for_table('ttrss_entries') $article = ORM::for_table('ttrss_entries')
->join('ttrss_user_entries', ['ref_id', '=', 'id'], 'ue') ->join('ttrss_user_entries', ['ref_id', '=', 'id'], 'ue')
->where('ue.owner_uid', $_SESSION['uid']) ->where('ue.owner_uid', $_SESSION['uid'])
@ -429,7 +436,10 @@ class Article extends Handler_Protected {
} }
} }
static function _get_enclosures($id) { /**
* @return array<int, array<string, mixed>>
*/
static function _get_enclosures(int $id): array {
$encs = ORM::for_table('ttrss_enclosures') $encs = ORM::for_table('ttrss_enclosures')
->where('post_id', $id) ->where('post_id', $id)
->find_many(); ->find_many();
@ -452,7 +462,7 @@ class Article extends Handler_Protected {
} }
static function _purge_orphans() { static function _purge_orphans(): void {
// purge orphaned posts in main content table // purge orphaned posts in main content table
@ -471,7 +481,11 @@ class Article extends Handler_Protected {
} }
} }
static function _catchup_by_id($ids, $cmode, $owner_uid = false) { /**
* @param array<int, int> $ids
* @param Article::CATCHUP_MODE_* $cmode
*/
static function _catchup_by_id($ids, int $cmode, ?int $owner_uid = null): void {
if (!$owner_uid) $owner_uid = $_SESSION["uid"]; if (!$owner_uid) $owner_uid = $_SESSION["uid"];
@ -479,11 +493,11 @@ class Article extends Handler_Protected {
$ids_qmarks = arr_qmarks($ids); $ids_qmarks = arr_qmarks($ids);
if ($cmode == 1) { if ($cmode == Article::CATCHUP_MODE_MARK_AS_UNREAD) {
$sth = $pdo->prepare("UPDATE ttrss_user_entries SET $sth = $pdo->prepare("UPDATE ttrss_user_entries SET
unread = true unread = true
WHERE ref_id IN ($ids_qmarks) AND owner_uid = ?"); WHERE ref_id IN ($ids_qmarks) AND owner_uid = ?");
} else if ($cmode == 2) { } else if ($cmode == Article::CATCHUP_MODE_TOGGLE) {
$sth = $pdo->prepare("UPDATE ttrss_user_entries SET $sth = $pdo->prepare("UPDATE ttrss_user_entries SET
unread = NOT unread,last_read = NOW() unread = NOT unread,last_read = NOW()
WHERE ref_id IN ($ids_qmarks) AND owner_uid = ?"); WHERE ref_id IN ($ids_qmarks) AND owner_uid = ?");
@ -496,7 +510,10 @@ class Article extends Handler_Protected {
$sth->execute(array_merge($ids, [$owner_uid])); $sth->execute(array_merge($ids, [$owner_uid]));
} }
static function _get_labels($id, $owner_uid = false) { /**
* @return array<int, array<int, int|string>>
*/
static function _get_labels(int $id, ?int $owner_uid = null): array {
$rv = array(); $rv = array();
if (!$owner_uid) $owner_uid = $_SESSION["uid"]; if (!$owner_uid) $owner_uid = $_SESSION["uid"];
@ -543,6 +560,12 @@ class Article extends Handler_Protected {
return $rv; return $rv;
} }
/**
* @param array<int, array<string, mixed>> $enclosures
* @param array<string, mixed> $headline
*
* @return array<int, Article::ARTICLE_KIND_*|string>
*/
static function _get_image(array $enclosures, string $content, string $site_url, array $headline) { static function _get_image(array $enclosures, string $content, string $site_url, array $headline) {
$article_image = ""; $article_image = "";
@ -603,14 +626,14 @@ class Article extends Handler_Protected {
} }
if ($article_image) { if ($article_image) {
$article_image = rewrite_relative_url($site_url, $article_image); $article_image = UrlHelper::rewrite_relative($site_url, $article_image);
if (!$article_kind && (count($enclosures) > 1 || (isset($elems) && $elems->length > 1))) if (!$article_kind && (count($enclosures) > 1 || (isset($elems) && $elems->length > 1)))
$article_kind = Article::ARTICLE_KIND_ALBUM; $article_kind = Article::ARTICLE_KIND_ALBUM;
} }
if ($article_stream) if ($article_stream)
$article_stream = rewrite_relative_url($site_url, $article_stream); $article_stream = UrlHelper::rewrite_relative($site_url, $article_stream);
} }
$cache = new DiskCache("images"); $cache = new DiskCache("images");
@ -624,7 +647,12 @@ class Article extends Handler_Protected {
return [$article_image, $article_stream, $article_kind]; return [$article_image, $article_stream, $article_kind];
} }
// only cached, returns label ids (not label feed ids) /**
* only cached, returns label ids (not label feed ids)
*
* @param array<int, int> $article_ids
* @return array<int, int>
*/
static function _labels_of(array $article_ids) { static function _labels_of(array $article_ids) {
if (count($article_ids) == 0) if (count($article_ids) == 0)
return []; return [];
@ -651,6 +679,10 @@ class Article extends Handler_Protected {
return array_unique($rv); return array_unique($rv);
} }
/**
* @param array<int, int> $article_ids
* @return array<int, int>
*/
static function _feeds_of(array $article_ids) { static function _feeds_of(array $article_ids) {
if (count($article_ids) == 0) if (count($article_ids) == 0)
return []; return [];

View File

@ -62,7 +62,7 @@ class Digest
if ($rc && $do_catchup) { if ($rc && $do_catchup) {
Debug::log("Marking affected articles as read..."); Debug::log("Marking affected articles as read...");
Article::_catchup_by_id($affected_ids, 0, $line["id"]); Article::_catchup_by_id($affected_ids, Article::CATCHUP_MODE_MARK_AS_READ, $line["id"]);
} }
} else { } else {
Debug::log("No headlines"); Debug::log("No headlines");

View File

@ -289,9 +289,9 @@ class Feeds extends Handler_Protected {
if ($line["num_enclosures"] > 0) { if ($line["num_enclosures"] > 0) {
$line["enclosures"] = Article::_format_enclosures($id, $line["enclosures"] = Article::_format_enclosures($id,
$line["always_display_enclosures"], sql_bool_to_bool($line["always_display_enclosures"]),
$line["content"], $line["content"],
$line["hide_images"]); sql_bool_to_bool($line["hide_images"]));
} else { } else {
$line["enclosures"] = [ 'formatted' => '', 'entries' => [] ]; $line["enclosures"] = [ 'formatted' => '', 'entries' => [] ];
} }

View File

@ -71,11 +71,11 @@ class Labels
} }
/** /**
* @param array<int, array<int|string, mixed>>|null $labels * @param array<int, array<int, array<int, int|string>> $labels
* *
* @see Article::_get_labels() * @see Article::_get_labels()
*/ */
static function update_cache(int $owner_uid, int $id, ?array $labels = null, bool $force = false): void { static function update_cache(int $owner_uid, int $id, array $labels, bool $force = false): void {
$pdo = Db::pdo(); $pdo = Db::pdo();
if ($force) if ($force)

View File

@ -344,11 +344,11 @@ class RPC extends Handler_Protected {
$ids_qmarks = arr_qmarks($ids); $ids_qmarks = arr_qmarks($ids);
if ($cmode == 0) { if ($cmode == Article::CATCHUP_MODE_MARK_AS_READ) {
$sth = $this->pdo->prepare("UPDATE ttrss_user_entries SET $sth = $this->pdo->prepare("UPDATE ttrss_user_entries SET
marked = false, last_marked = NOW() marked = false, last_marked = NOW()
WHERE ref_id IN ($ids_qmarks) AND owner_uid = ?"); WHERE ref_id IN ($ids_qmarks) AND owner_uid = ?");
} else if ($cmode == 1) { } else if ($cmode == Article::CATCHUP_MODE_MARK_AS_UNREAD) {
$sth = $this->pdo->prepare("UPDATE ttrss_user_entries SET $sth = $this->pdo->prepare("UPDATE ttrss_user_entries SET
marked = true, last_marked = NOW() marked = true, last_marked = NOW()
WHERE ref_id IN ($ids_qmarks) AND owner_uid = ?"); WHERE ref_id IN ($ids_qmarks) AND owner_uid = ?");
@ -365,11 +365,11 @@ class RPC extends Handler_Protected {
$ids_qmarks = arr_qmarks($ids); $ids_qmarks = arr_qmarks($ids);
if ($cmode == 0) { if ($cmode == Article::CATCHUP_MODE_MARK_AS_READ) {
$sth = $this->pdo->prepare("UPDATE ttrss_user_entries SET $sth = $this->pdo->prepare("UPDATE ttrss_user_entries SET
published = false, last_published = NOW() published = false, last_published = NOW()
WHERE ref_id IN ($ids_qmarks) AND owner_uid = ?"); WHERE ref_id IN ($ids_qmarks) AND owner_uid = ?");
} else if ($cmode == 1) { } else if ($cmode == Article::CATCHUP_MODE_MARK_AS_UNREAD) {
$sth = $this->pdo->prepare("UPDATE ttrss_user_entries SET $sth = $this->pdo->prepare("UPDATE ttrss_user_entries SET
published = true, last_published = NOW() published = true, last_published = NOW()
WHERE ref_id IN ($ids_qmarks) AND owner_uid = ?"); WHERE ref_id IN ($ids_qmarks) AND owner_uid = ?");