init.php 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560
  1. <?php
  2. use andreskrey\Readability\Readability;
  3. use andreskrey\Readability\Configuration;
  4. class Af_RedditImgur extends Plugin {
  5. /* @var PluginHost $host */
  6. private $host;
  7. function about() {
  8. return array(1.0,
  9. "Inline images (and other content) in Reddit RSS feeds",
  10. "fox");
  11. }
  12. function flags() {
  13. return array("needs_curl" => true);
  14. }
  15. function init($host) {
  16. $this->host = $host;
  17. $host->add_hook($host::HOOK_ARTICLE_FILTER, $this);
  18. $host->add_hook($host::HOOK_PREFS_TAB, $this);
  19. }
  20. function hook_prefs_tab($args) {
  21. if ($args != "prefFeeds") return;
  22. print "<div dojoType=\"dijit.layout.AccordionPane\" title=\"".__('Reddit content settings (af_redditimgur)')."\">";
  23. $enable_readability = $this->host->get($this, "enable_readability");
  24. $enable_content_dupcheck = $this->host->get($this, "enable_content_dupcheck");
  25. if (version_compare(PHP_VERSION, '5.6.0', '<')) {
  26. print_error("Readability requires PHP version 5.6.");
  27. }
  28. print "<form dojoType=\"dijit.form.Form\">";
  29. print "<script type=\"dojo/method\" event=\"onSubmit\" args=\"evt\">
  30. evt.preventDefault();
  31. if (this.validate()) {
  32. console.log(dojo.objectToQuery(this.getValues()));
  33. new Ajax.Request('backend.php', {
  34. parameters: dojo.objectToQuery(this.getValues()),
  35. onComplete: function(transport) {
  36. notify_info(transport.responseText);
  37. }
  38. });
  39. //this.reset();
  40. }
  41. </script>";
  42. print_hidden("op", "pluginhandler");
  43. print_hidden("method", "save");
  44. print_hidden("plugin", "af_redditimgur");
  45. print_checkbox("enable_readability", $enable_readability);
  46. print "&nbsp;<label for=\"enable_readability\">" . __("Extract missing content using Readability") . "</label>";
  47. print "<br/>";
  48. print_checkbox("enable_content_dupcheck", $enable_content_dupcheck);
  49. print "&nbsp;<label for=\"enable_content_dupcheck\">" . __("Enable additional duplicate checking") . "</label>";
  50. print "<p>"; print_button("submit", __("Save"));
  51. print "</form>";
  52. print "</div>";
  53. }
  54. function save() {
  55. $enable_readability = checkbox_to_sql_bool($_POST["enable_readability"]);
  56. $enable_content_dupcheck = checkbox_to_sql_bool($_POST["enable_content_dupcheck"]);
  57. $this->host->set($this, "enable_readability", $enable_readability, false);
  58. $this->host->set($this, "enable_content_dupcheck", $enable_content_dupcheck);
  59. echo __("Configuration saved");
  60. }
  61. /**
  62. * @SuppressWarnings(PHPMD.UnusedFormalParameter)
  63. */
  64. private function inline_stuff($article, &$doc, $xpath, $debug = false) {
  65. $entries = $xpath->query('(//a[@href]|//img[@src])');
  66. $img_entries = $xpath->query("(//img[@src])");
  67. $found = false;
  68. //$debug = 1;
  69. foreach ($entries as $entry) {
  70. if ($entry->hasAttribute("href") && strpos($entry->getAttribute("href"), "reddit.com") === FALSE) {
  71. _debug("processing href: " . $entry->getAttribute("href"), $debug);
  72. $matches = array();
  73. if (!$found && preg_match("/^https?:\/\/twitter.com\/(.*?)\/status\/(.*)/", $entry->getAttribute("href"), $matches)) {
  74. _debug("handling as twitter: " . $matches[1] . " " . $matches[2], $debug);
  75. $oembed_result = fetch_file_contents("https://publish.twitter.com/oembed?url=" . urlencode($entry->getAttribute("href")));
  76. if ($oembed_result) {
  77. $oembed_result = json_decode($oembed_result, true);
  78. if ($oembed_result && isset($oembed_result["html"])) {
  79. $tmp = new DOMDocument();
  80. if ($tmp->loadHTML('<?xml encoding="utf-8" ?>' . $oembed_result["html"])) {
  81. $p = $doc->createElement("p");
  82. $p->appendChild($doc->importNode(
  83. $tmp->getElementsByTagName("blockquote")->item(0), TRUE));
  84. $br = $doc->createElement('br');
  85. $entry->parentNode->insertBefore($p, $entry);
  86. $entry->parentNode->insertBefore($br, $entry);
  87. $found = 1;
  88. }
  89. }
  90. }
  91. }
  92. if (!$found && preg_match("/\.gfycat.com\/([a-z]+)?(\.[a-z]+)$/i", $entry->getAttribute("href"), $matches)) {
  93. $entry->setAttribute("href", "http://www.gfycat.com/".$matches[1]);
  94. }
  95. if (!$found && preg_match("/https?:\/\/(www\.)?gfycat.com\/([a-z]+)$/i", $entry->getAttribute("href"), $matches)) {
  96. _debug("Handling as Gfycat", $debug);
  97. $tmp = fetch_file_contents($entry->getAttribute("href"));
  98. if ($tmp) {
  99. $tmpdoc = new DOMDocument();
  100. if (@$tmpdoc->loadHTML($tmp)) {
  101. $tmpxpath = new DOMXPath($tmpdoc);
  102. $source_node = $tmpxpath->query("//video[contains(@class,'share-video')]//source[contains(@src, '.mp4')]")->item(0);
  103. $poster_node = $tmpxpath->query("//video[contains(@class,'share-video') and @poster]")->item(0);
  104. if ($source_node && $poster_node) {
  105. $source_stream = $source_node->getAttribute("src");
  106. $poster_url = $poster_node->getAttribute("poster");
  107. $this->handle_as_video($doc, $entry, $source_stream, $poster_url);
  108. $found = 1;
  109. }
  110. }
  111. }
  112. }
  113. if (!$found && preg_match("/https?:\/\/v\.redd\.it\/(.*)$/i", $entry->getAttribute("href"), $matches)) {
  114. _debug("Handling as reddit inline video", $debug);
  115. $img = $img_entries->item(0);
  116. if ($img) {
  117. $poster_url = $img->getAttribute("src");
  118. } else {
  119. $poster_url = false;
  120. }
  121. // Get original article URL from v.redd.it redirects
  122. $source_article_url = $this->get_location($matches[0]);
  123. _debug("Resolved ".$matches[0]." to ".$source_article_url, $debug);
  124. $source_stream = false;
  125. if ($source_article_url) {
  126. $j = json_decode(fetch_file_contents($source_article_url.".json"), true);
  127. if ($j) {
  128. foreach ($j as $listing) {
  129. foreach ($listing["data"]["children"] as $child) {
  130. if ($child["data"]["url"] == $matches[0]) {
  131. try {
  132. $source_stream = $child["data"]["media"]["reddit_video"]["fallback_url"];
  133. }
  134. catch (Exception $e) {
  135. }
  136. break 2;
  137. }
  138. }
  139. }
  140. }
  141. }
  142. if (!$source_stream) {
  143. $source_stream = "https://v.redd.it/" . $matches[1] . "/DASH_600_K";
  144. }
  145. $this->handle_as_video($doc, $entry, $source_stream, $poster_url);
  146. $found = 1;
  147. }
  148. if (!$found && preg_match("/https?:\/\/(www\.)?streamable.com\//i", $entry->getAttribute("href"))) {
  149. _debug("Handling as Streamable", $debug);
  150. $tmp = fetch_file_contents($entry->getAttribute("href"));
  151. if ($tmp) {
  152. $tmpdoc = new DOMDocument();
  153. if (@$tmpdoc->loadHTML($tmp)) {
  154. $tmpxpath = new DOMXPath($tmpdoc);
  155. $source_node = $tmpxpath->query("//video[contains(@class,'video-player-tag')]//source[contains(@src, '.mp4')]")->item(0);
  156. $poster_node = $tmpxpath->query("//video[contains(@class,'video-player-tag') and @poster]")->item(0);
  157. if ($source_node && $poster_node) {
  158. $source_stream = $source_node->getAttribute("src");
  159. $poster_url = $poster_node->getAttribute("poster");
  160. $this->handle_as_video($doc, $entry, $source_stream, $poster_url);
  161. $found = 1;
  162. }
  163. }
  164. }
  165. }
  166. // imgur .gif -> .gifv
  167. if (!$found && preg_match("/i\.imgur\.com\/(.*?)\.gif$/i", $entry->getAttribute("href"))) {
  168. _debug("Handling as imgur gif (->gifv)", $debug);
  169. $entry->setAttribute("href",
  170. str_replace(".gif", ".gifv", $entry->getAttribute("href")));
  171. }
  172. if (!$found && preg_match("/\.(gifv|mp4)$/i", $entry->getAttribute("href"))) {
  173. _debug("Handling as imgur gifv", $debug);
  174. $source_stream = str_replace(".gifv", ".mp4", $entry->getAttribute("href"));
  175. if (strpos($source_stream, "imgur.com") !== FALSE)
  176. $poster_url = str_replace(".mp4", "h.jpg", $source_stream);
  177. $this->handle_as_video($doc, $entry, $source_stream, $poster_url, $debug);
  178. $found = true;
  179. }
  180. $matches = array();
  181. if (!$found && preg_match("/youtube\.com\/v\/([\w-]+)/", $entry->getAttribute("href"), $matches) ||
  182. preg_match("/youtube\.com\/.*?[\&\?]v=([\w-]+)/", $entry->getAttribute("href"), $matches) ||
  183. preg_match("/youtube\.com\/watch\?v=([\w-]+)/", $entry->getAttribute("href"), $matches) ||
  184. preg_match("/\/\/youtu.be\/([\w-]+)/", $entry->getAttribute("href"), $matches)) {
  185. $vid_id = $matches[1];
  186. _debug("Handling as youtube: $vid_id", $debug);
  187. $iframe = $doc->createElement("iframe");
  188. $iframe->setAttribute("class", "youtube-player");
  189. $iframe->setAttribute("type", "text/html");
  190. $iframe->setAttribute("width", "640");
  191. $iframe->setAttribute("height", "385");
  192. $iframe->setAttribute("src", "https://www.youtube.com/embed/$vid_id");
  193. $iframe->setAttribute("allowfullscreen", "1");
  194. $iframe->setAttribute("frameborder", "0");
  195. $br = $doc->createElement('br');
  196. $entry->parentNode->insertBefore($iframe, $entry);
  197. $entry->parentNode->insertBefore($br, $entry);
  198. $found = true;
  199. }
  200. if (!$found && preg_match("/\.(jpg|jpeg|gif|png)(\?[0-9][0-9]*)?$/i", $entry->getAttribute("href")) ||
  201. mb_strpos($entry->getAttribute("href"), "i.reddituploads.com") !== FALSE ||
  202. mb_strpos($this->get_content_type($entry->getAttribute("href")), "image/") !== FALSE) {
  203. _debug("Handling as a picture", $debug);
  204. $img = $doc->createElement('img');
  205. $img->setAttribute("src", $entry->getAttribute("href"));
  206. $br = $doc->createElement('br');
  207. $entry->parentNode->insertBefore($img, $entry);
  208. $entry->parentNode->insertBefore($br, $entry);
  209. $found = true;
  210. }
  211. // wtf is this even
  212. if (!$found && preg_match("/^https?:\/\/gyazo\.com\/([^\.\/]+$)/", $entry->getAttribute("href"), $matches)) {
  213. $img_id = $matches[1];
  214. _debug("handling as gyazo: $img_id", $debug);
  215. $img = $doc->createElement('img');
  216. $img->setAttribute("src", "https://i.gyazo.com/$img_id.jpg");
  217. $br = $doc->createElement('br');
  218. $entry->parentNode->insertBefore($img, $entry);
  219. $entry->parentNode->insertBefore($br, $entry);
  220. $found = true;
  221. }
  222. // let's try meta properties
  223. if (!$found) {
  224. _debug("looking for meta og:image", $debug);
  225. $content = fetch_file_contents(["url" => $entry->getAttribute("href"),
  226. "http_accept" => "text/*"]);
  227. if ($content) {
  228. $cdoc = new DOMDocument();
  229. if (@$cdoc->loadHTML($content)) {
  230. $cxpath = new DOMXPath($cdoc);
  231. $og_image = $cxpath->query("//meta[@property='og:image']")->item(0);
  232. if ($og_image) {
  233. $og_src = $og_image->getAttribute("content");
  234. if ($og_src) {
  235. $img = $doc->createElement('img');
  236. $img->setAttribute("src", $og_src);
  237. $br = $doc->createElement('br');
  238. $entry->parentNode->insertBefore($img, $entry);
  239. $entry->parentNode->insertBefore($br, $entry);
  240. $found = true;
  241. }
  242. }
  243. }
  244. }
  245. }
  246. }
  247. // remove tiny thumbnails
  248. if ($entry->hasAttribute("src")) {
  249. if ($entry->parentNode && $entry->parentNode->parentNode) {
  250. $entry->parentNode->parentNode->removeChild($entry->parentNode);
  251. }
  252. }
  253. }
  254. return $found;
  255. }
  256. function hook_article_filter($article) {
  257. if (strpos($article["link"], "reddit.com/r/") !== FALSE) {
  258. $doc = new DOMDocument();
  259. @$doc->loadHTML($article["content"]);
  260. $xpath = new DOMXPath($doc);
  261. $content_link = $xpath->query("(//a[contains(., '[link]')])")->item(0);
  262. if ($this->host->get($this, "enable_content_dupcheck")) {
  263. if ($content_link) {
  264. $content_href = $content_link->getAttribute("href");
  265. $entry_guid = $article["guid_hashed"];
  266. $owner_uid = $article["owner_uid"];
  267. if (DB_TYPE == "pgsql") {
  268. $interval_qpart = "date_entered < NOW() - INTERVAL '1 day'";
  269. } else {
  270. $interval_qpart = "date_entered < DATE_SUB(NOW(), INTERVAL 1 DAY)";
  271. }
  272. $sth = $this->pdo->prepare("SELECT COUNT(id) AS cid
  273. FROM ttrss_entries, ttrss_user_entries WHERE
  274. ref_id = id AND
  275. $interval_qpart AND
  276. guid != ? AND
  277. owner_uid = ? AND
  278. content LIKE ?");
  279. $sth->execute([$entry_guid, $owner_uid, "%href=\"$content_href\">[link]%"]);
  280. if ($row = $sth->fetch()) {
  281. $num_found = $row['cid'];
  282. if ($num_found > 0) $article["force_catchup"] = true;
  283. }
  284. }
  285. }
  286. $found = $this->inline_stuff($article, $doc, $xpath);
  287. $node = $doc->getElementsByTagName('body')->item(0);
  288. if ($node && $found) {
  289. $article["content"] = $doc->saveHTML($node);
  290. } else if ($content_link) {
  291. $article = $this->readability($article, $content_link->getAttribute("href"), $doc, $xpath);
  292. }
  293. }
  294. return $article;
  295. }
  296. function api_version() {
  297. return 2;
  298. }
  299. private function handle_as_video($doc, $entry, $source_stream, $poster_url = false, $debug = false) {
  300. _debug("handle_as_video: $source_stream", $debug);
  301. $video = $doc->createElement('video');
  302. $video->setAttribute("autoplay", "1");
  303. $video->setAttribute("controls", "1");
  304. $video->setAttribute("loop", "1");
  305. if ($poster_url) $video->setAttribute("poster", $poster_url);
  306. $source = $doc->createElement('source');
  307. $source->setAttribute("src", $source_stream);
  308. $source->setAttribute("type", "video/mp4");
  309. $video->appendChild($source);
  310. $br = $doc->createElement('br');
  311. $entry->parentNode->insertBefore($video, $entry);
  312. $entry->parentNode->insertBefore($br, $entry);
  313. $img = $doc->createElement('img');
  314. $img->setAttribute("src",
  315. "data:image/gif;base64,R0lGODlhAQABAAD/ACwAAAAAAQABAAACADs%3D");
  316. $entry->parentNode->insertBefore($img, $entry);
  317. }
  318. function testurl() {
  319. $url = htmlspecialchars($_REQUEST["url"]);
  320. header("Content-type: text/plain");
  321. print "URL: $url\n";
  322. $doc = new DOMDocument();
  323. @$doc->loadHTML("<html><body><a href=\"$url\">[link]</a></body>");
  324. $xpath = new DOMXPath($doc);
  325. $found = $this->inline_stuff([], $doc, $xpath, true);
  326. print "Inline result: $found\n";
  327. if (!$found) {
  328. print "\nReadability result:\n";
  329. $article = $this->readability([], $url, $doc, $xpath, true);
  330. print_r($article);
  331. } else {
  332. print "\nResulting HTML:\n";
  333. print $doc->saveHTML();
  334. }
  335. }
  336. private function get_header($url, $useragent = SELF_USER_AGENT, $header) {
  337. $ret = false;
  338. if (function_exists("curl_init") && !defined("NO_CURL")) {
  339. $ch = curl_init($url);
  340. curl_setopt($ch, CURLOPT_TIMEOUT, 5);
  341. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  342. curl_setopt($ch, CURLOPT_HEADER, true);
  343. curl_setopt($ch, CURLOPT_NOBODY, true);
  344. curl_setopt($ch, CURLOPT_FOLLOWLOCATION, !ini_get("open_basedir"));
  345. curl_setopt($ch, CURLOPT_USERAGENT, $useragent);
  346. @curl_exec($ch);
  347. $ret = curl_getinfo($ch, $header);
  348. }
  349. return $ret;
  350. }
  351. private function get_content_type($url, $useragent = SELF_USER_AGENT) {
  352. return $this->get_header($url, $useragent, CURLINFO_CONTENT_TYPE);
  353. }
  354. private function get_location($url, $useragent = SELF_USER_AGENT) {
  355. return $this->get_header($url, $useragent, CURLINFO_EFFECTIVE_URL);
  356. }
  357. /**
  358. * @SuppressWarnings(PHPMD.UnusedFormalParameter)
  359. */
  360. private function readability($article, $url, $doc, $xpath, $debug = false) {
  361. if (!defined('NO_CURL') && function_exists("curl_init") && $this->host->get($this, "enable_readability") &&
  362. mb_strlen(strip_tags($article["content"])) <= 150) {
  363. // do not try to embed posts linking back to other reddit posts
  364. // readability.php requires PHP 5.6
  365. if ($url && strpos($url, "reddit.com") === FALSE && version_compare(PHP_VERSION, '5.6.0', '>=')) {
  366. /* link may lead to a huge video file or whatever, we need to check content type before trying to
  367. parse it which p much requires curl */
  368. $useragent_compat = "Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.1; WOW64; Trident/6.0)";
  369. $content_type = $this->get_content_type($url, $useragent_compat);
  370. if ($content_type && strpos($content_type, "text/html") !== FALSE) {
  371. $tmp = fetch_file_contents(["url" => $url,
  372. "useragent" => $useragent_compat,
  373. "http_accept" => "text/html"]);
  374. if ($debug) _debug("tmplen: " . mb_strlen($tmp));
  375. if ($tmp && mb_strlen($tmp) < 1024 * 500) {
  376. $r = new Readability(new Configuration());
  377. try {
  378. if ($r->parse($tmp)) {
  379. $tmpxpath = new DOMXPath($r->getDOMDocument());
  380. $entries = $tmpxpath->query('(//a[@href]|//img[@src])');
  381. foreach ($entries as $entry) {
  382. if ($entry->hasAttribute("href")) {
  383. $entry->setAttribute("href",
  384. rewrite_relative_url($url, $entry->getAttribute("href")));
  385. }
  386. if ($entry->hasAttribute("src")) {
  387. $entry->setAttribute("src",
  388. rewrite_relative_url($url, $entry->getAttribute("src")));
  389. }
  390. }
  391. $article["content"] = $r->getContent() . "<hr/>" . $article["content"];
  392. }
  393. } catch (Exception $e) {
  394. //
  395. }
  396. }
  397. }
  398. }
  399. }
  400. return $article;
  401. }
  402. }