rssfuncs.php 44 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532
  1. <?php
  2. define_default('DAEMON_UPDATE_LOGIN_LIMIT', 30);
  3. define_default('DAEMON_FEED_LIMIT', 500);
  4. define_default('DAEMON_SLEEP_INTERVAL', 120);
  5. define_default('_MIN_CACHE_IMAGE_SIZE', 1024);
  6. function calculate_article_hash($article, $pluginhost) {
  7. $tmp = "";
  8. foreach ($article as $k => $v) {
  9. if ($k != "feed" && isset($v)) {
  10. $x = strip_tags(is_array($v) ? implode(",", $v) : $v);
  11. //_debug("$k:" . sha1($x) . ":" . htmlspecialchars($x), true);
  12. $tmp .= sha1("$k:" . sha1($x));
  13. }
  14. }
  15. return sha1(implode(",", $pluginhost->get_plugin_names()) . $tmp);
  16. }
  17. function update_feedbrowser_cache() {
  18. $result = db_query("SELECT feed_url, site_url, title, COUNT(id) AS subscribers
  19. FROM ttrss_feeds WHERE (SELECT COUNT(id) = 0 FROM ttrss_feeds AS tf
  20. WHERE tf.feed_url = ttrss_feeds.feed_url
  21. AND (private IS true OR auth_login != '' OR auth_pass != '' OR feed_url LIKE '%:%@%/%'))
  22. GROUP BY feed_url, site_url, title ORDER BY subscribers DESC LIMIT 1000");
  23. db_query("BEGIN");
  24. db_query("DELETE FROM ttrss_feedbrowser_cache");
  25. $count = 0;
  26. while ($line = db_fetch_assoc($result)) {
  27. $subscribers = db_escape_string($line["subscribers"]);
  28. $feed_url = db_escape_string($line["feed_url"]);
  29. $title = db_escape_string($line["title"]);
  30. $site_url = db_escape_string($line["site_url"]);
  31. $tmp_result = db_query("SELECT subscribers FROM
  32. ttrss_feedbrowser_cache WHERE feed_url = '$feed_url'");
  33. if (db_num_rows($tmp_result) == 0) {
  34. db_query("INSERT INTO ttrss_feedbrowser_cache
  35. (feed_url, site_url, title, subscribers) VALUES ('$feed_url',
  36. '$site_url', '$title', '$subscribers')");
  37. ++$count;
  38. }
  39. }
  40. db_query("COMMIT");
  41. return $count;
  42. }
  43. /**
  44. * Update a feed batch.
  45. * Used by daemons to update n feeds by run.
  46. * Only update feed needing a update, and not being processed
  47. * by another process.
  48. *
  49. * @param mixed $link Database link
  50. * @param integer $limit Maximum number of feeds in update batch. Default to DAEMON_FEED_LIMIT.
  51. * @param boolean $from_http Set to true if you call this function from http to disable cli specific code.
  52. * @param boolean $debug Set to false to disable debug output. Default to true.
  53. * @return void
  54. */
  55. function update_daemon_common($limit = DAEMON_FEED_LIMIT, $from_http = false, $debug = true) {
  56. // Process all other feeds using last_updated and interval parameters
  57. $schema_version = get_schema_version();
  58. if ($schema_version != SCHEMA_VERSION) {
  59. die("Schema version is wrong, please upgrade the database.\n");
  60. }
  61. define('PREFS_NO_CACHE', true);
  62. // Test if the user has loggued in recently. If not, it does not update its feeds.
  63. if (!SINGLE_USER_MODE && DAEMON_UPDATE_LOGIN_LIMIT > 0) {
  64. if (DB_TYPE == "pgsql") {
  65. $login_thresh_qpart = "AND ttrss_users.last_login >= NOW() - INTERVAL '".DAEMON_UPDATE_LOGIN_LIMIT." days'";
  66. } else {
  67. $login_thresh_qpart = "AND ttrss_users.last_login >= DATE_SUB(NOW(), INTERVAL ".DAEMON_UPDATE_LOGIN_LIMIT." DAY)";
  68. }
  69. } else {
  70. $login_thresh_qpart = "";
  71. }
  72. // Test if the feed need a update (update interval exceeded).
  73. if (DB_TYPE == "pgsql") {
  74. $update_limit_qpart = "AND ((
  75. ttrss_feeds.update_interval = 0
  76. AND ttrss_user_prefs.value != '-1'
  77. AND ttrss_feeds.last_updated < NOW() - CAST((ttrss_user_prefs.value || ' minutes') AS INTERVAL)
  78. ) OR (
  79. ttrss_feeds.update_interval > 0
  80. AND ttrss_feeds.last_updated < NOW() - CAST((ttrss_feeds.update_interval || ' minutes') AS INTERVAL)
  81. ) OR (ttrss_feeds.last_updated IS NULL
  82. AND ttrss_user_prefs.value != '-1')
  83. OR (last_updated = '1970-01-01 00:00:00'
  84. AND ttrss_user_prefs.value != '-1'))";
  85. } else {
  86. $update_limit_qpart = "AND ((
  87. ttrss_feeds.update_interval = 0
  88. AND ttrss_user_prefs.value != '-1'
  89. AND ttrss_feeds.last_updated < DATE_SUB(NOW(), INTERVAL CONVERT(ttrss_user_prefs.value, SIGNED INTEGER) MINUTE)
  90. ) OR (
  91. ttrss_feeds.update_interval > 0
  92. AND ttrss_feeds.last_updated < DATE_SUB(NOW(), INTERVAL ttrss_feeds.update_interval MINUTE)
  93. ) OR (ttrss_feeds.last_updated IS NULL
  94. AND ttrss_user_prefs.value != '-1')
  95. OR (last_updated = '1970-01-01 00:00:00'
  96. AND ttrss_user_prefs.value != '-1'))";
  97. }
  98. // Test if feed is currently being updated by another process.
  99. if (DB_TYPE == "pgsql") {
  100. $updstart_thresh_qpart = "AND (ttrss_feeds.last_update_started IS NULL OR ttrss_feeds.last_update_started < NOW() - INTERVAL '10 minutes')";
  101. } else {
  102. $updstart_thresh_qpart = "AND (ttrss_feeds.last_update_started IS NULL OR ttrss_feeds.last_update_started < DATE_SUB(NOW(), INTERVAL 10 MINUTE))";
  103. }
  104. // Test if there is a limit to number of updated feeds
  105. $query_limit = "";
  106. if($limit) $query_limit = sprintf("LIMIT %d", $limit);
  107. // Update the least recently updated feeds first
  108. $query_order = "ORDER BY last_updated";
  109. if (DB_TYPE == "pgsql") $query_order .= " NULLS FIRST";
  110. $query = "SELECT DISTINCT ttrss_feeds.feed_url, ttrss_feeds.last_updated
  111. FROM
  112. ttrss_feeds, ttrss_users, ttrss_user_prefs
  113. WHERE
  114. ttrss_feeds.owner_uid = ttrss_users.id
  115. AND ttrss_user_prefs.profile IS NULL
  116. AND ttrss_users.id = ttrss_user_prefs.owner_uid
  117. AND ttrss_user_prefs.pref_name = 'DEFAULT_UPDATE_INTERVAL'
  118. $login_thresh_qpart $update_limit_qpart
  119. $updstart_thresh_qpart
  120. $query_order $query_limit";
  121. // We search for feed needing update.
  122. $result = db_query($query);
  123. if($debug) _debug(sprintf("Scheduled %d feeds to update...", db_num_rows($result)));
  124. // Here is a little cache magic in order to minimize risk of double feed updates.
  125. $feeds_to_update = array();
  126. while ($line = db_fetch_assoc($result)) {
  127. array_push($feeds_to_update, db_escape_string($line['feed_url']));
  128. }
  129. // We update the feed last update started date before anything else.
  130. // There is no lag due to feed contents downloads
  131. // It prevent an other process to update the same feed.
  132. if(count($feeds_to_update) > 0) {
  133. $feeds_quoted = array();
  134. foreach ($feeds_to_update as $feed) {
  135. array_push($feeds_quoted, "'" . db_escape_string($feed) . "'");
  136. }
  137. db_query(sprintf("UPDATE ttrss_feeds SET last_update_started = NOW()
  138. WHERE feed_url IN (%s)", implode(',', $feeds_quoted)));
  139. }
  140. $nf = 0;
  141. $bstarted = microtime(true);
  142. $batch_owners = array();
  143. // For each feed, we call the feed update function.
  144. foreach ($feeds_to_update as $feed) {
  145. if($debug) _debug("Base feed: $feed");
  146. //update_rss_feed($line["id"], true);
  147. // since we have the data cached, we can deal with other feeds with the same url
  148. $tmp_result = db_query("SELECT DISTINCT ttrss_feeds.id,last_updated,ttrss_feeds.owner_uid
  149. FROM ttrss_feeds, ttrss_users, ttrss_user_prefs WHERE
  150. ttrss_user_prefs.owner_uid = ttrss_feeds.owner_uid AND
  151. ttrss_users.id = ttrss_user_prefs.owner_uid AND
  152. ttrss_user_prefs.pref_name = 'DEFAULT_UPDATE_INTERVAL' AND
  153. ttrss_user_prefs.profile IS NULL AND
  154. feed_url = '".db_escape_string($feed)."'
  155. $update_limit_qpart
  156. $login_thresh_qpart
  157. ORDER BY ttrss_feeds.id $query_limit");
  158. if (db_num_rows($tmp_result) > 0) {
  159. $rss = false;
  160. while ($tline = db_fetch_assoc($tmp_result)) {
  161. if($debug) _debug(" => " . $tline["last_updated"] . ", " . $tline["id"] . " " . $tline["owner_uid"]);
  162. if (array_search($tline["owner_uid"], $batch_owners) === FALSE)
  163. array_push($batch_owners, $tline["owner_uid"]);
  164. $fstarted = microtime(true);
  165. $rss = update_rss_feed($tline["id"], true, false);
  166. _debug_suppress(false);
  167. _debug(sprintf(" %.4f (sec)", microtime(true) - $fstarted));
  168. ++$nf;
  169. }
  170. }
  171. }
  172. if ($nf > 0) {
  173. _debug(sprintf("Processed %d feeds in %.4f (sec), %.4f (sec/feed avg)", $nf,
  174. microtime(true) - $bstarted, (microtime(true) - $bstarted) / $nf));
  175. }
  176. foreach ($batch_owners as $owner_uid) {
  177. _debug("Running housekeeping tasks for user $owner_uid...");
  178. housekeeping_user($owner_uid);
  179. }
  180. require_once "digest.php";
  181. // Send feed digests by email if needed.
  182. send_headlines_digests($debug);
  183. return $nf;
  184. } // function update_daemon_common
  185. // this is used when subscribing
  186. function set_basic_feed_info($feed) {
  187. $feed = db_escape_string($feed);
  188. $result = db_query("SELECT feed_url,auth_pass,auth_login,auth_pass_encrypted
  189. FROM ttrss_feeds WHERE id = '$feed'");
  190. $auth_pass_encrypted = sql_bool_to_bool(db_fetch_result($result,
  191. 0, "auth_pass_encrypted"));
  192. $auth_login = db_fetch_result($result, 0, "auth_login");
  193. $auth_pass = db_fetch_result($result, 0, "auth_pass");
  194. if ($auth_pass_encrypted && function_exists("mcrypt_decrypt")) {
  195. require_once "crypt.php";
  196. $auth_pass = decrypt_string($auth_pass);
  197. }
  198. $fetch_url = db_fetch_result($result, 0, "feed_url");
  199. $feed_data = fetch_file_contents($fetch_url, false,
  200. $auth_login, $auth_pass, false,
  201. FEED_FETCH_TIMEOUT,
  202. 0);
  203. global $fetch_curl_used;
  204. if (!$fetch_curl_used) {
  205. $tmp = @gzdecode($feed_data);
  206. if ($tmp) $feed_data = $tmp;
  207. }
  208. $feed_data = trim($feed_data);
  209. $rss = new FeedParser($feed_data);
  210. $rss->init();
  211. if (!$rss->error()) {
  212. $result = db_query("SELECT title, site_url FROM ttrss_feeds WHERE id = '$feed'");
  213. $registered_title = db_fetch_result($result, 0, "title");
  214. $orig_site_url = db_fetch_result($result, 0, "site_url");
  215. $site_url = db_escape_string(mb_substr(rewrite_relative_url($fetch_url, $rss->get_link()), 0, 245));
  216. $feed_title = db_escape_string(mb_substr($rss->get_title(), 0, 199));
  217. if ($feed_title && (!$registered_title || $registered_title == "[Unknown]")) {
  218. db_query("UPDATE ttrss_feeds SET
  219. title = '$feed_title' WHERE id = '$feed'");
  220. }
  221. if ($site_url && $orig_site_url != $site_url) {
  222. db_query("UPDATE ttrss_feeds SET
  223. site_url = '$site_url' WHERE id = '$feed'");
  224. }
  225. }
  226. }
  227. // ignore_daemon is not used
  228. function update_rss_feed($feed, $ignore_daemon = false, $no_cache = false, $rss = false) {
  229. $debug_enabled = defined('DAEMON_EXTENDED_DEBUG') || $_REQUEST['xdebug'];
  230. _debug_suppress(!$debug_enabled);
  231. _debug("start", $debug_enabled);
  232. $result = db_query("SELECT title FROM ttrss_feeds
  233. WHERE id = '$feed'");
  234. if (db_num_rows($result) == 0) {
  235. _debug("feed $feed NOT FOUND/SKIPPED", $debug_enabled);
  236. user_error("Attempt to update unknown/invalid feed $feed", E_USER_WARNING);
  237. return false;
  238. }
  239. $title = db_fetch_result($result, 0, "title");
  240. // feed was batch-subscribed or something, we need to get basic info
  241. // this is not optimal currently as it fetches stuff separately TODO: optimize
  242. if ($title == "[Unknown]") {
  243. _debug("setting basic feed info for $feed...");
  244. set_basic_feed_info($feed);
  245. }
  246. $result = db_query("SELECT id,update_interval,auth_login,
  247. feed_url,auth_pass,cache_images,
  248. mark_unread_on_update, owner_uid,
  249. pubsub_state, auth_pass_encrypted,
  250. feed_language
  251. FROM ttrss_feeds WHERE id = '$feed'");
  252. $owner_uid = db_fetch_result($result, 0, "owner_uid");
  253. $mark_unread_on_update = sql_bool_to_bool(db_fetch_result($result,
  254. 0, "mark_unread_on_update"));
  255. $pubsub_state = db_fetch_result($result, 0, "pubsub_state");
  256. $auth_pass_encrypted = sql_bool_to_bool(db_fetch_result($result,
  257. 0, "auth_pass_encrypted"));
  258. db_query("UPDATE ttrss_feeds SET last_update_started = NOW()
  259. WHERE id = '$feed'");
  260. $auth_login = db_fetch_result($result, 0, "auth_login");
  261. $auth_pass = db_fetch_result($result, 0, "auth_pass");
  262. if ($auth_pass_encrypted && function_exists("mcrypt_decrypt")) {
  263. require_once "crypt.php";
  264. $auth_pass = decrypt_string($auth_pass);
  265. }
  266. $cache_images = sql_bool_to_bool(db_fetch_result($result, 0, "cache_images"));
  267. $fetch_url = db_fetch_result($result, 0, "feed_url");
  268. $feed_language = db_escape_string(mb_strtolower(db_fetch_result($result, 0, "feed_language")));
  269. if (!$feed_language) $feed_language = 'english';
  270. $feed = db_escape_string($feed);
  271. $date_feed_processed = date('Y-m-d H:i');
  272. $cache_filename = CACHE_DIR . "/simplepie/" . sha1($fetch_url) . ".xml";
  273. $pluginhost = new PluginHost();
  274. $pluginhost->set_debug($debug_enabled);
  275. $user_plugins = get_pref("_ENABLED_PLUGINS", $owner_uid);
  276. $pluginhost->load(PLUGINS, PluginHost::KIND_ALL);
  277. $pluginhost->load($user_plugins, PluginHost::KIND_USER, $owner_uid);
  278. $pluginhost->load_data();
  279. if ($rss && is_object($rss) && get_class($rss) == "FeedParser") {
  280. _debug("using previously initialized parser object");
  281. } else {
  282. $rss_hash = false;
  283. $force_refetch = isset($_REQUEST["force_refetch"]);
  284. $feed_data = "";
  285. foreach ($pluginhost->get_hooks(PluginHost::HOOK_FETCH_FEED) as $plugin) {
  286. $feed_data = $plugin->hook_fetch_feed($feed_data, $fetch_url, $owner_uid, $feed, 0, $auth_login, $auth_pass);
  287. }
  288. // try cache
  289. if (!$feed_data &&
  290. file_exists($cache_filename) &&
  291. is_readable($cache_filename) &&
  292. !$auth_login && !$auth_pass &&
  293. filemtime($cache_filename) > time() - 30) {
  294. _debug("using local cache [$cache_filename].", $debug_enabled);
  295. @$feed_data = file_get_contents($cache_filename);
  296. if ($feed_data) {
  297. $rss_hash = sha1($feed_data);
  298. }
  299. } else {
  300. _debug("local cache will not be used for this feed", $debug_enabled);
  301. }
  302. // fetch feed from source
  303. if (!$feed_data) {
  304. _debug("fetching [$fetch_url]...", $debug_enabled);
  305. if (ini_get("open_basedir") && function_exists("curl_init")) {
  306. _debug("not using CURL due to open_basedir restrictions");
  307. }
  308. $feed_data = fetch_file_contents($fetch_url, false,
  309. $auth_login, $auth_pass, false,
  310. $no_cache ? FEED_FETCH_NO_CACHE_TIMEOUT : FEED_FETCH_TIMEOUT,
  311. 0);
  312. global $fetch_curl_used;
  313. if (!$fetch_curl_used) {
  314. $tmp = @gzdecode($feed_data);
  315. if ($tmp) $feed_data = $tmp;
  316. }
  317. $feed_data = trim($feed_data);
  318. _debug("fetch done.", $debug_enabled);
  319. // cache vanilla feed data for re-use
  320. if ($feed_data && !$auth_pass && !$auth_login && is_writable(CACHE_DIR . "/simplepie")) {
  321. $new_rss_hash = sha1($feed_data);
  322. if ($new_rss_hash != $rss_hash) {
  323. _debug("saving $cache_filename", $debug_enabled);
  324. @file_put_contents($cache_filename, $feed_data);
  325. }
  326. }
  327. }
  328. if (!$feed_data) {
  329. global $fetch_last_error;
  330. global $fetch_last_error_code;
  331. _debug("unable to fetch: $fetch_last_error [$fetch_last_error_code]", $debug_enabled);
  332. $error_escaped = '';
  333. // If-Modified-Since
  334. if ($fetch_last_error_code != 304) {
  335. $error_escaped = db_escape_string($fetch_last_error);
  336. } else {
  337. _debug("source claims data not modified, nothing to do.", $debug_enabled);
  338. }
  339. db_query(
  340. "UPDATE ttrss_feeds SET last_error = '$error_escaped',
  341. last_updated = NOW() WHERE id = '$feed'");
  342. return;
  343. }
  344. }
  345. foreach ($pluginhost->get_hooks(PluginHost::HOOK_FEED_FETCHED) as $plugin) {
  346. $feed_data = $plugin->hook_feed_fetched($feed_data, $fetch_url, $owner_uid, $feed);
  347. }
  348. // set last update to now so if anything *simplepie* crashes later we won't be
  349. // continuously failing on the same feed
  350. //db_query("UPDATE ttrss_feeds SET last_updated = NOW() WHERE id = '$feed'");
  351. if (!$rss) {
  352. $rss = new FeedParser($feed_data);
  353. $rss->init();
  354. }
  355. // print_r($rss);
  356. $feed = db_escape_string($feed);
  357. if (!$rss->error()) {
  358. // We use local pluginhost here because we need to load different per-user feed plugins
  359. $pluginhost->run_hooks(PluginHost::HOOK_FEED_PARSED, "hook_feed_parsed", $rss);
  360. _debug("language: $feed_language", $debug_enabled);
  361. _debug("processing feed data...", $debug_enabled);
  362. // db_query("BEGIN");
  363. if (DB_TYPE == "pgsql") {
  364. $favicon_interval_qpart = "favicon_last_checked < NOW() - INTERVAL '12 hour'";
  365. } else {
  366. $favicon_interval_qpart = "favicon_last_checked < DATE_SUB(NOW(), INTERVAL 12 HOUR)";
  367. }
  368. $result = db_query("SELECT owner_uid,favicon_avg_color,
  369. (favicon_last_checked IS NULL OR $favicon_interval_qpart) AS
  370. favicon_needs_check
  371. FROM ttrss_feeds WHERE id = '$feed'");
  372. $favicon_needs_check = sql_bool_to_bool(db_fetch_result($result, 0,
  373. "favicon_needs_check"));
  374. $favicon_avg_color = db_fetch_result($result, 0, "favicon_avg_color");
  375. $owner_uid = db_fetch_result($result, 0, "owner_uid");
  376. $site_url = db_escape_string(mb_substr(rewrite_relative_url($fetch_url, $rss->get_link()), 0, 245));
  377. _debug("site_url: $site_url", $debug_enabled);
  378. _debug("feed_title: " . $rss->get_title(), $debug_enabled);
  379. if ($favicon_needs_check || $force_refetch) {
  380. /* terrible hack: if we crash on floicon shit here, we won't check
  381. * the icon avgcolor again (unless the icon got updated) */
  382. $favicon_file = ICONS_DIR . "/$feed.ico";
  383. $favicon_modified = @filemtime($favicon_file);
  384. _debug("checking favicon...", $debug_enabled);
  385. check_feed_favicon($site_url, $feed);
  386. $favicon_modified_new = @filemtime($favicon_file);
  387. if ($favicon_modified_new > $favicon_modified)
  388. $favicon_avg_color = '';
  389. if (file_exists($favicon_file) && function_exists("imagecreatefromstring") && $favicon_avg_color == '') {
  390. require_once "colors.php";
  391. db_query("UPDATE ttrss_feeds SET favicon_avg_color = 'fail' WHERE
  392. id = '$feed'");
  393. $favicon_color = db_escape_string(
  394. calculate_avg_color($favicon_file));
  395. $favicon_colorstring = ",favicon_avg_color = '".$favicon_color."'";
  396. } else if ($favicon_avg_color == 'fail') {
  397. _debug("floicon failed on this file, not trying to recalculate avg color", $debug_enabled);
  398. }
  399. db_query("UPDATE ttrss_feeds SET favicon_last_checked = NOW()
  400. $favicon_colorstring
  401. WHERE id = '$feed'");
  402. }
  403. _debug("loading filters & labels...", $debug_enabled);
  404. $filters = load_filters($feed, $owner_uid);
  405. _debug("" . count($filters) . " filters loaded.", $debug_enabled);
  406. $items = $rss->get_items();
  407. if (!is_array($items)) {
  408. _debug("no articles found.", $debug_enabled);
  409. db_query("UPDATE ttrss_feeds
  410. SET last_updated = NOW(), last_error = '' WHERE id = '$feed'");
  411. return; // no articles
  412. }
  413. if ($pubsub_state != 2 && PUBSUBHUBBUB_ENABLED) {
  414. _debug("checking for PUSH hub...", $debug_enabled);
  415. $feed_hub_url = false;
  416. $links = $rss->get_links('hub');
  417. if ($links && is_array($links)) {
  418. foreach ($links as $l) {
  419. $feed_hub_url = $l;
  420. break;
  421. }
  422. }
  423. _debug("feed hub url: $feed_hub_url", $debug_enabled);
  424. $feed_self_url = $fetch_url;
  425. $links = $rss->get_links('self');
  426. if ($links && is_array($links)) {
  427. foreach ($links as $l) {
  428. $feed_self_url = $l;
  429. break;
  430. }
  431. }
  432. _debug("feed self url = $feed_self_url");
  433. if ($feed_hub_url && $feed_self_url && function_exists('curl_init') &&
  434. !ini_get("open_basedir")) {
  435. require_once 'lib/pubsubhubbub/Subscriber.php';
  436. $callback_url = get_self_url_prefix() .
  437. "/public.php?op=pubsub&id=$feed";
  438. $s = new Subscriber($feed_hub_url, $callback_url);
  439. $rc = $s->subscribe($feed_self_url);
  440. _debug("feed hub url found, subscribe request sent. [rc=$rc]", $debug_enabled);
  441. db_query("UPDATE ttrss_feeds SET pubsub_state = 1
  442. WHERE id = '$feed'");
  443. }
  444. }
  445. _debug("processing articles...", $debug_enabled);
  446. $tstart = time();
  447. foreach ($items as $item) {
  448. if ($_REQUEST['xdebug'] == 3) {
  449. print_r($item);
  450. }
  451. if (ini_get("max_execution_time") > 0 && time() - $tstart >= ini_get("max_execution_time") * 0.7) {
  452. _debug("looks like there's too many articles to process at once, breaking out", $debug_enabled);
  453. break;
  454. }
  455. $entry_guid = $item->get_id();
  456. if (!$entry_guid) $entry_guid = $item->get_link();
  457. if (!$entry_guid) $entry_guid = make_guid_from_title($item->get_title());
  458. if (!$entry_guid) continue;
  459. $entry_guid = "$owner_uid,$entry_guid";
  460. $entry_guid_hashed = db_escape_string('SHA1:' . sha1($entry_guid));
  461. _debug("guid $entry_guid / $entry_guid_hashed", $debug_enabled);
  462. $entry_timestamp = "";
  463. $entry_timestamp = $item->get_date();
  464. _debug("orig date: " . $item->get_date(), $debug_enabled);
  465. if ($entry_timestamp == -1 || !$entry_timestamp || $entry_timestamp > time()) {
  466. $entry_timestamp = time();
  467. }
  468. $entry_timestamp_fmt = strftime("%Y/%m/%d %H:%M:%S", $entry_timestamp);
  469. _debug("date $entry_timestamp [$entry_timestamp_fmt]", $debug_enabled);
  470. // $entry_title = html_entity_decode($item->get_title(), ENT_COMPAT, 'UTF-8');
  471. // $entry_title = decode_numeric_entities($entry_title);
  472. $entry_title = $item->get_title();
  473. $entry_link = rewrite_relative_url($site_url, $item->get_link());
  474. _debug("title $entry_title", $debug_enabled);
  475. _debug("link $entry_link", $debug_enabled);
  476. if (!$entry_title) $entry_title = date("Y-m-d H:i:s", $entry_timestamp);;
  477. $entry_content = $item->get_content();
  478. if (!$entry_content) $entry_content = $item->get_description();
  479. if ($_REQUEST["xdebug"] == 2) {
  480. print "content: ";
  481. print htmlspecialchars($entry_content);
  482. print "\n";
  483. }
  484. $entry_comments = db_escape_string(mb_substr($item->get_comments_url(), 0, 245));
  485. $num_comments = (int) $item->get_comments_count();
  486. $entry_author = $item->get_author(); // escaped later
  487. $entry_guid = db_escape_string(mb_substr($entry_guid, 0, 245));
  488. _debug("author $entry_author", $debug_enabled);
  489. _debug("num_comments: $num_comments", $debug_enabled);
  490. _debug("looking for tags...", $debug_enabled);
  491. // parse <category> entries into tags
  492. $additional_tags = array();
  493. $additional_tags_src = $item->get_categories();
  494. if (is_array($additional_tags_src)) {
  495. foreach ($additional_tags_src as $tobj) {
  496. array_push($additional_tags, $tobj);
  497. }
  498. }
  499. $entry_tags = array_unique($additional_tags);
  500. for ($i = 0; $i < count($entry_tags); $i++)
  501. $entry_tags[$i] = mb_strtolower($entry_tags[$i], 'utf-8');
  502. _debug("tags found: " . join(",", $entry_tags), $debug_enabled);
  503. _debug("done collecting data.", $debug_enabled);
  504. $result = db_query("SELECT id, content_hash, lang FROM ttrss_entries
  505. WHERE guid = '".db_escape_string($entry_guid)."' OR guid = '$entry_guid_hashed'");
  506. if (db_num_rows($result) != 0) {
  507. $base_entry_id = db_fetch_result($result, 0, "id");
  508. $entry_stored_hash = db_fetch_result($result, 0, "content_hash");
  509. $article_labels = get_article_labels($base_entry_id, $owner_uid);
  510. $entry_language = db_fetch_result($result, 0, "lang");
  511. $existing_tags = get_article_tags($base_entry_id, $owner_uid);
  512. $entry_tags = array_unique(array_merge($entry_tags, $existing_tags));
  513. } else {
  514. $base_entry_id = false;
  515. $entry_stored_hash = "";
  516. $article_labels = array();
  517. $entry_language = "";
  518. }
  519. $article = array("owner_uid" => $owner_uid, // read only
  520. "guid" => $entry_guid, // read only
  521. "guid_hashed" => $entry_guid_hashed, // read only
  522. "title" => $entry_title,
  523. "content" => $entry_content,
  524. "link" => $entry_link,
  525. "labels" => $article_labels, // current limitation: can add labels to article, can't remove them
  526. "tags" => $entry_tags,
  527. "author" => $entry_author,
  528. "force_catchup" => false, // ugly hack for the time being
  529. "score_modifier" => 0, // no previous value, plugin should recalculate score modifier based on content if needed
  530. "language" => $entry_language,
  531. "feed" => array("id" => $feed,
  532. "fetch_url" => $fetch_url,
  533. "site_url" => $site_url,
  534. "cache_images" => $cache_images)
  535. );
  536. $entry_plugin_data = "";
  537. $entry_current_hash = calculate_article_hash($article, $pluginhost);
  538. _debug("article hash: $entry_current_hash [stored=$entry_stored_hash]", $debug_enabled);
  539. if ($entry_current_hash == $entry_stored_hash && !isset($_REQUEST["force_rehash"])) {
  540. _debug("stored article seems up to date [IID: $base_entry_id], updating timestamp only", $debug_enabled);
  541. // we keep encountering the entry in feeds, so we need to
  542. // update date_updated column so that we don't get horrible
  543. // dupes when the entry gets purged and reinserted again e.g.
  544. // in the case of SLOW SLOW OMG SLOW updating feeds
  545. $base_entry_id = db_fetch_result($result, 0, "id");
  546. db_query("UPDATE ttrss_entries SET date_updated = NOW()
  547. WHERE id = '$base_entry_id'");
  548. continue;
  549. }
  550. _debug("hash differs, applying plugin filters:", $debug_enabled);
  551. foreach ($pluginhost->get_hooks(PluginHost::HOOK_ARTICLE_FILTER) as $plugin) {
  552. _debug("... " . get_class($plugin), $debug_enabled);
  553. $start = microtime(true);
  554. $article = $plugin->hook_article_filter($article);
  555. _debug("=== " . sprintf("%.4f (sec)", microtime(true) - $start), $debug_enabled);
  556. $entry_plugin_data .= mb_strtolower(get_class($plugin)) . ",";
  557. }
  558. if ($_REQUEST["xdebug"] == 2) {
  559. print "processed content: ";
  560. print htmlspecialchars($article["content"]);
  561. print "\n";
  562. }
  563. $entry_plugin_data = db_escape_string($entry_plugin_data);
  564. _debug("plugin data: $entry_plugin_data", $debug_enabled);
  565. // Workaround: 4-byte unicode requires utf8mb4 in MySQL. See https://tt-rss.org/forum/viewtopic.php?f=1&t=3377&p=20077#p20077
  566. if (DB_TYPE == "mysql") {
  567. foreach ($article as $k => $v) {
  568. // i guess we'll have to take the risk of 4byte unicode labels & tags here
  569. if (is_string($article[$k])) {
  570. $article[$k] = preg_replace('/[\x{10000}-\x{10FFFF}]/u', "\xEF\xBF\xBD", $v);
  571. }
  572. }
  573. }
  574. /* Collect article tags here so we could filter by them: */
  575. $matched_rules = array();
  576. $article_filters = get_article_filters($filters, $article["title"],
  577. $article["content"], $article["link"], 0, $article["author"],
  578. $article["tags"], $matched_rules);
  579. if ($debug_enabled) {
  580. _debug("matched filter rules: ", $debug_enabled);
  581. if (count($matched_rules) != 0) {
  582. print_r($matched_rules);
  583. }
  584. _debug("filter actions: ", $debug_enabled);
  585. if (count($article_filters) != 0) {
  586. print_r($article_filters);
  587. }
  588. }
  589. $plugin_filter_names = find_article_filters($article_filters, "plugin");
  590. $plugin_filter_actions = $pluginhost->get_filter_actions();
  591. if (count($plugin_filter_names) > 0) {
  592. _debug("applying plugin filter actions...", $debug_enabled);
  593. foreach ($plugin_filter_names as $pfn) {
  594. list($pfclass,$pfaction) = explode(":", $pfn["param"]);
  595. if (isset($plugin_filter_actions[$pfclass])) {
  596. $plugin = $pluginhost->get_plugin($pfclass);
  597. _debug("... $pfclass: $pfaction", $debug_enabled);
  598. if ($plugin) {
  599. $start = microtime(true);
  600. $article = $plugin->hook_article_filter_action($article, $pfaction);
  601. _debug("=== " . sprintf("%.4f (sec)", microtime(true) - $start), $debug_enabled);
  602. } else {
  603. _debug("??? $pfclass: plugin object not found.");
  604. }
  605. } else {
  606. _debug("??? $pfclass: filter plugin not registered.");
  607. }
  608. }
  609. }
  610. $entry_tags = $article["tags"];
  611. $entry_guid = db_escape_string($entry_guid);
  612. $entry_title = db_escape_string($article["title"]);
  613. $entry_author = db_escape_string(mb_substr($article["author"], 0, 245));
  614. $entry_link = db_escape_string($article["link"]);
  615. $entry_content = $article["content"]; // escaped below
  616. $entry_force_catchup = $article["force_catchup"];
  617. $article_labels = $article["labels"];
  618. $entry_score_modifier = (int) $article["score_modifier"];
  619. $entry_language = db_escape_string($article["language"]);
  620. if ($debug_enabled) {
  621. _debug("article labels:", $debug_enabled);
  622. if (count($article_labels) != 0) {
  623. print_r($article_labels);
  624. }
  625. }
  626. _debug("force catchup: $entry_force_catchup");
  627. if ($cache_images && is_writable(CACHE_DIR . '/images'))
  628. cache_images($entry_content, $site_url, $debug_enabled);
  629. $entry_content = db_escape_string($entry_content, false);
  630. //db_query("BEGIN");
  631. $result = db_query("SELECT id FROM ttrss_entries
  632. WHERE (guid = '$entry_guid' OR guid = '$entry_guid_hashed')");
  633. if (db_num_rows($result) == 0) {
  634. _debug("base guid [$entry_guid] not found", $debug_enabled);
  635. // base post entry does not exist, create it
  636. $result = db_query(
  637. "INSERT INTO ttrss_entries
  638. (title,
  639. guid,
  640. link,
  641. updated,
  642. content,
  643. content_hash,
  644. no_orig_date,
  645. date_updated,
  646. date_entered,
  647. comments,
  648. num_comments,
  649. plugin_data,
  650. lang,
  651. author)
  652. VALUES
  653. ('$entry_title',
  654. '$entry_guid_hashed',
  655. '$entry_link',
  656. '$entry_timestamp_fmt',
  657. '$entry_content',
  658. '$entry_current_hash',
  659. false,
  660. NOW(),
  661. '$date_feed_processed',
  662. '$entry_comments',
  663. '$num_comments',
  664. '$entry_plugin_data',
  665. '$entry_language',
  666. '$entry_author')");
  667. } else {
  668. $base_entry_id = db_fetch_result($result, 0, "id");
  669. }
  670. // now it should exist, if not - bad luck then
  671. $result = db_query("SELECT id FROM ttrss_entries
  672. WHERE guid = '$entry_guid' OR guid = '$entry_guid_hashed'");
  673. $entry_ref_id = 0;
  674. $entry_int_id = 0;
  675. if (db_num_rows($result) == 1) {
  676. _debug("base guid found, checking for user record", $debug_enabled);
  677. $ref_id = db_fetch_result($result, 0, "id");
  678. $entry_ref_id = $ref_id;
  679. /* $stored_guid = db_fetch_result($result, 0, "guid");
  680. if ($stored_guid != $entry_guid_hashed) {
  681. if ($debug_enabled) _debug("upgrading compat guid to hashed one", $debug_enabled);
  682. db_query("UPDATE ttrss_entries SET guid = '$entry_guid_hashed' WHERE
  683. id = '$ref_id'");
  684. } */
  685. if (find_article_filter($article_filters, "filter")) {
  686. //db_query("COMMIT"); // close transaction in progress
  687. continue;
  688. }
  689. $score = calculate_article_score($article_filters) + $entry_score_modifier;
  690. _debug("initial score: $score [including plugin modifier: $entry_score_modifier]", $debug_enabled);
  691. // check for user post link to main table
  692. $query = "SELECT ref_id, int_id FROM ttrss_user_entries WHERE
  693. ref_id = '$ref_id' AND owner_uid = '$owner_uid'";
  694. // if ($_REQUEST["xdebug"]) print "$query\n";
  695. $result = db_query($query);
  696. // okay it doesn't exist - create user entry
  697. if (db_num_rows($result) == 0) {
  698. _debug("user record not found, creating...", $debug_enabled);
  699. if ($score >= -500 && !find_article_filter($article_filters, 'catchup') && !$entry_force_catchup) {
  700. $unread = 'true';
  701. $last_read_qpart = 'NULL';
  702. } else {
  703. $unread = 'false';
  704. $last_read_qpart = 'NOW()';
  705. }
  706. if (find_article_filter($article_filters, 'mark') || $score > 1000) {
  707. $marked = 'true';
  708. } else {
  709. $marked = 'false';
  710. }
  711. if (find_article_filter($article_filters, 'publish')) {
  712. $published = 'true';
  713. } else {
  714. $published = 'false';
  715. }
  716. $last_marked = ($marked == 'true') ? 'NOW()' : 'NULL';
  717. $last_published = ($published == 'true') ? 'NOW()' : 'NULL';
  718. $result = db_query(
  719. "INSERT INTO ttrss_user_entries
  720. (ref_id, owner_uid, feed_id, unread, last_read, marked,
  721. published, score, tag_cache, label_cache, uuid,
  722. last_marked, last_published)
  723. VALUES ('$ref_id', '$owner_uid', '$feed', $unread,
  724. $last_read_qpart, $marked, $published, '$score', '', '',
  725. '', $last_marked, $last_published)");
  726. if (PUBSUBHUBBUB_HUB && $published == 'true') {
  727. $rss_link = get_self_url_prefix() .
  728. "/public.php?op=rss&id=-2&key=" .
  729. get_feed_access_key(-2, false, $owner_uid);
  730. $p = new Publisher(PUBSUBHUBBUB_HUB);
  731. /* $pubsub_result = */ $p->publish_update($rss_link);
  732. }
  733. $result = db_query(
  734. "SELECT int_id FROM ttrss_user_entries WHERE
  735. ref_id = '$ref_id' AND owner_uid = '$owner_uid' AND
  736. feed_id = '$feed' LIMIT 1");
  737. if (db_num_rows($result) == 1) {
  738. $entry_int_id = db_fetch_result($result, 0, "int_id");
  739. }
  740. } else {
  741. _debug("user record FOUND", $debug_enabled);
  742. $entry_ref_id = db_fetch_result($result, 0, "ref_id");
  743. $entry_int_id = db_fetch_result($result, 0, "int_id");
  744. }
  745. _debug("RID: $entry_ref_id, IID: $entry_int_id", $debug_enabled);
  746. if (DB_TYPE == "pgsql") {
  747. $tsvector_combined = db_escape_string(mb_substr($entry_title . ' ' . strip_tags(str_replace('<', ' <', $entry_content)),
  748. 0, 1000000));
  749. $tsvector_qpart = "tsvector_combined = to_tsvector('$feed_language', '$tsvector_combined'),";
  750. } else {
  751. $tsvector_qpart = "";
  752. }
  753. db_query("UPDATE ttrss_entries
  754. SET title = '$entry_title',
  755. content = '$entry_content',
  756. content_hash = '$entry_current_hash',
  757. updated = '$entry_timestamp_fmt',
  758. $tsvector_qpart
  759. num_comments = '$num_comments',
  760. plugin_data = '$entry_plugin_data',
  761. author = '$entry_author',
  762. lang = '$entry_language'
  763. WHERE id = '$ref_id'");
  764. // update aux data
  765. db_query("UPDATE ttrss_user_entries
  766. SET score = '$score' WHERE ref_id = '$ref_id'");
  767. if ($mark_unread_on_update) {
  768. _debug("article updated, marking unread as requested.", $debug_enabled);
  769. db_query("UPDATE ttrss_user_entries
  770. SET last_read = null, unread = true WHERE ref_id = '$ref_id'");
  771. }
  772. }
  773. //db_query("COMMIT");
  774. _debug("assigning labels [other]...", $debug_enabled);
  775. foreach ($article_labels as $label) {
  776. label_add_article($entry_ref_id, $label[1], $owner_uid);
  777. }
  778. _debug("assigning labels [filters]...", $debug_enabled);
  779. assign_article_to_label_filters($entry_ref_id, $article_filters,
  780. $owner_uid, $article_labels);
  781. _debug("looking for enclosures...", $debug_enabled);
  782. // enclosures
  783. $enclosures = array();
  784. $encs = $item->get_enclosures();
  785. if (is_array($encs)) {
  786. foreach ($encs as $e) {
  787. $e_item = array(
  788. $e->link, $e->type, $e->length, $e->title, $e->width, $e->height);
  789. array_push($enclosures, $e_item);
  790. }
  791. }
  792. if ($debug_enabled) {
  793. _debug("article enclosures:", $debug_enabled);
  794. print_r($enclosures);
  795. }
  796. //db_query("BEGIN");
  797. // debugging
  798. // db_query("DELETE FROM ttrss_enclosures WHERE post_id = '$entry_ref_id'");
  799. foreach ($enclosures as $enc) {
  800. $enc_url = db_escape_string($enc[0]);
  801. $enc_type = db_escape_string($enc[1]);
  802. $enc_dur = db_escape_string($enc[2]);
  803. $enc_title = db_escape_string($enc[3]);
  804. $enc_width = intval($enc[4]);
  805. $enc_height = intval($enc[5]);
  806. $result = db_query("SELECT id FROM ttrss_enclosures
  807. WHERE content_url = '$enc_url' AND post_id = '$entry_ref_id'");
  808. if (db_num_rows($result) == 0) {
  809. db_query("INSERT INTO ttrss_enclosures
  810. (content_url, content_type, title, duration, post_id, width, height) VALUES
  811. ('$enc_url', '$enc_type', '$enc_title', '$enc_dur', '$entry_ref_id', $enc_width, $enc_height)");
  812. }
  813. }
  814. //db_query("COMMIT");
  815. // check for manual tags (we have to do it here since they're loaded from filters)
  816. foreach ($article_filters as $f) {
  817. if ($f["type"] == "tag") {
  818. $manual_tags = trim_array(explode(",", $f["param"]));
  819. foreach ($manual_tags as $tag) {
  820. if (tag_is_valid($tag)) {
  821. array_push($entry_tags, $tag);
  822. }
  823. }
  824. }
  825. }
  826. // Skip boring tags
  827. $boring_tags = trim_array(explode(",", mb_strtolower(get_pref(
  828. 'BLACKLISTED_TAGS', $owner_uid, ''), 'utf-8')));
  829. $filtered_tags = array();
  830. $tags_to_cache = array();
  831. if ($entry_tags && is_array($entry_tags)) {
  832. foreach ($entry_tags as $tag) {
  833. if (array_search($tag, $boring_tags) === false) {
  834. array_push($filtered_tags, $tag);
  835. }
  836. }
  837. }
  838. $filtered_tags = array_unique($filtered_tags);
  839. if ($debug_enabled) {
  840. _debug("filtered article tags:", $debug_enabled);
  841. print_r($filtered_tags);
  842. }
  843. // Save article tags in the database
  844. if (count($filtered_tags) > 0) {
  845. //db_query("BEGIN");
  846. foreach ($filtered_tags as $tag) {
  847. $tag = sanitize_tag($tag);
  848. $tag = db_escape_string($tag);
  849. if (!tag_is_valid($tag)) continue;
  850. $result = db_query("SELECT id FROM ttrss_tags
  851. WHERE tag_name = '$tag' AND post_int_id = '$entry_int_id' AND
  852. owner_uid = '$owner_uid' LIMIT 1");
  853. if ($result && db_num_rows($result) == 0) {
  854. db_query("INSERT INTO ttrss_tags
  855. (owner_uid,tag_name,post_int_id)
  856. VALUES ('$owner_uid','$tag', '$entry_int_id')");
  857. }
  858. array_push($tags_to_cache, $tag);
  859. }
  860. /* update the cache */
  861. $tags_to_cache = array_unique($tags_to_cache);
  862. $tags_str = db_escape_string(join(",", $tags_to_cache));
  863. db_query("UPDATE ttrss_user_entries
  864. SET tag_cache = '$tags_str' WHERE ref_id = '$entry_ref_id'
  865. AND owner_uid = $owner_uid");
  866. //db_query("COMMIT");
  867. }
  868. _debug("article processed", $debug_enabled);
  869. }
  870. _debug("purging feed...", $debug_enabled);
  871. purge_feed($feed, 0, $debug_enabled);
  872. db_query("UPDATE ttrss_feeds
  873. SET last_updated = NOW(), last_error = '' WHERE id = '$feed'");
  874. // db_query("COMMIT");
  875. } else {
  876. $error_msg = db_escape_string(mb_substr($rss->error(), 0, 245));
  877. _debug("fetch error: $error_msg", $debug_enabled);
  878. if (count($rss->errors()) > 1) {
  879. foreach ($rss->errors() as $error) {
  880. _debug("+ $error");
  881. }
  882. }
  883. db_query(
  884. "UPDATE ttrss_feeds SET last_error = '$error_msg',
  885. last_updated = NOW() WHERE id = '$feed'");
  886. unset($rss);
  887. }
  888. _debug("done", $debug_enabled);
  889. return $rss;
  890. }
  891. function cache_images($html, $site_url, $debug) {
  892. libxml_use_internal_errors(true);
  893. $charset_hack = '<head>
  894. <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
  895. </head>';
  896. $doc = new DOMDocument();
  897. $doc->loadHTML($charset_hack . $html);
  898. $xpath = new DOMXPath($doc);
  899. $entries = $xpath->query('(//img[@src])');
  900. foreach ($entries as $entry) {
  901. if ($entry->hasAttribute('src')) {
  902. $src = rewrite_relative_url($site_url, $entry->getAttribute('src'));
  903. $local_filename = CACHE_DIR . "/images/" . sha1($src) . ".png";
  904. if ($debug) _debug("cache_images: downloading: $src to $local_filename");
  905. if (!file_exists($local_filename)) {
  906. $file_content = fetch_file_contents($src);
  907. if ($file_content && strlen($file_content) > _MIN_CACHE_IMAGE_SIZE) {
  908. file_put_contents($local_filename, $file_content);
  909. }
  910. } else {
  911. touch($local_filename);
  912. }
  913. }
  914. }
  915. }
  916. function expire_error_log($debug) {
  917. if ($debug) _debug("Removing old error log entries...");
  918. if (DB_TYPE == "pgsql") {
  919. db_query("DELETE FROM ttrss_error_log
  920. WHERE created_at < NOW() - INTERVAL '7 days'");
  921. } else {
  922. db_query("DELETE FROM ttrss_error_log
  923. WHERE created_at < DATE_SUB(NOW(), INTERVAL 7 DAY)");
  924. }
  925. }
  926. function expire_lock_files($debug) {
  927. //if ($debug) _debug("Removing old lock files...");
  928. $num_deleted = 0;
  929. if (is_writable(LOCK_DIRECTORY)) {
  930. $files = glob(LOCK_DIRECTORY . "/*.lock");
  931. if ($files) {
  932. foreach ($files as $file) {
  933. if (!file_is_locked(basename($file)) && time() - filemtime($file) > 86400*2) {
  934. unlink($file);
  935. ++$num_deleted;
  936. }
  937. }
  938. }
  939. }
  940. if ($debug) _debug("Removed $num_deleted old lock files.");
  941. }
  942. function expire_cached_files($debug) {
  943. foreach (array("simplepie", "images", "export", "upload") as $dir) {
  944. $cache_dir = CACHE_DIR . "/$dir";
  945. // if ($debug) _debug("Expiring $cache_dir");
  946. $num_deleted = 0;
  947. if (is_writable($cache_dir)) {
  948. $files = glob("$cache_dir/*");
  949. if ($files) {
  950. foreach ($files as $file) {
  951. if (time() - filemtime($file) > 86400*7) {
  952. unlink($file);
  953. ++$num_deleted;
  954. }
  955. }
  956. }
  957. }
  958. if ($debug) _debug("$cache_dir: removed $num_deleted files.");
  959. }
  960. }
  961. /**
  962. * Source: http://www.php.net/manual/en/function.parse-url.php#104527
  963. * Returns the url query as associative array
  964. *
  965. * @param string query
  966. * @return array params
  967. */
  968. function convertUrlQuery($query) {
  969. $queryParts = explode('&', $query);
  970. $params = array();
  971. foreach ($queryParts as $param) {
  972. $item = explode('=', $param);
  973. $params[$item[0]] = $item[1];
  974. }
  975. return $params;
  976. }
  977. function get_article_filters($filters, $title, $content, $link, $timestamp, $author, $tags, &$matched_rules = false) {
  978. $matches = array();
  979. foreach ($filters as $filter) {
  980. $match_any_rule = $filter["match_any_rule"];
  981. $inverse = $filter["inverse"];
  982. $filter_match = false;
  983. foreach ($filter["rules"] as $rule) {
  984. $match = false;
  985. $reg_exp = str_replace('/', '\/', $rule["reg_exp"]);
  986. $rule_inverse = $rule["inverse"];
  987. if (!$reg_exp)
  988. continue;
  989. switch ($rule["type"]) {
  990. case "title":
  991. $match = @preg_match("/$reg_exp/iu", $title);
  992. break;
  993. case "content":
  994. // we don't need to deal with multiline regexps
  995. $content = preg_replace("/[\r\n\t]/", "", $content);
  996. $match = @preg_match("/$reg_exp/iu", $content);
  997. break;
  998. case "both":
  999. // we don't need to deal with multiline regexps
  1000. $content = preg_replace("/[\r\n\t]/", "", $content);
  1001. $match = (@preg_match("/$reg_exp/iu", $title) || @preg_match("/$reg_exp/iu", $content));
  1002. break;
  1003. case "link":
  1004. $match = @preg_match("/$reg_exp/iu", $link);
  1005. break;
  1006. case "author":
  1007. $match = @preg_match("/$reg_exp/iu", $author);
  1008. break;
  1009. case "tag":
  1010. foreach ($tags as $tag) {
  1011. if (@preg_match("/$reg_exp/iu", $tag)) {
  1012. $match = true;
  1013. break;
  1014. }
  1015. }
  1016. break;
  1017. }
  1018. if ($rule_inverse) $match = !$match;
  1019. if ($match_any_rule) {
  1020. if ($match) {
  1021. $filter_match = true;
  1022. break;
  1023. }
  1024. } else {
  1025. $filter_match = $match;
  1026. if (!$match) {
  1027. break;
  1028. }
  1029. }
  1030. }
  1031. if ($inverse) $filter_match = !$filter_match;
  1032. if ($filter_match) {
  1033. if (is_array($matched_rules)) array_push($matched_rules, $rule);
  1034. foreach ($filter["actions"] AS $action) {
  1035. array_push($matches, $action);
  1036. // if Stop action encountered, perform no further processing
  1037. if (isset($action["type"]) && $action["type"] == "stop") return $matches;
  1038. }
  1039. }
  1040. }
  1041. return $matches;
  1042. }
  1043. function find_article_filter($filters, $filter_name) {
  1044. foreach ($filters as $f) {
  1045. if ($f["type"] == $filter_name) {
  1046. return $f;
  1047. };
  1048. }
  1049. return false;
  1050. }
  1051. function find_article_filters($filters, $filter_name) {
  1052. $results = array();
  1053. foreach ($filters as $f) {
  1054. if ($f["type"] == $filter_name) {
  1055. array_push($results, $f);
  1056. };
  1057. }
  1058. return $results;
  1059. }
  1060. function calculate_article_score($filters) {
  1061. $score = 0;
  1062. foreach ($filters as $f) {
  1063. if ($f["type"] == "score") {
  1064. $score += $f["param"];
  1065. };
  1066. }
  1067. return $score;
  1068. }
  1069. function labels_contains_caption($labels, $caption) {
  1070. foreach ($labels as $label) {
  1071. if ($label[1] == $caption) {
  1072. return true;
  1073. }
  1074. }
  1075. return false;
  1076. }
  1077. function assign_article_to_label_filters($id, $filters, $owner_uid, $article_labels) {
  1078. foreach ($filters as $f) {
  1079. if ($f["type"] == "label") {
  1080. if (!labels_contains_caption($article_labels, $f["param"])) {
  1081. label_add_article($id, $f["param"], $owner_uid);
  1082. }
  1083. }
  1084. }
  1085. }
  1086. function make_guid_from_title($title) {
  1087. return preg_replace("/[ \"\',.:;]/", "-",
  1088. mb_strtolower(strip_tags($title), 'utf-8'));
  1089. }
  1090. /* function verify_feed_xml($feed_data) {
  1091. libxml_use_internal_errors(true);
  1092. $doc = new DOMDocument();
  1093. $doc->loadXML($feed_data);
  1094. $error = libxml_get_last_error();
  1095. libxml_clear_errors();
  1096. return $error;
  1097. } */
  1098. function cleanup_counters_cache($debug) {
  1099. $result = db_query("DELETE FROM ttrss_counters_cache
  1100. WHERE feed_id > 0 AND
  1101. (SELECT COUNT(id) FROM ttrss_feeds WHERE
  1102. id = feed_id AND
  1103. ttrss_counters_cache.owner_uid = ttrss_feeds.owner_uid) = 0");
  1104. $frows = db_affected_rows($result);
  1105. $result = db_query("DELETE FROM ttrss_cat_counters_cache
  1106. WHERE feed_id > 0 AND
  1107. (SELECT COUNT(id) FROM ttrss_feed_categories WHERE
  1108. id = feed_id AND
  1109. ttrss_cat_counters_cache.owner_uid = ttrss_feed_categories.owner_uid) = 0");
  1110. $crows = db_affected_rows($result);
  1111. _debug("Removed $frows (feeds) $crows (cats) orphaned counter cache entries.");
  1112. }
  1113. function housekeeping_user($owner_uid) {
  1114. $tmph = new PluginHost();
  1115. load_user_plugins($owner_uid, $tmph);
  1116. $tmph->run_hooks(PluginHost::HOOK_HOUSE_KEEPING, "hook_house_keeping", "");
  1117. }
  1118. function housekeeping_common($debug) {
  1119. expire_cached_files($debug);
  1120. expire_lock_files($debug);
  1121. expire_error_log($debug);
  1122. $count = update_feedbrowser_cache();
  1123. _debug("Feedbrowser updated, $count feeds processed.");
  1124. purge_orphans( true);
  1125. cleanup_counters_cache($debug);
  1126. //$rc = cleanup_tags( 14, 50000);
  1127. //_debug("Cleaned $rc cached tags.");
  1128. PluginHost::getInstance()->run_hooks(PluginHost::HOOK_HOUSE_KEEPING, "hook_house_keeping", "");
  1129. }
  1130. ?>