summaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2021-11-14 20:51:22 +0300
committerAndrew Dolgov <[email protected]>2021-11-14 20:51:22 +0300
commit80291ffe0c3b43858cf9db3e5ffe5470259503ac (patch)
tree0cca7772645981ebb702f7ac537ccc602e65d4cb /plugins
parentcfc31fc692d34a61ec1974e2c159efebf6b511be (diff)
deal with phpstan warnings in plugins/af_redditimgur.php
Diffstat (limited to 'plugins')
-rwxr-xr-xplugins/af_redditimgur/init.php80
1 files changed, 58 insertions, 22 deletions
diff --git a/plugins/af_redditimgur/init.php b/plugins/af_redditimgur/init.php
index bd4032050..aeb75df3a 100755
--- a/plugins/af_redditimgur/init.php
+++ b/plugins/af_redditimgur/init.php
@@ -3,10 +3,20 @@ class Af_RedditImgur extends Plugin {
/** @var PluginHost $host */
private $host;
+
+ /** @var array<string> */
private $domain_blacklist = [ "github.com" ];
+
+ /** @var bool */
private $dump_json_data = false;
+
+ /** @var array<string> */
private $fallback_preview_urls = [];
+
+ /** @var int */
private $default_max_score = 100;
+
+ /** @var array<int, array<int, string|null>> */
private $generated_enclosures = [];
function about() {
@@ -118,7 +128,7 @@ class Af_RedditImgur extends Plugin {
<?php
}
- function save() {
+ function save() : void {
$enable_readability = checkbox_to_sql_bool($_POST["enable_readability"] ?? "");
$enable_content_dupcheck = checkbox_to_sql_bool($_POST["enable_content_dupcheck"] ?? "");
$reddit_to_teddit = checkbox_to_sql_bool($_POST["reddit_to_teddit"] ?? "");
@@ -138,7 +148,14 @@ class Af_RedditImgur extends Plugin {
echo __("Configuration saved");
}
- private function process_post_media($data, $doc, $xpath, $anchor) {
+ /**
+ * @param array<string,mixed> $data (this is a huge blob of random crap returned by reddit API)
+ * @param DOMDocument $doc
+ * @param DOMXPath $xpath
+ * @param DOMElement $anchor
+ * @return bool
+ */
+ private function process_post_media(array $data, DOMDocument $doc, DOMXPath $xpath, DOMElement $anchor) : bool {
$found = 0;
if (isset($data["media_metadata"])) {
@@ -242,14 +259,21 @@ class Af_RedditImgur extends Plugin {
}
}
- return $found;
+ return $found > 0;
}
/* function score_convert(int $value, int $from1, int $from2, int $to1, int $to2) {
return ($value - $from1) / ($from2 - $from1) * ($to2 - $to1) + $to1;
} */
- private function inline_stuff(&$article, &$doc, $xpath) {
+ /**
+ * @param array<string, mixed> $article
+ * @param DOMDocument $doc
+ * @param DOMXPath $xpath
+ * @return bool
+ * @throws PDOException
+ */
+ private function inline_stuff(array &$article, DOMDocument &$doc, DOMXpath $xpath) : bool {
$max_score = (int) $this->host->get($this, "max_score", $this->default_max_score);
$import_score = (bool) $this->host->get($this, "import_score", $this->default_max_score);
@@ -263,7 +287,7 @@ class Af_RedditImgur extends Plugin {
$this->generated_enclosures = [];
- // embed anchor element, before reddit <table> post layout
+ /** @var DOMElement|false $anchor -- embed anchor element, before reddit <table> post layout */
$anchor = $xpath->query('//body/*')->item(0);
// deal with json-provided media content first
@@ -583,7 +607,7 @@ class Af_RedditImgur extends Plugin {
if ($found)
$this->remove_post_thumbnail($doc, $xpath);
- return $found;
+ return $found > 0;
}
function hook_article_filter($article) {
@@ -651,14 +675,14 @@ class Af_RedditImgur extends Plugin {
return 2;
}
- private function remove_post_thumbnail($doc, $xpath) {
+ private function remove_post_thumbnail(DOMDocument $doc, DOMXpath $xpath) : void {
$thumb = $xpath->query("//td/a/img[@src]")->item(0);
if ($thumb)
$thumb->parentNode->parentNode->removeChild($thumb->parentNode);
}
- private function handle_as_image($doc, $entry, $image_url, $link_url = false) {
+ private function handle_as_image(DOMDocument $doc, DOMElement $entry, string $image_url, string $link_url = "") : void {
$img = $doc->createElement("img");
$img->setAttribute("src", $image_url);
@@ -677,7 +701,7 @@ class Af_RedditImgur extends Plugin {
$entry->parentNode->insertBefore($p, $entry);
}
- private function handle_as_video($doc, $entry, $source_stream, $poster_url = false) {
+ private function handle_as_video(DOMDocument $doc, DOMElement $entry, string $source_stream, string $poster_url = "") : void {
Debug::log("handle_as_video: $source_stream", Debug::LOG_VERBOSE);
@@ -709,7 +733,7 @@ class Af_RedditImgur extends Plugin {
return $method === "testurl";
}
- function testurl() {
+ function testurl() : void {
$url = clean($_POST["url"] ?? "");
$article_url = clean($_POST["article_url"] ?? "");
@@ -804,8 +828,8 @@ class Af_RedditImgur extends Plugin {
}
/** $useragent defaults to Config::get_user_agent() */
- private function get_header($url, $header, $useragent = false) {
- $ret = false;
+ private function get_header(string $url, int $header, string $useragent = "") : string {
+ $ret = "";
if (function_exists("curl_init")) {
$ch = curl_init($url);
@@ -823,16 +847,24 @@ class Af_RedditImgur extends Plugin {
return $ret;
}
- private function get_content_type($url, $useragent = false) {
+ private function get_content_type(string $url, string $useragent = "") : string {
return $this->get_header($url, CURLINFO_CONTENT_TYPE, $useragent);
}
- // @phpstan-ignore-next-line
- private function get_location($url, $useragent = false) {
+ /*private function get_location(string $url, string $useragent = "") : string {
return $this->get_header($url, CURLINFO_EFFECTIVE_URL, $useragent);
- }
-
- private function readability($article, $url, $doc, $xpath, $debug = false) {
+ }*/
+
+ /**
+ * @param array<string,mixed> $article
+ * @param string $url
+ * @param DOMDocument $doc
+ * @param DOMXPath $xpath
+ * @param bool $debug
+ * @return array<string,mixed>
+ * @throws PDOException
+ */
+ private function readability(array $article, string $url, DOMDocument $doc, DOMXpath $xpath, bool $debug = false) : array {
if (function_exists("curl_init") && $this->host->get($this, "enable_readability") &&
mb_strlen(strip_tags($article["content"])) <= 150) {
@@ -864,7 +896,12 @@ class Af_RedditImgur extends Plugin {
return $article;
}
- private function is_blacklisted($src, $also_blacklist = []) {
+ /**
+ * @param string $src
+ * @param array<string> $also_blacklist
+ * @return bool
+ */
+ private function is_blacklisted(string $src, array $also_blacklist = []) : bool {
$src_domain = parse_url($src, PHP_URL_HOST);
foreach (array_merge($this->domain_blacklist, $also_blacklist) as $domain) {
@@ -880,7 +917,7 @@ class Af_RedditImgur extends Plugin {
return $this->hook_render_article_cdm($article);
}
- private function rewrite_to_teddit($str) {
+ private function rewrite_to_teddit(string $str) : string {
if (strpos($str, "reddit.com") !== false) {
return preg_replace("/https?:\/\/([a-z]+\.)?reddit\.com/", "https://teddit.net", $str);
}
@@ -888,7 +925,7 @@ class Af_RedditImgur extends Plugin {
return $str;
}
- private function rewrite_to_reddit($str) {
+ private function rewrite_to_reddit(string $str) : string {
if (strpos($str, "teddit.net") !== false) {
$str = preg_replace("/https?:\/\/teddit.net/", "https://reddit.com", $str);
@@ -899,7 +936,6 @@ class Af_RedditImgur extends Plugin {
return $str;
}
-
function hook_render_article_cdm($article) {
if ($this->host->get($this, "reddit_to_teddit")) {
$need_saving = false;