From b2c079893bbd783193fd212db435f5e6ebc8b094 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Sun, 9 Dec 2018 11:13:02 +0300 Subject: move Article::format_article() to Handler_Public --- classes/handler/public.php | 197 ++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 194 insertions(+), 3 deletions(-) (limited to 'classes/handler') diff --git a/classes/handler/public.php b/classes/handler/public.php index 7e3ee727b..f10ce07bd 100755 --- a/classes/handler/public.php +++ b/classes/handler/public.php @@ -300,16 +300,207 @@ class Handler_Public extends Handler { $id = $row["ref_id"]; $owner_uid = $row["owner_uid"]; - $article = Article::format_article($id, false, true, $owner_uid); - - print_r($article['content']); + print $this->format_article($id, $owner_uid); } else { + header($_SERVER["SERVER_PROTOCOL"]." 404 Not Found"); print "Article not found."; } } + private function format_article($id, $owner_uid) { + + $pdo = Db::pdo(); + + $sth = $pdo->prepare("SELECT id,title,link,content,feed_id,comments,int_id,lang, + ".SUBSTRING_FOR_DATE."(updated,1,16) as updated, + (SELECT site_url FROM ttrss_feeds WHERE id = feed_id) as site_url, + (SELECT title FROM ttrss_feeds WHERE id = feed_id) as feed_title, + (SELECT hide_images FROM ttrss_feeds WHERE id = feed_id) as hide_images, + (SELECT always_display_enclosures FROM ttrss_feeds WHERE id = feed_id) as always_display_enclosures, + num_comments, + tag_cache, + author, + guid, + orig_feed_id, + note + FROM ttrss_entries,ttrss_user_entries + WHERE id = ? AND ref_id = id AND owner_uid = ?"); + $sth->execute([$id, $owner_uid]); + + $rv = ''; + + if ($line = $sth->fetch()) { + + $line["tags"] = Article::get_article_tags($id, $owner_uid, $line["tag_cache"]); + unset($line["tag_cache"]); + + $line["content"] = sanitize($line["content"], + $line['hide_images'], + $owner_uid, $line["site_url"], false, $line["id"]); + + foreach (PluginHost::getInstance()->get_hooks(PluginHost::HOOK_RENDER_ARTICLE) as $p) { + $line = $p->hook_render_article($line); + } + + $line['content'] = rewrite_cached_urls($line['content']); + + $num_comments = (int) $line["num_comments"]; + $entry_comments = ""; + + if ($num_comments > 0) { + if ($line["comments"]) { + $comments_url = htmlspecialchars($line["comments"]); + } else { + $comments_url = htmlspecialchars($line["link"]); + } + $entry_comments = "$num_comments ". + _ngettext("comment", "comments", $num_comments).""; + + } else { + if ($line["comments"] && $line["link"] != $line["comments"]) { + $entry_comments = "".__("comments").""; + } + } + + $enclosures = Article::get_article_enclosures($line["id"]); + + header("Content-Type: text/html"); + + $rv .= " + + + ".$line["title"]."". + stylesheet_tag("css/default.css")." + + "; + + $rv .= "\n"; + $rv .= "\n"; + $rv .= "\n"; + + $rv .= ""; + + $og_image = false; + + foreach ($enclosures as $enc) { + if (strpos($enc["content_type"], "image/") !== FALSE) { + $og_image = $enc["content_url"]; + break; + } + } + + if (!$og_image) { + $tmpdoc = new DOMDocument(); + + if (@$tmpdoc->loadHTML(mb_substr($line["content"], 0, 131070))) { + $tmpxpath = new DOMXPath($tmpdoc); + $first_img = $tmpxpath->query("//img")->item(0); + + if ($first_img) { + $og_image = $first_img->getAttribute("src"); + } + } + } + + if ($og_image) { + $rv .= ""; + } + + $rv .= ""; + $rv .= "
"; + + /* header */ + + $rv .= "
"; + $rv .= "
"; # row + + //$entry_author = $line["author"] ? " - " . $line["author"] : ""; + $parsed_updated = make_local_datetime($line["updated"], true, + $owner_uid, true); + + if ($line["link"]) { + $rv .= ""; + } else { + $rv .= "
" . $line["title"] . "
"; + } + + $rv .= "
$parsed_updated
"; + + $rv .= "
"; # row + + $rv .= "
"; # row + + /* left buttons */ + + $rv .= "
"; + foreach (PluginHost::getInstance()->get_hooks(PluginHost::HOOK_ARTICLE_LEFT_BUTTON) as $p) { + $rv .= $p->hook_article_left_button($line); + } + $rv .= "
"; + + /* comments */ + + $rv .= "
$entry_comments
"; + $rv .= "
".$line['author']."
"; + + /* tags */ + + $tags_str = Article::format_tags_string($line["tags"], $id); + + $rv .= "label_outline
"; + + $tags_str = strip_tags($tags_str); + $rv .= "$tags_str"; + + $rv .= "
"; + + /* buttons */ + + $rv .= "
"; + foreach (PluginHost::getInstance()->get_hooks(PluginHost::HOOK_ARTICLE_BUTTON) as $p) { + $rv .= $p->hook_article_button($line); + } + $rv .= "
"; + + $rv .= "
"; # row + + $rv .= "
"; # header + + /* content */ + + $lang = $line['lang'] ? $line['lang'] : "en"; + $rv .= "
"; + + /* content body */ + + $rv .= $line["content"]; + + /* $rv .= Article::format_article_enclosures($id, + $line["always_display_enclosures"], + $line["content"], + $line["hide_images"]); */ + + $rv .= "
"; # content + + $rv .= "
"; # post + + } + + foreach (PluginHost::getInstance()->get_hooks(PluginHost::HOOK_FORMAT_ARTICLE) as $p) { + $rv = $p->hook_format_article($rv, $line, true); + } + + return $rv; + + } + function rss() { $feed = clean($_REQUEST["id"]); $key = clean($_REQUEST["key"]); -- cgit v1.2.3-54-g00ecf