]> git.wh0rd.org - tt-rss.git/blame - functions.php
flush cache on feedEditSave
[tt-rss.git] / functions.php
CommitLineData
1d3a17c7 1<?php
f1a80dae 2
b4e75b2a 3/* if ($_REQUEST["debug"]) {
cce28758
AD
4 define('DEFAULT_ERROR_LEVEL', E_ALL);
5 } else {
6 define('DEFAULT_ERROR_LEVEL', E_ERROR | E_WARNING | E_PARSE);
894ebcf5 7 } */
cce28758 8
40d13c28 9 require_once 'config.php';
cc17c205 10
fc2b26a6
AD
11 if (DB_TYPE == "pgsql") {
12 define('SUBSTRING_FOR_DATE', 'SUBSTRING_FOR_DATE');
13 } else {
14 define('SUBSTRING_FOR_DATE', 'SUBSTRING');
15 }
16
9632f884
AD
17 /**
18 * Return available translations names.
19 *
20 * @access public
21 * @return array A array of available translations.
22 */
f8c612d4 23 function get_translations() {
6a214f92 24 $tr = array(
a927fe7b 25 "auto" => "Detect automatically",
a3162add 26 "ca_CA" => "Català",
6a214f92 27 "en_US" => "English",
36d0510c 28 "es_ES" => "Español",
a927fe7b 29 "de_DE" => "Deutsch",
6a214f92 30 "fr_FR" => "Français",
e78fd196 31 "hu_HU" => "Magyar (Hungarian)",
bb5d3960 32 "it_IT" => "Italiano",
1d004f12 33 "ja_JP" => "日本語 (Japanese)",
592535d7 34 "nb_NO" => "Norwegian bokmål",
6a214f92 35 "ru_RU" => "Русский",
9a063469 36 "pt_BR" => "Portuguese/Brazil",
6a214f92 37 "zh_CN" => "Simplified Chinese");
f8c612d4
AD
38
39 return $tr;
40 }
41
9632f884 42 if (ENABLE_TRANSLATIONS == true) { // If translations are enabled.
5de668ed 43 require_once "lib/accept-to-gettext.php";
0ba3a127 44 require_once "lib/gettext/gettext.inc";
aba609e0 45
8d039718
AD
46 function startup_gettext() {
47
48 # Get locale from Accept-Language header
6a214f92 49 $lang = al2gt(array_keys(get_translations()), "text/html");
89cb787e
AD
50
51 if (defined('_TRANSLATION_OVERRIDE_DEFAULT')) {
52 $lang = _TRANSLATION_OVERRIDE_DEFAULT;
53 }
54
672f3f3c 55 if ($_COOKIE["ttrss_lang"] && $_COOKIE["ttrss_lang"] != "auto") {
68659d98
AD
56 $lang = $_COOKIE["ttrss_lang"];
57 }
58
7c33dbd4
AD
59 /* In login action of mobile version */
60 if ($_POST["language"] && defined('MOBILE_VERSION')) {
61 $lang = $_POST["language"];
62 $_COOKIE["ttrss_lang"] = $lang;
63 }
64
8d039718 65 if ($lang) {
86e2e1b9
AD
66 if (defined('LC_MESSAGES')) {
67 _setlocale(LC_MESSAGES, $lang);
68 } else if (defined('LC_ALL')) {
69 _setlocale(LC_ALL, $lang);
70 } else {
71 die("can't setlocale(): please set ENABLE_TRANSLATIONS to false in config.php");
72 }
7c33dbd4
AD
73
74 if (defined('MOBILE_VERSION')) {
75 _bindtextdomain("messages", "../locale");
76 } else {
77 _bindtextdomain("messages", "locale");
78 }
79
8d039718
AD
80 _textdomain("messages");
81 _bind_textdomain_codeset("messages", "UTF-8");
82 }
aba609e0 83 }
aba609e0 84
cc17c205 85 startup_gettext();
865220a4 86
9632f884 87 } else { // If translations are enabled.
865220a4
AD
88 function __($msg) {
89 return $msg;
90 }
91 function startup_gettext() {
92 // no-op
93 return true;
94 }
9632f884 95 } // If translations are enabled.
cc17c205 96
be35798b
AD
97 if (defined('MEMCACHE_SERVER')) {
98 $memcache = new Memcache;
99 $memcache->connect(MEMCACHE_SERVER, 11211);
100 }
101
b619ff15 102 require_once 'db-prefs.php';
5bc0bd27 103 require_once 'compat.php';
af106b0e 104 require_once 'errors.php';
8911ac8b 105 require_once 'version.php';
40d13c28 106
d134e3a3 107 require_once 'lib/phpmailer/class.phpmailer.php';
a8931123 108
49f9c923 109 define('MAGPIE_USER_AGENT_EXT', ' (Tiny Tiny RSS/' . VERSION . ')');
a3ee2a38 110 define('MAGPIE_OUTPUT_ENCODING', 'UTF-8');
ba0f7628 111 define('MAGPIE_CACHE_AGE', 60*15); // 15 minutes
a3ee2a38 112
5ef03f15 113 require_once "lib/simplepie/simplepie.inc";
816cdfb7
AD
114 require_once "lib/magpierss/rss_fetch.inc";
115 require_once 'lib/magpierss/rss_utils.inc';
f45a286b 116 require_once 'lib/htmlpurifier/library/HTMLPurifier.auto.php';
49f9c923 117
45004d43
AD
118 /**
119 * Print a timestamped debug message.
120 *
121 * @param string $msg The debug message.
122 * @return void
123 */
6f9e33e4
AD
124 function _debug($msg) {
125 $ts = strftime("%H:%M:%S", time());
2a6a9395
AD
126 if (function_exists('posix_getpid')) {
127 $ts = "$ts/" . posix_getpid();
128 }
6f9e33e4 129 print "[$ts] $msg\n";
45004d43 130 } // function _debug
6f9e33e4 131
9632f884
AD
132 /**
133 * Purge a feed old posts.
134 *
135 * @param mixed $link A database connection.
136 * @param mixed $feed_id The id of the purged feed.
137 * @param mixed $purge_interval Olderness of purged posts.
138 * @param boolean $debug Set to True to enable the debug. False by default.
139 * @access public
140 * @return void
141 */
ad507f85
AD
142 function purge_feed($link, $feed_id, $purge_interval, $debug = false) {
143
07d0efe9 144 if (!$purge_interval) $purge_interval = feed_purge_interval($link, $feed_id);
01299231 145
ad507f85 146 $rows = -1;
4c193675 147
07d0efe9
AD
148 $result = db_query($link,
149 "SELECT owner_uid FROM ttrss_feeds WHERE id = '$feed_id'");
150
151 $owner_uid = false;
152
153 if (db_num_rows($result) == 1) {
154 $owner_uid = db_fetch_result($result, 0, "owner_uid");
155 }
156
ab954dff
AD
157 if ($purge_interval == -1 || !$purge_interval) {
158 if ($owner_uid) {
159 ccache_update($link, $feed_id, $owner_uid);
160 }
161 return;
162 }
163
07d0efe9
AD
164 if (!$owner_uid) return;
165
3907ef71
AD
166 if (FORCE_ARTICLE_PURGE == 0) {
167 $purge_unread = get_pref($link, "PURGE_UNREAD_ARTICLES",
168 $owner_uid, false);
169 } else {
170 $purge_unread = true;
171 $purge_interval = FORCE_ARTICLE_PURGE;
172 }
07d0efe9
AD
173
174 if (!$purge_unread) $query_limit = " unread = false AND ";
175
fefa6ca3 176 if (DB_TYPE == "pgsql") {
44e241cb 177/* $result = db_query($link, "DELETE FROM ttrss_user_entries WHERE
fefa6ca3 178 marked = false AND feed_id = '$feed_id' AND
35d8cf43 179 (SELECT date_entered FROM ttrss_entries WHERE
44e241cb
AD
180 id = ref_id) < NOW() - INTERVAL '$purge_interval days'"); */
181
6e7f8d26
AD
182 $pg_version = get_pgsql_version($link);
183
184 if (preg_match("/^7\./", $pg_version) || preg_match("/^8\.0/", $pg_version)) {
1e59ae35
AD
185
186 $result = db_query($link, "DELETE FROM ttrss_user_entries WHERE
187 ttrss_entries.id = ref_id AND
188 marked = false AND
189 feed_id = '$feed_id' AND
07d0efe9 190 $query_limit
1e59ae35
AD
191 ttrss_entries.date_entered < NOW() - INTERVAL '$purge_interval days'");
192
193 } else {
194
195 $result = db_query($link, "DELETE FROM ttrss_user_entries
196 USING ttrss_entries
197 WHERE ttrss_entries.id = ref_id AND
198 marked = false AND
199 feed_id = '$feed_id' AND
07d0efe9 200 $query_limit
fc774155 201 ttrss_entries.date_entered < NOW() - INTERVAL '$purge_interval days'");
1e59ae35 202 }
ad507f85
AD
203
204 $rows = pg_affected_rows($result);
205
fefa6ca3 206 } else {
1e59ae35 207
30f1746f 208/* $result = db_query($link, "DELETE FROM ttrss_user_entries WHERE
fefa6ca3 209 marked = false AND feed_id = '$feed_id' AND
35d8cf43 210 (SELECT date_entered FROM ttrss_entries WHERE
30f1746f
AD
211 id = ref_id) < DATE_SUB(NOW(), INTERVAL $purge_interval DAY)"); */
212
213 $result = db_query($link, "DELETE FROM ttrss_user_entries
214 USING ttrss_user_entries, ttrss_entries
215 WHERE ttrss_entries.id = ref_id AND
216 marked = false AND
217 feed_id = '$feed_id' AND
07d0efe9 218 $query_limit
30f1746f
AD
219 ttrss_entries.date_entered < DATE_SUB(NOW(), INTERVAL $purge_interval DAY)");
220
ad507f85
AD
221 $rows = mysql_affected_rows($link);
222
223 }
224
ced46404
AD
225 ccache_update($link, $feed_id, $owner_uid);
226
ad507f85 227 if ($debug) {
6f9e33e4 228 _debug("Purged feed $feed_id ($purge_interval): deleted $rows articles");
fefa6ca3 229 }
9632f884 230 } // function purge_feed
fefa6ca3 231
9632f884
AD
232 /**
233 * Purge old posts from old feeds.
234 *
235 * @param mixed $link A database connection
236 * @param boolean $do_output Set to true to enable printed output, false by default.
237 * @param integer $limit The maximal number of removed posts.
238 * @access public
239 * @return void
240 */
44e241cb
AD
241 function global_purge_old_posts($link, $do_output = false, $limit = false) {
242
894ebcf5 243 $random_qpart = sql_random_function();
fefa6ca3 244
44e241cb
AD
245 if ($limit) {
246 $limit_qpart = "LIMIT $limit";
247 } else {
248 $limit_qpart = "";
249 }
250
fefa6ca3 251 $result = db_query($link,
44e241cb
AD
252 "SELECT id,purge_interval,owner_uid FROM ttrss_feeds
253 ORDER BY $random_qpart $limit_qpart");
fefa6ca3
AD
254
255 while ($line = db_fetch_assoc($result)) {
256
257 $feed_id = $line["id"];
258 $purge_interval = $line["purge_interval"];
259 $owner_uid = $line["owner_uid"];
260
261 if ($purge_interval == 0) {
262
263 $tmp_result = db_query($link,
264 "SELECT value FROM ttrss_user_prefs WHERE
265 pref_name = 'PURGE_OLD_DAYS' AND owner_uid = '$owner_uid'");
266
267 if (db_num_rows($tmp_result) != 0) {
268 $purge_interval = db_fetch_result($tmp_result, 0, "value");
269 }
270 }
271
272 if ($do_output) {
ad507f85 273// print "Feed $feed_id: purge interval = $purge_interval\n";
fefa6ca3
AD
274 }
275
3907ef71 276 if ($purge_interval > 0 || FORCE_ARTICLE_PURGE) {
ad507f85 277 purge_feed($link, $feed_id, $purge_interval, $do_output);
fefa6ca3
AD
278 }
279 }
280
71604ca4 281 // purge orphaned posts in main content table
dab52d7b 282 $result = db_query($link, "DELETE FROM ttrss_entries WHERE
71604ca4
AD
283 (SELECT COUNT(int_id) FROM ttrss_user_entries WHERE ref_id = id) = 0");
284
dab52d7b
AD
285 if ($do_output) {
286 $rows = db_affected_rows($link, $result);
287 _debug("Purged $rows orphaned posts.");
288 }
289
9632f884 290 } // function global_purge_old_posts
fefa6ca3 291
07d0efe9
AD
292 function feed_purge_interval($link, $feed_id) {
293
294 $result = db_query($link, "SELECT purge_interval, owner_uid FROM ttrss_feeds
295 WHERE id = '$feed_id'");
296
297 if (db_num_rows($result) == 1) {
298 $purge_interval = db_fetch_result($result, 0, "purge_interval");
299 $owner_uid = db_fetch_result($result, 0, "owner_uid");
300
301 if ($purge_interval == 0) $purge_interval = get_pref($link,
863be6ca 302 'PURGE_OLD_DAYS', $owner_uid);
07d0efe9
AD
303
304 return $purge_interval;
305
306 } else {
307 return -1;
308 }
309 }
310
b6eefba5 311 function purge_old_posts($link) {
5d73494a 312
f1a80dae
AD
313 $user_id = $_SESSION["uid"];
314
315 $result = db_query($link, "SELECT id,purge_interval FROM ttrss_feeds
316 WHERE owner_uid = '$user_id'");
5d73494a
AD
317
318 while ($line = db_fetch_assoc($result)) {
319
320 $feed_id = $line["id"];
321 $purge_interval = $line["purge_interval"];
322
b619ff15 323 if ($purge_interval == 0) $purge_interval = get_pref($link, 'PURGE_OLD_DAYS');
5d73494a 324
140aae81 325 if ($purge_interval > 0) {
fefa6ca3 326 purge_feed($link, $feed_id, $purge_interval);
5d73494a
AD
327 }
328 }
71604ca4 329
0e0dd486
AD
330 purge_orphans($link);
331 }
332
333 function purge_orphans($link) {
71604ca4
AD
334 // purge orphaned posts in main content table
335 db_query($link, "DELETE FROM ttrss_entries WHERE
336 (SELECT COUNT(int_id) FROM ttrss_user_entries WHERE ref_id = id) = 0");
c3a8d71a
AD
337 }
338
c7d57b66
AD
339 function get_feed_update_interval($link, $feed_id) {
340 $result = db_query($link, "SELECT owner_uid, update_interval FROM
341 ttrss_feeds WHERE id = '$feed_id'");
342
343 if (db_num_rows($result) == 1) {
344 $update_interval = db_fetch_result($result, 0, "update_interval");
345 $owner_uid = db_fetch_result($result, 0, "owner_uid");
346
347 if ($update_interval != 0) {
348 return $update_interval;
349 } else {
350 return get_pref($link, 'DEFAULT_UPDATE_INTERVAL', $owner_uid, false);
351 }
352
353 } else {
354 return -1;
355 }
356 }
357
4065b60b
AD
358 function fetch_file_contents($url) {
359 if (USE_CURL_FOR_ICONS) {
360 $tmpfile = tempnam(TMP_DIRECTORY, "ttrss-tmp");
361
362 $ch = curl_init($url);
363 $fp = fopen($tmpfile, "w");
364
365 if ($fp) {
366 curl_setopt($ch, CURLOPT_FILE, $fp);
dd966fed
AD
367 curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 15);
368 curl_setopt($ch, CURLOPT_TIMEOUT, 45);
4065b60b 369 curl_exec($ch);
2a41fc97
AD
370
371 if (strpos(curl_getinfo($ch, CURLINFO_CONTENT_TYPE), "image/") !== false) {
372 curl_close($ch);
373 fclose($fp);
374 $contents = file_get_contents($tmpfile);
375 } else {
376 curl_close($ch);
377 fclose($fp);
378 }
4065b60b
AD
379 }
380
4065b60b
AD
381 unlink($tmpfile);
382
383 return $contents;
384
385 } else {
386 return file_get_contents($url);
387 }
388
389 }
78800912 390
9632f884
AD
391 /**
392 * Try to determine the favicon URL for a feed.
393 * adapted from wordpress favicon plugin by Jeff Minard (http://thecodepro.com/)
394 * http://dev.wp-plugins.org/file/favatars/trunk/favatars.php
395 *
396 * @param string $url A feed or page URL
397 * @access public
398 * @return mixed The favicon URL, or false if none was found.
399 */
4065b60b 400 function get_favicon_url($url) {
99331724 401
4065b60b 402 if ($html = @fetch_file_contents($url)) {
78800912 403
4065b60b
AD
404 if ( preg_match('/<link[^>]+rel="(?:shortcut )?icon"[^>]+?href="([^"]+?)"/si', $html, $matches)) {
405 // Attempt to grab a favicon link from their webpage url
406 $linkUrl = html_entity_decode($matches[1]);
c798704b 407
4065b60b
AD
408 if (substr($linkUrl, 0, 1) == '/') {
409 $urlParts = parse_url($url);
410 $faviconURL = $urlParts['scheme'].'://'.$urlParts['host'].$linkUrl;
411 } else if (substr($linkUrl, 0, 7) == 'http://') {
412 $faviconURL = $linkUrl;
4065b60b 413 } else {
c7e51de1
AD
414 $pos = strrpos($url, "/");
415 // no "/" in url or "/" is part of "://"
416 if ($pos === false || $pos == (strpos($url, "://")+2)) {
417 $faviconURL = $url.'/'.$linkUrl;
418 } else {
419 $faviconURL = substr($url, 0, $pos+1).$linkUrl;
420 }
e695fdc8 421 }
717f5e64 422
c798704b 423 } else {
4065b60b
AD
424 // If unsuccessful, attempt to "guess" the favicon location
425 $urlParts = parse_url($url);
426 $faviconURL = $urlParts['scheme'].'://'.$urlParts['host'].'/favicon.ico';
427 }
428 }
c798704b 429
4065b60b
AD
430 // Run a test to see if what we have attempted to get actually exists.
431 if(USE_CURL_FOR_ICONS || url_validate($faviconURL)) {
432 return $faviconURL;
433 } else {
434 return false;
435 }
9632f884 436 } // function get_favicon_url
4065b60b 437
9632f884
AD
438 /**
439 * Check if a link is a valid and working URL.
440 *
441 * @param mixed $link A URL to check
442 * @access public
443 * @return boolean True if the URL is valid, false otherwise.
444 */
4065b60b
AD
445 function url_validate($link) {
446
447 $url_parts = @parse_url($link);
448
449 if ( empty( $url_parts["host"] ) )
450 return false;
451
452 if ( !empty( $url_parts["path"] ) ) {
453 $documentpath = $url_parts["path"];
454 } else {
455 $documentpath = "/";
456 }
457
458 if ( !empty( $url_parts["query"] ) )
459 $documentpath .= "?" . $url_parts["query"];
460
461 $host = $url_parts["host"];
462 $port = $url_parts["port"];
463
464 if ( empty($port) )
465 $port = "80";
466
467 $socket = @fsockopen( $host, $port, $errno, $errstr, 30 );
468
469 if ( !$socket )
470 return false;
c798704b 471
4065b60b
AD
472 fwrite ($socket, "HEAD ".$documentpath." HTTP/1.0\r\nHost: $host\r\n\r\n");
473
474 $http_response = fgets( $socket, 22 );
475
c7e51de1 476 $responses = "/(200 OK)|(30[123])/";
4065b60b
AD
477 if ( preg_match($responses, $http_response) ) {
478 fclose($socket);
479 return true;
480 } else {
481 return false;
482 }
483
9632f884 484 } // function url_validate
4065b60b
AD
485
486 function check_feed_favicon($site_url, $feed, $link) {
487 $favicon_url = get_favicon_url($site_url);
488
489# print "FAVICON [$site_url]: $favicon_url\n";
490
491 error_reporting(0);
492
493 $icon_file = ICONS_DIR . "/$feed.ico";
494
495 if ($favicon_url && !file_exists($icon_file)) {
496 $contents = fetch_file_contents($favicon_url);
497
498 $fp = fopen($icon_file, "w");
78800912 499
4065b60b
AD
500 if ($fp) {
501 fwrite($fp, $contents);
502 fclose($fp);
503 chmod($icon_file, 0644);
504 }
78800912 505 }
4065b60b
AD
506
507 error_reporting(DEFAULT_ERROR_LEVEL);
508
78800912
AD
509 }
510
ddb68b81 511 function update_rss_feed($link, $feed_url, $feed, $ignore_daemon = false) {
40d13c28 512
b4e75b2a 513 if (!$_REQUEST["daemon"] && !$ignore_daemon) {
45004d43 514 return false;
21cfcdf2
AD
515 }
516
b4e75b2a 517 if (defined('DAEMON_EXTENDED_DEBUG') || $_REQUEST['xdebug']) {
34e420fb 518 _debug("update_rss_feed: start");
219bd8fc
AD
519 }
520
39a52499
AD
521 if (!$ignore_daemon) {
522
523 if (DB_TYPE == "pgsql") {
524 $updstart_thresh_qpart = "(ttrss_feeds.last_update_started IS NULL OR ttrss_feeds.last_update_started < NOW() - INTERVAL '120 seconds')";
525 } else {
526 $updstart_thresh_qpart = "(ttrss_feeds.last_update_started IS NULL OR ttrss_feeds.last_update_started < DATE_SUB(NOW(), INTERVAL 120 SECOND))";
527 }
528
529 $result = db_query($link, "SELECT id,update_interval,auth_login,
16211ddb 530 auth_pass,cache_images,update_method
39a52499 531 FROM ttrss_feeds WHERE id = '$feed' AND $updstart_thresh_qpart");
02008cb1 532
39a52499
AD
533 } else {
534
535 $result = db_query($link, "SELECT id,update_interval,auth_login,
117335bf 536 auth_pass,cache_images,update_method,last_updated
39a52499
AD
537 FROM ttrss_feeds WHERE id = '$feed'");
538
539 }
a88c1f36 540
5370d37f 541 if (db_num_rows($result) == 0) {
b4e75b2a 542 if (defined('DAEMON_EXTENDED_DEBUG') || $_REQUEST['xdebug']) {
02008cb1 543 _debug("update_rss_feed: feed $feed [$feed_url] NOT FOUND/SKIPPED");
5370d37f 544 }
45004d43 545 return false;
5370d37f
AD
546 }
547
16211ddb 548 $update_method = db_fetch_result($result, 0, "update_method");
50b2db96 549 $last_updated = db_fetch_result($result, 0, "last_updated");
16211ddb 550
3c50da83
AD
551 db_query($link, "UPDATE ttrss_feeds SET last_update_started = NOW()
552 WHERE id = '$feed'");
553
464bd61e
AD
554 $auth_login = db_fetch_result($result, 0, "auth_login");
555 $auth_pass = db_fetch_result($result, 0, "auth_pass");
556
34459667
AD
557 if (ALLOW_SELECT_UPDATE_METHOD) {
558 if (ENABLE_SIMPLEPIE) {
559 $use_simplepie = $update_method != 1;
560 } else {
561 $use_simplepie = $update_method == 2;
562 }
16211ddb 563 } else {
34459667 564 $use_simplepie = ENABLE_SIMPLEPIE;
16211ddb
AD
565 }
566
b4e75b2a 567 if (defined('DAEMON_EXTENDED_DEBUG') || $_REQUEST['xdebug']) {
16211ddb
AD
568 _debug("use simplepie: $use_simplepie (feed setting: $update_method)\n");
569 }
570
571 if (!$use_simplepie) {
464bd61e
AD
572 $auth_login = urlencode($auth_login);
573 $auth_pass = urlencode($auth_pass);
574 }
47c6c988 575
a88c1f36 576 $update_interval = db_fetch_result($result, 0, "update_interval");
bc0f0785 577 $cache_images = sql_bool_to_bool(db_fetch_result($result, 0, "cache_images"));
a88c1f36
AD
578
579 if ($update_interval < 0) { return; }
580
ab3d0b99
AD
581 $feed = db_escape_string($feed);
582
47c6c988
AD
583 $fetch_url = $feed_url;
584
585 if ($auth_login && $auth_pass) {
586 $url_parts = array();
587 preg_match("/(^[^:]*):\/\/(.*)/", $fetch_url, $url_parts);
588
589 if ($url_parts[1] && $url_parts[2]) {
590 $fetch_url = $url_parts[1] . "://$auth_login:$auth_pass@" . $url_parts[2];
591 }
592
593 }
ab3d0b99 594
b4e75b2a 595 if (defined('DAEMON_EXTENDED_DEBUG') || $_REQUEST['xdebug']) {
ca872b9d 596 _debug("update_rss_feed: fetching [$fetch_url]...");
219bd8fc
AD
597 }
598
b4e75b2a 599 if (!defined('DAEMON_EXTENDED_DEBUG') && !$_REQUEST['xdebug']) {
219bd8fc
AD
600 error_reporting(0);
601 }
602
16211ddb 603 if (!$use_simplepie) {
9fdf7824
AD
604 $rss = fetch_rss($fetch_url);
605 } else {
c7d57b66
AD
606 if (!is_dir(SIMPLEPIE_CACHE_DIR)) {
607 mkdir(SIMPLEPIE_CACHE_DIR);
608 }
609
ca872b9d
AD
610 $rss = new SimplePie();
611 $rss->set_useragent(SIMPLEPIE_USERAGENT . MAGPIE_USER_AGENT_EXT);
16211ddb 612# $rss->set_timeout(10);
ca872b9d
AD
613 $rss->set_feed_url($fetch_url);
614 $rss->set_output_encoding('UTF-8');
c7d57b66 615
bc0f0785 616 if (SIMPLEPIE_CACHE_IMAGES && $cache_images) {
b4e75b2a 617 if (defined('DAEMON_EXTENDED_DEBUG') || $_REQUEST['xdebug']) {
bc0f0785
AD
618 _debug("enabling image cache");
619 }
620
dab52d7b 621 $rss->set_image_handler('./image.php', 'i');
bc0f0785 622 }
dab52d7b 623
b4e75b2a 624 if (defined('DAEMON_EXTENDED_DEBUG') || $_REQUEST['xdebug']) {
c7d57b66
AD
625 _debug("feed update interval (sec): " .
626 get_feed_update_interval($link, $feed)*60);
627 }
628
629 if (is_dir(SIMPLEPIE_CACHE_DIR)) {
630 $rss->set_cache_location(SIMPLEPIE_CACHE_DIR);
631 $rss->set_cache_duration(get_feed_update_interval($link, $feed) * 60);
632 }
633
9fdf7824 634 $rss->init();
9fdf7824
AD
635 }
636
637// print_r($rss);
219bd8fc 638
b4e75b2a 639 if (defined('DAEMON_EXTENDED_DEBUG') || $_REQUEST['xdebug']) {
34e420fb 640 _debug("update_rss_feed: fetch done, parsing...");
219bd8fc
AD
641 } else {
642 error_reporting (DEFAULT_ERROR_LEVEL);
643 }
644
b6eefba5 645 $feed = db_escape_string($feed);
dcee8f61 646
16211ddb 647 if ($use_simplepie) {
ca872b9d
AD
648 $fetch_ok = !$rss->error();
649 } else {
650 $fetch_ok = !!$rss;
651 }
652
653 if ($fetch_ok) {
50b62214 654
b4e75b2a 655 if (defined('DAEMON_EXTENDED_DEBUG') || $_REQUEST['xdebug']) {
50b62214
AD
656 _debug("update_rss_feed: processing feed data...");
657 }
658
44e241cb 659// db_query($link, "BEGIN");
dd8c76a9 660
a88c1f36 661 $result = db_query($link, "SELECT title,icon_url,site_url,owner_uid
f324892e 662 FROM ttrss_feeds WHERE id = '$feed'");
331900c6 663
b6eefba5
AD
664 $registered_title = db_fetch_result($result, 0, "title");
665 $orig_icon_url = db_fetch_result($result, 0, "icon_url");
f324892e 666 $orig_site_url = db_fetch_result($result, 0, "site_url");
331900c6 667
7fed1940
AD
668 $owner_uid = db_fetch_result($result, 0, "owner_uid");
669
16211ddb 670 if ($use_simplepie) {
9fdf7824
AD
671 $site_url = $rss->get_link();
672 } else {
673 $site_url = $rss->channel["link"];
674 }
675
8d0ec6fd 676 if (get_pref($link, 'ENABLE_FEED_ICONS', $owner_uid, false)) {
b4e75b2a 677 if (defined('DAEMON_EXTENDED_DEBUG') || $_REQUEST['xdebug']) {
50b62214
AD
678 _debug("update_rss_feed: checking favicon...");
679 }
9fdf7824
AD
680
681 check_feed_favicon($site_url, $feed, $link);
a2770077
AD
682 }
683
746b249f 684 if (!$registered_title || $registered_title == "[Unknown]") {
4bc64807 685
16211ddb 686 if ($use_simplepie) {
c2f8aac4 687 $feed_title = db_escape_string($rss->get_title());
fb486a33
AD
688 } else {
689 $feed_title = db_escape_string($rss->channel["title"]);
690 }
4bc64807 691
b4e75b2a 692 if (defined('DAEMON_EXTENDED_DEBUG') || $_REQUEST['xdebug']) {
4bc64807
AD
693 _debug("update_rss_feed: registering title: $feed_title");
694 }
7c5a308d 695
f324892e
AD
696 db_query($link, "UPDATE ttrss_feeds SET
697 title = '$feed_title' WHERE id = '$feed'");
698 }
699
49f9c923 700 // weird, weird Magpie
16211ddb 701 if (!$use_simplepie) {
9fdf7824
AD
702 if (!$site_url) $site_url = db_escape_string($rss->channel["link_"]);
703 }
147f7691
AD
704
705 if ($site_url && $orig_site_url != db_escape_string($site_url)) {
f324892e
AD
706 db_query($link, "UPDATE ttrss_feeds SET
707 site_url = '$site_url' WHERE id = '$feed'");
331900c6 708 }
40d13c28 709
b7f4bda2
AD
710// print "I: " . $rss->channel["image"]["url"];
711
16211ddb 712 if (!$use_simplepie) {
9fdf7824
AD
713 $icon_url = $rss->image["url"];
714 } else {
715 $icon_url = $rss->get_image_url();
716 }
b7f4bda2 717
147f7691 718 if ($icon_url && !$orig_icon_url != db_escape_string($icon_url)) {
b6eefba5
AD
719 $icon_url = db_escape_string($icon_url);
720 db_query($link, "UPDATE ttrss_feeds SET icon_url = '$icon_url' WHERE id = '$feed'");
b7f4bda2
AD
721 }
722
b4e75b2a 723 if (defined('DAEMON_EXTENDED_DEBUG') || $_REQUEST['xdebug']) {
50b62214
AD
724 _debug("update_rss_feed: loading filters...");
725 }
e6155a06 726
5daa24f2 727 $filters = load_filters($link, $feed, $owner_uid);
e6155a06 728
16211ddb 729 if ($use_simplepie) {
9fdf7824
AD
730 $iterator = $rss->get_items();
731 } else {
732 $iterator = $rss->items;
733 if (!$iterator || !is_array($iterator)) $iterator = $rss->entries;
734 if (!$iterator || !is_array($iterator)) $iterator = $rss;
735 }
c22789da
AD
736
737 if (!is_array($iterator)) {
39541e74 738 /* db_query($link, "UPDATE ttrss_feeds
75bd0669 739 SET last_error = 'Parse error: can\'t find any articles.'
77f0a2a7
AD
740 WHERE id = '$feed'"); */
741
742 // clear any errors and mark feed as updated if fetched okay
743 // even if it's blank
744
b4e75b2a 745 if (defined('DAEMON_EXTENDED_DEBUG') || $_REQUEST['xdebug']) {
844012bc
AD
746 _debug("update_rss_feed: entry iterator is not an array, no articles?");
747 }
748
77f0a2a7
AD
749 db_query($link, "UPDATE ttrss_feeds
750 SET last_updated = NOW(), last_error = '' WHERE id = '$feed'");
751
752 return; // no articles
c22789da 753 }
ddb68b81 754
b4e75b2a 755 if (defined('DAEMON_EXTENDED_DEBUG') || $_REQUEST['xdebug']) {
50b62214
AD
756 _debug("update_rss_feed: processing articles...");
757 }
758
ddb68b81 759 foreach ($iterator as $item) {
7c5a308d 760
b4e75b2a 761 if ($_REQUEST['xdebug'] == 2) {
40ce98f4
AD
762 print_r($item);
763 }
71bd29f6 764
16211ddb 765 if ($use_simplepie) {
9fdf7824
AD
766 $entry_guid = $item->get_id();
767 if (!$entry_guid) $entry_guid = $item->get_link();
768 if (!$entry_guid) $entry_guid = make_guid_from_title($item->get_title());
769
770 } else {
771
772 $entry_guid = $item["id"];
34e420fb 773
9fdf7824
AD
774 if (!$entry_guid) $entry_guid = $item["guid"];
775 if (!$entry_guid) $entry_guid = $item["link"];
776 if (!$entry_guid) $entry_guid = make_guid_from_title($item["title"]);
777 }
be832a1a 778
b4e75b2a 779 if (defined('DAEMON_EXTENDED_DEBUG') || $_REQUEST['xdebug']) {
34e420fb
AD
780 _debug("update_rss_feed: guid $entry_guid");
781 }
782
be832a1a
AD
783 if (!$entry_guid) continue;
784
785 $entry_timestamp = "";
786
16211ddb 787 if ($use_simplepie) {
9fdf7824
AD
788 $entry_timestamp = strtotime($item->get_date());
789 } else {
790 $rss_2_date = $item['pubdate'];
791 $rss_1_date = $item['dc']['date'];
792 $atom_date = $item['issued'];
793 if (!$atom_date) $atom_date = $item['updated'];
be832a1a 794
9fdf7824
AD
795 if ($atom_date != "") $entry_timestamp = parse_w3cdtf($atom_date);
796 if ($rss_1_date != "") $entry_timestamp = parse_w3cdtf($rss_1_date);
797 if ($rss_2_date != "") $entry_timestamp = strtotime($rss_2_date);
798 }
9bb36aa0 799
2e930846 800 if ($entry_timestamp == "" || $entry_timestamp == -1 || !$entry_timestamp) {
be832a1a
AD
801 $entry_timestamp = time();
802 $no_orig_date = 'true';
803 } else {
804 $no_orig_date = 'false';
805 }
806
807 $entry_timestamp_fmt = strftime("%Y/%m/%d %H:%M:%S", $entry_timestamp);
808
b4e75b2a 809 if (defined('DAEMON_EXTENDED_DEBUG') || $_REQUEST['xdebug']) {
44d0e774
AD
810 _debug("update_rss_feed: date $entry_timestamp [$entry_timestamp_fmt]");
811 }
812
16211ddb 813 if ($use_simplepie) {
9fdf7824
AD
814 $entry_title = $item->get_title();
815 } else {
816 $entry_title = trim(strip_tags($item["title"]));
817 }
be832a1a 818
16211ddb 819 if ($use_simplepie) {
9fdf7824
AD
820 $entry_link = $item->get_link();
821 } else {
822 // strange Magpie workaround
823 $entry_link = $item["link_"];
824 if (!$entry_link) $entry_link = $item["link"];
825 }
be832a1a 826
b4e75b2a 827 if (defined('DAEMON_EXTENDED_DEBUG') || $_REQUEST['xdebug']) {
9bb36aa0
AD
828 _debug("update_rss_feed: title $entry_title");
829 }
830
831 if (!$entry_title) $entry_title = date("Y-m-d H:i:s", $entry_timestamp);;
7d3ab0dd 832
be832a1a 833 $entry_link = strip_tags($entry_link);
7d3ab0dd 834
16211ddb 835 if ($use_simplepie) {
4af7a36a
AD
836 $entry_content = $item->get_content();
837 if (!$entry_content) $entry_content = $item->get_description();
9fdf7824
AD
838 } else {
839 $entry_content = $item["content:escaped"];
840
841 if (!$entry_content) $entry_content = $item["content:encoded"];
e91ab107 842 if (!$entry_content) $entry_content = $item["content"]["encoded"];
9fdf7824 843 if (!$entry_content) $entry_content = $item["content"];
ea322415
AD
844
845 // Magpie bugs are getting ridiculous
846 if (trim($entry_content) == "Array") $entry_content = false;
847
9fdf7824
AD
848 if (!$entry_content) $entry_content = $item["atom_content"];
849 if (!$entry_content) $entry_content = $item["summary"];
e91ab107
AD
850
851 if (!$entry_content ||
852 strlen($entry_content) < strlen($item["description"])) {
853 $entry_content = $item["description"];
854 };
9fdf7824
AD
855
856 // WTF
857 if (is_array($entry_content)) {
858 $entry_content = $entry_content["encoded"];
859 if (!$entry_content) $entry_content = $entry_content["escaped"];
ea322415 860 }
be832a1a
AD
861 }
862
b4e75b2a 863 if ($_REQUEST["xdebug"] == 2) {
ea322415
AD
864 print "update_rss_feed: content: ";
865 print_r(htmlspecialchars($entry_content));
866 }
be832a1a
AD
867
868 $entry_content_unescaped = $entry_content;
be832a1a 869
16211ddb 870 if ($use_simplepie) {
9fdf7824 871 $entry_comments = strip_tags($item->data["comments"]);
30cf38dd 872 if ($item->get_author()) {
e1d600f0 873 $entry_author_item = $item->get_author();
a0c6eafb
AD
874 $entry_author = $entry_author_item->get_name();
875 if (!$entry_author) $entry_author = $entry_author_item->get_email();
d1ee9106
AD
876
877 $entry_author = db_escape_string($entry_author);
30cf38dd 878 }
9fdf7824
AD
879 } else {
880 $entry_comments = strip_tags($item["comments"]);
881
882 $entry_author = db_escape_string(strip_tags($item['dc']['creator']));
4d6e9157 883
9fdf7824
AD
884 if ($item['author']) {
885
886 if (is_array($item['author'])) {
887
888 if (!$entry_author) {
889 $entry_author = db_escape_string(strip_tags($item['author']['name']));
890 }
891
892 if (!$entry_author) {
893 $entry_author = db_escape_string(strip_tags($item['author']['email']));
894 }
4d6e9157 895 }
9fdf7824 896
4d6e9157 897 if (!$entry_author) {
9fdf7824 898 $entry_author = db_escape_string(strip_tags($item['author']));
4d6e9157 899 }
83f114c8 900 }
be832a1a
AD
901 }
902
83f114c8
AD
903 if (preg_match('/^[\t\n\r ]*$/', $entry_author)) $entry_author = '';
904
be832a1a 905 $entry_guid = db_escape_string(strip_tags($entry_guid));
2ad9ee56 906 $entry_guid = mb_substr($entry_guid, 0, 250);
be832a1a
AD
907
908 $result = db_query($link, "SELECT id FROM ttrss_entries
909 WHERE guid = '$entry_guid'");
910
911 $entry_content = db_escape_string($entry_content);
7e43ad58
AD
912
913 $content_hash = "SHA1:" . sha1(strip_tags($entry_content));
914
be832a1a
AD
915 $entry_title = db_escape_string($entry_title);
916 $entry_link = db_escape_string($entry_link);
2544f36b
AD
917 $entry_comments = mb_substr(db_escape_string($entry_comments), 0, 250);
918 $entry_author = mb_substr($entry_author, 0, 250);
be832a1a 919
16211ddb 920 if ($use_simplepie) {
9fdf7824
AD
921 $num_comments = 0; #FIXME#
922 } else {
923 $num_comments = db_escape_string($item["slash"]["comments"]);
924 }
be832a1a
AD
925
926 if (!$num_comments) $num_comments = 0;
927
fefef828 928 // parse <category> entries into tags
be832a1a 929
16211ddb 930 if ($use_simplepie) {
be832a1a 931
fefef828 932 $additional_tags = array();
9fdf7824 933 $additional_tags_src = $item->get_categories();
3b9e5af4 934
a702e931
AD
935 if (is_array($additional_tags_src)) {
936 foreach ($additional_tags_src as $tobj) {
937 array_push($additional_tags, $tobj->get_term());
938 }
fefef828 939 }
fefef828 940
b4e75b2a 941 if (defined('DAEMON_EXTENDED_DEBUG') || $_REQUEST['xdebug']) {
6af621c7
AD
942 _debug("update_rss_feed: category tags:");
943 print_r($additional_tags);
944 }
945
9fdf7824 946 } else {
fefef828 947
9fdf7824 948 $t_ctr = $item['category#'];
fefef828 949
9fdf7824
AD
950 $additional_tags = false;
951
952 if ($t_ctr == 0) {
953 $additional_tags = false;
71bd29f6 954 } else if ($t_ctr > 0) {
9fdf7824 955 $additional_tags = array($item['category']);
71bd29f6
AD
956
957 if ($item['category@term']) {
958 array_push($additional_tags, $item['category@term']);
959 }
960
9fdf7824
AD
961 for ($i = 0; $i <= $t_ctr; $i++ ) {
962 if ($item["category#$i"]) {
963 array_push($additional_tags, $item["category#$i"]);
964 }
71bd29f6
AD
965
966 if ($item["category#$i@term"]) {
967 array_push($additional_tags, $item["category#$i@term"]);
968 }
9fdf7824
AD
969 }
970 }
971
972 // parse <dc:subject> elements
973
974 $t_ctr = $item['dc']['subject#'];
975
71bd29f6 976 if ($t_ctr > 0) {
9fdf7824 977 $additional_tags = array($item['dc']['subject']);
71bd29f6 978
9fdf7824
AD
979 for ($i = 0; $i <= $t_ctr; $i++ ) {
980 if ($item['dc']["subject#$i"]) {
981 array_push($additional_tags, $item['dc']["subject#$i"]);
982 }
fefef828
AD
983 }
984 }
985 }
8add756a 986
ce53e200
AD
987 // enclosures
988
989 $enclosures = array();
990
16211ddb 991 if ($use_simplepie) {
ce53e200
AD
992 $encs = $item->get_enclosures();
993
3b9e5af4
AD
994 if (is_array($encs)) {
995 foreach ($encs as $e) {
996 $e_item = array(
997 $e->link, $e->type, $e->length);
998
999 array_push($enclosures, $e_item);
1000 }
ce53e200
AD
1001 }
1002
1003 } else {
e91ab107
AD
1004 // <enclosure>
1005
ce53e200
AD
1006 $e_ctr = $item['enclosure#'];
1007
1008 if ($e_ctr > 0) {
1009 $e_item = array($item['enclosure@url'],
1010 $item['enclosure@type'],
1011 $item['enclosure@length']);
1012
1013 array_push($enclosures, $e_item);
1014
71bd29f6
AD
1015 for ($i = 0; $i <= $e_ctr; $i++ ) {
1016
1017 if ($item["enclosure#$i@url"]) {
1018 $e_item = array($item["enclosure#$i@url"],
1019 $item["enclosure#$i@type"],
1020 $item["enclosure#$i@length"]);
1021 array_push($enclosures, $e_item);
1022 }
ce53e200
AD
1023 }
1024 }
1025
e91ab107 1026 // <media:content>
b652fdae 1027 // can there be many of those? yes -fox
e91ab107
AD
1028
1029 $m_ctr = $item['media']['content#'];
1030
1031 if ($m_ctr > 0) {
1032 $e_item = array($item['media']['content@url'],
1033 $item['media']['content@medium'],
1034 $item['media']['content@length']);
1035
1036 array_push($enclosures, $e_item);
e91ab107 1037
b652fdae
AD
1038 for ($i = 0; $i <= $m_ctr; $i++ ) {
1039
1040 if ($item["media"]["content#$i@url"]) {
1041 $e_item = array($item["media"]["content#$i@url"],
1042 $item["media"]["content#$i@medium"],
1043 $item["media"]["content#$i@length"]);
1044 array_push($enclosures, $e_item);
1045 }
1046 }
1047
1048 }
ce53e200
AD
1049 }
1050
d48d160c 1051 # sanitize content
183ad07b 1052
621ffb00
AD
1053 $entry_content = sanitize_article_content($entry_content);
1054 $entry_title = sanitize_article_content($entry_title);
d48d160c 1055
b4e75b2a 1056 if (defined('DAEMON_EXTENDED_DEBUG') || $_REQUEST['xdebug']) {
34e420fb
AD
1057 _debug("update_rss_feed: done collecting data [TITLE:$entry_title]");
1058 }
1059
44e241cb
AD
1060 db_query($link, "BEGIN");
1061
4c193675
AD
1062 if (db_num_rows($result) == 0) {
1063
b4e75b2a 1064 if (defined('DAEMON_EXTENDED_DEBUG') || $_REQUEST['xdebug']) {
34e420fb
AD
1065 _debug("update_rss_feed: base guid not found");
1066 }
1067
4c193675
AD
1068 // base post entry does not exist, create it
1069
4c193675
AD
1070 $result = db_query($link,
1071 "INSERT INTO ttrss_entries
1072 (title,
1073 guid,
1074 link,
1075 updated,
1076 content,
1077 content_hash,
1078 no_orig_date,
1079 date_entered,
11b0dce2 1080 comments,
b6104dee
AD
1081 num_comments,
1082 author)
4c193675
AD
1083 VALUES
1084 ('$entry_title',
1085 '$entry_guid',
1086 '$entry_link',
1087 '$entry_timestamp_fmt',
1088 '$entry_content',
1089 '$content_hash',
1090 $no_orig_date,
1091 NOW(),
11b0dce2 1092 '$entry_comments',
b6104dee
AD
1093 '$num_comments',
1094 '$entry_author')");
8926aab8
AD
1095 } else {
1096 // we keep encountering the entry in feeds, so we need to
1097 // update date_entered column so that we don't get horrible
1098 // dupes when the entry gets purged and reinserted again e.g.
1099 // in the case of SLOW SLOW OMG SLOW updating feeds
1100
1101 $base_entry_id = db_fetch_result($result, 0, "id");
1102
1103 db_query($link, "UPDATE ttrss_entries SET date_entered = NOW()
1104 WHERE id = '$base_entry_id'");
4c193675
AD
1105 }
1106
1107 // now it should exist, if not - bad luck then
1108
6385315d
AD
1109 $result = db_query($link, "SELECT
1110 id,content_hash,no_orig_date,title,
2ac6b765
AD
1111 ".SUBSTRING_FOR_DATE."(date_entered,1,19) as date_entered,
1112 ".SUBSTRING_FOR_DATE."(updated,1,19) as updated,
11b0dce2 1113 num_comments
6385315d
AD
1114 FROM
1115 ttrss_entries
1116 WHERE guid = '$entry_guid'");
4c193675 1117
ce53e200
AD
1118 $entry_ref_id = 0;
1119 $entry_int_id = 0;
1120
4c193675
AD
1121 if (db_num_rows($result) == 1) {
1122
b4e75b2a 1123 if (defined('DAEMON_EXTENDED_DEBUG') || $_REQUEST['xdebug']) {
7ca91eb3 1124 _debug("update_rss_feed: base guid found, checking for user record");
34e420fb
AD
1125 }
1126
11b0dce2
AD
1127 // this will be used below in update handler
1128 $orig_content_hash = db_fetch_result($result, 0, "content_hash");
1129 $orig_title = db_fetch_result($result, 0, "title");
1130 $orig_num_comments = db_fetch_result($result, 0, "num_comments");
8926aab8
AD
1131 $orig_date_entered = strtotime(db_fetch_result($result,
1132 0, "date_entered"));
6385315d 1133
11b0dce2 1134 $ref_id = db_fetch_result($result, 0, "id");
ce53e200 1135 $entry_ref_id = $ref_id;
4c193675 1136
11b0dce2 1137 // check for user post link to main table
4c193675 1138
11b0dce2 1139 // do we allow duplicate posts with same GUID in different feeds?
8d0ec6fd 1140 if (get_pref($link, "ALLOW_DUPLICATE_POSTS", $owner_uid, false)) {
e04c18a2 1141 $dupcheck_qpart = "AND (feed_id = '$feed' OR feed_id IS NULL)";
11b0dce2
AD
1142 } else {
1143 $dupcheck_qpart = "";
1144 }
71604ca4 1145
11b0dce2 1146// error_reporting(0);
19c9cb11 1147
f8382011 1148 $article_filters = get_article_filters($filters, $entry_title,
44d0e774 1149 $entry_content, $entry_link, $entry_timestamp);
19c9cb11 1150
b4e75b2a 1151 if (defined('DAEMON_EXTENDED_DEBUG') || $_REQUEST['xdebug']) {
7ca91eb3
AD
1152 _debug("update_rss_feed: article filters: ");
1153 if (count($article_filters) != 0) {
1154 print_r($article_filters);
1155 }
1156 }
1157
f8382011 1158 if (find_article_filter($article_filters, "filter")) {
ee4a9812 1159 db_query($link, "COMMIT"); // close transaction in progress
11b0dce2
AD
1160 continue;
1161 }
19c9cb11 1162
11b0dce2 1163// error_reporting (DEFAULT_ERROR_LEVEL);
3a933f22 1164
ff6e357a
AD
1165 $score = calculate_article_score($article_filters);
1166
b4e75b2a 1167 if (defined('DAEMON_EXTENDED_DEBUG') || $_REQUEST['xdebug']) {
ff6e357a
AD
1168 _debug("update_rss_feed: initial score: $score");
1169 }
1170
ef83538d 1171 $query = "SELECT ref_id, int_id FROM ttrss_user_entries WHERE
11b0dce2 1172 ref_id = '$ref_id' AND owner_uid = '$owner_uid'
ef83538d
AD
1173 $dupcheck_qpart";
1174
b4e75b2a 1175// if ($_REQUEST["xdebug"]) print "$query\n";
ef83538d
AD
1176
1177 $result = db_query($link, $query);
7ca91eb3 1178
11b0dce2
AD
1179 // okay it doesn't exist - create user entry
1180 if (db_num_rows($result) == 0) {
1181
b4e75b2a 1182 if (defined('DAEMON_EXTENDED_DEBUG') || $_REQUEST['xdebug']) {
7ca91eb3
AD
1183 _debug("update_rss_feed: user record not found, creating...");
1184 }
1185
24605713 1186 if ($score >= -500 && !find_article_filter($article_filters, 'catchup')) {
11b0dce2
AD
1187 $unread = 'true';
1188 $last_read_qpart = 'NULL';
1189 } else {
1190 $unread = 'false';
1191 $last_read_qpart = 'NOW()';
1192 }
dd7d3187 1193
32d59314 1194 if (find_article_filter($article_filters, 'mark') || $score > 1000) {
dd7d3187
AD
1195 $marked = 'true';
1196 } else {
1197 $marked = 'false';
1198 }
a36c0dfe
AD
1199
1200 if (find_article_filter($article_filters, 'publish')) {
1201 $published = 'true';
1202 } else {
1203 $published = 'false';
1204 }
1205
11b0dce2
AD
1206 $result = db_query($link,
1207 "INSERT INTO ttrss_user_entries
ff6e357a
AD
1208 (ref_id, owner_uid, feed_id, unread, last_read, marked,
1209 published, score)
11b0dce2 1210 VALUES ('$ref_id', '$owner_uid', '$feed', $unread,
ff6e357a 1211 $last_read_qpart, $marked, $published, '$score')");
ce53e200
AD
1212
1213 $result = db_query($link,
1214 "SELECT int_id FROM ttrss_user_entries WHERE
1215 ref_id = '$ref_id' AND owner_uid = '$owner_uid' AND
1216 feed_id = '$feed' LIMIT 1");
1217
1218 if (db_num_rows($result) == 1) {
1219 $entry_int_id = db_fetch_result($result, 0, "int_id");
1220 }
1221 } else {
b4e75b2a 1222 if (defined('DAEMON_EXTENDED_DEBUG') || $_REQUEST['xdebug']) {
e04c18a2
AD
1223 _debug("update_rss_feed: user record FOUND");
1224 }
1225
ce53e200
AD
1226 $entry_ref_id = db_fetch_result($result, 0, "ref_id");
1227 $entry_int_id = db_fetch_result($result, 0, "int_id");
11b0dce2 1228 }
ce53e200 1229
b4e75b2a 1230 if (defined('DAEMON_EXTENDED_DEBUG') || $_REQUEST['xdebug']) {
ce53e200
AD
1231 _debug("update_rss_feed: RID: $entry_ref_id, IID: $entry_int_id");
1232 }
1233
6385315d
AD
1234 $post_needs_update = false;
1235
8d0ec6fd 1236 if (get_pref($link, "UPDATE_POST_ON_CHECKSUM_CHANGE", $owner_uid, false) &&
6385315d 1237 ($content_hash != $orig_content_hash)) {
7e43ad58 1238// print "<!-- [$entry_title] $content_hash vs $orig_content_hash -->";
6385315d
AD
1239 $post_needs_update = true;
1240 }
1241
7e43ad58 1242 if (db_escape_string($orig_title) != $entry_title) {
6385315d
AD
1243 $post_needs_update = true;
1244 }
1245
11b0dce2
AD
1246 if ($orig_num_comments != $num_comments) {
1247 $post_needs_update = true;
1248 }
1249
6385315d
AD
1250// this doesn't seem to be very reliable
1251//
1252// if ($orig_timestamp != $entry_timestamp && !$orig_no_orig_date) {
1253// $post_needs_update = true;
1254// }
1255
1256 // if post needs update, update it and mark all user entries
1c73bc0c 1257 // linking to this post as updated
6385315d
AD
1258 if ($post_needs_update) {
1259
7ca91eb3
AD
1260 if (defined('DAEMON_EXTENDED_DEBUG')) {
1261 _debug("update_rss_feed: post $entry_guid needs update...");
1262 }
1263
6385315d
AD
1264// print "<!-- post $orig_title needs update : $post_needs_update -->";
1265
6385315d 1266 db_query($link, "UPDATE ttrss_entries
11b0dce2 1267 SET title = '$entry_title', content = '$entry_content',
7e43ad58 1268 content_hash = '$content_hash',
11b0dce2 1269 num_comments = '$num_comments'
6385315d
AD
1270 WHERE id = '$ref_id'");
1271
8d0ec6fd 1272 if (get_pref($link, "MARK_UNREAD_ON_UPDATE", $owner_uid, false)) {
4919fb42
AD
1273 db_query($link, "UPDATE ttrss_user_entries
1274 SET last_read = null, unread = true WHERE ref_id = '$ref_id'");
1275 } else {
1276 db_query($link, "UPDATE ttrss_user_entries
1277 SET last_read = null WHERE ref_id = '$ref_id' AND unread = false");
1278 }
6385315d
AD
1279
1280 }
4c193675
AD
1281 }
1282
44e241cb
AD
1283 db_query($link, "COMMIT");
1284
b4e75b2a 1285 if (defined('DAEMON_EXTENDED_DEBUG') || $_REQUEST['xdebug']) {
ceb30ba4
AD
1286 _debug("update_rss_feed: assigning labels...");
1287 }
1288
1289 assign_article_to_labels($link, $entry_ref_id, $article_filters,
1290 $owner_uid);
1291
b4e75b2a 1292 if (defined('DAEMON_EXTENDED_DEBUG') || $_REQUEST['xdebug']) {
ce53e200
AD
1293 _debug("update_rss_feed: looking for enclosures...");
1294 }
1295
b4e75b2a 1296 if (defined('DAEMON_EXTENDED_DEBUG') || $_REQUEST['xdebug']) {
ce53e200
AD
1297 print_r($enclosures);
1298 }
1299
1300 db_query($link, "BEGIN");
1301
1302 foreach ($enclosures as $enc) {
1303 $enc_url = db_escape_string($enc[0]);
1304 $enc_type = db_escape_string($enc[1]);
1305 $enc_dur = db_escape_string($enc[2]);
1306
1307 $result = db_query($link, "SELECT id FROM ttrss_enclosures
1308 WHERE content_url = '$enc_url' AND post_id = '$entry_ref_id'");
1309
1310 if (db_num_rows($result) == 0) {
1311 db_query($link, "INSERT INTO ttrss_enclosures
1312 (content_url, content_type, title, duration, post_id) VALUES
1313 ('$enc_url', '$enc_type', '', '$enc_dur', '$entry_ref_id')");
1314 }
1315 }
1316
1317 db_query($link, "COMMIT");
1318
b4e75b2a 1319 if (defined('DAEMON_EXTENDED_DEBUG') || $_REQUEST['xdebug']) {
34e420fb
AD
1320 _debug("update_rss_feed: looking for tags...");
1321 }
1322
eb36b4eb 1323 /* taaaags */
40e1a95b 1324 // <a href="..." rel="tag">Xorg</a>, //
eb36b4eb 1325
05732aa0 1326 $entry_tags = null;
eb36b4eb 1327
40e1a95b 1328 preg_match_all("/<a.*?rel=['\"]tag['\"].*?>([^<]+)<\/a>/i",
ee2c3050
AD
1329 $entry_content_unescaped, $entry_tags);
1330
fefef828
AD
1331/* print "<p><br/>$entry_title : $entry_content_unescaped<br>";
1332 print_r($entry_tags);
1333 print "<br/></p>"; */
eb36b4eb
AD
1334
1335 $entry_tags = $entry_tags[1];
1336
073ca0e6
AD
1337 # check for manual tags
1338
f8382011
AD
1339 $tag_filter = find_article_filter($article_filters, "tag");
1340
1341 if ($tag_filter) {
073ca0e6 1342
f8382011 1343 $manual_tags = trim_array(split(",", $tag_filter[1]));
073ca0e6 1344
f8382011 1345 foreach ($manual_tags as $tag) {
be832a1a
AD
1346 if (tag_is_valid($tag)) {
1347 array_push($entry_tags, $tag);
1348 }
1349 }
1350 }
1351
11c9ea1f
AD
1352 $boring_tags = trim_array(split(",", mb_strtolower(get_pref($link,
1353 'BLACKLISTED_TAGS', $owner_uid, ''), 'utf-8')));
8fc70781 1354
fefef828
AD
1355 if ($additional_tags && is_array($additional_tags)) {
1356 foreach ($additional_tags as $tag) {
156a785d
AD
1357 if (tag_is_valid($tag) &&
1358 array_search($tag, $boring_tags) === FALSE) {
073ca0e6
AD
1359 array_push($entry_tags, $tag);
1360 }
1361 }
fefef828
AD
1362 }
1363
fcc95e24 1364// print "<p>TAGS: "; print_r($entry_tags); print "</p>";
073ca0e6 1365
b4e75b2a 1366 if (defined('DAEMON_EXTENDED_DEBUG') || $_REQUEST['xdebug']) {
9fdf7824
AD
1367 print_r($entry_tags);
1368 }
1369
eb36b4eb
AD
1370 if (count($entry_tags) > 0) {
1371
44e241cb
AD
1372 db_query($link, "BEGIN");
1373
fe99ab12 1374 foreach ($entry_tags as $tag) {
fefef828 1375
14b6c54b 1376 $tag = sanitize_tag($tag);
fefef828 1377 $tag = db_escape_string($tag);
31483fc1 1378
ef063748
AD
1379 if (!tag_is_valid($tag)) continue;
1380
fe99ab12
AD
1381 $result = db_query($link, "SELECT id FROM ttrss_tags
1382 WHERE tag_name = '$tag' AND post_int_id = '$entry_int_id' AND
1383 owner_uid = '$owner_uid' LIMIT 1");
1384
1385 // print db_fetch_result($result, 0, "id");
1386
1387 if ($result && db_num_rows($result) == 0) {
1388
fe99ab12
AD
1389 db_query($link, "INSERT INTO ttrss_tags
1390 (owner_uid,tag_name,post_int_id)
1391 VALUES ('$owner_uid','$tag', '$entry_int_id')");
1392 }
1393 }
ce53e200 1394
44e241cb 1395 db_query($link, "COMMIT");
05732aa0 1396 }
9fdf7824 1397
b4e75b2a 1398 if (defined('DAEMON_EXTENDED_DEBUG') || $_REQUEST['xdebug']) {
9fdf7824
AD
1399 _debug("update_rss_feed: article processed");
1400 }
4c193675 1401 }
40d13c28 1402
50b2db96 1403 if (!$last_updated) {
b4e75b2a 1404 if (defined('DAEMON_EXTENDED_DEBUG') || $_REQUEST['xdebug']) {
50b2db96
AD
1405 _debug("update_rss_feed: new feed, catching it up...");
1406 }
c7e51de1 1407 catchup_feed($link, $feed, false, $owner_uid);
50b2db96
AD
1408 }
1409
0e70ed51 1410 purge_feed($link, $feed, 0);
3907ef71 1411
ab3d0b99
AD
1412 db_query($link, "UPDATE ttrss_feeds
1413 SET last_updated = NOW(), last_error = '' WHERE id = '$feed'");
eb36b4eb 1414
44e241cb 1415// db_query($link, "COMMIT");
dd8c76a9 1416
ab3d0b99 1417 } else {
ca872b9d 1418
16211ddb 1419 if ($use_simplepie) {
ca872b9d 1420 $error_msg = mb_substr($rss->error(), 0, 250);
9fdf7824 1421 } else {
ca872b9d 1422 $error_msg = mb_substr(magpie_error(), 0, 250);
9fdf7824 1423 }
ca872b9d 1424
b4e75b2a 1425 if (defined('DAEMON_EXTENDED_DEBUG') || $_REQUEST['xdebug']) {
ca872b9d
AD
1426 _debug("update_rss_feed: error fetching feed: $error_msg");
1427 }
1428
1429 $error_msg = db_escape_string($error_msg);
1430
ab3d0b99 1431 db_query($link,
aa5f9f5f
AD
1432 "UPDATE ttrss_feeds SET last_error = '$error_msg',
1433 last_updated = NOW() WHERE id = '$feed'");
40d13c28
AD
1434 }
1435
16211ddb 1436 if ($use_simplepie) {
ac6ebdb3
AD
1437 unset($rss);
1438 }
1439
b4e75b2a 1440 if (defined('DAEMON_EXTENDED_DEBUG') || $_REQUEST['xdebug']) {
34e420fb 1441 _debug("update_rss_feed: done");
219bd8fc
AD
1442 }
1443
40d13c28
AD
1444 }
1445
f175937c 1446 function print_select($id, $default, $values, $attributes = "") {
79f3553b 1447 print "<select name=\"$id\" id=\"$id\" $attributes>";
a0d53889
AD
1448 foreach ($values as $v) {
1449 if ($v == $default)
1450 $sel = " selected";
1451 else
1452 $sel = "";
1453
1454 print "<option$sel>$v</option>";
1455 }
1456 print "</select>";
1457 }
40d13c28 1458
79f3553b
AD
1459 function print_select_hash($id, $default, $values, $attributes = "") {
1460 print "<select name=\"$id\" id='$id' $attributes>";
673d54ca
AD
1461 foreach (array_keys($values) as $v) {
1462 if ($v == $default)
74d5c8fa 1463 $sel = 'selected="selected"';
673d54ca
AD
1464 else
1465 $sel = "";
1466
1467 print "<option $sel value=\"$v\">".$values[$v]."</option>";
1468 }
1469
1470 print "</select>";
1471 }
1472
44d0e774 1473 function get_article_filters($filters, $title, $content, $link, $timestamp) {
240054f1 1474 $matches = array();
c2d9322b 1475
240054f1
AD
1476 if ($filters["title"]) {
1477 foreach ($filters["title"] as $filter) {
c2d9322b
AD
1478 $reg_exp = $filter["reg_exp"];
1479 $inverse = $filter["inverse"];
1480 if ((!$inverse && preg_match("/$reg_exp/i", $title)) ||
1481 ($inverse && !preg_match("/$reg_exp/i", $title))) {
1482
240054f1
AD
1483 array_push($matches, array($filter["action"], $filter["action_param"]));
1484 }
1485 }
1486 }
1487
1488 if ($filters["content"]) {
1489 foreach ($filters["content"] as $filter) {
c2d9322b
AD
1490 $reg_exp = $filter["reg_exp"];
1491 $inverse = $filter["inverse"];
1492
1493 if ((!$inverse && preg_match("/$reg_exp/i", $content)) ||
1494 ($inverse && !preg_match("/$reg_exp/i", $content))) {
1495
240054f1
AD
1496 array_push($matches, array($filter["action"], $filter["action_param"]));
1497 }
1498 }
1499 }
1500
1501 if ($filters["both"]) {
1502 foreach ($filters["both"] as $filter) {
1503 $reg_exp = $filter["reg_exp"];
c2d9322b
AD
1504 $inverse = $filter["inverse"];
1505
1506 if ($inverse) {
d404ae81 1507 if (!preg_match("/$reg_exp/i", $title) && !preg_match("/$reg_exp/i", $content)) {
c2d9322b
AD
1508 array_push($matches, array($filter["action"], $filter["action_param"]));
1509 }
1510 } else {
1511 if (preg_match("/$reg_exp/i", $title) || preg_match("/$reg_exp/i", $content)) {
1512 array_push($matches, array($filter["action"], $filter["action_param"]));
1513 }
240054f1
AD
1514 }
1515 }
1516 }
1517
1518 if ($filters["link"]) {
1519 $reg_exp = $filter["reg_exp"];
1520 foreach ($filters["link"] as $filter) {
1521 $reg_exp = $filter["reg_exp"];
c2d9322b
AD
1522 $inverse = $filter["inverse"];
1523
1524 if ((!$inverse && preg_match("/$reg_exp/i", $link)) ||
1525 ($inverse && !preg_match("/$reg_exp/i", $link))) {
1526
240054f1
AD
1527 array_push($matches, array($filter["action"], $filter["action_param"]));
1528 }
1529 }
1530 }
1531
44d0e774
AD
1532 if ($filters["date"]) {
1533 $reg_exp = $filter["reg_exp"];
1534 foreach ($filters["date"] as $filter) {
1535 $date_modifier = $filter["filter_param"];
1536 $inverse = $filter["inverse"];
1537 $check_timestamp = strtotime($filter["reg_exp"]);
1538
1539 # no-op when timestamp doesn't parse to prevent misfires
1540
1541 if ($check_timestamp) {
1542 $match_ok = false;
1543
1544 if ($date_modifier == "before" && $timestamp < $check_timestamp ||
1545 $date_modifier == "after" && $timestamp > $check_timestamp) {
1546 $match_ok = true;
1547 }
1548
1549 if ($inverse) $match_ok = !$match_ok;
1550
1551 if ($match_ok) {
1552 array_push($matches, array($filter["action"], $filter["action_param"]));
1553 }
1554 }
1555 }
1556 }
1557
240054f1
AD
1558 return $matches;
1559 }
1560
f8382011
AD
1561 function find_article_filter($filters, $filter_name) {
1562 foreach ($filters as $f) {
1563 if ($f[0] == $filter_name) {
1564 return $f;
1565 };
1566 }
1567 return false;
1568 }
1569
ff6e357a
AD
1570 function calculate_article_score($filters) {
1571 $score = 0;
1572
1573 foreach ($filters as $f) {
1574 if ($f[0] == "score") {
1575 $score += $f[1];
1576 };
1577 }
1578 return $score;
1579 }
1580
ceb30ba4
AD
1581 function assign_article_to_labels($link, $id, $filters, $owner_uid) {
1582 foreach ($filters as $f) {
1583 if ($f[0] == "label") {
1584 label_add_article($link, $id, $f[1], $owner_uid);
1585 };
1586 }
1587 }
ff6e357a 1588
9323147e 1589 function printFeedEntry($feed_id, $class, $feed_title, $unread, $icon_file, $link,
2eb9c95c
AD
1590 $rtl_content = false, $last_updated = false, $last_error = false,
1591 $fg_content = false, $bg_content = false) {
254e0e4b 1592
e04c18a2 1593 if (!$feed_title) $feed_title = getFeedTitle($link, $feed_id, false);
4bee8b5f
AD
1594 if (!$unread) $unread = getFeedUnread($link, $feed_id);
1595
1596 if ($unread > 0) $class .= "Unread";
1597
1598 if (!$icon_file) $icon_file = getFeedIcon($feed_id);
e04c18a2 1599
e9823609
AD
1600 if (strpos($icon_file, "images") !== false) {
1601 $icon_file = theme_image($link, $icon_file);
b97e6e02
AD
1602 }
1603
254e0e4b 1604 if (file_exists($icon_file) && filesize($icon_file) > 0) {
023fe037 1605 $feed_icon = "<img id=\"FIMG-$feed_id\" src=\"$icon_file\">";
254e0e4b 1606 } else {
023fe037 1607 $feed_icon = "<img id=\"FIMG-$feed_id\" src=\"images/blank_icon.gif\">";
254e0e4b
AD
1608 }
1609
9323147e
AD
1610 if ($rtl_content) {
1611 $rtl_tag = "dir=\"rtl\"";
1612 } else {
1613 $rtl_tag = "dir=\"ltr\"";
1614 }
1615
78d5212c
AD
1616 $error_notify_msg = "";
1617
fb1fb4ab
AD
1618 if ($last_error) {
1619 $link_title = "Error: $last_error ($last_updated)";
78d5212c 1620 $error_notify_msg = "(Error)";
ad780e9c 1621 } else if ($last_updated) {
fb1fb4ab
AD
1622 $link_title = "Updated: $last_updated";
1623 }
1624
7210613a 1625 $feed = "<a title=\"$link_title\" id=\"FEEDL-$feed_id\"
c50e2b30 1626 href=\"javascript:viewfeed('$feed_id', '', false, '', false, 0);\">$feed_title</a>";
254e0e4b 1627
2eb9c95c
AD
1628/* if ($feed_id < -10) {
1629 $bg_color = "#00ccff";
1630 $fg_color = "white";
1631 }
1632
1633 if ($fg_color || $bg_color) {
1634 $color_str = "<div class='labelColorIndicator'
1635 style='color : $fg_color; background-color : $bg_color'>l</div>";
1636 }
1637
1638 print $color_str; */
1639
8836613c 1640 print "<li id=\"FEEDR-$feed_id\" class=\"$class\">";
b619ff15 1641 if (get_pref($link, 'ENABLE_FEED_ICONS')) {
254e0e4b
AD
1642 print "$feed_icon";
1643 }
1644
9323147e 1645 print "<span $rtl_tag id=\"FEEDN-$feed_id\">$feed</span>";
254e0e4b
AD
1646
1647 if ($unread != 0) {
d7e83df7 1648 $fctr_class = "class=\"feedCtrHasUnread\"";
254e0e4b 1649 } else {
d7e83df7 1650 $fctr_class = "class=\"feedCtrNoUnread\"";
254e0e4b
AD
1651 }
1652
9323147e 1653 print " <span $rtl_tag $fctr_class id=\"FEEDCTR-$feed_id\">
254e0e4b 1654 (<span id=\"FEEDU-$feed_id\">$unread</span>)</span>";
78d5212c
AD
1655
1656 if (get_pref($link, "EXTENDED_FEEDLIST")) {
bdb7369b 1657 $total = getFeedArticles($link, $feed_id);
78d5212c 1658 print "<div class=\"feedExtInfo\">
bdb7369b 1659 <span id=\"FLUPD-$feed_id\">$last_updated ($total total) $error_notify_msg</span></div>";
78d5212c 1660 }
2eb9c95c 1661
254e0e4b
AD
1662 print "</li>";
1663
1664 }
1665
406d9489
AD
1666 function getmicrotime() {
1667 list($usec, $sec) = explode(" ",microtime());
1668 return ((float)$usec + (float)$sec);
1669 }
1670
f541eb78 1671 function print_radio($id, $default, $true_is, $values, $attributes = "") {
77e96719
AD
1672 foreach ($values as $v) {
1673
1674 if ($v == $default)
5da169d9 1675 $sel = "checked";
77e96719 1676 else
5da169d9
AD
1677 $sel = "";
1678
f541eb78 1679 if ($v == $true_is) {
5da169d9
AD
1680 $sel .= " value=\"1\"";
1681 } else {
1682 $sel .= " value=\"0\"";
1683 }
77e96719 1684
69654950
AD
1685 print "<input class=\"noborder\"
1686 type=\"radio\" $sel $attributes name=\"$id\">&nbsp;$v&nbsp;";
77e96719
AD
1687
1688 }
1689 }
1690
d9084cf2 1691 function initialize_user_prefs($link, $uid, $profile = false) {
ff485f1d
AD
1692
1693 $uid = db_escape_string($uid);
1694
d9084cf2
AD
1695 if (!$profile) {
1696 $profile = "NULL";
f9aa6a89 1697 $profile_qpart = "AND profile IS NULL";
d9084cf2 1698 } else {
f9aa6a89 1699 $profile_qpart = "AND profile = '$profile'";
d9084cf2
AD
1700 }
1701
f9aa6a89
AD
1702 if (get_schema_version($link) < 63) $profile_qpart = "";
1703
ff485f1d
AD
1704 db_query($link, "BEGIN");
1705
1706 $result = db_query($link, "SELECT pref_name,def_value FROM ttrss_prefs");
1707
1708 $u_result = db_query($link, "SELECT pref_name
f9aa6a89 1709 FROM ttrss_user_prefs WHERE owner_uid = '$uid' $profile_qpart");
ff485f1d
AD
1710
1711 $active_prefs = array();
1712
1713 while ($line = db_fetch_assoc($u_result)) {
1714 array_push($active_prefs, $line["pref_name"]);
1715 }
1716
1717 while ($line = db_fetch_assoc($result)) {
1718 if (array_search($line["pref_name"], $active_prefs) === FALSE) {
1719// print "adding " . $line["pref_name"] . "<br>";
1720
f9aa6a89
AD
1721 if (get_schema_version($link) < 63) {
1722 db_query($link, "INSERT INTO ttrss_user_prefs
1723 (owner_uid,pref_name,value) VALUES
1724 ('$uid', '".$line["pref_name"]."','".$line["def_value"]."')");
1725
1726 } else {
1727 db_query($link, "INSERT INTO ttrss_user_prefs
1728 (owner_uid,pref_name,value, profile) VALUES
1729 ('$uid', '".$line["pref_name"]."','".$line["def_value"]."', $profile)");
1730 }
ff485f1d
AD
1731
1732 }
1733 }
1734
1735 db_query($link, "COMMIT");
1736
1737 }
956c7629
AD
1738
1739 function lookup_user_id($link, $user) {
1740
1741 $result = db_query($link, "SELECT id FROM ttrss_users WHERE
1742 login = '$login'");
1743
1744 if (db_num_rows($result) == 1) {
1745 return db_fetch_result($result, 0, "id");
1746 } else {
1747 return false;
1748 }
1749 }
1750
18664970
AD
1751 function http_authenticate_user($link) {
1752
99ea1043 1753// error_log("http_authenticate_user: ".$_SERVER["PHP_AUTH_USER"]."\n", 3, '/tmp/tt-rss.log');
4bc64807 1754
18664970
AD
1755 if (!$_SERVER["PHP_AUTH_USER"]) {
1756
1757 header('WWW-Authenticate: Basic realm="Tiny Tiny RSS RSSGen"');
1758 header('HTTP/1.0 401 Unauthorized');
1759 exit;
1760
1761 } else {
1762 $auth_result = authenticate_user($link,
1763 $_SERVER["PHP_AUTH_USER"], $_SERVER["PHP_AUTH_PW"]);
1764
1765 if (!$auth_result) {
1766 header('WWW-Authenticate: Basic realm="Tiny Tiny RSS RSSGen"');
1767 header('HTTP/1.0 401 Unauthorized');
1768 exit;
1769 }
1770 }
1771
1772 return true;
1773 }
1774
461766f3 1775 function authenticate_user($link, $login, $password, $force_auth = false) {
c8437f35 1776
131b01b3 1777 if (!SINGLE_USER_MODE) {
c8437f35 1778
1a9f4d3c
AD
1779 $pwd_hash1 = encrypt_password($password);
1780 $pwd_hash2 = encrypt_password($password, $login);
2d969845 1781 $login = db_escape_string($login);
461766f3 1782
66917e70 1783 if (defined('ALLOW_REMOTE_USER_AUTH') && ALLOW_REMOTE_USER_AUTH
73f5f114 1784 && $_SERVER["REMOTE_USER"] && $login != "admin") {
66917e70
AD
1785
1786 $login = db_escape_string($_SERVER["REMOTE_USER"]);
1787
73f5f114 1788 $query = "SELECT id,login,access_level,pwd_hash
461766f3 1789 FROM ttrss_users WHERE
66917e70
AD
1790 login = '$login'";
1791
461766f3 1792 } else {
1a9f4d3c 1793 $query = "SELECT id,login,access_level,pwd_hash
461766f3 1794 FROM ttrss_users WHERE
1a9f4d3c
AD
1795 login = '$login' AND (pwd_hash = '$pwd_hash1' OR
1796 pwd_hash = '$pwd_hash2')";
461766f3
AD
1797 }
1798
1799 $result = db_query($link, $query);
131b01b3
AD
1800
1801 if (db_num_rows($result) == 1) {
1802 $_SESSION["uid"] = db_fetch_result($result, 0, "id");
1803 $_SESSION["name"] = db_fetch_result($result, 0, "login");
1804 $_SESSION["access_level"] = db_fetch_result($result, 0, "access_level");
1805
1806 db_query($link, "UPDATE ttrss_users SET last_login = NOW() WHERE id = " .
1807 $_SESSION["uid"]);
1808
131b01b3 1809 $_SESSION["ip_address"] = $_SERVER["REMOTE_ADDR"];
1a9f4d3c 1810 $_SESSION["pwd_hash"] = db_fetch_result($result, 0, "pwd_hash");
131b01b3
AD
1811
1812 initialize_user_prefs($link, $_SESSION["uid"]);
1813
1814 return true;
1815 }
1816
1817 return false;
503eb349 1818
131b01b3 1819 } else {
503eb349 1820
131b01b3
AD
1821 $_SESSION["uid"] = 1;
1822 $_SESSION["name"] = "admin";
f557cd78 1823
0bbba72d
AD
1824 $_SESSION["ip_address"] = $_SERVER["REMOTE_ADDR"];
1825
1826 initialize_user_prefs($link, $_SESSION["uid"]);
1827
c8437f35
AD
1828 return true;
1829 }
c8437f35
AD
1830 }
1831
e6cb77a0
AD
1832 function make_password($length = 8) {
1833
1834 $password = "";
798f722b
AD
1835 $possible = "0123456789abcdfghjkmnpqrstvwxyzABCDFGHJKMNPQRSTVWXYZ";
1836
1837 $i = 0;
e6cb77a0
AD
1838
1839 while ($i < $length) {
1840 $char = substr($possible, mt_rand(0, strlen($possible)-1), 1);
1841
1842 if (!strstr($password, $char)) {
1843 $password .= $char;
1844 $i++;
1845 }
1846 }
1847 return $password;
1848 }
1849
1850 // this is called after user is created to initialize default feeds, labels
1851 // or whatever else
1852
1853 // user preferences are checked on every login, not here
1854
1855 function initialize_user($link, $uid) {
1856
e2549229 1857/* db_query($link, "INSERT INTO ttrss_labels2 (owner_uid, caption)
69d47936
AD
1858 VALUES ('$uid', 'All Articles')");
1859
1860 db_query($link, "INSERT INTO ttrss_filters
1861 (owner_uid, feed_id, filter_type, reg_exp, enabled,
1862 action_id, action_param, filter_param)
e2549229 1863 VALUES ('$uid', NULL, 1, '.', true, 7, 'All Articles', 'before')"); */
69d47936 1864
e6cb77a0 1865 db_query($link, "insert into ttrss_feeds (owner_uid,title,feed_url)
74bff337 1866 values ('$uid', 'Tiny Tiny RSS: New Releases',
b6d486a3 1867 'http://tt-rss.org/releases.rss')");
3b0feb9b 1868
cd2cd415
AD
1869 db_query($link, "insert into ttrss_feeds (owner_uid,title,feed_url)
1870 values ('$uid', 'Tiny Tiny RSS: Forum',
b6d486a3 1871 'http://tt-rss.org/forum/rss.php')");
3b0feb9b 1872 }
e6cb77a0 1873
b8aa49bc 1874 function logout_user() {
5ccc1cf5
AD
1875 session_destroy();
1876 if (isset($_COOKIE[session_name()])) {
1877 setcookie(session_name(), '', time()-42000, '/');
1878 }
b8aa49bc
AD
1879 }
1880
75836f33 1881 function get_script_urlpath() {
87a79fa4 1882 return preg_replace('/\/[^\/]*$/', "", $_SERVER["REQUEST_URI"]);
75836f33
AD
1883 }
1884
916f788a 1885 function validate_session($link) {
741edab2
AD
1886 if (SINGLE_USER_MODE) {
1887 return true;
1888 }
1889
a2e9b457 1890 if (SESSION_CHECK_ADDRESS && $_SESSION["uid"]) {
916f788a
AD
1891 if ($_SESSION["ip_address"]) {
1892 if ($_SESSION["ip_address"] != $_SERVER["REMOTE_ADDR"]) {
af163b85 1893 $_SESSION["login_error_msg"] = __("Session failed to validate (incorrect IP)");
916f788a
AD
1894 return false;
1895 }
1896 }
1897 }
d620cfe7 1898
05044a59
AD
1899 if ($_SESSION["ref_schema_version"] != get_schema_version($link, true)) {
1900 return false;
1901 }
1902
e6684130
AD
1903 if ($_SESSION["uid"]) {
1904
1905 $result = db_query($link,
1906 "SELECT pwd_hash FROM ttrss_users WHERE id = '".$_SESSION["uid"]."'");
1907
1908 $pwd_hash = db_fetch_result($result, 0, "pwd_hash");
1909
1910 if ($pwd_hash != $_SESSION["pwd_hash"]) {
1911 return false;
1912 }
1913 }
1914
a885f0ec 1915/* if ($_SESSION["cookie_lifetime"] && $_SESSION["uid"]) {
d620cfe7 1916
8e849206 1917 //print_r($_SESSION);
d620cfe7
AD
1918
1919 if (time() > $_SESSION["cookie_lifetime"]) {
1920 return false;
1921 }
a885f0ec
AD
1922 } */
1923
916f788a
AD
1924 return true;
1925 }
1926
793185a9 1927 function login_sequence($link, $mobile = false) {
b8aa49bc 1928 if (!SINGLE_USER_MODE) {
75836f33 1929
7f0acba7 1930 $login_action = $_POST["login_action"];
a885f0ec 1931
01a87dff 1932 # try to authenticate user if called from login form
7f0acba7 1933 if ($login_action == "do_login") {
01a87dff
AD
1934 $login = $_POST["login"];
1935 $password = $_POST["password"];
d620cfe7 1936 $remember_me = $_POST["remember_me"];
f557cd78 1937
01a87dff
AD
1938 if (authenticate_user($link, $login, $password)) {
1939 $_POST["password"] = "";
d620cfe7 1940
f8c612d4 1941 $_SESSION["language"] = $_POST["language"];
05044a59 1942 $_SESSION["ref_schema_version"] = get_schema_version($link, true);
a598370d 1943 $_SESSION["bw_limit"] = !!$_POST["bw_limit"];
f8c612d4 1944
d9084cf2
AD
1945 if ($_POST["profile"]) {
1946
1947 $profile = db_escape_string($_POST["profile"]);
1948
1949 $result = db_query($link, "SELECT id FROM ttrss_settings_profiles
1950 WHERE id = '$profile' AND owner_uid = " . $_SESSION["uid"]);
1951
1952 if (db_num_rows($result) != 0) {
1953 $_SESSION["profile"] = $profile;
1954 $_SESSION["prefs_cache"] = array();
1955 }
1956 }
1957
d620cfe7
AD
1958 header("Location: " . $_SERVER["REQUEST_URI"]);
1959 exit;
1960
01a87dff 1961 return;
7f0acba7 1962 } else {
af163b85 1963 $_SESSION["login_error_msg"] = __("Incorrect username or password");
01a87dff
AD
1964 }
1965 }
1966
7f0acba7 1967 if (!$_SESSION["uid"] || !validate_session($link)) {
206d4967
AD
1968 render_login_form($link, $mobile);
1969 //header("Location: login.php");
01a87dff 1970 exit;
d3687e7a
AD
1971 } else {
1972 /* bump login timestamp */
1973 db_query($link, "UPDATE ttrss_users SET last_login = NOW() WHERE id = " .
1974 $_SESSION["uid"]);
019bd5a9 1975
d54780bc 1976 if ($_SESSION["language"] && SESSION_COOKIE_LIFETIME > 0) {
019bd5a9
AD
1977 setcookie("ttrss_lang", $_SESSION["language"],
1978 time() + SESSION_COOKIE_LIFETIME);
1979 }
4fdb0476
AD
1980
1981 /* bump counters stamp since we're getting reloaded anyway */
1982
1983 $_SESSION["get_all_counters_stamp"] = time();
b8aa49bc 1984 }
d620cfe7 1985
b8aa49bc 1986 } else {
0bbba72d 1987 return authenticate_user($link, "admin", null);
b8aa49bc
AD
1988 }
1989 }
3547842a
AD
1990
1991 function truncate_string($str, $max_len) {
12db369c 1992 if (mb_strlen($str, "utf-8") > $max_len - 3) {
66a251f9 1993 return mb_substr($str, 0, $max_len, "utf-8") . "&hellip;";
3547842a
AD
1994 } else {
1995 return $str;
1996 }
1997 }
54a60e1a 1998
e9823609 1999 function theme_image($link, $filename) {
883fee8d
AD
2000 if ($link) {
2001 $theme_path = get_user_theme_path($link);
e9823609 2002
883fee8d
AD
2003 if ($theme_path && is_file($theme_path.$filename)) {
2004 return $theme_path.$filename;
2005 } else {
2006 return $filename;
2007 }
e9823609
AD
2008 } else {
2009 return $filename;
2010 }
2011 }
2012
dce46cad 2013 function get_user_theme($link) {
e4c51a6c
AD
2014
2015 if (get_schema_version($link) >= 63) {
b97e6e02
AD
2016 $theme_name = get_pref($link, "_THEME_ID");
2017 if (is_dir("themes/$theme_name")) {
2018 return $theme_name;
2019 } else {
2020 return '';
2021 }
e4c51a6c 2022 } else {
b97e6e02 2023 return '';
e4c51a6c 2024 }
d9084cf2 2025
dce46cad
AD
2026 }
2027
2028 function get_user_theme_path($link) {
2029
2030 if (get_schema_version($link) >= 63) {
2031 $theme_name = get_pref($link, "_THEME_ID");
2032
b97e6e02 2033 if ($theme_name && is_dir("themes/$theme_name")) {
dce46cad 2034 $theme_path = "themes/$theme_name/";
6ba50622 2035 } else {
dce46cad 2036 $theme_name = '';
6ba50622 2037 }
54a60e1a 2038 } else {
dce46cad
AD
2039 $theme_path = '';
2040 }
2041
2042 return $theme_path;
2043 }
2044
e71f2610
AD
2045 function get_user_theme_options($link) {
2046 $t = get_user_theme_path($link);
2047
2048 if ($t) {
2049 if (is_file("$t/theme.ini")) {
2050 $ini = parse_ini_file("$t/theme.ini", true);
2051 if ($ini['theme']['version']) {
2052 return $ini['theme']['options'];
2053 }
2054 }
2055 }
2056 return false;
2057 }
2058
2059
dce46cad
AD
2060 function get_all_themes() {
2061 $themes = glob("themes/*");
2062
b97e6e02
AD
2063 asort($themes);
2064
dce46cad
AD
2065 $rv = array();
2066
2067 foreach ($themes as $t) {
2068 if (is_file("$t/theme.ini")) {
2069 $ini = parse_ini_file("$t/theme.ini", true);
b97e6e02 2070 if ($ini['theme']['version'] && !$ini['theme']['disabled']) {
dce46cad
AD
2071 $entry = array();
2072 $entry["path"] = $t;
2073 $entry["base"] = basename($t);
2074 $entry["name"] = $ini['theme']['name'];
2075 $entry["version"] = $ini['theme']['version'];
2076 $entry["author"] = $ini['theme']['author'];
e71f2610 2077 $entry["options"] = $ini['theme']['options'];
dce46cad
AD
2078 array_push($rv, $entry);
2079 }
2080 }
54a60e1a 2081 }
dce46cad
AD
2082
2083 return $rv;
54a60e1a 2084 }
be773442
AD
2085
2086 function smart_date_time($timestamp) {
2087 if (date("Y.m.d", $timestamp) == date("Y.m.d")) {
2088 return date("G:i", $timestamp);
f26450f1 2089 } else if (date("Y", $timestamp) == date("Y")) {
be773442
AD
2090 return date("M d, G:i", $timestamp);
2091 } else {
7d7e0509 2092 return date("Y/m/d, G:i", $timestamp);
be773442
AD
2093 }
2094 }
2095
2096 function smart_date($timestamp) {
2097 if (date("Y.m.d", $timestamp) == date("Y.m.d")) {
2098 return "Today";
f26450f1 2099 } else if (date("Y", $timestamp) == date("Y")) {
be773442
AD
2100 return date("D m", $timestamp);
2101 } else {
b02111c2 2102 return date("Y/m/d", $timestamp);
be773442
AD
2103 }
2104 }
a654a595
AD
2105
2106 function sql_bool_to_string($s) {
2107 if ($s == "t" || $s == "1") {
2108 return "true";
2109 } else {
2110 return "false";
2111 }
2112 }
e3c99f3b
AD
2113
2114 function sql_bool_to_bool($s) {
2115 if ($s == "t" || $s == "1") {
2116 return true;
2117 } else {
2118 return false;
2119 }
2120 }
0ea4fb50 2121
badac687
AD
2122 function bool_to_sql_bool($s) {
2123 if ($s) {
2124 return "true";
2125 } else {
2126 return "false";
2127 }
2128 }
e3c99f3b 2129
0ea4fb50
AD
2130 function toggleEvenOdd($a) {
2131 if ($a == "even")
2132 return "odd";
2133 else
2134 return "even";
2135 }
6043fb7e 2136
199db684
AD
2137 function get_schema_version($link, $nocache = false) {
2138 if (!$_SESSION["schema_version"] || $nocache) {
2139 $result = db_query($link, "SELECT schema_version FROM ttrss_version");
2140 $version = db_fetch_result($result, 0, "schema_version");
2141 $_SESSION["schema_version"] = $version;
2142 return $version;
2143 } else {
2144 return $_SESSION["schema_version"];
2145 }
e4c51a6c
AD
2146 }
2147
6043fb7e 2148 function sanity_check($link) {
9cbca41f 2149
aec3ce39
AD
2150 error_reporting(0);
2151
6043fb7e 2152 $error_code = 0;
05044a59 2153 $schema_version = get_schema_version($link);
6043fb7e
AD
2154
2155 if ($schema_version != SCHEMA_VERSION) {
2156 $error_code = 5;
2157 }
2158
aec3ce39
AD
2159 if (DB_TYPE == "mysql") {
2160 $result = db_query($link, "SELECT true", false);
2161 if (db_num_rows($result) != 1) {
2162 $error_code = 10;
2163 }
2164 }
2165
f29ba148
AD
2166 if (db_escape_string("testTEST") != "testTEST") {
2167 $error_code = 12;
2168 }
2169
aec3ce39
AD
2170 error_reporting (DEFAULT_ERROR_LEVEL);
2171
6043fb7e 2172 if ($error_code != 0) {
aec3ce39 2173 print_error_xml($error_code);
6043fb7e
AD
2174 return false;
2175 } else {
2176 return true;
4220d6b0 2177 }
6043fb7e
AD
2178 }
2179
27981ca3 2180 function file_is_locked($filename) {
31a6d42d
AD
2181 if (function_exists('flock')) {
2182 error_reporting(0);
cfa43e02 2183 $fp = fopen(LOCK_DIRECTORY . "/$filename", "r");
31a6d42d
AD
2184 error_reporting(DEFAULT_ERROR_LEVEL);
2185 if ($fp) {
2186 if (flock($fp, LOCK_EX | LOCK_NB)) {
2187 flock($fp, LOCK_UN);
2188 fclose($fp);
2189 return false;
2190 }
27981ca3 2191 fclose($fp);
31a6d42d 2192 return true;
e89aed7b
AD
2193 } else {
2194 return false;
27981ca3 2195 }
27981ca3 2196 }
c1fb4a5e 2197 return true; // consider the file always locked and skip the test
27981ca3
AD
2198 }
2199
fcb4c0c9 2200 function make_lockfile($filename) {
cfa43e02 2201 $fp = fopen(LOCK_DIRECTORY . "/$filename", "w");
fcb4c0c9
AD
2202
2203 if (flock($fp, LOCK_EX | LOCK_NB)) {
2204 return $fp;
2205 } else {
2206 return false;
2207 }
2208 }
2209
bf7fcde8 2210 function make_stampfile($filename) {
cfa43e02 2211 $fp = fopen(LOCK_DIRECTORY . "/$filename", "w");
bf7fcde8 2212
8e00ae9b 2213 if (flock($fp, LOCK_EX | LOCK_NB)) {
bf7fcde8 2214 fwrite($fp, time() . "\n");
8e00ae9b 2215 flock($fp, LOCK_UN);
bf7fcde8
AD
2216 fclose($fp);
2217 return true;
2218 } else {
2219 return false;
2220 }
2221 }
2222
8e00ae9b
AD
2223 function read_stampfile($filename) {
2224
2225 error_reporting(0);
cfa43e02 2226 $fp = fopen(LOCK_DIRECTORY . "/$filename", "r");
8e00ae9b
AD
2227 error_reporting (DEFAULT_ERROR_LEVEL);
2228
e89aed7b
AD
2229 if ($fp) {
2230 if (flock($fp, LOCK_EX)) {
2231 $stamp = fgets($fp);
2232 flock($fp, LOCK_UN);
2233 fclose($fp);
2234 return $stamp;
2235 } else {
2236 return false;
2237 }
8e00ae9b
AD
2238 } else {
2239 return false;
2240 }
2241 }
bf7fcde8 2242
894ebcf5
AD
2243 function sql_random_function() {
2244 if (DB_TYPE == "mysql") {
2245 return "RAND()";
2246 } else {
2247 return "RANDOM()";
2248 }
2249 }
2250
c7e51de1
AD
2251 function catchup_feed($link, $feed, $cat_view, $owner_uid) {
2252
2253 if (!$owner_uid) $owner_uid = $_SESSION['uid'];
88040f57
AD
2254
2255 if (preg_match("/^-?[0-9][0-9]*$/", $feed) != false) {
22fdebff 2256
23aa0d16
AD
2257 if ($cat_view) {
2258
72a2f4f5 2259 if ($feed >= 0) {
f9fca8cb
AD
2260
2261 if ($feed > 0) {
2262 $cat_qpart = "cat_id = '$feed'";
2263 } else {
2264 $cat_qpart = "cat_id IS NULL";
2265 }
23aa0d16 2266
f9fca8cb 2267 $tmp_result = db_query($link, "SELECT id
c7e51de1 2268 FROM ttrss_feeds WHERE $cat_qpart AND owner_uid = $owner_uid");
f9fca8cb
AD
2269
2270 while ($tmp_line = db_fetch_assoc($tmp_result)) {
23aa0d16 2271
f9fca8cb 2272 $tmp_feed = $tmp_line["id"];
23aa0d16 2273
f9fca8cb
AD
2274 db_query($link, "UPDATE ttrss_user_entries
2275 SET unread = false,last_read = NOW()
c7e51de1 2276 WHERE feed_id = '$tmp_feed' AND owner_uid = $owner_uid");
f9fca8cb
AD
2277 }
2278 } else if ($feed == -2) {
23aa0d16 2279
6f69764c
AD
2280
2281 db_query($link, "UPDATE ttrss_user_entries
2282 SET unread = false,last_read = NOW() WHERE (SELECT COUNT(*)
2283 FROM ttrss_user_labels2 WHERE article_id = ref_id) > 0
c7e51de1 2284 AND unread = true AND owner_uid = $owner_uid");
23aa0d16
AD
2285 }
2286
2287 } else if ($feed > 0) {
2288
2289 $tmp_result = db_query($link, "SELECT id
2290 FROM ttrss_feeds WHERE parent_feed = '$feed'
2291 ORDER BY cat_id,title");
2292
2293 $parent_ids = array();
2294
2295 if (db_num_rows($tmp_result) > 0) {
2296 while ($p = db_fetch_assoc($tmp_result)) {
2297 array_push($parent_ids, "feed_id = " . $p["id"]);
2298 }
2299
2300 $children_qpart = implode(" OR ", $parent_ids);
2301
2302 db_query($link, "UPDATE ttrss_user_entries
2303 SET unread = false,last_read = NOW()
2304 WHERE (feed_id = '$feed' OR $children_qpart)
c7e51de1 2305 AND owner_uid = $owner_uid");
23aa0d16
AD
2306
2307 } else {
2308 db_query($link, "UPDATE ttrss_user_entries
2309 SET unread = false,last_read = NOW()
c7e51de1 2310 WHERE feed_id = '$feed' AND owner_uid = $owner_uid");
23aa0d16
AD
2311 }
2312
2313 } else if ($feed < 0 && $feed > -10) { // special, like starred
2314
2315 if ($feed == -1) {
2316 db_query($link, "UPDATE ttrss_user_entries
2317 SET unread = false,last_read = NOW()
c7e51de1 2318 WHERE marked = true AND owner_uid = $owner_uid");
23aa0d16 2319 }
e4f4b46f
AD
2320
2321 if ($feed == -2) {
2322 db_query($link, "UPDATE ttrss_user_entries
2323 SET unread = false,last_read = NOW()
c7e51de1 2324 WHERE published = true AND owner_uid = $owner_uid");
e4f4b46f
AD
2325 }
2326
2d24f032
AD
2327 if ($feed == -3) {
2328
c1d7e6c3
AD
2329 $intl = get_pref($link, "FRESH_ARTICLE_MAX_AGE");
2330
2d24f032 2331 if (DB_TYPE == "pgsql") {
7608b38a 2332 $match_part = "updated > NOW() - INTERVAL '$intl hour' ";
2d24f032 2333 } else {
7608b38a 2334 $match_part = "updated > DATE_SUB(NOW(),
c1d7e6c3 2335 INTERVAL $intl HOUR) ";
2d24f032
AD
2336 }
2337
1f3335dc
AD
2338 $result = db_query($link, "SELECT id FROM ttrss_entries,
2339 ttrss_user_entries WHERE $match_part AND
2340 unread = true AND
2341 ttrss_user_entries.ref_id = ttrss_entries.id AND
c7e51de1 2342 owner_uid = $owner_uid");
1f3335dc
AD
2343
2344 $affected_ids = array();
2345
2346 while ($line = db_fetch_assoc($result)) {
2347 array_push($affected_ids, $line["id"]);
2348 }
2349
2350 catchupArticlesById($link, $affected_ids, 0);
2d24f032
AD
2351 }
2352
3584cb11
AD
2353 if ($feed == -4) {
2354 db_query($link, "UPDATE ttrss_user_entries
2355 SET unread = false,last_read = NOW()
c7e51de1 2356 WHERE owner_uid = $owner_uid");
3584cb11
AD
2357 }
2358
23aa0d16
AD
2359 } else if ($feed < -10) { // label
2360
23aa0d16
AD
2361 $label_id = -$feed - 11;
2362
933ba4ee 2363 db_query($link, "UPDATE ttrss_user_entries, ttrss_user_labels2
338c238d
AD
2364 SET unread = false, last_read = NOW()
2365 WHERE label_id = '$label_id' AND unread = true
c7e51de1 2366 AND owner_uid = '$owner_uid' AND ref_id = article_id");
23aa0d16 2367
23aa0d16 2368 }
ad0056a8 2369
c7e51de1 2370 ccache_update($link, $feed, $owner_uid, $cat_view);
ad0056a8 2371
23aa0d16
AD
2372 } else { // tag
2373 db_query($link, "BEGIN");
2374
2375 $tag_name = db_escape_string($feed);
2376
2377 $result = db_query($link, "SELECT post_int_id FROM ttrss_tags
c7e51de1 2378 WHERE tag_name = '$tag_name' AND owner_uid = $owner_uid");
23aa0d16
AD
2379
2380 while ($line = db_fetch_assoc($result)) {
2381 db_query($link, "UPDATE ttrss_user_entries SET
2382 unread = false, last_read = NOW()
2383 WHERE int_id = " . $line["post_int_id"]);
2384 }
2385 db_query($link, "COMMIT");
2386 }
2387 }
2388
35bf080c 2389 function update_generic_feed($link, $feed, $cat_view, $force_update = false) {
23aa0d16
AD
2390 if ($cat_view) {
2391
2392 if ($feed > 0) {
2393 $cat_qpart = "cat_id = '$feed'";
2394 } else {
2395 $cat_qpart = "cat_id IS NULL";
2396 }
2397
571dad82 2398 $tmp_result = db_query($link, "SELECT id,feed_url FROM ttrss_feeds
23aa0d16
AD
2399 WHERE $cat_qpart AND owner_uid = " . $_SESSION["uid"]);
2400
2401 while ($tmp_line = db_fetch_assoc($tmp_result)) {
2402 $feed_url = $tmp_line["feed_url"];
571dad82 2403 $feed_id = $tmp_line["id"];
35bf080c 2404 update_rss_feed($link, $feed_url, $feed_id, $force_update);
23aa0d16
AD
2405 }
2406
2407 } else {
2408 $tmp_result = db_query($link, "SELECT feed_url FROM ttrss_feeds
2409 WHERE id = '$feed'");
2410 $feed_url = db_fetch_result($tmp_result, 0, "feed_url");
35bf080c 2411 update_rss_feed($link, $feed_url, $feed, $force_update);
23aa0d16
AD
2412 }
2413 }
a9cb1f83 2414
4ffa126e 2415 function getAllCounters($link, $omode = "flc", $active_feed = false) {
cf4d339c 2416
e33fe293 2417 if (!$omode) $omode = "flc";
d9e4bba0 2418
e33fe293 2419 getGlobalCounters($link);
0a6e5382
AD
2420 getVirtCounters($link);
2421
e33fe293 2422 if (strchr($omode, "l")) getLabelCounters($link);
3809b278 2423 if (strchr($omode, "f")) getFeedCounters($link, $active_feed);
e33fe293
AD
2424 if (strchr($omode, "t")) getTagCounters($link);
2425 if (strchr($omode, "c")) {
2426 if (get_pref($link, 'ENABLE_FEED_CATS')) {
2427 getCategoryCounters($link);
cf4d339c 2428 }
e33fe293 2429 }
a9cb1f83
AD
2430 }
2431
2432 function getCategoryCounters($link) {
bba7c4bf
AD
2433 # two special categories are -1 and -2 (all virtuals; all labels)
2434
b2531a28 2435/* $ctr = getCategoryUnread($link, -1);
bba7c4bf 2436
b2531a28 2437 print "<counter type=\"category\" id=\"-1\" counter=\"$ctr\"/>"; */
bba7c4bf 2438
b2531a28 2439 $ctr = getCategoryUnread($link, -2);
bba7c4bf
AD
2440
2441 print "<counter type=\"category\" id=\"-2\" counter=\"$ctr\"/>";
2442
14073c0a
AD
2443 $age_qpart = getMaxAgeSubquery();
2444
31375163
AD
2445 $result = db_query($link, "SELECT id AS cat_id, value AS unread
2446 FROM ttrss_feed_categories, ttrss_cat_counters_cache
2447 WHERE ttrss_cat_counters_cache.feed_id = id AND
2448 ttrss_feed_categories.owner_uid = " . $_SESSION["uid"]);
a9cb1f83
AD
2449
2450 while ($line = db_fetch_assoc($result)) {
22fdebff 2451 $line["cat_id"] = (int) $line["cat_id"];
8a4c759e 2452
a9cb1f83
AD
2453 print "<counter type=\"category\" id=\"".$line["cat_id"]."\" counter=\"".
2454 $line["unread"]."\"/>";
2455 }
d232a40f
AD
2456
2457 /* Special case: NULL category doesn't actually exist in the DB */
2458
2459 print "<counter type=\"category\" id=\"0\" counter=\"".
2460 ccache_find($link, 0, $_SESSION["uid"], true)."\"/>";
2461
a9cb1f83
AD
2462 }
2463
b6d486a3
AD
2464 function getCategoryUnread($link, $cat, $owner_uid = false) {
2465
2466 if (!$owner_uid) $owner_uid = $_SESSION["uid"];
f295c368 2467
bba7c4bf 2468 if ($cat >= 0) {
18664970 2469
bba7c4bf
AD
2470 if ($cat != 0) {
2471 $cat_query = "cat_id = '$cat'";
2472 } else {
2473 $cat_query = "cat_id IS NULL";
2474 }
14073c0a
AD
2475
2476 $age_qpart = getMaxAgeSubquery();
2477
bba7c4bf 2478 $result = db_query($link, "SELECT id FROM ttrss_feeds WHERE $cat_query
b6d486a3 2479 AND owner_uid = " . $owner_uid);
bba7c4bf
AD
2480
2481 $cat_feeds = array();
2482 while ($line = db_fetch_assoc($result)) {
2483 array_push($cat_feeds, "feed_id = " . $line["id"]);
2484 }
2485
2486 if (count($cat_feeds) == 0) return 0;
2487
2488 $match_part = implode(" OR ", $cat_feeds);
2489
2490 $result = db_query($link, "SELECT COUNT(int_id) AS unread
14073c0a
AD
2491 FROM ttrss_user_entries,ttrss_entries
2492 WHERE unread = true AND ($match_part) AND id = ref_id
b6d486a3 2493 AND $age_qpart AND owner_uid = " . $owner_uid);
bba7c4bf
AD
2494
2495 $unread = 0;
2496
2497 # this needs to be rewritten
2498 while ($line = db_fetch_assoc($result)) {
2499 $unread += $line["unread"];
2500 }
2501
2502 return $unread;
2503 } else if ($cat == -1) {
59e15af4 2504 return getFeedUnread($link, -1) + getFeedUnread($link, -2) + getFeedUnread($link, -3) + getFeedUnread($link, 0);
bba7c4bf 2505 } else if ($cat == -2) {
f295c368 2506
b2531a28
AD
2507 $result = db_query($link, "
2508 SELECT COUNT(unread) AS unread FROM
2509 ttrss_user_entries, ttrss_labels2, ttrss_user_labels2, ttrss_feeds
2510 WHERE label_id = ttrss_labels2.id AND article_id = ref_id AND
2511 ttrss_labels2.owner_uid = '$owner_uid'
117335bf 2512 AND unread = true AND feed_id = ttrss_feeds.id
b2531a28 2513 AND ttrss_user_entries.owner_uid = '$owner_uid'");
ceb30ba4 2514
b2531a28 2515 $unread = db_fetch_result($result, 0, "unread");
f295c368 2516
b2531a28 2517 return $unread;
f295c368 2518
ceb30ba4 2519 }
f295c368
AD
2520 }
2521
14073c0a
AD
2522 function getMaxAgeSubquery($days = COUNTERS_MAX_AGE) {
2523 if (DB_TYPE == "pgsql") {
2524 return "ttrss_entries.date_entered >
2525 NOW() - INTERVAL '$days days'";
2526 } else {
2527 return "ttrss_entries.date_entered >
2528 DATE_SUB(NOW(), INTERVAL $days DAY)";
2529 }
2530 }
2531
f295c368 2532 function getFeedUnread($link, $feed, $is_cat = false) {
2627f2d0 2533 return getFeedArticles($link, $feed, $is_cat, true, $_SESSION["uid"]);
bdb7369b
AD
2534 }
2535
ceb30ba4
AD
2536 function getLabelUnread($link, $label_id, $owner_uid = false) {
2537 if (!$owner_uid) $owner_uid = $_SESSION["uid"];
2538
2539 $result = db_query($link, "
0112162d 2540 SELECT COUNT(unread) AS unread FROM
b0f24af1
AD
2541 ttrss_user_entries, ttrss_labels2, ttrss_user_labels2, ttrss_feeds
2542 WHERE label_id = ttrss_labels2.id AND article_id = ref_id AND
2543 ttrss_labels2.owner_uid = '$owner_uid' AND ttrss_labels2.id = '$label_id'
117335bf 2544 AND unread = true AND feed_id = ttrss_feeds.id
933ba4ee 2545 AND ttrss_user_entries.owner_uid = '$owner_uid'");
ceb30ba4
AD
2546
2547 if (db_num_rows($result) != 0) {
2548 return db_fetch_result($result, 0, "unread");
2549 } else {
2550 return 0;
2551 }
2552 }
2553
2627f2d0
AD
2554 function getFeedArticles($link, $feed, $is_cat = false, $unread_only = false,
2555 $owner_uid = false) {
2556
22fdebff 2557 $n_feed = (int) $feed;
f295c368 2558
2627f2d0
AD
2559 if (!$owner_uid) $owner_uid = $_SESSION["uid"];
2560
bdb7369b
AD
2561 if ($unread_only) {
2562 $unread_qpart = "unread = true";
2563 } else {
2564 $unread_qpart = "true";
2565 }
2566
14073c0a
AD
2567 $age_qpart = getMaxAgeSubquery();
2568
f295c368 2569 if ($is_cat) {
b6d486a3 2570 return getCategoryUnread($link, $n_feed, $owner_uid);
326469fc
AD
2571 } if ($feed != "0" && $n_feed == 0) {
2572
2573 $result = db_query($link, "SELECT SUM((SELECT COUNT(int_id)
2574 FROM ttrss_user_entries,ttrss_entries WHERE int_id = post_int_id
2575 AND ref_id = id AND $age_qpart
2576 AND $unread_qpart)) AS count FROM ttrss_tags
2577 WHERE owner_uid = $owner_uid AND tag_name = '$feed'");
2578 return db_fetch_result($result, 0, "count");
2579
f295c368 2580 } else if ($n_feed == -1) {
a9cb1f83 2581 $match_part = "marked = true";
e4f4b46f
AD
2582 } else if ($n_feed == -2) {
2583 $match_part = "published = true";
2d24f032
AD
2584 } else if ($n_feed == -3) {
2585 $match_part = "unread = true";
2586
b71e188e 2587 $intl = get_pref($link, "FRESH_ARTICLE_MAX_AGE", $owner_uid);
c1d7e6c3 2588
2d24f032 2589 if (DB_TYPE == "pgsql") {
7608b38a 2590 $match_part .= " AND updated > NOW() - INTERVAL '$intl hour' ";
2d24f032 2591 } else {
7608b38a 2592 $match_part .= " AND updated > DATE_SUB(NOW(), INTERVAL $intl HOUR) ";
2d24f032 2593 }
b2531a28
AD
2594 } else if ($n_feed == -4) {
2595 $match_part = "true";
e04c18a2 2596 } else if ($n_feed >= 0) {
831ff047 2597
e8b8485f
AD
2598 $result = db_query($link, "SELECT id FROM ttrss_feeds
2599 WHERE parent_feed = '$n_feed'
2627f2d0 2600 AND owner_uid = " . $owner_uid);
831ff047
AD
2601
2602 if (db_num_rows($result) > 0) {
4919fb42 2603
831ff047
AD
2604 $linked_feeds = array();
2605 while ($line = db_fetch_assoc($result)) {
2606 array_push($linked_feeds, "feed_id = " . $line["id"]);
2607 }
e8b8485f
AD
2608
2609 array_push($linked_feeds, "feed_id = $n_feed");
831ff047
AD
2610
2611 $match_part = implode(" OR ", $linked_feeds);
2612
dbfc4365 2613 $tmp_result = db_query($link, "SELECT COUNT(int_id) AS unread
14073c0a 2614 FROM ttrss_user_entries,ttrss_entries
bdb7369b 2615 WHERE $unread_qpart AND
14073c0a
AD
2616 ttrss_user_entries.ref_id = ttrss_entries.id AND
2617 $age_qpart AND
2618 ($match_part) AND
2627f2d0 2619 owner_uid = " . $owner_uid);
4919fb42
AD
2620
2621 $unread = 0;
2622
2623 # this needs to be rewritten
dbfc4365 2624 while ($line = db_fetch_assoc($tmp_result)) {
4919fb42
AD
2625 $unread += $line["unread"];
2626 }
2627
2628 return $unread;
2629
831ff047 2630 } else {
e04c18a2
AD
2631 if ($n_feed != 0) {
2632 $match_part = "feed_id = '$n_feed'";
2633 } else {
2634 $match_part = "feed_id IS NULL";
2635 }
831ff047 2636 }
a9cb1f83 2637 } else if ($feed < -10) {
318260cc 2638
a9cb1f83
AD
2639 $label_id = -$feed - 11;
2640
ceb30ba4 2641 return getLabelUnread($link, $label_id, $owner_uid);
a9cb1f83 2642
a9cb1f83
AD
2643 }
2644
2645 if ($match_part) {
e04c18a2
AD
2646
2647 if ($n_feed != 0) {
2648 $from_qpart = "ttrss_user_entries,ttrss_feeds,ttrss_entries";
117335bf 2649 $feeds_qpart = "ttrss_user_entries.feed_id = ttrss_feeds.id AND";
e04c18a2
AD
2650 } else {
2651 $from_qpart = "ttrss_user_entries,ttrss_entries";
2652 }
2653
dbfc4365 2654 $query = "SELECT count(int_id) AS unread
e04c18a2 2655 FROM $from_qpart WHERE
88040f57 2656 ttrss_user_entries.ref_id = ttrss_entries.id AND
14073c0a 2657 $age_qpart AND
dbfc4365
AD
2658 $feeds_qpart
2659 $unread_qpart AND ($match_part) AND ttrss_user_entries.owner_uid = $owner_uid";
2660
2661 $result = db_query($link, $query);
a9cb1f83
AD
2662
2663 } else {
2664
2665 $result = db_query($link, "SELECT COUNT(post_int_id) AS unread
14073c0a 2666 FROM ttrss_tags,ttrss_user_entries,ttrss_entries
828f22b7 2667 WHERE tag_name = '$feed' AND post_int_id = int_id AND ref_id = ttrss_entries.id
bdb7369b 2668 AND $unread_qpart AND $age_qpart AND
2627f2d0 2669 ttrss_tags.owner_uid = " . $owner_uid);
a9cb1f83
AD
2670 }
2671
2672 $unread = db_fetch_result($result, 0, "unread");
cfb02131 2673
a9cb1f83
AD
2674 return $unread;
2675 }
2676
f3acc32e
AD
2677 function getGlobalUnread($link, $user_id = false) {
2678
2679 if (!$user_id) {
2680 $user_id = $_SESSION["uid"];
2681 }
2682
8a4c759e
AD
2683 $result = db_query($link, "SELECT SUM(value) AS c_id FROM ttrss_counters_cache
2684 WHERE owner_uid = '$user_id' AND feed_id > 0");
2685
2686 $c_id = db_fetch_result($result, 0, "c_id");
2687
a9cb1f83
AD
2688 return $c_id;
2689 }
2690
2691 function getGlobalCounters($link, $global_unread = -1) {
2692 if ($global_unread == -1) {
2693 $global_unread = getGlobalUnread($link);
2694 }
7bf7e4d3
AD
2695 print "<counter type=\"global\" id='global-unread'
2696 counter='$global_unread'/>";
2697
2698 $result = db_query($link, "SELECT COUNT(id) AS fn FROM
2699 ttrss_feeds WHERE owner_uid = " . $_SESSION["uid"]);
2700
2701 $subscribed_feeds = db_fetch_result($result, 0, "fn");
2702
2703 print "<counter type=\"global\" id='subscribed-feeds'
2704 counter='$subscribed_feeds'/>";
2705
a9cb1f83
AD
2706 }
2707
95004daf
AD
2708 function getSubscribedFeeds($link) {
2709 $result = db_query($link, "SELECT COUNT(id) AS fn FROM
2710 ttrss_feeds WHERE owner_uid = " . $_SESSION["uid"]);
2711
2712 return db_fetch_result($result, 0, "fn");
2713 }
2714
3809b278 2715 function getTagCounters($link) {
a9cb1f83 2716
14073c0a
AD
2717 $age_qpart = getMaxAgeSubquery();
2718
a9cb1f83 2719 $result = db_query($link, "SELECT tag_name,SUM((SELECT COUNT(int_id)
14073c0a
AD
2720 FROM ttrss_user_entries,ttrss_entries WHERE int_id = post_int_id
2721 AND ref_id = id AND $age_qpart
a9cb1f83 2722 AND unread = true)) AS count FROM ttrss_tags
ef1ac7c7
AD
2723 WHERE owner_uid = ".$_SESSION['uid']." GROUP BY tag_name
2724 ORDER BY count DESC LIMIT 55");
a9cb1f83
AD
2725
2726 $tags = array();
2727
2728 while ($line = db_fetch_assoc($result)) {
2729 $tags[$line["tag_name"]] += $line["count"];
2730 }
2731
2732 foreach (array_keys($tags) as $tag) {
2733 $unread = $tags[$tag];
a9cb1f83 2734 $tag = htmlspecialchars($tag);
3809b278 2735 print "<counter type=\"tag\" id=\"$tag\" counter=\"$unread\"/>";
a9cb1f83 2736 }
a9cb1f83
AD
2737 }
2738
3809b278 2739 function getVirtCounters($link, $ret_mode = false) {
a9cb1f83 2740
ef393de7 2741 $ret_arr = array();
bdb7369b 2742
e04c18a2 2743 for ($i = 0; $i >= -4; $i--) {
bdb7369b 2744
ceb30ba4
AD
2745 $count = getFeedUnread($link, $i);
2746
2747 if (!$ret_mode) {
2748
2749 if (get_pref($link, 'EXTENDED_FEEDLIST')) {
2750 $xmsg_part = "xmsg=\"(" . getFeedArticles($link, $i) . " total)\"";
2751 } else {
2752 $xmsg_part = "";
2753 }
bdb7369b 2754
ceb30ba4 2755 print "<counter type=\"label\" id=\"$i\" counter=\"$count\" $xmsg_part/>";
bdb7369b 2756 } else {
ceb30ba4
AD
2757 $ret_arr[$i]["counter"] = $count;
2758 $ret_arr[$i]["description"] = getFeedTitle($link, $i);
bdb7369b 2759 }
0a6e5382
AD
2760 }
2761
2762 return $ret_arr;
2763 }
2764
3809b278 2765 function getLabelCounters($link, $ret_mode = false) {
0a6e5382
AD
2766
2767 $age_qpart = getMaxAgeSubquery();
2768
3809b278 2769 $owner_uid = $_SESSION["uid"];
bdb7369b 2770
3809b278
AD
2771 $result = db_query($link, "SELECT id, caption FROM ttrss_labels2
2772 WHERE owner_uid = '$owner_uid'");
2773
2774 while ($line = db_fetch_assoc($result)) {
2d24f032 2775
3809b278 2776 $id = -$line["id"] - 11;
e4f4b46f 2777
3809b278
AD
2778 $label_name = $line["caption"];
2779 $count = getFeedUnread($link, $id);
abd9b165 2780
3809b278
AD
2781 if (!$ret_mode) {
2782
2783 if (get_pref($link, 'EXTENDED_FEEDLIST')) {
2784 $xmsg_part = "xmsg=\"(" . getFeedArticles($link, $id) . " total)\"";
2785 } else {
2786 $xmsg_part = "";
ef393de7 2787 }
a9cb1f83 2788
3809b278 2789 print "<counter type=\"label\" id=\"$id\" counter=\"$count\" $xmsg_part/>";
ef393de7 2790
3809b278
AD
2791 } else {
2792 $ret_arr[$id]["counter"] = $count;
2793 $ret_arr[$id]["description"] = $label_name;
2794 }
2795 }
2796
ef393de7 2797 return $ret_arr;
a9cb1f83
AD
2798 }
2799
3809b278 2800 function getFeedCounters($link, $active_feed = false) {
a9cb1f83 2801
14073c0a
AD
2802 $age_qpart = getMaxAgeSubquery();
2803
8a4c759e
AD
2804 $query = "SELECT ttrss_feeds.id,
2805 ttrss_feeds.title,
2806 ".SUBSTRING_FOR_DATE."(ttrss_feeds.last_updated,1,19) AS last_updated,
de0a2122
AD
2807 last_error, value AS count
2808 FROM ttrss_feeds, ttrss_counters_cache
8a4c759e
AD
2809 WHERE ttrss_feeds.owner_uid = ".$_SESSION["uid"]."
2810 AND parent_feed IS NULL
55e01d7e 2811 AND ttrss_counters_cache.feed_id = id";
a9cb1f83 2812
14073c0a 2813 $result = db_query($link, $query);
a9cb1f83
AD
2814 $fctrs_modified = false;
2815
fb1fb4ab
AD
2816 $short_date = get_pref($link, 'SHORT_DATE_FORMAT');
2817
a9cb1f83
AD
2818 while ($line = db_fetch_assoc($result)) {
2819
2820 $id = $line["id"];
de0a2122 2821 $count = $line["count"];
a9cb1f83 2822 $last_error = htmlspecialchars($line["last_error"]);
fb1fb4ab
AD
2823
2824 if (get_pref($link, 'HEADLINES_SMART_DATE')) {
2825 $last_updated = smart_date_time(strtotime($line["last_updated"]));
2826 } else {
2827 $last_updated = date($short_date, strtotime($line["last_updated"]));
2828 }
2829
588fb13b
AD
2830 $last_updated = htmlspecialchars($last_updated);
2831
7defa089 2832 $has_img = feed_has_icon($id);
a9cb1f83 2833
de0a2122
AD
2834 $tmp_result = db_query($link,
2835 "SELECT SUM(value) AS unread FROM ttrss_feeds, ttrss_counters_cache
2836 WHERE parent_feed = '$id' AND feed_id = id");
2837
2838 $count += db_fetch_result($tmp_result, 0, "unread");
a9cb1f83 2839
3809b278
AD
2840 if ($last_error) {
2841 $error_part = "error=\"$last_error\"";
2842 } else {
2843 $error_part = "";
2844 }
a9cb1f83 2845
3809b278
AD
2846 if ($has_img) {
2847 $has_img_part = "hi=\"$has_img\"";
2848 } else {
2849 $has_img_part = "";
2850 }
4ffa126e 2851
3809b278
AD
2852 if ($active_feed && $id == $active_feed) {
2853 $has_title_part = "title=\"" . htmlspecialchars($line["title"]) . "\"";
2854 } else {
2855 $has_title_part = "";
2856 }
bdb7369b 2857
3809b278
AD
2858 if (get_pref($link, 'EXTENDED_FEEDLIST')) {
2859 $xmsg_part = "xmsg=\"(" . getFeedArticles($link, $id) . " total)\"";
a9cb1f83 2860 }
a9cb1f83 2861
3809b278 2862 print "<counter type=\"feed\" id=\"$id\" counter=\"$count\" $has_img_part $error_part updated=\"$last_updated\" $xmsg_part $has_title_part/>";
a9cb1f83
AD
2863 }
2864 }
2865
1b758780 2866 function get_script_dt_add() {
3ac60b76 2867/* if (strpos(VERSION, ".99") === false) {
1b758780
AD
2868 return VERSION;
2869 } else {
2870 return time();
3ac60b76
AD
2871 } */
2872 return time();
1b758780
AD
2873 }
2874
6e7f8d26
AD
2875 function get_pgsql_version($link) {
2876 $result = db_query($link, "SELECT version() AS version");
2877 $version = split(" ", db_fetch_result($result, 0, "version"));
2878 return $version[1];
2879 }
2880
af106b0e
AD
2881 function print_error_xml($code, $add_msg = "") {
2882 global $ERRORS;
2883
2884 $error_msg = $ERRORS[$code];
2885
2886 if ($add_msg) {
2887 $error_msg = "$error_msg; $add_msg";
2888 }
2889
4c2abbc1 2890 print "<rpc-reply>";
af106b0e 2891 print "<error error-code=\"$code\" error-msg=\"$error_msg\"/>";
4c2abbc1 2892 print "</rpc-reply>";
af106b0e 2893 }
956c7629 2894
a5819bb3 2895 function subscribe_to_feed($link, $url, $cat_id = 0,
f27de515 2896 $auth_login = '', $auth_pass = '') {
bb0f29a4 2897
a5819bb3 2898 $parts = parse_url($url);
c91c2249 2899
a5819bb3
AD
2900 if (!validate_feed_url($url)) return 2;
2901
2902 if ($parts['scheme'] == 'feed') $parts['scheme'] = 'http';
b3dfe8ba 2903
a5819bb3 2904 $url = make_url_from_parts($parts);
bb0f29a4 2905
956c7629
AD
2906 if ($cat_id == "0" || !$cat_id) {
2907 $cat_qpart = "NULL";
2908 } else {
2909 $cat_qpart = "'$cat_id'";
2910 }
2911
2912 $result = db_query($link,
2913 "SELECT id FROM ttrss_feeds
a5819bb3 2914 WHERE feed_url = '$url' AND owner_uid = ".$_SESSION["uid"]);
956c7629
AD
2915
2916 if (db_num_rows($result) == 0) {
2917
2918 $result = db_query($link,
f27de515
AD
2919 "INSERT INTO ttrss_feeds
2920 (owner_uid,feed_url,title,cat_id, auth_login,auth_pass)
a5819bb3 2921 VALUES ('".$_SESSION["uid"]."', '$url',
f27de515 2922 '[Unknown]', $cat_qpart, '$auth_login', '$auth_pass')");
956c7629
AD
2923
2924 $result = db_query($link,
a5819bb3 2925 "SELECT id FROM ttrss_feeds WHERE feed_url = '$url'
f27de515 2926 AND owner_uid = " . $_SESSION["uid"]);
956c7629
AD
2927
2928 $feed_id = db_fetch_result($result, 0, "id");
2929
2930 if ($feed_id) {
a5819bb3 2931 update_rss_feed($link, $url, $feed_id, true);
956c7629
AD
2932 }
2933
a5819bb3 2934 return 1;
956c7629 2935 } else {
a5819bb3 2936 return 0;
956c7629
AD
2937 }
2938 }
2939
673d54ca
AD
2940 function print_feed_select($link, $id, $default_id = "",
2941 $attributes = "", $include_all_feeds = true) {
2942
79f3553b 2943 print "<select id=\"$id\" name=\"$id\" $attributes>";
673d54ca 2944 if ($include_all_feeds) {
89cb787e 2945 print "<option value=\"0\">".__('All feeds')."</option>";
673d54ca
AD
2946 }
2947
2948 $result = db_query($link, "SELECT id,title FROM ttrss_feeds
2949 WHERE owner_uid = ".$_SESSION["uid"]." ORDER BY title");
2950
2951 if (db_num_rows($result) > 0 && $include_all_feeds) {
2952 print "<option disabled>--------</option>";
2953 }
2954
2955 while ($line = db_fetch_assoc($result)) {
2956 if ($line["id"] == $default_id) {
2957 $is_selected = "selected";
2958 } else {
2959 $is_selected = "";
2960 }
b1710666
AD
2961
2962 $title = truncate_string(htmlspecialchars($line["title"]), 40);
2963
79f3553b 2964 printf("<option $is_selected value='%d'>%s</option>",
b1710666 2965 $line["id"], $title);
673d54ca
AD
2966 }
2967
2968 print "</select>";
2969 }
2970
2971 function print_feed_cat_select($link, $id, $default_id = "",
2972 $attributes = "", $include_all_cats = true) {
2973
79f3553b 2974 print "<select id=\"$id\" name=\"$id\" $attributes>";
673d54ca
AD
2975
2976 if ($include_all_cats) {
d1db26aa 2977 print "<option value=\"0\">".__('Uncategorized')."</option>";
673d54ca
AD
2978 }
2979
2980 $result = db_query($link, "SELECT id,title FROM ttrss_feed_categories
2981 WHERE owner_uid = ".$_SESSION["uid"]." ORDER BY title");
2982
2983 if (db_num_rows($result) > 0 && $include_all_cats) {
2984 print "<option disabled>--------</option>";
2985 }
2986
2987 while ($line = db_fetch_assoc($result)) {
2988 if ($line["id"] == $default_id) {
2989 $is_selected = "selected";
2990 } else {
2991 $is_selected = "";
2992 }
14f69488 2993 printf("<option $is_selected value='%d'>%s</option>",
47439031 2994 $line["id"], htmlspecialchars($line["title"]));
673d54ca
AD
2995 }
2996
2997 print "</select>";
2998 }
2999
14f69488
AD
3000 function checkbox_to_sql_bool($val) {
3001 return ($val == "on") ? "true" : "false";
3002 }
86b682ce
AD
3003
3004 function getFeedCatTitle($link, $id) {
3005 if ($id == -1) {
d1db26aa 3006 return __("Special");
86b682ce 3007 } else if ($id < -10) {
d1db26aa 3008 return __("Labels");
86b682ce
AD
3009 } else if ($id > 0) {
3010 $result = db_query($link, "SELECT ttrss_feed_categories.title
3011 FROM ttrss_feeds, ttrss_feed_categories WHERE ttrss_feeds.id = '$id' AND
3012 cat_id = ttrss_feed_categories.id");
3013 if (db_num_rows($result) == 1) {
3014 return db_fetch_result($result, 0, "title");
3015 } else {
d1db26aa 3016 return __("Uncategorized");
86b682ce
AD
3017 }
3018 } else {
3019 return "getFeedCatTitle($id) failed";
3020 }
3021
3022 }
3023
af88c48a
AD
3024 function getFeedIcon($id) {
3025 switch ($id) {
4bee8b5f
AD
3026 case 0:
3027 return "images/archive.png";
3028 break;
af88c48a 3029 case -1:
f65ffc2d 3030 return "images/mark_set.png";
af88c48a
AD
3031 break;
3032 case -2:
b97e6e02 3033 return "images/pub_set.png";
af88c48a
AD
3034 break;
3035 case -3:
3036 return "images/fresh.png";
3037 break;
3038 case -4:
3039 return "images/tag.png";
3040 break;
3041 default:
4bee8b5f
AD
3042 if ($id < -10) {
3043 return "images/label.png";
3044 } else {
3045 return ICONS_URL . "/$id.ico";
3046 }
af88c48a
AD
3047 break;
3048 }
3049 }
3050
86b682ce
AD
3051 function getFeedTitle($link, $id) {
3052 if ($id == -1) {
d1db26aa 3053 return __("Starred articles");
945c243e
AD
3054 } else if ($id == -2) {
3055 return __("Published articles");
2d24f032
AD
3056 } else if ($id == -3) {
3057 return __("Fresh articles");
b2531a28
AD
3058 } else if ($id == -4) {
3059 return __("All articles");
80db1113 3060 } else if ($id === 0 || $id === "0") {
e04c18a2 3061 return __("Archived articles");
86b682ce 3062 } else if ($id < -10) {
76626c72 3063 $label_id = -$id - 11;
ceb30ba4 3064 $result = db_query($link, "SELECT caption FROM ttrss_labels2 WHERE id = '$label_id'");
86b682ce 3065 if (db_num_rows($result) == 1) {
ceb30ba4 3066 return db_fetch_result($result, 0, "caption");
86b682ce
AD
3067 } else {
3068 return "Unknown label ($label_id)";
3069 }
3070
3071 } else if ($id > 0) {
3072 $result = db_query($link, "SELECT title FROM ttrss_feeds WHERE id = '$id'");
3073 if (db_num_rows($result) == 1) {
3074 return db_fetch_result($result, 0, "title");
3075 } else {
3076 return "Unknown feed ($id)";
3077 }
3078 } else {
22fdebff 3079 return $id;
86b682ce 3080 }
86b682ce 3081 }
3dd46f19
AD
3082
3083 function get_session_cookie_name() {
3084 return ((!defined('TTRSS_SESSION_NAME')) ? "ttrss_sid" : TTRSS_SESSION_NAME);
3085 }
3ac2b520
AD
3086
3087 function print_init_params($link) {
3088 print "<init-params>";
3089 if ($_SESSION["stored-params"]) {
3090 foreach (array_keys($_SESSION["stored-params"]) as $key) {
5f57b06d
AD
3091 if ($key) {
3092 $value = htmlspecialchars($_SESSION["stored-params"][$key]);
3093 print "<param key=\"$key\" value=\"$value\"/>";
3094 }
3ac2b520
AD
3095 }
3096 }
3097
dce46cad 3098 print "<param key=\"theme\" value=\"".get_user_theme($link)."\"/>";
e71f2610 3099 print "<param key=\"theme_options\" value=\"".get_user_theme_options($link)."\"/>";
3ac2b520
AD
3100 print "<param key=\"daemon_enabled\" value=\"" . ENABLE_UPDATE_DAEMON . "\"/>";
3101 print "<param key=\"feeds_frame_refresh\" value=\"" . FEEDS_FRAME_REFRESH . "\"/>";
17c0eeba 3102 print "<param key=\"daemon_refresh_only\" value=\"true\"/>";
3ac2b520 3103
883fee8d
AD
3104 print "<param key=\"sign_progress\" value=\"".
3105 theme_image($link, "images/indicator_white.gif")."\"/>";
3106
ba569828
AD
3107 print "<param key=\"sign_progress_tiny\" value=\"".
3108 theme_image($link, "images/indicator_tiny.gif")."\"/>";
3109
883fee8d
AD
3110 print "<param key=\"sign_excl\" value=\"".
3111 theme_image($link, "images/sign_excl.png")."\"/>";
3112
3113 print "<param key=\"sign_info\" value=\"".
3114 theme_image($link, "images/sign_info.png")."\"/>";
3115
3ac2b520
AD
3116 print "<param key=\"on_catchup_show_next_feed\" value=\"" .
3117 get_pref($link, "ON_CATCHUP_SHOW_NEXT_FEED") . "\"/>";
3118
e8bd0da9 3119 print "<param key=\"hide_read_feeds\" value=\"" .
465ff90b 3120 (int) get_pref($link, "HIDE_READ_FEEDS") . "\"/>";
e8bd0da9 3121
1c980681
AD
3122 print "<param key=\"enable_feed_cats\" value=\"" .
3123 (int) get_pref($link, "ENABLE_FEED_CATS") . "\"/>";
3124
c9268ed5 3125 print "<param key=\"feeds_sort_by_unread\" value=\"" .
465ff90b 3126 (int) get_pref($link, "FEEDS_SORT_BY_UNREAD") . "\"/>";
c9268ed5 3127
f6d6e22f 3128 print "<param key=\"confirm_feed_catchup\" value=\"" .
465ff90b 3129 (int) get_pref($link, "CONFIRM_FEED_CATCHUP") . "\"/>";
f6d6e22f 3130
ac7bcd71 3131 print "<param key=\"cdm_auto_catchup\" value=\"" .
465ff90b 3132 (int) get_pref($link, "CDM_AUTO_CATCHUP") . "\"/>";
ac7bcd71 3133
8e9c121b
AD
3134 print "<param key=\"icons_url\" value=\"" . ICONS_URL . "\"/>";
3135
be0801a1
AD
3136 print "<param key=\"cookie_lifetime\" value=\"" . SESSION_COOKIE_LIFETIME . "\"/>";
3137
40496720
AD
3138 print "<param key=\"default_view_mode\" value=\"" .
3139 get_pref($link, "_DEFAULT_VIEW_MODE") . "\"/>";
3140
3141 print "<param key=\"default_view_limit\" value=\"" .
465ff90b 3142 (int) get_pref($link, "_DEFAULT_VIEW_LIMIT") . "\"/>";
40496720 3143
7b4d02a8
AD
3144 print "<param key=\"default_view_order_by\" value=\"" .
3145 get_pref($link, "_DEFAULT_VIEW_ORDER_BY") . "\"/>";
3146
fe8d2059
AD
3147 print "<param key=\"prefs_active_tab\" value=\"" .
3148 get_pref($link, "_PREFS_ACTIVE_TAB") . "\"/>";
3149
465ff90b
AD
3150 print "<param key=\"infobox_disable_overlay\" value=\"" .
3151 get_pref($link, "_INFOBOX_DISABLE_OVERLAY") . "\"/>";
3152
527c3bf0
AD
3153 print "<param key=\"icons_location\" value=\"" .
3154 ICONS_URL . "\"/>";
3155
22f3e356
AD
3156 print "<param key=\"hide_read_shows_special\" value=\"" .
3157 (int) get_pref($link, "HIDE_READ_SHOWS_SPECIAL") . "\"/>";
3158
fca93350
AD
3159 print "<param key=\"hide_feedlist\" value=\"" .
3160 (int) get_pref($link, "HIDE_FEEDLIST") . "\"/>";
24c1e1c1 3161
a598370d
AD
3162 print "<param key=\"bw_limit\" value=\"".
3163 (int) $_SESSION["bw_limit"]."\"/>";
3164
bd090ab4
AD
3165// print "<param key=\"sync_counters\" value=\"" .
3166// (int) get_pref($link, "SYNC_COUNTERS") . "\"/>";
3167
3168 print "<param key=\"sync_counters\" value=\"1\"/>";
d234a2e3 3169
5de926d8
AD
3170 print "<param key=\"offline_enabled\" value=\"".
3171 (int) get_pref($link, "ENABLE_OFFLINE_READING") . "\"/>";
59b223d7 3172
9b7ecc0a
AD
3173 $result = db_query($link, "SELECT COUNT(*) AS cf FROM
3174 ttrss_feeds WHERE owner_uid = " . $_SESSION["uid"]);
3175
3176 $num_feeds = db_fetch_result($result, 0, "cf");
3177
3178 print "<param key=\"num_feeds\" value=\"".
3179 (int)$num_feeds. "\"/>";
3180
57937c42
AD
3181 print "<param key=\"collapsed_feedlist\" value=\"" .
3182 (int) get_pref($link, "_COLLAPSED_FEEDLIST") . "\"/>";
3183
3ac2b520
AD
3184 print "</init-params>";
3185 }
f54f515f
AD
3186
3187 function print_runtime_info($link) {
3188 print "<runtime-info>";
20361063 3189
9b7ecc0a
AD
3190 $result = db_query($link, "SELECT COUNT(*) AS cf FROM
3191 ttrss_feeds WHERE owner_uid = " . $_SESSION["uid"]);
3192
3193 $num_feeds = db_fetch_result($result, 0, "cf");
3194
3195 print "<param key=\"num_feeds\" value=\"".
3196 (int)$num_feeds. "\"/>";
3197
71ad883b
AD
3198 if (ENABLE_UPDATE_DAEMON) {
3199 print "<param key=\"daemon_is_running\" value=\"".
22fdebff 3200 (int) file_is_locked("update_daemon.lock") . "\"/>";
8e00ae9b 3201
9041f58b 3202 if (time() - $_SESSION["daemon_stamp_check"] > 30) {
8e00ae9b
AD
3203
3204 $stamp = (int)read_stampfile("update_daemon.stamp");
3205
fbae93d8
AD
3206// print "<param key=\"daemon_stamp_delta\" value=\"$stamp_delta\"/>";
3207
8e00ae9b 3208 if ($stamp) {
9041f58b
AD
3209 $stamp_delta = time() - $stamp;
3210
3211 if ($stamp_delta > 1800) {
f6854e44 3212 $stamp_check = 0;
8e00ae9b 3213 } else {
f6854e44
AD
3214 $stamp_check = 1;
3215 $_SESSION["daemon_stamp_check"] = time();
8e00ae9b
AD
3216 }
3217
f6854e44
AD
3218 print "<param key=\"daemon_stamp_ok\" value=\"$stamp_check\"/>";
3219
8e00ae9b
AD
3220 $stamp_fmt = date("Y.m.d, G:i", $stamp);
3221
3222 print "<param key=\"daemon_stamp\" value=\"$stamp_fmt\"/>";
3223 }
8e00ae9b 3224 }
71ad883b 3225 }
8e00ae9b 3226
d9fa39f1
AD
3227 if (CHECK_FOR_NEW_VERSION && $_SESSION["access_level"] >= 10) {
3228
8742de78 3229 if ($_SESSION["last_version_check"] + 86400 + rand(-1000, 1000) < time()) {
d9fa39f1
AD
3230 $new_version_details = check_for_update($link);
3231
3232 print "<param key=\"new_version_available\" value=\"".
3233 sprintf("%d", $new_version_details != ""). "\"/>";
3234
3235 $_SESSION["last_version_check"] = time();
3236 }
3237 }
3238
1c9df66e 3239// print "<param key=\"new_version_available\" value=\"1\"/>";
b4507bc2 3240
f54f515f
AD
3241 print "</runtime-info>";
3242 }
ef393de7 3243
88040f57 3244 function getSearchSql($search, $match_on) {
ef393de7 3245
88040f57 3246 $search_query_part = "";
e20c9d88 3247
88040f57
AD
3248 $keywords = split(" ", $search);
3249 $query_keywords = array();
e20c9d88 3250
88040f57 3251 if ($match_on == "both") {
e20c9d88 3252
88040f57 3253 foreach ($keywords as $k) {
eb6c7f42
AD
3254 if (strpos($k, "-") === 0) {
3255 $k = substr($k, 1);
3256 $not = "NOT";
3257 } else {
3258 $not = "";
3259 }
3260
3261 array_push($query_keywords, "(UPPER(ttrss_entries.title) $not LIKE UPPER('%$k%')
3262 OR UPPER(ttrss_entries.content) $not LIKE UPPER('%$k%'))");
88040f57 3263 }
e20c9d88 3264
88040f57 3265 $search_query_part = implode("AND", $query_keywords) . " AND ";
e20c9d88 3266
88040f57 3267 } else if ($match_on == "title") {
e20c9d88 3268
88040f57 3269 foreach ($keywords as $k) {
eb6c7f42
AD
3270 if (strpos($k, "-") === 0) {
3271 $k = substr($k, 1);
3272 $not = "NOT";
3273 } else {
3274 $not = "";
3275 }
3276
3277 array_push($query_keywords, "(UPPER(ttrss_entries.title) $not LIKE UPPER('%$k%'))");
88040f57 3278 }
e20c9d88 3279
88040f57 3280 $search_query_part = implode("AND", $query_keywords) . " AND ";
e20c9d88 3281
88040f57
AD
3282 } else if ($match_on == "content") {
3283
3284 foreach ($keywords as $k) {
eb6c7f42
AD
3285 if (strpos($k, "-") === 0) {
3286 $k = substr($k, 1);
3287 $not = "NOT";
3288 } else {
3289 $not = "";
3290 }
3291
3292 array_push($query_keywords, "(UPPER(ttrss_entries.content) $not LIKE UPPER('%$k%'))");
88040f57
AD
3293 }
3294 }
3295
3296 $search_query_part = implode("AND", $query_keywords);
3297
3298 return $search_query_part;
3299 }
3300
c36bf4d5
AD
3301 function queryFeedHeadlines($link, $feed, $limit, $view_mode, $cat_view, $search, $search_mode, $match_on, $override_order = false, $offset = 0, $owner_uid = 0) {
3302
3303 if (!$owner_uid) $owner_uid = $_SESSION["uid"];
c1a0b534 3304
88040f57
AD
3305 if ($search) {
3306
3307 $search_query_part = getSearchSql($search, $match_on);
3308 $search_query_part .= " AND ";
e20c9d88 3309
ef393de7
AD
3310 } else {
3311 $search_query_part = "";
3312 }
3313
3314 $view_query_part = "";
3315
7b4d02a8 3316 if ($view_mode == "adaptive" || $view_query_part == "noscores") {
ef393de7
AD
3317 if ($search) {
3318 $view_query_part = " ";
3319 } else if ($feed != -1) {
f295c368 3320 $unread = getFeedUnread($link, $feed, $cat_view);
ef393de7 3321 if ($unread > 0) {
ff863e00 3322 $view_query_part = " unread = true AND ";
ef393de7
AD
3323 }
3324 }
3325 }
3326
3327 if ($view_mode == "marked") {
3328 $view_query_part = " marked = true AND ";
3329 }
3330
3331 if ($view_mode == "unread") {
3332 $view_query_part = " unread = true AND ";
3333 }
8b09eac8
AD
3334
3335 if ($view_mode == "updated") {
3336 $view_query_part = " (last_read is null and unread = false) AND ";
3337 }
3338
ef393de7
AD
3339 if ($limit > 0) {
3340 $limit_query_part = "LIMIT " . $limit;
3341 }
3342
3343 $vfeed_query_part = "";
3344
3345 // override query strategy and enable feed display when searching globally
3346 if ($search && $search_mode == "all_feeds") {
3347 $query_strategy_part = "ttrss_entries.id > 0";
3348 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
22fdebff 3349 /* tags */
ef393de7
AD
3350 } else if (preg_match("/^-?[0-9][0-9]*$/", $feed) == false) {
3351 $query_strategy_part = "ttrss_entries.id > 0";
3352 $vfeed_query_part = "(SELECT title FROM ttrss_feeds WHERE
3353 id = feed_id) as feed_title,";
e04c18a2 3354 } else if ($feed > 0 && $search && $search_mode == "this_cat") {
ef393de7
AD
3355
3356 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
0a6c4846
AD
3357
3358 $tmp_result = false;
3359
3360 if ($cat_view) {
3361 $tmp_result = db_query($link, "SELECT id
3362 FROM ttrss_feeds WHERE cat_id = '$feed'");
3363 } else {
3364 $tmp_result = db_query($link, "SELECT id
3365 FROM ttrss_feeds WHERE cat_id = (SELECT cat_id FROM ttrss_feeds
3366 WHERE id = '$feed') AND id != '$feed'");
3367 }
ef393de7
AD
3368
3369 $cat_siblings = array();
3370
3371 if (db_num_rows($tmp_result) > 0) {
3372 while ($p = db_fetch_assoc($tmp_result)) {
3373 array_push($cat_siblings, "feed_id = " . $p["id"]);
3374 }
3375
3376 $query_strategy_part = sprintf("(feed_id = %d OR %s)",
3377 $feed, implode(" OR ", $cat_siblings));
3378
3379 } else {
3380 $query_strategy_part = "ttrss_entries.id > 0";
3381 }
3382
e04c18a2 3383 } else if ($feed > 0) {
ef393de7
AD
3384
3385 if ($cat_view) {
5c365f60 3386
ef393de7
AD
3387 if ($feed > 0) {
3388 $query_strategy_part = "cat_id = '$feed'";
3389 } else {
3390 $query_strategy_part = "cat_id IS NULL";
3391 }
3392
3393 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
5c365f60 3394
ef393de7
AD
3395 } else {
3396 $tmp_result = db_query($link, "SELECT id
3397 FROM ttrss_feeds WHERE parent_feed = '$feed'
3398 ORDER BY cat_id,title");
3399
3400 $parent_ids = array();
3401
3402 if (db_num_rows($tmp_result) > 0) {
3403 while ($p = db_fetch_assoc($tmp_result)) {
3404 array_push($parent_ids, "feed_id = " . $p["id"]);
3405 }
3406
3407 $query_strategy_part = sprintf("(feed_id = %d OR %s)",
3408 $feed, implode(" OR ", $parent_ids));
3409
3410 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
3411 } else {
3412 $query_strategy_part = "feed_id = '$feed'";
3413 }
3414 }
e04c18a2
AD
3415 } else if ($feed == 0) { // starred virtual feed
3416 $query_strategy_part = "feed_id IS NULL";
ef393de7
AD
3417 } else if ($feed == -1) { // starred virtual feed
3418 $query_strategy_part = "marked = true";
3419 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
e6a38cde
AD
3420 } else if ($feed == -2) { // published virtual feed OR labels category
3421
3422 if (!$cat_view) {
3423 $query_strategy_part = "published = true";
3424 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
3425 } else {
3426 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
3427
3428 $ext_tables_part = ",ttrss_labels2,ttrss_user_labels2";
3429
3430 $query_strategy_part = "ttrss_labels2.id = ttrss_user_labels2.label_id AND
3431 ttrss_user_labels2.article_id = ref_id";
3432
3433 }
3434
2d24f032
AD
3435 } else if ($feed == -3) { // fresh virtual feed
3436 $query_strategy_part = "unread = true";
3437
7a22dc2a 3438 $intl = get_pref($link, "FRESH_ARTICLE_MAX_AGE", $owner_uid);
c1d7e6c3 3439
2d24f032 3440 if (DB_TYPE == "pgsql") {
7608b38a 3441 $query_strategy_part .= " AND updated > NOW() - INTERVAL '$intl hour' ";
2d24f032 3442 } else {
7608b38a 3443 $query_strategy_part .= " AND updated > DATE_SUB(NOW(), INTERVAL $intl HOUR) ";
2d24f032
AD
3444 }
3445
b2531a28
AD
3446 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
3447 } else if ($feed == -4) { // all articles virtual feed
3448 $query_strategy_part = "true";
e4f4b46f 3449 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
ef393de7
AD
3450 } else if ($feed <= -10) { // labels
3451 $label_id = -$feed - 11;
3de0261a 3452
ceb30ba4
AD
3453 $query_strategy_part = "label_id = '$label_id' AND
3454 ttrss_labels2.id = ttrss_user_labels2.label_id AND
3455 ttrss_user_labels2.article_id = ref_id";
3de0261a 3456
ef393de7 3457 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
ceb30ba4
AD
3458 $ext_tables_part = ",ttrss_labels2,ttrss_user_labels2";
3459
ef393de7
AD
3460 } else {
3461 $query_strategy_part = "id > 0"; // dumb
3462 }
d6e5706d 3463
7a22dc2a 3464 if (get_pref($link, 'REVERSE_HEADLINES', $owner_uid)) {
d6e5706d
AD
3465 $order_by = "updated";
3466 } else {
3467 $order_by = "updated DESC";
3468 }
e939722a 3469
7b4d02a8
AD
3470 if ($view_mode != "noscores") {
3471 $order_by = "score DESC, $order_by";
3472 }
48b0c4ec 3473
e939722a
AD
3474 if ($override_order) {
3475 $order_by = $override_order;
3476 }
ef393de7
AD
3477
3478 $feed_title = "";
3479
22fdebff
AD
3480 if ($search) {
3481 $feed_title = "Search results";
3482 } else {
ef393de7 3483 if ($cat_view) {
22fdebff 3484 $feed_title = getCategoryTitle($link, $feed);
ef393de7 3485 } else {
22fdebff
AD
3486 if ((int)$feed == $feed && $feed > 0) {
3487 $result = db_query($link, "SELECT title,site_url,last_error
3488 FROM ttrss_feeds WHERE id = '$feed' AND owner_uid = $owner_uid");
ef393de7 3489
22fdebff
AD
3490 $feed_title = db_fetch_result($result, 0, "title");
3491 $feed_site_url = db_fetch_result($result, 0, "site_url");
3492 $last_error = db_fetch_result($result, 0, "last_error");
3493 } else {
3494 $feed_title = getFeedTitle($link, $feed);
3495 }
88040f57 3496 }
ef393de7
AD
3497 }
3498
62129e67
AD
3499 $content_query_part = "content as content_preview,";
3500
ef393de7
AD
3501 if (preg_match("/^-?[0-9][0-9]*$/", $feed) != false) {
3502
3503 if ($feed >= 0) {
3504 $feed_kind = "Feeds";
3505 } else {
3506 $feed_kind = "Labels";
3507 }
3508
95a82c08
AD
3509 if ($limit_query_part) {
3510 $offset_query_part = "OFFSET $offset";
3511 }
3512
d00f22ac 3513 if ($vfeed_query_part && get_pref($link, 'VFEED_GROUP_BY_FEED', $owner_uid)) {
6cfea5c7 3514 if (!$override_order) {
43fc671f
AD
3515 $order_by = "ttrss_feeds.title, $order_by";
3516 }
6cfea5c7
AD
3517 }
3518
e04c18a2
AD
3519 if ($feed != "0") {
3520 $from_qpart = "ttrss_entries,ttrss_user_entries,ttrss_feeds$ext_tables_part";
117335bf 3521 $feed_check_qpart = "ttrss_user_entries.feed_id = ttrss_feeds.id AND";
e04c18a2
AD
3522
3523 } else {
3524 $from_qpart = "ttrss_entries,ttrss_user_entries$ext_tables_part
3525 LEFT JOIN ttrss_feeds ON (feed_id = ttrss_feeds.id)";
3526 }
3527
3ebd7ca5 3528 $query = "SELECT DISTINCT
1f64b1be 3529 guid,
ef393de7 3530 ttrss_entries.id,ttrss_entries.title,
46921916 3531 updated,
c7e51de1 3532 note,
494a64ea 3533 unread,feed_id,marked,published,link,last_read,orig_feed_id,
fc2b26a6 3534 ".SUBSTRING_FOR_DATE."(last_read,1,19) as last_read_noms,
ef393de7
AD
3535 $vfeed_query_part
3536 $content_query_part
fc2b26a6 3537 ".SUBSTRING_FOR_DATE."(updated,1,19) as updated_noms,
ff6e357a 3538 author,score
ef393de7 3539 FROM
e04c18a2 3540 $from_qpart
ef393de7 3541 WHERE
43fc671f 3542 $group_limit_part
e04c18a2 3543 $feed_check_qpart
ef393de7 3544 ttrss_user_entries.ref_id = ttrss_entries.id AND
c36bf4d5 3545 ttrss_user_entries.owner_uid = '$owner_uid' AND
ef393de7
AD
3546 $search_query_part
3547 $view_query_part
3548 $query_strategy_part ORDER BY $order_by
95a82c08 3549 $limit_query_part $offset_query_part";
4bc311fc 3550
b4e75b2a 3551 if ($_REQUEST["debug"]) print $query;
4bc311fc
AD
3552
3553 $result = db_query($link, $query);
ef393de7
AD
3554
3555 } else {
3556 // browsing by tag
3557
3558 $feed_kind = "Tags";
3559
3560 $result = db_query($link, "SELECT
1f64b1be 3561 guid,
c7e51de1 3562 note,
ef393de7 3563 ttrss_entries.id as id,title,
46921916 3564 updated,
494a64ea 3565 unread,feed_id,orig_feed_id,
ef393de7 3566 marked,link,last_read,
fc2b26a6 3567 ".SUBSTRING_FOR_DATE."(last_read,1,19) as last_read_noms,
ef393de7
AD
3568 $vfeed_query_part
3569 $content_query_part
4d0b3607
AD
3570 ".SUBSTRING_FOR_DATE."(updated,1,19) as updated_noms,
3571 score
ef393de7
AD
3572 FROM
3573 ttrss_entries,ttrss_user_entries,ttrss_tags
3574 WHERE
546499a9 3575 ref_id = ttrss_entries.id AND
c36bf4d5 3576 ttrss_user_entries.owner_uid = '$owner_uid' AND
ef393de7
AD
3577 post_int_id = int_id AND tag_name = '$feed' AND
3578 $view_query_part
3579 $search_query_part
3580 $query_strategy_part ORDER BY $order_by
3581 $limit_query_part");
3582 }
3583
c7188969 3584 return array($result, $feed_title, $feed_site_url, $last_error);
22fdebff 3585
ef393de7
AD
3586 }
3587
c36bf4d5 3588 function generate_syndicated_feed($link, $owner_uid, $feed, $is_cat,
ead2715d
AD
3589 $limit, $search, $search_mode, $match_on) {
3590
db54143e 3591 $note_style = "float : right; background-color : #fff7d5; border-width : 1px; ".
c7e51de1 3592 "padding : 5px; border-style : dashed; border-color : #e7d796;".
db54143e 3593 "margin-bottom : 1em; color : #9a8c59;";
c7e51de1 3594
ead2715d 3595 if (!$limit) $limit = 30;
18664970
AD
3596
3597 $qfh_ret = queryFeedHeadlines($link, $feed,
ead2715d 3598 $limit, false, $is_cat, $search, $search_mode, $match_on, "updated DESC", 0,
c36bf4d5 3599 $owner_uid);
18664970
AD
3600
3601 $result = $qfh_ret[0];
59e2aab4 3602 $feed_title = htmlspecialchars($qfh_ret[1]);
18664970
AD
3603 $feed_site_url = $qfh_ret[2];
3604 $last_error = $qfh_ret[3];
3605
a5472764 3606// if (!$feed_site_url) $feed_site_url = "http://localhost/";
4bc64807 3607
a5472764
AD
3608 print "<?xml version=\"1.0\" encoding=\"utf-8\"?>
3609 <?xml-stylesheet type=\"text/xsl\" href=\"rss.xsl\"?>
3610 <rss version=\"2.0\">
3baeeeca
AD
3611 <channel>
3612 <title>$feed_title</title>
4bc64807
AD
3613 <link>$feed_site_url</link>
3614 <description>Feed generated by Tiny Tiny RSS</description>";
3baeeeca
AD
3615
3616 while ($line = db_fetch_assoc($result)) {
3617 print "<item>";
4bc64807 3618 print "<guid>" . htmlspecialchars($line["guid"]) . "</guid>";
3baeeeca 3619 print "<link>" . htmlspecialchars($line["link"]) . "</link>";
0c3d1c68 3620
bc976a8c 3621 $tags = get_article_tags($link, $line["id"], $owner_uid);
0c3d1c68
AD
3622
3623 foreach ($tags as $tag) {
3624 print "<category>" . htmlspecialchars($tag) . "</category>";
3625 }
3626
3baeeeca
AD
3627 $rfc822_date = date('r', strtotime($line["updated"]));
3628
3629 print "<pubDate>$rfc822_date</pubDate>";
3630
3631 print "<title>" .
3632 htmlspecialchars($line["title"]) . "</title>";
3633
db54143e
AD
3634 print "<description><![CDATA[";
3635
c7e51de1
AD
3636 if ($line["note"]) {
3637 print "<div style='$note_style'>";
3638 print $line["note"];
3639 print "</div>";
3640 }
db54143e 3641
ceb0cab5 3642 print sanitize_rss($link, $line["content_preview"], false, $owner_uid);
c7e51de1 3643 print "]]></description>";
3baeeeca
AD
3644
3645 print "</item>";
3646 }
3647
3648 print "</channel></rss>";
18664970
AD
3649
3650 }
3651
0a6c4846
AD
3652 function getCategoryTitle($link, $cat_id) {
3653
bba7c4bf
AD
3654 if ($cat_id == -1) {
3655 return __("Special");
3656 } else if ($cat_id == -2) {
3657 return __("Labels");
0a6c4846 3658 } else {
bba7c4bf
AD
3659
3660 $result = db_query($link, "SELECT title FROM ttrss_feed_categories WHERE
3661 id = '$cat_id'");
3662
3663 if (db_num_rows($result) == 1) {
3664 return db_fetch_result($result, 0, "title");
3665 } else {
3666 return "Uncategorized";
3667 }
0a6c4846
AD
3668 }
3669 }
3670
f45a286b
AD
3671 function strip_tags_long($string, $allowed) {
3672
3673 $config = HTMLPurifier_Config::createDefault();
3674
3675 $config->set('HTML', 'Allowed', $allowed);
3676 $purifier = new HTMLPurifier($config);
3677
3678 return $purifier->purify($string);
3679
3680 }
3681
f738aef1
AD
3682 // http://ru2.php.net/strip-tags
3683
f45a286b 3684/* function strip_tags_long($textstring, $allowed){
f738aef1
AD
3685 while($textstring != strip_tags($textstring, $allowed))
3686 {
3687 while (strlen($textstring) != 0)
3688 {
3689 if (strlen($textstring) > 1024) {
3690 $otherlen = 1024;
3691 } else {
3692 $otherlen = strlen($textstring);
3693 }
3694 $temptext = strip_tags(substr($textstring,0,$otherlen), $allowed);
3695 $safetext .= $temptext;
3696 $textstring = substr_replace($textstring,'',0,$otherlen);
3697 }
3698 $textstring = $safetext;
3699 }
3700 return $textstring;
f45a286b 3701} */
f738aef1
AD
3702
3703
ceb0cab5 3704 function sanitize_rss($link, $str, $force_strip_tags = false, $owner = false) {
60452879 3705 $res = $str;
183ad07b 3706
ceb0cab5
AD
3707 if (!$owner) $owner = $_SESSION["uid"];
3708
3709 if (get_pref($link, "STRIP_UNSAFE_TAGS", $owner) || $force_strip_tags) {
f738aef1 3710
f45a286b
AD
3711// $res = strip_tags_long($res,
3712// "<p><a><i><em><b><strong><code><pre><blockquote><br><img><ul><ol><li>");
3713
7e1265ed 3714 $res = strip_tags_long($res,
f45a286b 3715 "p,a[href],i,em,b,strong,code,pre,blockquote,br,img[src|alt|title],ul,ol,li,h1,h2,h3,h4");
f738aef1 3716
f826eee1
AD
3717 }
3718
ceb0cab5 3719 if (get_pref($link, "STRIP_IMAGES", $owner)) {
8dccabed 3720 $res = preg_replace('/<img[^>]+>/is', '', $res);
7514749d 3721 }
8dccabed 3722
7514749d
AD
3723 if (get_pref($link, 'OPEN_LINKS_IN_NEW_WINDOW')) {
3724 $res = preg_replace("/href=/i", "target=\"_blank\" href=", $res);
8dccabed
AD
3725 }
3726
183ad07b
AD
3727 return $res;
3728 }
b72c3ef8 3729
45004d43
AD
3730 /**
3731 * Send by mail a digest of last articles.
3732 *
3733 * @param mixed $link The database connection.
3734 * @param integer $limit The maximum number of articles by digest.
3735 * @return boolean Return false if digests are not enabled.
3736 */
9cd7c995
AD
3737 function send_headlines_digests($link, $limit = 100) {
3738
1ddba275
AD
3739 if (!DIGEST_ENABLE) return false;
3740
9cd7c995 3741 $user_limit = DIGEST_EMAIL_LIMIT;
5430c959 3742 $days = 1;
9cd7c995
AD
3743
3744 print "Sending digests, batch of max $user_limit users, days = $days, headline limit = $limit\n\n";
3745
3746 if (DB_TYPE == "pgsql") {
3747 $interval_query = "last_digest_sent < NOW() - INTERVAL '$days days'";
3748 } else if (DB_TYPE == "mysql") {
3749 $interval_query = "last_digest_sent < DATE_SUB(NOW(), INTERVAL $days DAY)";
3750 }
3751
3752 $result = db_query($link, "SELECT id,email FROM ttrss_users
3753 WHERE email != '' AND (last_digest_sent IS NULL OR $interval_query)");
3754
3755 while ($line = db_fetch_assoc($result)) {
dc85be2b 3756
9cd7c995
AD
3757 if (get_pref($link, 'DIGEST_ENABLE', $line['id'], false)) {
3758 print "Sending digest for UID:" . $line['id'] . " - " . $line["email"] . " ... ";
3759
dc85be2b
AD
3760 $do_catchup = get_pref($link, 'DIGEST_CATCHUP', $line['id'], false);
3761
9cd7c995
AD
3762 $tuple = prepare_headlines_digest($link, $line["id"], $days, $limit);
3763 $digest = $tuple[0];
3764 $headlines_count = $tuple[1];
dc85be2b 3765 $affected_ids = $tuple[2];
c62a2c21 3766 $digest_text = $tuple[3];
9cd7c995
AD
3767
3768 if ($headlines_count > 0) {
a8931123 3769
c62a2c21 3770 $mail = new PHPMailer();
a8931123 3771
d134e3a3
AD
3772 $mail->PluginDir = "lib/phpmailer/";
3773 $mail->SetLanguage("en", "lib/phpmailer/language/");
a8931123 3774
c62a2c21 3775 $mail->CharSet = "UTF-8";
a8931123 3776
c62a2c21
AD
3777 $mail->From = DIGEST_FROM_ADDRESS;
3778 $mail->FromName = DIGEST_FROM_NAME;
3779 $mail->AddAddress($line["email"], $line["login"]);
c7ddac5c 3780
c62a2c21 3781 if (DIGEST_SMTP_HOST) {
a8931123
AD
3782 $mail->Host = DIGEST_SMTP_HOST;
3783 $mail->Mailer = "smtp";
19a1da0d 3784 $mail->SMTPAuth = DIGEST_SMTP_LOGIN != '';
a8931123
AD
3785 $mail->Username = DIGEST_SMTP_LOGIN;
3786 $mail->Password = DIGEST_SMTP_PASSWORD;
c62a2c21 3787 }
a8931123 3788
c62a2c21 3789 $mail->IsHTML(true);
163a295e 3790 $mail->Subject = DIGEST_SUBJECT;
c62a2c21
AD
3791 $mail->Body = $digest;
3792 $mail->AltBody = $digest_text;
a8931123 3793
c62a2c21 3794 $rc = $mail->Send();
a8931123 3795
c62a2c21 3796 if (!$rc) print "ERROR: " . $mail->ErrorInfo;
a8931123 3797
9cd7c995 3798 print "RC=$rc\n";
a8931123 3799
c62a2c21 3800 if ($rc && $do_catchup) {
dc85be2b 3801 print "Marking affected articles as read...\n";
9968d46f 3802 catchupArticlesById($link, $affected_ids, 0, $line["id"]);
dc85be2b
AD
3803 }
3804
9cd7c995
AD
3805 db_query($link, "UPDATE ttrss_users SET last_digest_sent = NOW()
3806 WHERE id = " . $line["id"]);
3807 } else {
3808 print "No headlines\n";
3809 }
3810 }
3811 }
3812
cedd3e89
AD
3813 print "All done.\n";
3814
9cd7c995
AD
3815 }
3816
7e3634d9 3817 function prepare_headlines_digest($link, $user_id, $days = 1, $limit = 100) {
c62a2c21 3818
fe7537b5 3819 require_once "lib/MiniTemplator.class.php";
c62a2c21
AD
3820
3821 $tpl = new MiniTemplator;
3822 $tpl_t = new MiniTemplator;
3823
3824 $tpl->readTemplateFromFile("templates/digest_template_html.txt");
3825 $tpl_t->readTemplateFromFile("templates/digest_template.txt");
3826
3827 $tpl->setVariable('CUR_DATE', date('Y/m/d'));
3828 $tpl->setVariable('CUR_TIME', date('G:i'));
3829
3830 $tpl_t->setVariable('CUR_DATE', date('Y/m/d'));
3831 $tpl_t->setVariable('CUR_TIME', date('G:i'));
7e3634d9 3832
dc85be2b
AD
3833 $affected_ids = array();
3834
7e3634d9 3835 if (DB_TYPE == "pgsql") {
9cd7c995 3836 $interval_query = "ttrss_entries.date_entered > NOW() - INTERVAL '$days days'";
7e3634d9
AD
3837 } else if (DB_TYPE == "mysql") {
3838 $interval_query = "ttrss_entries.date_entered > DATE_SUB(NOW(), INTERVAL $days DAY)";
3839 }
3840
3841 $result = db_query($link, "SELECT ttrss_entries.title,
3842 ttrss_feeds.title AS feed_title,
3843 date_entered,
dc85be2b 3844 ttrss_user_entries.ref_id,
7e3634d9 3845 link,
c62a2c21 3846 SUBSTRING(content, 1, 120) AS excerpt,
fc2b26a6 3847 ".SUBSTRING_FOR_DATE."(last_updated,1,19) AS last_updated
7e3634d9
AD
3848 FROM
3849 ttrss_user_entries,ttrss_entries,ttrss_feeds
3850 WHERE
3851 ref_id = ttrss_entries.id AND feed_id = ttrss_feeds.id
3dd9183c 3852 AND include_in_digest = true
7e3634d9 3853 AND $interval_query
448b0abd 3854 AND ttrss_user_entries.owner_uid = $user_id
c62a2c21
AD
3855 AND unread = true
3856 ORDER BY ttrss_feeds.title, date_entered DESC
7e3634d9
AD
3857 LIMIT $limit");
3858
3859 $cur_feed_title = "";
3860
9cd7c995
AD
3861 $headlines_count = db_num_rows($result);
3862
c62a2c21
AD
3863 $headlines = array();
3864
7e3634d9 3865 while ($line = db_fetch_assoc($result)) {
c62a2c21
AD
3866 array_push($headlines, $line);
3867 }
3868
3869 for ($i = 0; $i < sizeof($headlines); $i++) {
3870
3871 $line = $headlines[$i];
dc85be2b
AD
3872
3873 array_push($affected_ids, $line["ref_id"]);
3874
7e3634d9 3875 $updated = smart_date_time(strtotime($line["last_updated"]));
7e3634d9 3876
c62a2c21
AD
3877 $tpl->setVariable('FEED_TITLE', $line["feed_title"]);
3878 $tpl->setVariable('ARTICLE_TITLE', $line["title"]);
3879 $tpl->setVariable('ARTICLE_LINK', $line["link"]);
3880 $tpl->setVariable('ARTICLE_UPDATED', $updated);
163a295e
AD
3881 $tpl->setVariable('ARTICLE_EXCERPT',
3882 truncate_string(strip_tags($line["excerpt"]), 100));
7e3634d9 3883
c62a2c21
AD
3884 $tpl->addBlock('article');
3885
3886 $tpl_t->setVariable('FEED_TITLE', $line["feed_title"]);
3887 $tpl_t->setVariable('ARTICLE_TITLE', $line["title"]);
3888 $tpl_t->setVariable('ARTICLE_LINK', $line["link"]);
3889 $tpl_t->setVariable('ARTICLE_UPDATED', $updated);
3890// $tpl_t->setVariable('ARTICLE_EXCERPT',
3891// truncate_string(strip_tags($line["excerpt"]), 100));
3892
3893 $tpl_t->addBlock('article');
3894
3895 if ($headlines[$i]['feed_title'] != $headlines[$i+1]['feed_title']) {
3896 $tpl->addBlock('feed');
3897 $tpl_t->addBlock('feed');
7e3634d9
AD
3898 }
3899
7e3634d9
AD
3900 }
3901
c62a2c21
AD
3902 $tpl->addBlock('digest');
3903 $tpl->generateOutputToString($tmp);
3904
3905 $tpl_t->addBlock('digest');
3906 $tpl_t->generateOutputToString($tmp_t);
7e3634d9 3907
c62a2c21 3908 return array($tmp, $headlines_count, $affected_ids, $tmp_t);
7e3634d9
AD
3909 }
3910
73495fd1 3911 function check_for_update($link) {
b6d486a3 3912 $releases_feed = "http://tt-rss.org/releases.rss";
b72c3ef8
AD
3913
3914 if (!CHECK_FOR_NEW_VERSION || $_SESSION["access_level"] < 10) {
3915 return;
3916 }
3917
3918 error_reporting(0);
f67d9754
AD
3919 if (ENABLE_SIMPLEPIE) {
3920 $rss = new SimplePie();
3921 $rss->set_useragent(SIMPLEPIE_USERAGENT . MAGPIE_USER_AGENT_EXT);
4148e809 3922// $rss->set_timeout(MAGPIE_FETCH_TIME_OUT);
f67d9754
AD
3923 $rss->set_feed_url($fetch_url);
3924 $rss->set_output_encoding('UTF-8');
3925 $rss->init();
3926 } else {
3927 $rss = fetch_rss($releases_feed);
3928 }
b72c3ef8
AD
3929 error_reporting (DEFAULT_ERROR_LEVEL);
3930
3931 if ($rss) {
3932
f67d9754
AD
3933 if (ENABLE_SIMPLEPIE) {
3934 $items = $rss->get_items();
3935 } else {
3936 $items = $rss->items;
b72c3ef8 3937
f67d9754
AD
3938 if (!$items || !is_array($items)) $items = $rss->entries;
3939 if (!$items || !is_array($items)) $items = $rss;
3940 }
b72c3ef8 3941
da412ad3 3942 if (!is_array($items) || count($items) == 0) {
b72c3ef8 3943 return;
da412ad3 3944 }
b72c3ef8 3945
a41d2c65 3946 $latest_item = $items[0];
b72c3ef8 3947
f67d9754
AD
3948 if (ENABLE_SIMPLEPIE) {
3949 $last_title = $latest_item->get_title();
3950 } else {
3951 $last_title = $latest_item["title"];
3952 }
b72c3ef8 3953
f67d9754
AD
3954 $latest_version = trim(preg_replace("/(Milestone)|(completed)/", "", $last_title));
3955
3956 if (ENABLE_SIMPLEPIE) {
dcf7fd08
AD
3957 $release_url = sanitize_rss($link, $latest_item->get_link());
3958 $content = sanitize_rss($link, $latest_item->get_description());
f67d9754
AD
3959 } else {
3960 $release_url = sanitize_rss($link, $latest_item["link"]);
3961 $content = sanitize_rss($link, $latest_item["description"]);
3962 }
48e1a342 3963
a41d2c65 3964 if (version_compare(VERSION, $latest_version) == -1) {
73495fd1
AD
3965 return sprintf("New version of Tiny-Tiny RSS (%s) is available:",
3966 $latest_version)."<div class='milestoneDetails'>$content</div>";
3967 } else {
3968 return false;
3969 }
b72c3ef8
AD
3970 }
3971 }
472782e8 3972
18eddb2c
AD
3973 function markArticlesById($link, $ids, $cmode) {
3974
3975 $tmp_ids = array();
3976
3977 foreach ($ids as $id) {
3978 array_push($tmp_ids, "ref_id = '$id'");
3979 }
3980
3981 $ids_qpart = join(" OR ", $tmp_ids);
3982
3983 if ($cmode == 0) {
3984 db_query($link, "UPDATE ttrss_user_entries SET
3985 marked = false,last_read = NOW()
3986 WHERE ($ids_qpart) AND owner_uid = " . $_SESSION["uid"]);
3987 } else if ($cmode == 1) {
3988 db_query($link, "UPDATE ttrss_user_entries SET
3989 marked = true
3990 WHERE ($ids_qpart) AND owner_uid = " . $_SESSION["uid"]);
3991 } else {
3992 db_query($link, "UPDATE ttrss_user_entries SET
3993 marked = NOT marked,last_read = NOW()
3994 WHERE ($ids_qpart) AND owner_uid = " . $_SESSION["uid"]);
3995 }
3996 }
3997
e4f4b46f
AD
3998 function publishArticlesById($link, $ids, $cmode) {
3999
4000 $tmp_ids = array();
4001
4002 foreach ($ids as $id) {
4003 array_push($tmp_ids, "ref_id = '$id'");
4004 }
4005
4006 $ids_qpart = join(" OR ", $tmp_ids);
4007
4008 if ($cmode == 0) {
4009 db_query($link, "UPDATE ttrss_user_entries SET
4010 published = false,last_read = NOW()
4011 WHERE ($ids_qpart) AND owner_uid = " . $_SESSION["uid"]);
4012 } else if ($cmode == 1) {
4013 db_query($link, "UPDATE ttrss_user_entries SET
4014 published = true
4015 WHERE ($ids_qpart) AND owner_uid = " . $_SESSION["uid"]);
4016 } else {
4017 db_query($link, "UPDATE ttrss_user_entries SET
4018 published = NOT published,last_read = NOW()
4019 WHERE ($ids_qpart) AND owner_uid = " . $_SESSION["uid"]);
4020 }
4021 }
4022
9968d46f
AD
4023 function catchupArticlesById($link, $ids, $cmode, $owner_uid = false) {
4024
4025 if (!$owner_uid) $owner_uid = $_SESSION["uid"];
472782e8
AD
4026
4027 $tmp_ids = array();
4028
4029 foreach ($ids as $id) {
4030 array_push($tmp_ids, "ref_id = '$id'");
4031 }
4032
4033 $ids_qpart = join(" OR ", $tmp_ids);
4034
4035 if ($cmode == 0) {
4036 db_query($link, "UPDATE ttrss_user_entries SET
4037 unread = false,last_read = NOW()
9968d46f 4038 WHERE ($ids_qpart) AND owner_uid = $owner_uid");
472782e8
AD
4039 } else if ($cmode == 1) {
4040 db_query($link, "UPDATE ttrss_user_entries SET
4041 unread = true
9968d46f 4042 WHERE ($ids_qpart) AND owner_uid = $owner_uid");
472782e8
AD
4043 } else {
4044 db_query($link, "UPDATE ttrss_user_entries SET
4045 unread = NOT unread,last_read = NOW()
9968d46f 4046 WHERE ($ids_qpart) AND owner_uid = $owner_uid");
472782e8 4047 }
0737b95a
AD
4048
4049 /* update ccache */
4050
4051 $result = db_query($link, "SELECT DISTINCT feed_id FROM ttrss_user_entries
4052 WHERE ($ids_qpart) AND owner_uid = $owner_uid");
4053
4054 while ($line = db_fetch_assoc($result)) {
4055 ccache_update($link, $line["feed_id"], $owner_uid);
4056 }
472782e8
AD
4057 }
4058
e097e8be
AD
4059 function catchupArticleById($link, $id, $cmode) {
4060
4061 if ($cmode == 0) {
4062 db_query($link, "UPDATE ttrss_user_entries SET
4063 unread = false,last_read = NOW()
4064 WHERE ref_id = '$id' AND owner_uid = " . $_SESSION["uid"]);
4065 } else if ($cmode == 1) {
4066 db_query($link, "UPDATE ttrss_user_entries SET
4067 unread = true
4068 WHERE ref_id = '$id' AND owner_uid = " . $_SESSION["uid"]);
4069 } else {
4070 db_query($link, "UPDATE ttrss_user_entries SET
4071 unread = NOT unread,last_read = NOW()
4072 WHERE ref_id = '$id' AND owner_uid = " . $_SESSION["uid"]);
4073 }
ab197ae1
AD
4074
4075 $feed_id = getArticleFeed($link, $id);
4076 ccache_update($link, $feed_id, $_SESSION["uid"]);
e097e8be
AD
4077 }
4078
1f64b1be
AD
4079 function make_guid_from_title($title) {
4080 return preg_replace("/[ \"\',.:;]/", "-",
fefef828 4081 mb_strtolower(strip_tags($title), 'utf-8'));
1f64b1be
AD
4082 }
4083
11befbb2 4084 function print_headline_subtoolbar($link, $feed_site_url, $feed_title,
0ef68e6f
AD
4085 $feed_id, $is_cat, $search, $match_on,
4086 $search_mode) {
e6c115b2 4087
0ef68e6f 4088 print "<div class=\"headlinesSubToolbar\">";
11befbb2 4089
e6c115b2
AD
4090 $page_prev_link = "javascript:viewFeedGoPage(-1)";
4091 $page_next_link = "javascript:viewFeedGoPage(1)";
4092 $page_first_link = "javascript:viewFeedGoPage(0)";
203de776 4093
eb28b131
AD
4094 $catchup_page_link = "javascript:catchupPage()";
4095 $catchup_feed_link = "javascript:catchupCurrentFeed()";
a5ae125a 4096 $catchup_sel_link = "javascript:catchupSelection()";
c6008b62 4097
e04c18a2
AD
4098 $archive_sel_link = "javascript:archiveSelection()";
4099 $delete_sel_link = "javascript:deleteSelection()";
4100
11befbb2
AD
4101 if (!get_pref($link, 'COMBINED_DISPLAY_MODE')) {
4102
c6008b62
AD
4103 $sel_all_link = "javascript:selectTableRowsByIdPrefix('headlinesList', 'RROW-', 'RCHK-', true, '', true)";
4104 $sel_unread_link = "javascript:selectTableRowsByIdPrefix('headlinesList', 'RROW-', 'RCHK-', true, 'Unread', true)";
4105 $sel_none_link = "javascript:selectTableRowsByIdPrefix('headlinesList', 'RROW-', 'RCHK-', false)";
e75d70b5 4106 $sel_inv_link = "javascript:invertHeadlineSelection()";
11befbb2 4107
c6008b62
AD
4108 $tog_unread_link = "javascript:selectionToggleUnread()";
4109 $tog_marked_link = "javascript:selectionToggleMarked()";
e4f4b46f 4110 $tog_published_link = "javascript:selectionTogglePublished()";
11befbb2 4111
c6008b62 4112 } else {
11befbb2 4113
c6008b62
AD
4114 $sel_all_link = "javascript:cdmSelectArticles('all')";
4115 $sel_unread_link = "javascript:cdmSelectArticles('unread')";
4116 $sel_none_link = "javascript:cdmSelectArticles('none')";
4117
e75d70b5
AD
4118 $sel_inv_link = "javascript:invertHeadlineSelection()";
4119
c6008b62
AD
4120 $tog_unread_link = "javascript:selectionToggleUnread(true)";
4121 $tog_marked_link = "javascript:selectionToggleMarked(true)";
e4f4b46f 4122 $tog_published_link = "javascript:selectionTogglePublished(true)";
c6008b62
AD
4123
4124 }
4125
0ef68e6f
AD
4126 print "<div id=\"subtoolbar_ftitle\">";
4127
4128 if ($feed_site_url) {
4129 if (!$bottom) {
4130 $target = "target=\"_blank\"";
4131 }
4132 print "<a $target href=\"$feed_site_url\">".
4133 truncate_string($feed_title,30)."</a>";
4134 } else {
5163fc70
AD
4135 if ($feed_id < -10) {
4136 $label_id = -11-$feed_id;
4137
4138 $result = db_query($link, "SELECT fg_color, bg_color
4139 FROM ttrss_labels2 WHERE id = '$label_id' AND owner_uid = " .
4140 $_SESSION["uid"]);
4141
4142 if (db_num_rows($result) != 0) {
4143 $fg_color = db_fetch_result($result, 0, "fg_color");
4144 $bg_color = db_fetch_result($result, 0, "bg_color");
4145
4146 print "<span style='background : $bg_color; color : $fg_color'>";
4147 print $feed_title;
4148 print "</span>";
4149 } else {
4150 print $feed_title;
4151 }
4152
4153 } else {
4154 print $feed_title;
4155 }
0ef68e6f
AD
4156 }
4157
4158 if ($search) {
4159 $search_q = "&q=$search&m=$match_on&smode=$search_mode";
4160 }
4161
4162 print "
4163 <a target=\"_blank\"
4164 href=\"backend.php?op=rss&id=$feed_id&is_cat=$is_cat$search_q\">
4165 <img class=\"noborder\"
4166 alt=\"".__('Generated feed')."\" src=\"images/feed-icon-12x12.png\">
4167 </a>";
b8a637f3 4168
0ef68e6f 4169 print "</div>";
ceb30ba4 4170
d75ed3eb
AD
4171 print __('Select:')."
4172 <a href=\"$sel_all_link\">".__('All')."</a>,
4173 <a href=\"$sel_unread_link\">".__('Unread')."</a>,
4174 <a href=\"$sel_inv_link\">".__('Invert')."</a>,
4175 <a href=\"$sel_none_link\">".__('None')."</a></li>";
bf3c9838 4176
d75ed3eb 4177 print "&nbsp;&nbsp;";
bf3c9838 4178
d75ed3eb
AD
4179 print "<span
4180 onmouseover=\"enable_selection(false)\"
4181 onmouseout=\"enable_selection(true)\"
4182 onclick=\"toggleHeadlineActions()\" id=\"headlineActionsDrop\">".
7d939be7
AD
4183 __("Actions...") . "&nbsp;&nbsp;<img width='11' height'7'
4184 src=\"images/down_arrow.png\">
d75ed3eb 4185 </span>";
bf3c9838 4186
d75ed3eb 4187 print "<ul id=\"headlineActionsBody\" style=\"display : none\">";
bf3c9838 4188
d75ed3eb
AD
4189 print "<li class=\"insensitive\">".__('Selection toggle:')."</li>
4190 <li onclick=\"$tog_unread_link\">&nbsp;&nbsp;".__('Unread')."</li>
4191 <li onclick=\"$tog_marked_link\">&nbsp;&nbsp;".__('Starred')."</li>
4192 <li onclick=\"$tog_published_link\">&nbsp;&nbsp;".__('Published')."</li>
938052ba
AD
4193 <li class=\"insensitive\">".__('Selection:')."</li>
4194 <li onclick=\"$catchup_sel_link\">&nbsp;&nbsp;".__('Mark as read')."</li>";
bf3c9838 4195
938052ba
AD
4196// print "<li onclick=\"$catchup_feed_link\">&nbsp;&nbsp;".__('Entire feed').
4197// "</li>";
bf3c9838 4198
e04c18a2 4199 if ($feed_id != "0") {
938052ba 4200 print "<li onclick=\"$archive_sel_link\">&nbsp;&nbsp;".__('Archive')."</li>";
e04c18a2 4201 } else {
938052ba 4202 print "<li onclick=\"$archive_sel_link\">&nbsp;&nbsp;".__('Move back')."</li>";
84d7198a 4203 print "<li onclick=\"$delete_sel_link\">&nbsp;&nbsp;".__('Delete')."</li>";
e04c18a2 4204
84d7198a 4205 }
938052ba 4206
d75ed3eb
AD
4207 //print "<li><span class=\"insensitive\">--------</span></li>";
4208 print "<li class=\"insensitive\">".__('Assign label:')."</li>";
bf3c9838 4209
79c88e11 4210 print_labels_headlines_dropdown($link, $feed_id);
c6008b62 4211
d75ed3eb 4212 print "</ul>";
11befbb2 4213
0ef68e6f 4214 print "</div>";
11befbb2
AD
4215 }
4216
bba7c4bf
AD
4217 function printCategoryHeader($link, $cat_id, $hidden = false, $can_browse = true) {
4218
4219 $tmp_category = getCategoryTitle($link, $cat_id);
cc914918
AD
4220
4221 if ($cat_id > 0) {
4222 $cat_unread = ccache_find($link, $cat_id, $_SESSION["uid"], true);
b2531a28 4223 } else if ($cat_id == 0 || $cat_id == -2) {
cc914918
AD
4224 $cat_unread = getCategoryUnread($link, $cat_id);
4225 }
bba7c4bf
AD
4226
4227 if ($hidden) {
4228 $holder_style = "display:none;";
66a251f9 4229 $ellipsis = "…";
bba7c4bf
AD
4230 } else {
4231 $holder_style = "";
4232 $ellipsis = "";
4233 }
4234
4235 $catctr_class = ($cat_unread > 0) ? "catCtrHasUnread" : "catCtrNoUnread";
4236
bba7c4bf 4237 if ($can_browse) {
4c41e58f
AD
4238 $browse_cat_link = "onclick=\"javascript:viewCategory($cat_id)\"";
4239 $inner_title_class = "catTitle";
bba7c4bf 4240 } else {
4c41e58f
AD
4241 $browse_cat_link = "";
4242 $inner_title_class = "catTitleNL";
bba7c4bf
AD
4243 }
4244
2baedabe 4245 $cat_class = "feedCat";
364e391e
AD
4246
4247 print "<li class=\"$cat_class\" id=\"FCAT-$cat_id\">
98fb6193 4248 <img onclick=\"toggleCollapseCat($cat_id)\" class=\"catCollapse\"
4c41e58f
AD
4249 title=\"".__('Click to collapse category')."\"
4250 src=\"images/cat-collapse.png\"><span class=\"$inner_title_class\"
c6dbeedc 4251 id=\"FCATN-$cat_id\" $browse_cat_link/>$tmp_category</span>";
4c41e58f
AD
4252
4253 print "<span id=\"FCAP-$cat_id\">";
4254
dda1396f 4255 print " <span id=\"FCATCTR-$cat_id\"
bba7c4bf
AD
4256 class=\"$catctr_class\">($cat_unread)</span> $ellipsis";
4257
4c41e58f 4258 print "</span>";
bba7c4bf 4259
782ddd70 4260 //print "</li>";
bba7c4bf 4261
60ea2377 4262 print "<ul class=\"feedCatList\" id=\"FCATLIST-$cat_id\" style='$holder_style'>";
7abee14f 4263
bba7c4bf
AD
4264 }
4265
f407c086
AD
4266 function outputFeedList($link, $tags = false) {
4267
3bd9a780 4268 print "<ul class=\"feedList\" id=\"feedList\">";
f407c086
AD
4269
4270 $owner_uid = $_SESSION["uid"];
4271
cf4d339c 4272 /* virtual feeds */
f407c086 4273
cf4d339c 4274 if (get_pref($link, 'ENABLE_FEED_CATS')) {
3b086176 4275
57937c42 4276 $cat_hidden = get_pref($link, "_COLLAPSED_SPECIAL");
3b086176 4277
bba7c4bf 4278 printCategoryHeader($link, -1, $cat_hidden, false);
cf4d339c 4279 }
f407c086 4280
e1050aec 4281 foreach (array(-4, -3, -1, -2, 0) as $i) {
4bee8b5f
AD
4282 printFeedEntry($i, "virt", false, false,
4283 false, $link);
4284 }
e4f4b46f 4285
cf4d339c 4286 if (get_pref($link, 'ENABLE_FEED_CATS')) {
8b803aa2 4287 print "</ul></li>";
cf4d339c 4288 }
f407c086 4289
cf4d339c 4290 if (!$tags) {
f407c086 4291
ceb30ba4 4292
2eb9c95c 4293 $result = db_query($link, "SELECT * FROM
ceb30ba4 4294 ttrss_labels2 WHERE owner_uid = '$owner_uid' ORDER by caption");
f407c086
AD
4295
4296 if (db_num_rows($result) > 0) {
4297 if (get_pref($link, 'ENABLE_FEED_CATS')) {
bd64489f 4298
57937c42 4299 $cat_hidden = get_pref($link, "_COLLAPSED_LABELS");
bd64489f 4300
e6a38cde 4301 printCategoryHeader($link, -2, $cat_hidden, true);
bd64489f 4302
f407c086 4303 } else {
3bd9a780 4304 print "<li><hr></li>";
f407c086
AD
4305 }
4306 }
4307
4308 while ($line = db_fetch_assoc($result)) {
4309
f407c086
AD
4310 $label_id = -$line['id'] - 11;
4311 $count = getFeedUnread($link, $label_id);
f407c086
AD
4312
4313 printFeedEntry($label_id,
4bee8b5f
AD
4314 "label", $line["caption"],
4315 $count, false, $link,
2eb9c95c
AD
4316 false, false, false,
4317 $line['fg_color'], $line['bg_color']);
f407c086
AD
4318
4319 }
4320
4321 if (db_num_rows($result) > 0) {
4322 if (get_pref($link, 'ENABLE_FEED_CATS')) {
4323 print "</ul>";
4324 }
ceb30ba4 4325 }
f407c086 4326
f407c086
AD
4327
4328 if (!get_pref($link, 'ENABLE_FEED_CATS')) {
3bd9a780 4329 print "<li><hr></li>";
f407c086
AD
4330 }
4331
4332 if (get_pref($link, 'ENABLE_FEED_CATS')) {
4333 if (get_pref($link, "FEEDS_SORT_BY_UNREAD")) {
9d393c84 4334 $order_by_qpart = "order_id,category,unread DESC,title";
f407c086 4335 } else {
9d393c84 4336 $order_by_qpart = "order_id,category,title";
f407c086
AD
4337 }
4338 } else {
4339 if (get_pref($link, "FEEDS_SORT_BY_UNREAD")) {
4340 $order_by_qpart = "unread DESC,title";
4341 } else {
4342 $order_by_qpart = "title";
4343 }
4344 }
4345
14073c0a
AD
4346 $age_qpart = getMaxAgeSubquery();
4347
99509451 4348 $query = "SELECT ttrss_feeds.*,
fc2b26a6 4349 ".SUBSTRING_FOR_DATE."(last_updated,1,19) AS last_updated_noms,
f407c086
AD
4350 cat_id,last_error,
4351 ttrss_feed_categories.title AS category,
d7135e2a
AD
4352 ttrss_feed_categories.collapsed,
4353 value AS unread
4354 FROM ttrss_feeds LEFT JOIN ttrss_feed_categories
4355 ON (ttrss_feed_categories.id = cat_id)
4356 LEFT JOIN ttrss_counters_cache
4357 ON
4358 (ttrss_feeds.id = feed_id)
f407c086 4359 WHERE
f407c086 4360 ttrss_feeds.owner_uid = '$owner_uid' AND parent_feed IS NULL
99509451
AD
4361 ORDER BY $order_by_qpart";
4362
4363 $result = db_query($link, $query);
f407c086 4364
b4e75b2a 4365 $actid = $_REQUEST["actid"];
f407c086
AD
4366
4367 /* real feeds */
4368
4369 $lnum = 0;
4370
4371 $total_unread = 0;
4372
4373 $category = "";
4374
4375 $short_date = get_pref($link, 'SHORT_DATE_FORMAT');
4376
4377 while ($line = db_fetch_assoc($result)) {
4378
70c9b173 4379 $feed = htmlspecialchars(trim($line["title"]));
0f39ae20
AD
4380
4381 if (!$feed) $feed = "[Untitled]";
4382
f407c086 4383 $feed_id = $line["id"];
d7135e2a 4384 $unread = $line["unread"];
f407c086 4385
b4e75b2a 4386 $subop = $_REQUEST["subop"];
f407c086
AD
4387
4388 if (get_pref($link, 'HEADLINES_SMART_DATE')) {
4389 $last_updated = smart_date_time(strtotime($line["last_updated_noms"]));
4390 } else {
4391 $last_updated = date($short_date, strtotime($line["last_updated_noms"]));
4392 }
4393
4394 $rtl_content = sql_bool_to_bool($line["rtl_content"]);
4395
4396 if ($rtl_content) {
4397 $rtl_tag = "dir=\"RTL\"";
4398 } else {
4399 $rtl_tag = "";
4400 }
4401
4402 $tmp_result = db_query($link,
de0a2122
AD
4403 "SELECT SUM(value) AS unread FROM ttrss_feeds, ttrss_counters_cache
4404 WHERE parent_feed = '$feed_id' AND feed_id = id");
f407c086 4405
de0a2122
AD
4406 $unread += db_fetch_result($tmp_result, 0, "unread");
4407
f407c086
AD
4408 $cat_id = $line["cat_id"];
4409
4410 $tmp_category = $line["category"];
4411
4412 if (!$tmp_category) {
d1db26aa 4413 $tmp_category = __("Uncategorized");
f407c086
AD
4414 }
4415
4416 // $class = ($lnum % 2) ? "even" : "odd";
4417
4418 if ($line["last_error"]) {
4419 $class = "error";
4420 } else {
4421 $class = "feed";
4422 }
4423
f407c086
AD
4424 if ($actid == $feed_id) {
4425 $class .= "Selected";
4426 }
4427
4428 $total_unread += $unread;
4429
4430 if ($category != $tmp_category && get_pref($link, 'ENABLE_FEED_CATS')) {
4431
4432 if ($category) {
8b803aa2 4433 print "</ul></li>";
f407c086
AD
4434 }
4435
4436 $category = $tmp_category;
4437
7abee14f 4438 $collapsed = sql_bool_to_bool($line["collapsed"]);
f407c086
AD
4439
4440 // workaround for NULL category
d1db26aa 4441 if ($category == __("Uncategorized")) {
57937c42 4442 $collapsed = get_pref($link, "_COLLAPSED_UNCAT");
f407c086
AD
4443 }
4444
22fdebff 4445 $cat_id = (int) $cat_id;
f407c086 4446
7abee14f
AD
4447 printCategoryHeader($link, $cat_id, $collapsed, true);
4448
f407c086
AD
4449 }
4450
4451 printFeedEntry($feed_id, $class, $feed, $unread,
4bee8b5f 4452 false, $link, $rtl_content,
f407c086
AD
4453 $last_updated, $line["last_error"]);
4454
4455 ++$lnum;
4456 }
4457
4458 if (db_num_rows($result) == 0) {
3bd9a780 4459 print "<li>".__('No feeds to display.')."</li>";
f407c086
AD
4460 }
4461
4462 } else {
4463
4464 // tags
4465
4466/* $result = db_query($link, "SELECT tag_name,count(ttrss_entries.id) AS count
4467 FROM ttrss_tags,ttrss_entries,ttrss_user_entries WHERE
4468 post_int_id = ttrss_user_entries.int_id AND
4469 unread = true AND ref_id = ttrss_entries.id
4470 AND ttrss_tags.owner_uid = '$owner_uid' GROUP BY tag_name
4471 UNION
4472 select tag_name,0 as count FROM ttrss_tags WHERE owner_uid = '$owner_uid'
4473 ORDER BY tag_name"); */
4474
4475 if (get_pref($link, 'ENABLE_FEED_CATS')) {
d1db26aa 4476 print "<li class=\"feedCat\">".__('Tags')."</li>";
60ea2377 4477 print "<ul class=\"feedCatList\">";
f407c086
AD
4478 }
4479
14073c0a
AD
4480 $age_qpart = getMaxAgeSubquery();
4481
f407c086 4482 $result = db_query($link, "SELECT tag_name,SUM((SELECT COUNT(int_id)
14073c0a
AD
4483 FROM ttrss_user_entries,ttrss_entries WHERE int_id = post_int_id
4484 AND ref_id = id AND $age_qpart
f407c086 4485 AND unread = true)) AS count FROM ttrss_tags
ef1ac7c7
AD
4486 WHERE owner_uid = ".$_SESSION['uid']." GROUP BY tag_name
4487 ORDER BY count DESC LIMIT 50");
f407c086
AD
4488
4489 $tags = array();
4490
4491 while ($line = db_fetch_assoc($result)) {
4492 $tags[$line["tag_name"]] += $line["count"];
4493 }
4494
4495 foreach (array_keys($tags) as $tag) {
4496
4497 $unread = $tags[$tag];
f407c086 4498 $class = "tag";
326469fc 4499
f407c086
AD
4500 printFeedEntry($tag, $class, $tag, $unread, "images/tag.png", $link);
4501
4502 }
4503
4504 if (db_num_rows($result) == 0) {
4505 print "<li>No tags to display.</li>";
4506 }
4507
4508 if (get_pref($link, 'ENABLE_FEED_CATS')) {
3bd9a780 4509 print "</ul>";
f407c086
AD
4510 }
4511
4512 }
4513
4514 print "</ul>";
4515
4516 }
4517
bc976a8c 4518 function get_article_tags($link, $id, $owner_uid = 0) {
0b126ac2 4519
bd3f2ade
AD
4520 global $memcache;
4521
0b126ac2
AD
4522 $a_id = db_escape_string($id);
4523
bc976a8c
AD
4524 if (!$owner_uid) $owner_uid = $_SESSION["uid"];
4525
bd3f2ade 4526 $query = "SELECT DISTINCT tag_name,
0c3d1c68 4527 owner_uid as owner FROM
0b126ac2 4528 ttrss_tags WHERE post_int_id = (SELECT int_id FROM ttrss_user_entries WHERE
bd3f2ade 4529 ref_id = '$a_id' AND owner_uid = '$owner_uid' LIMIT 1) ORDER BY tag_name";
0b126ac2 4530
bd3f2ade 4531 $obj_id = md5("TAGS:$owner_uid:$id");
0b126ac2 4532 $tags = array();
bd3f2ade
AD
4533
4534 if ($memcache && $obj = $memcache->get($obj_id)) {
4535 $tags = $obj;
4536 } else {
4537 $tmp_result = db_query($link, $query);
4538
4539 while ($tmp_line = db_fetch_assoc($tmp_result)) {
4540 array_push($tags, $tmp_line["tag_name"]);
4541 }
4542
4543 if ($memcache) $memcache->add($obj_id, $tags, 0, 3600);
0b126ac2
AD
4544 }
4545
4546 return $tags;
4547 }
4548
d62a3b63
AD
4549 function trim_value(&$value) {
4550 $value = trim($value);
4551 }
4552
4553 function trim_array($array) {
4554 $tmp = $array;
4555 array_walk($tmp, 'trim_value');
4556 return $tmp;
4557 }
4558
be832a1a 4559 function tag_is_valid($tag) {
ef063748
AD
4560 if ($tag == '') return false;
4561 if (preg_match("/^[0-9]*$/", $tag)) return false;
41f7498a 4562 if (mb_strlen($tag) > 250) return false;
ef063748 4563
31365729
AD
4564 if (function_exists('iconv')) {
4565 $tag = iconv("utf-8", "utf-8", $tag);
4566 }
4567
ef063748
AD
4568 if (!$tag) return false;
4569
4570 return true;
be832a1a
AD
4571 }
4572
afb12ed0
AD
4573 function render_login_form($link, $mobile = 0) {
4574 switch ($mobile) {
4575 case 0:
793185a9 4576 require_once "login_form.php";
afb12ed0
AD
4577 break;
4578 case 1:
793185a9 4579 require_once "mobile/login_form.php";
afb12ed0
AD
4580 break;
4581 case 2:
4582 require_once "mobile/classic/login_form.php";
793185a9 4583 }
01a87dff
AD
4584 }
4585
dc56b3b7
AD
4586 // from http://developer.apple.com/internet/safari/faq.html
4587 function no_cache_incantation() {
4588 header("Expires: Mon, 22 Dec 1980 00:00:00 GMT"); // Happy birthday to me :)
4589 header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT"); // always modified
4590 header("Cache-Control: no-store, no-cache, must-revalidate, max-age=0"); // HTTP/1.1
4591 header("Cache-Control: post-check=0, pre-check=0", false);
4592 header("Pragma: no-cache"); // HTTP/1.0
4593 }
4594
42395d28 4595 function format_warning($msg, $id = "") {
883fee8d 4596 global $link;
42395d28 4597 return "<div class=\"warning\" id=\"$id\">
883fee8d 4598 <img src=\"".theme_image($link, "images/sign_excl.png")."\">$msg</div>";
0d32b41e
AD
4599 }
4600
4601 function format_notice($msg) {
883fee8d
AD
4602 global $link;
4603 return "<div class=\"notice\" id=\"$id\">
4604 <img src=\"".theme_image($link, "images/sign_info.png")."\">$msg</div>";
0d32b41e
AD
4605 }
4606
68d2f95e 4607 function format_error($msg) {
883fee8d
AD
4608 global $link;
4609 return "<div class=\"error\" id=\"$id\">
4610 <img src=\"".theme_image($link, "images/sign_excl.png")."\">$msg</div>";
68d2f95e
AD
4611 }
4612
4dccf1ed
AD
4613 function print_notice($msg) {
4614 return print format_notice($msg);
4615 }
4616
4617 function print_warning($msg) {
4618 return print format_warning($msg);
4619 }
4620
68d2f95e
AD
4621 function print_error($msg) {
4622 return print format_error($msg);
4623 }
4624
4625
4dccf1ed
AD
4626 function T_sprintf() {
4627 $args = func_get_args();
4628 return vsprintf(__(array_shift($args)), $args);
4629 }
4630
51682b23
AD
4631 function format_inline_player($link, $url, $ctype) {
4632
4633 $entry = "";
4634
4635 if (($ctype == __("audio/mpeg")) && (get_pref($link, "ENABLE_FLASH_PLAYER")) ) {
4636
4637 $entry .= "<object type=\"application/x-shockwave-flash\"
4638 data=\"extras/button/musicplayer.swf?song_url=$url\"
4639 width=\"17\" height=\"17\">
4640 <param name=\"movie\" value=\"extras/button/musicplayer.swf?song_url=$url\" /> </object>";
4641 }
4642
4643 /*
4644
4645 if (substr($ctype,0,6)=="audio/" || $ctype=="application/ogg" || $ctype=="application/x-ogg") {
4646 $entry .= "<audio controls=\"controls\"><source src=\"$url\" type=\"$ctype\" />";
4647 if (($ctype == __("audio/mpeg")) &&
4648 (get_pref($link, "ENABLE_FLASH_PLAYER")) ) {
4649 $entry .= "<span><object type=\"application/x-shockwave-flash\" data=\"extras/button/musicplayer.swf?song_url=$url\" width=\"17\" height=\"17\"> <param name=\"movie\" value=\"extras/button/musicplayer.swf?song_url=$url\" /> </object></span>";
4650 }
4651 $entry .= "</audio> ";
4652 if (($ctype == __("audio/mpeg")) &&
4653 (get_pref($link, "ENABLE_FLASH_PLAYER")) ) {
4654 $entry .= "<a id='switchToFlashLink' href='#' onclick='return switchToFlash(this)'>".__('Switch to Flash Player')."</a>";
4655 $entry .= "<script type='text/javascript'>html5AudioOrFlash('$ctype');</script>";
4656 }
4657 } elseif (substr($ctype,0,6)=="video/") {
4658 $entry .= "<video controls=\"controls\"><source src=\"$url\" type=\"$ctype\" />";
4659 $entry .= "</video>";
4660 } */
4661
4662
4663
4664 return $entry;
4665 }
4666
eedfb635
AD
4667 function outputArticleXML($link, $id, $feed_id, $mark_as_read = true,
4668 $zoom_mode = false) {
3de0261a 4669
10eb9da8 4670 /* we can figure out feed_id from article id anyway, why do we
e04c18a2 4671 * pass feed_id here? let's ignore the argument :( */
10eb9da8
AD
4672
4673 $result = db_query($link, "SELECT feed_id FROM ttrss_user_entries
4674 WHERE ref_id = '$id'");
4675
e04c18a2 4676 $feed_id = (int) db_fetch_result($result, 0, "feed_id");
10eb9da8 4677
eedfb635 4678 if (!$zoom_mode) { print "<article id='$id'><![CDATA["; };
3de0261a 4679
54e61a68 4680 $result = db_query($link, "SELECT rtl_content, always_display_enclosures FROM ttrss_feeds
3de0261a
AD
4681 WHERE id = '$feed_id' AND owner_uid = " . $_SESSION["uid"]);
4682
4683 if (db_num_rows($result) == 1) {
4684 $rtl_content = sql_bool_to_bool(db_fetch_result($result, 0, "rtl_content"));
54e61a68 4685 $always_display_enclosures = sql_bool_to_bool(db_fetch_result($result, 0, "always_display_enclosures"));
3de0261a
AD
4686 } else {
4687 $rtl_content = false;
54e61a68 4688 $always_display_enclosures = false;
3de0261a
AD
4689 }
4690
4691 if ($rtl_content) {
4692 $rtl_tag = "dir=\"RTL\"";
4693 $rtl_class = "RTL";
4694 } else {
4695 $rtl_tag = "";
4696 $rtl_class = "";
4697 }
4698
4699 if ($mark_as_read) {
4700 $result = db_query($link, "UPDATE ttrss_user_entries
4701 SET unread = false,last_read = NOW()
4702 WHERE ref_id = '$id' AND owner_uid = " . $_SESSION["uid"]);
8a4c759e
AD
4703
4704 ccache_update($link, $feed_id, $_SESSION["uid"]);
3de0261a
AD
4705 }
4706
4707 $result = db_query($link, "SELECT title,link,content,feed_id,comments,int_id,
fc2b26a6 4708 ".SUBSTRING_FOR_DATE."(updated,1,16) as updated,
3de0261a
AD
4709 (SELECT icon_url FROM ttrss_feeds WHERE id = feed_id) as icon_url,
4710 num_comments,
c7e51de1 4711 author,
ef83538d 4712 orig_feed_id,
c7e51de1 4713 note
3de0261a
AD
4714 FROM ttrss_entries,ttrss_user_entries
4715 WHERE id = '$id' AND ref_id = id AND owner_uid = " . $_SESSION["uid"]);
4716
4717 if ($result) {
4718
3de0261a
AD
4719 $line = db_fetch_assoc($result);
4720
4721 if ($line["icon_url"]) {
4722 $feed_icon = "<img class=\"feedIcon\" src=\"" . $line["icon_url"] . "\">";
4723 } else {
4724 $feed_icon = "&nbsp;";
4725 }
4726
3de0261a
AD
4727 $num_comments = $line["num_comments"];
4728 $entry_comments = "";
4729
4730 if ($num_comments > 0) {
4731 if ($line["comments"]) {
4732 $comments_url = $line["comments"];
4733 } else {
4734 $comments_url = $line["link"];
4735 }
7514749d 4736 $entry_comments = "<a target='_blank' href=\"$comments_url\">$num_comments comments</a>";
3de0261a
AD
4737 } else {
4738 if ($line["comments"] && $line["link"] != $line["comments"]) {
7514749d 4739 $entry_comments = "<a target='_blank' href=\"".$line["comments"]."\">comments</a>";
3de0261a
AD
4740 }
4741 }
4742
eedfb635
AD
4743 if ($zoom_mode) {
4744 header("Content-Type: text/html");
4745 print "<html><head>
5bb0cc8e 4746 <meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"/>
eedfb635
AD
4747 <title>Tiny Tiny RSS - ".$line["title"]."</title>
4748 <link rel=\"stylesheet\" type=\"text/css\" href=\"tt-rss.css\">
4749 </head><body>";
4750 }
4751
4752
3de0261a
AD
4753 print "<div class=\"postReply\">";
4754
94047498
AD
4755 print "<div class=\"postHeader\" onmouseover=\"enable_resize(true)\"
4756 onmouseout=\"enable_resize(false)\">";
3de0261a
AD
4757
4758 $entry_author = $line["author"];
4759
4760 if ($entry_author) {
60164936 4761 $entry_author = __(" - ") . $entry_author;
3de0261a
AD
4762 }
4763
4764 $parsed_updated = date(get_pref($link, 'LONG_DATE_FORMAT'),
4765 strtotime($line["updated"]));
4766
4767 print "<div class=\"postDate$rtl_class\">$parsed_updated</div>";
4768
4769 if ($line["link"]) {
7514749d 4770 print "<div clear='both'><a target='_blank' href=\"" . $line["link"] . "\">" .
06202d88 4771 $line["title"] . "</a><span class='author'>$entry_author</span></div>";
3de0261a
AD
4772 } else {
4773 print "<div clear='both'>" . $line["title"] . "$entry_author</div>";
4774 }
4775
307d187c 4776 $tags_str = format_tags_string(get_article_tags($link, $id), $id);
e7544143 4777
3de0261a
AD
4778 if (!$entry_comments) $entry_comments = "&nbsp;"; # placeholder
4779
5f014cf1 4780 print "<div style='float : right'>
e9823609
AD
4781 <img src='".theme_image($link, 'images/tag.png')."'
4782 class='tagsPic' alt='Tags' title='Tags'>&nbsp;";
eedfb635
AD
4783
4784 if (!$zoom_mode) {
307d187c 4785 print "<span id=\"ATSTR-$id\">$tags_str</span>
eedfb635 4786 <a title=\"".__('Edit tags for this article')."\"
4710e3dc
AD
4787 href=\"javascript:editArticleTags($id, $feed_id)\">(+)</a>";
4788
e9823609
AD
4789 print "<img src=\"".theme_image($link, 'images/art-zoom.png')."\"
4790 class='tagsPic' style=\"cursor : pointer\" style=\"cursor : pointer\"
eedfb635
AD
4791 onclick=\"zoomToArticle($id)\"
4792 alt='Zoom' title='".__('Show article summary in new window')."'>";
c7e51de1
AD
4793
4794 $note_escaped = htmlspecialchars($line['note'], ENT_QUOTES);
4795
e9823609
AD
4796 print "<img src=\"".theme_image($link, 'images/art-pub-note.png')."\"
4797 class='tagsPic' style=\"cursor : pointer\" style=\"cursor : pointer\"
c7e51de1
AD
4798 onclick=\"publishWithNote($id, '$note_escaped')\"
4799 alt='PubNote' title='".__('Publish article with a note')."'>";
4800
24ecbcae
AD
4801 } else {
4802 $tags_str = strip_tags($tags_str);
4803 print "<span id=\"ATSTR-$id\">$tags_str</span>";
eedfb635
AD
4804 }
4805 print "</div>";
4806 print "<div clear='both'>$entry_comments</div>";
3de0261a 4807
ef83538d
AD
4808 if ($line["orig_feed_id"]) {
4809
4810 $tmp_result = db_query($link, "SELECT * FROM ttrss_archived_feeds
4811 WHERE id = ".$line["orig_feed_id"]);
4812
4813 if (db_num_rows($tmp_result) != 0) {
4814
4815 print "<div clear='both'>";
4816 print __("Originally from:");
4817
4818 print "&nbsp;";
4819
4820 $tmp_line = db_fetch_assoc($tmp_result);
4821
4822 print "<a target='_blank'
4823 href=' " . htmlspecialchars($tmp_line['site_url']) . "'>" .
4824 $tmp_line['title'] . "</a>";
4825
4826 print "&nbsp;";
4827
4828 print "<a target='_blank' href='" . htmlspecialchars($tmp_line['feed_url']) . "'>";
4829 print "<img title='".__('Feed URL')."'class='tinyFeedIcon' src='images/pub_set.gif'></a>";
4830
4831 print "</div>";
4832 }
4833 }
4834
3de0261a
AD
4835 print "</div>";
4836
4837 print "<div class=\"postIcon\">" . $feed_icon . "</div>";
64ab16ac 4838
3de0261a 4839 print "<div class=\"postContent\">";
64ab16ac 4840
c54526fe 4841 $article_content = sanitize_rss($link, $line["content"]);
c41890b0 4842
c7e51de1
AD
4843 print "<div id=\"POSTNOTE-$id\">";
4844 if ($line['note']) {
4845 print format_article_note($id, $line['note']);
4846 }
4847 print "</div>";
4848
db54143e
AD
4849 print $article_content;
4850
be35798b
AD
4851// $result = db_query($link, "SELECT * FROM ttrss_enclosures WHERE
4852// post_id = '$id' AND content_url != ''");
ce53e200 4853
be35798b
AD
4854 $result = get_article_enclosures($link, $id);
4855
4856// if (db_num_rows($result) > 0) {
4857
4858 if (count($result) > 0) {
ce53e200 4859
9c5ee7e1 4860 $entries_html = array();
ce53e200
AD
4861 $entries = array();
4862
be35798b
AD
4863 //while ($line = db_fetch_assoc($result)) {
4864 foreach ($result as $line) {
ce53e200
AD
4865
4866 $url = $line["content_url"];
4752b041
AD
4867 $ctype = $line["content_type"];
4868
4869 if (!$ctype) $ctype = __("unknown type");
ce53e200
AD
4870
4871 $filename = substr($url, strrpos($url, "/")+1);
4872
51682b23 4873 $entry = format_inline_player($link, $url, $ctype);
8dccabed 4874
51682b23 4875 $entry .= " <a target=\"_blank\" href=\"" . htmlspecialchars($url) . "\">" .
4752b041 4876 $filename . " (" . $ctype . ")" . "</a>";
ce53e200 4877
9c5ee7e1
AD
4878 array_push($entries_html, $entry);
4879
4880 $entry = array();
4881
4882 $entry["type"] = $ctype;
4883 $entry["filename"] = $filename;
4884 $entry["url"] = $url;
4885
ce53e200
AD
4886 array_push($entries, $entry);
4887 }
4888
9c5ee7e1
AD
4889 print "<div class=\"postEnclosures\">";
4890
fbaca246
AD
4891 if (!get_pref($link, "STRIP_IMAGES")) {
4892 if ($always_display_enclosures || !preg_match("/<img/i", $article_content)) {
4893 foreach ($entries as $entry) {
4894 if (preg_match("/image/", $entry["type"])) {
4895 print "<p><img
4896 alt=\"".htmlspecialchars($entry["filename"])."\"
4897 src=\"" .htmlspecialchars($entry["url"]) . "\"></p>";
4898 }
9c5ee7e1
AD
4899 }
4900 }
4901 }
4902
4903 print "<div class=\"postEnclosures\">";
4904
4905 if (db_num_rows($result) == 1) {
4906 print __("Attachment:") . " ";
4907 } else {
4908 print __("Attachments:") . " ";
4909 }
4910
4911 print join(", ", $entries_html);
ce53e200
AD
4912
4913 print "</div>";
4914 }
4915
4916 print "</div>";
3de0261a
AD
4917
4918 print "</div>";
4919
4920 }
4921
eedfb635
AD
4922 if (!$zoom_mode) {
4923 print "]]></article>";
4924 } else {
4925 print "
4926 <div style=\"text-align : center\">
2ae69126
AD
4927 <button onclick=\"return window.close()\">".
4928 __("Close this window")."</button></div>";
eedfb635
AD
4929 print "</body></html>";
4930
4931 }
3de0261a
AD
4932
4933 }
4934
4935 function outputHeadlinesList($link, $feed, $subop, $view_mode, $limit, $cat_view,
7b4d02a8
AD
4936 $next_unread_feed, $offset, $vgr_last_feed = false,
4937 $override_order = false) {
3de0261a 4938
52d7e7da
AD
4939 $disable_cache = false;
4940
46921916
AD
4941 $timing_info = getmicrotime();
4942
961f4c73
AD
4943 $topmost_article_ids = array();
4944
ac541432
AD
4945 if (!$offset) {
4946 $offset = 0;
4947 }
3de0261a
AD
4948
4949 if ($subop == "undefined") $subop = "";
4950
a9bcfb8f
AD
4951 $subop_split = split(":", $subop);
4952
3de0261a 4953 if ($subop == "CatchupSelected") {
b4e75b2a
AD
4954 $ids = split(",", db_escape_string($_REQUEST["ids"]));
4955 $cmode = sprintf("%d", $_REQUEST["cmode"]);
3de0261a
AD
4956
4957 catchupArticlesById($link, $ids, $cmode);
4958 }
4959
4960 if ($subop == "ForceUpdate" && sprintf("%d", $feed) > 0) {
35bf080c 4961 update_generic_feed($link, $feed, $cat_view, true);
3de0261a
AD
4962 }
4963
4964 if ($subop == "MarkAllRead") {
4965 catchup_feed($link, $feed, $cat_view);
4966
4967 if (get_pref($link, 'ON_CATCHUP_SHOW_NEXT_FEED')) {
4968 if ($next_unread_feed) {
4969 $feed = $next_unread_feed;
4970 }
4971 }
4972 }
4973
a9bcfb8f
AD
4974 if ($subop_split[0] == "MarkAllReadGR") {
4975 catchup_feed($link, $subop_split[1], false);
4976 }
4977
4978
3de0261a
AD
4979 if ($feed_id > 0) {
4980 $result = db_query($link,
4981 "SELECT id FROM ttrss_feeds WHERE id = '$feed' LIMIT 1");
4982
4983 if (db_num_rows($result) == 0) {
4984 print "<div align='center'>".__('Feed not found.')."</div>";
4985 return;
4986 }
4987 }
4988
4989 if (preg_match("/^-?[0-9][0-9]*$/", $feed) != false) {
10eb9da8 4990
3de0261a
AD
4991 $result = db_query($link, "SELECT rtl_content FROM ttrss_feeds
4992 WHERE id = '$feed' AND owner_uid = " . $_SESSION["uid"]);
4993
4994 if (db_num_rows($result) == 1) {
4995 $rtl_content = sql_bool_to_bool(db_fetch_result($result, 0, "rtl_content"));
4996 } else {
4997 $rtl_content = false;
4998 }
4999
5000 if ($rtl_content) {
5001 $rtl_tag = "dir=\"RTL\"";
5002 } else {
5003 $rtl_tag = "";
5004 }
5005 } else {
5006 $rtl_tag = "";
5007 $rtl_content = false;
5008 }
5009
5010 $script_dt_add = get_script_dt_add();
5011
5012 /// START /////////////////////////////////////////////////////////////////////////////////
5013
b4e75b2a 5014 $search = db_escape_string($_REQUEST["query"]);
52d7e7da
AD
5015
5016 if ($search) {
5017 $disable_cache = true;
5018 }
5019
b4e75b2a
AD
5020 $search_mode = db_escape_string($_REQUEST["search_mode"]);
5021 $match_on = db_escape_string($_REQUEST["match_on"]);
3de0261a
AD
5022
5023 if (!$match_on) {
5024 $match_on = "both";
5025 }
5026
5027 $real_offset = $offset * $limit;
5028
b4e75b2a 5029 if ($_REQUEST["debug"]) $timing_info = print_checkpoint("H0", $timing_info);
46921916 5030
3de0261a 5031 $qfh_ret = queryFeedHeadlines($link, $feed, $limit, $view_mode, $cat_view,
7b4d02a8 5032 $search, $search_mode, $match_on, $override_order, $real_offset);
3de0261a 5033
b4e75b2a 5034 if ($_REQUEST["debug"]) $timing_info = print_checkpoint("H1", $timing_info);
46921916 5035
3de0261a
AD
5036 $result = $qfh_ret[0];
5037 $feed_title = $qfh_ret[1];
5038 $feed_site_url = $qfh_ret[2];
5039 $last_error = $qfh_ret[3];
f56e3080 5040
081e527d
AD
5041 $vgroup_last_feed = $vgr_last_feed;
5042
f56e3080
AD
5043 if ($feed == -2) {
5044 $feed_site_url = article_publish_url($link);
5045 }
5046
3de0261a
AD
5047 /// STOP //////////////////////////////////////////////////////////////////////////////////
5048
ac541432
AD
5049 if (!$offset) {
5050 print "<div id=\"headlinesContainer\" $rtl_tag>";
3de0261a 5051
ac541432
AD
5052 if (!$result) {
5053 print "<div align='center'>".__("Could not display feed (query failed). Please check label match syntax or local configuration.")."</div>";
5054 return;
5055 }
3de0261a 5056
0ef68e6f
AD
5057 print_headline_subtoolbar($link, $feed_site_url, $feed_title,
5058 $feed, $cat_view, $search, $match_on, $search_mode);
3de0261a 5059
ac541432
AD
5060 print "<div id=\"headlinesInnerContainer\" onscroll=\"headlines_scroll_handler()\">";
5061 }
3de0261a 5062
29dfb258
AD
5063 $headlines_count = db_num_rows($result);
5064
3de0261a
AD
5065 if (db_num_rows($result) > 0) {
5066
5067# print "\{$offset}";
5068
ac541432 5069 if (!get_pref($link, 'COMBINED_DISPLAY_MODE') && !$offset) {
3de0261a
AD
5070 print "<table class=\"headlinesList\" id=\"headlinesList\"
5071 cellspacing=\"0\">";
5072 }
5073
4ab4d364
AD
5074 $lnum = $limit*$offset;
5075
3de0261a
AD
5076 error_reporting (DEFAULT_ERROR_LEVEL);
5077
5078 $num_unread = 0;
6cfea5c7
AD
5079 $cur_feed_title = '';
5080
784ac51f
AD
5081 $fresh_intl = get_pref($link, "FRESH_ARTICLE_MAX_AGE") * 60 * 60;
5082
3de0261a
AD
5083 while ($line = db_fetch_assoc($result)) {
5084
5085 $class = ($lnum % 2) ? "even" : "odd";
5086
5087 $id = $line["id"];
5088 $feed_id = $line["feed_id"];
961f4c73 5089
e2549229 5090 $labels = get_article_labels($link, $id);
e2549229 5091
2eb9c95c
AD
5092 $labels_str = "<span id=\"HLLCTR-$id\">";
5093 $labels_str .= format_article_labels($labels, $id);
f9247195 5094 $labels_str .= "</span>";
2eb9c95c 5095
961f4c73
AD
5096 if (count($topmost_article_ids) < 5) {
5097 array_push($topmost_article_ids, $id);
5098 }
5099
784ac51f 5100 if ($line["last_read"] == "" && !sql_bool_to_bool($line["unread"])) {
3de0261a 5101
883fee8d
AD
5102 $update_pic = "<img id='FUPDPIC-$id' src=\"".
5103 theme_image($link, 'images/updated.png')."\"
3de0261a
AD
5104 alt=\"Updated\">";
5105 } else {
5106 $update_pic = "<img id='FUPDPIC-$id' src=\"images/blank_icon.gif\"
5107 alt=\"Updated\">";
5108 }
784ac51f
AD
5109
5110 if (sql_bool_to_bool($line["unread"]) &&
5111 time() - strtotime($line["updated_noms"]) < $fresh_intl) {
5112
e9823609
AD
5113 $update_pic = "<img id='FUPDPIC-$id' src=\"".
5114 theme_image($link, 'images/fresh_sign.png')."\" alt=\"Fresh\">";
784ac51f 5115 }
3de0261a
AD
5116
5117 if ($line["unread"] == "t" || $line["unread"] == "1") {
5118 $class .= "Unread";
5119 ++$num_unread;
5120 $is_unread = true;
5121 } else {
5122 $is_unread = false;
5123 }
abd8a516 5124
3de0261a 5125 if ($line["marked"] == "t" || $line["marked"] == "1") {
e9823609
AD
5126 $marked_pic = "<img id=\"FMPIC-$id\"
5127 src=\"".theme_image($link, 'images/mark_set.png')."\"
5128 class=\"markedPic\" alt=\"Unstar article\"
5129 onclick='javascript:tMark($id)'>";
3de0261a 5130 } else {
e9823609
AD
5131 $marked_pic = "<img id=\"FMPIC-$id\"
5132 src=\"".theme_image($link, 'images/mark_unset.png')."\"
5133 class=\"markedPic\" alt=\"Star article\"
5134 onclick='javascript:tMark($id)'>";
3de0261a
AD
5135 }
5136
e4f4b46f 5137 if ($line["published"] == "t" || $line["published"] == "1") {
e9823609
AD
5138 $published_pic = "<img id=\"FPPIC-$id\" src=\"".theme_image($link,
5139 'images/pub_set.png')."\"
e4f4b46f 5140 class=\"markedPic\"
f5e0338d 5141 alt=\"Unpublish article\" onclick='javascript:tPub($id)'>";
e4f4b46f 5142 } else {
e9823609
AD
5143 $published_pic = "<img id=\"FPPIC-$id\" src=\"".theme_image($link,
5144 'images/pub_unset.png')."\"
e4f4b46f 5145 class=\"markedPic\"
f5e0338d 5146 alt=\"Publish article\" onclick='javascript:tPub($id)'>";
e4f4b46f
AD
5147 }
5148
e944346c 5149# $content_link = "<a target=\"_blank\" href=\"".$line["link"]."\">" .
3de0261a
AD
5150# $line["title"] . "</a>";
5151
f0971fc1
AD
5152# $content_link = "<a
5153# href=\"" . htmlspecialchars($line["link"]) . "\"
5154# onclick=\"view($id,$feed_id);\">" .
5155# $line["title"] . "</a>";
3de0261a
AD
5156
5157# $content_link = "<a href=\"javascript:viewContentUrl('".$line["link"]."');\">" .
5158# $line["title"] . "</a>";
5159
5160 if (get_pref($link, 'HEADLINES_SMART_DATE')) {
46921916 5161 $updated_fmt = smart_date_time(strtotime($line["updated_noms"]));
3de0261a
AD
5162 } else {
5163 $short_date = get_pref($link, 'SHORT_DATE_FORMAT');
46921916 5164 $updated_fmt = date($short_date, strtotime($line["updated_noms"]));
3de0261a
AD
5165 }
5166
5167 if (get_pref($link, 'SHOW_CONTENT_PREVIEW')) {
5168 $content_preview = truncate_string(strip_tags($line["content_preview"]),
5169 100);
5170 }
5171
ff6e357a
AD
5172 $score = $line["score"];
5173
883fee8d
AD
5174 $score_pic = theme_image($link,
5175 "images/" . get_score_pic($score));
546499a9 5176
9bf3f101
AD
5177/* $score_title = __("(Click to change)");
5178 $score_pic = "<img class='hlScorePic' src=\"images/$score_pic\"
5179 onclick=\"adjustArticleScore($id, $score)\" title=\"$score $score_title\">"; */
546499a9 5180
883fee8d 5181 $score_pic = "<img class='hlScorePic' src=\"$score_pic\"
9bf3f101 5182 title=\"$score\">";
ff6e357a 5183
5daa24f2
AD
5184 if ($score > 500) {
5185 $hlc_suffix = "H";
5186 } else if ($score < -100) {
5187 $hlc_suffix = "L";
5188 } else {
5189 $hlc_suffix = "";
5190 }
5191
3de0261a
AD
5192 $entry_author = $line["author"];
5193
5194 if ($entry_author) {
60164936 5195 $entry_author = " - $entry_author";
3de0261a
AD
5196 }
5197
7defa089 5198 $has_feed_icon = feed_has_icon($feed_id);
bd51294a
AD
5199
5200 if ($has_feed_icon) {
5201 $feed_icon_img = "<img class=\"tinyFeedIcon\" src=\"".ICONS_URL."/$feed_id.ico\" alt=\"\">";
5202 } else {
5203 //$feed_icon_img = "<img class=\"tinyFeedIcon\" src=\"images/blank_icon.gif\" alt=\"\">";
20be0cf8 5204 $feed_icon_img = "";
bd51294a
AD
5205 }
5206
3de0261a 5207 if (!get_pref($link, 'COMBINED_DISPLAY_MODE')) {
6cfea5c7 5208
d00f22ac 5209 if (get_pref($link, 'VFEED_GROUP_BY_FEED')) {
bb031f91 5210 if ($feed_id != $vgroup_last_feed && $line["feed_title"]) {
a9bcfb8f
AD
5211
5212 $cur_feed_title = $line["feed_title"];
081e527d 5213 $vgroup_last_feed = $feed_id;
a9bcfb8f 5214
962d8ba4 5215 $cur_feed_title = htmlspecialchars($cur_feed_title);
43fc671f 5216
af163b85 5217 $vf_catchup_link = "(<a onclick='javascript:catchupFeedInGroup($feed_id);' href='#'>".__('mark as read')."</a>)";
a9bcfb8f 5218
6cfea5c7 5219 print "<tr class='feedTitle'><td colspan='7'>".
dc803347 5220 "<div style=\"float : right\">$feed_icon_img</div>".
6cfea5c7 5221 "<a href=\"javascript:viewfeed($feed_id, '', false)\">".
965fb2af 5222 $line["feed_title"]."</a> $vf_catchup_link</td></tr>";
6cfea5c7
AD
5223 }
5224 }
314fcd2b
AD
5225
5226 $mouseover_attrs = "onmouseover='postMouseIn($id)'
5227 onmouseout='postMouseOut($id)'";
5228
5229 print "<tr class='$class' id='RROW-$id' $mouseover_attrs>";
3de0261a 5230
67343d9f 5231 print "<td class='hlUpdPic'>$update_pic</td>";
3de0261a
AD
5232
5233 print "<td class='hlSelectRow'>
67343d9f
AD
5234 <input type=\"checkbox\" onclick=\"tSR(this)\"
5235 id=\"RCHK-$id\">
3de0261a
AD
5236 </td>";
5237
5238 print "<td class='hlMarkedPic'>$marked_pic</td>";
e4f4b46f 5239 print "<td class='hlMarkedPic'>$published_pic</td>";
3de0261a 5240
df456bb0
AD
5241# if ($line["feed_title"]) {
5242# print "<td class='hlContent'>$content_link</td>";
5243# print "<td class='hlFeed'>
5244# <a href=\"javascript:viewfeed($feed_id, '', false)\">".
5245# truncate_string($line["feed_title"],30)."</a>&nbsp;</td>";
5246# } else {
5247
e04c18a2 5248 print "<td onclick='view($id)' class='hlContent$hlc_suffix' valign='middle' id='HLC-$id'>";
df456bb0 5249
f0971fc1
AD
5250 print "<a id=\"RTITLE-$id\"
5251 href=\"" . htmlspecialchars($line["link"]) . "\"
6e35a862 5252 onclick=\"return false\">" .
df456bb0
AD
5253 $line["title"];
5254
5255 if (get_pref($link, 'SHOW_CONTENT_PREVIEW')) {
5256 if ($content_preview) {
5257 print "<span class=\"contentPreview\"> - $content_preview</span>";
3de0261a 5258 }
3de0261a 5259 }
df456bb0
AD
5260
5261 print "</a>";
5262
e2549229
AD
5263 print $labels_str;
5264
df456bb0
AD
5265# <a href=\"javascript:viewfeed($feed_id, '', false)\">".
5266# $line["feed_title"]."</a>
5267
d00f22ac 5268 if (!get_pref($link, 'VFEED_GROUP_BY_FEED')) {
6cfea5c7
AD
5269 if ($line["feed_title"]) {
5270 print "<span class=\"hlFeed\">
5271 (<a href=\"javascript:viewfeed($feed_id, '', false)\">".
5272 $line["feed_title"]."</a>)
5273 </span>";
5274 }
df456bb0 5275 }
6e35a862
AD
5276
5277// print "<img id='HLL-$id' class='hlLoading'
5278// src='images/indicator_tiny.gif' style='display : none'>";
5279
df456bb0 5280 print "</td>";
bd51294a 5281
df456bb0 5282# }
3de0261a 5283
e04c18a2 5284 print "<td class=\"hlUpdated\" onclick='view($id)'><nobr>$updated_fmt&nbsp;</nobr></td>";
546499a9
AD
5285
5286 print "<td class='hlMarkedPic'>$score_pic</td>";
bd51294a
AD
5287
5288 if ($line["feed_title"] && !get_pref($link, 'VFEED_GROUP_BY_FEED')) {
d7e83df7 5289 print "<td onclick=\"viewfeed($feed_id)\" class=\"hlFeedIcon\">$feed_icon_img</td>";
bd51294a
AD
5290 }
5291
3de0261a
AD
5292 print "</tr>";
5293
5294 } else {
6cfea5c7 5295
bb031f91 5296 if (get_pref($link, 'VFEED_GROUP_BY_FEED') && $line["feed_title"]) {
081e527d
AD
5297 if ($feed_id != $vgroup_last_feed) {
5298
5299 $cur_feed_title = $line["feed_title"];
5300 $vgroup_last_feed = $feed_id;
5301
962d8ba4
AD
5302 $cur_feed_title = htmlspecialchars($cur_feed_title);
5303
af163b85 5304 $vf_catchup_link = "(<a onclick='javascript:catchupFeedInGroup($feed_id);' href='#'>".__('mark as read')."</a>)";
081e527d 5305
7defa089 5306 $has_feed_icon = feed_has_icon($feed_id);
dc803347
AD
5307
5308 if ($has_feed_icon) {
5309 $feed_icon_img = "<img class=\"tinyFeedIcon\" src=\"".ICONS_URL."/$feed_id.ico\" alt=\"\">";
5310 } else {
5311 //$feed_icon_img = "<img class=\"tinyFeedIcon\" src=\"images/blank_icon.gif\" alt=\"\">";
5312 }
5313
6cfea5c7 5314 print "<div class='cdmFeedTitle'>".
dc803347 5315 "<div style=\"float : right\">$feed_icon_img</div>".
6cfea5c7 5316 "<a href=\"javascript:viewfeed($feed_id, '', false)\">".
081e527d 5317 $line["feed_title"]."</a> $vf_catchup_link</div>";
6cfea5c7
AD
5318 }
5319 }
5320
3de0261a
AD
5321 if ($is_unread) {
5322 $add_class = "Unread";
5323 } else {
5324 $add_class = "";
5325 }
0cacc891
AD
5326
5327 $expand_cdm = get_pref($link, 'CDM_EXPANDED');
3cd4239a 5328 $show_excerpt = false;
0cacc891 5329
5daa24f2 5330 if ($expand_cdm && $score >= -100) {
0cacc891 5331 $cdm_cstyle = "";
3cd4239a 5332 $show_excerpt = false;
0cacc891
AD
5333 } else {
5334 $cdm_cstyle = "style=\"display : none\"";
3cd4239a 5335 $show_excerpt = true;
0cacc891
AD
5336 }
5337
314fcd2b
AD
5338 $mouseover_attrs = "onmouseover='postMouseIn($id)'
5339 onmouseout='postMouseOut($id)'";
5340
e4914b62 5341 print "<div class=\"cdmArticle$add_class\"
3cd4239a 5342 id=\"RROW-$id\"
314fcd2b 5343 $mouseover_attrs'>";
3de0261a
AD
5344
5345 print "<div class=\"cdmHeader\">";
5346
965fb2af
AD
5347 if (!get_pref($link, "VFEED_GROUP_BY_FEED") || !$line["feed_title"]) {
5348 $cdm_feed_icon = "<span style=\"cursor : pointer\" onclick=\"viewfeed($feed_id)\">$feed_icon_img</span>";
5349 }
5350
5351 print "<div class=\"articleUpdated\">$updated_fmt $score_pic $cdm_feed_icon
b3296d36 5352 </div>";
5daa24f2 5353
9617eb94 5354 print "<span id=\"RTITLE-$id\" class=\"titleWrap$hlc_suffix\"><a class=\"title\"
3de0261a 5355 onclick=\"javascript:toggleUnread($id, 0)\"
5daa24f2
AD
5356 target=\"_blank\" href=\"".$line["link"]."\">".$line["title"]."</a>
5357 ";
3de0261a
AD
5358
5359 print $entry_author;
5360
3cd4239a 5361/* if (!$expand_cdm || $score < -100) {
0cacc891
AD
5362 print "&nbsp;<a id=\"CICH-$id\"
5363 href=\"javascript:cdmExpandArticle($id)\">
5364 (".__('Show article').")</a>";
3cd4239a 5365 } */
0cacc891 5366
39f3c580 5367 print $labels_str;
0cacc891 5368
d00f22ac 5369 if (!get_pref($link, 'VFEED_GROUP_BY_FEED')) {
6cfea5c7
AD
5370 if ($line["feed_title"]) {
5371 print "&nbsp;(<a href='javascript:viewfeed($feed_id)'>".$line["feed_title"]."</a>)";
5372 }
3de0261a
AD
5373 }
5374
5daa24f2 5375 print "</span></div>";
3de0261a 5376
3cd4239a
AD
5377 if ($show_excerpt) {
5378 print "<div class=\"cdmExcerpt\" id=\"CEXC-$id\"
5379 onclick=\"cdmExpandArticle($id)\"
5380 title=\"".__('Click to expand article')."\">";
c9efd838
AD
5381
5382 $content_preview = trim(truncate_string(strip_tags($line["content_preview"]), 100));
5383
5384 if (strlen($content_preview) != 0) {
5385 print $content_preview;
5386 } else {
5387 print __('Click to expand article');
5388 }
3cd4239a
AD
5389 print "</div>";
5390 }
5391
5392 print "<div class=\"cdmContent\"
5393 onclick=\"cdmClicked($id)\"
5394 id=\"CICD-$id\" $cdm_cstyle>";
a04c8e8d 5395
494a64ea
AD
5396 if ($line["orig_feed_id"]) {
5397
5398 $tmp_result = db_query($link, "SELECT * FROM ttrss_archived_feeds
5399 WHERE id = ".$line["orig_feed_id"]);
5400
5401 if (db_num_rows($tmp_result) != 0) {
5402
5403 print "<div clear='both'>";
5404 print __("Originally from:");
5405
5406 print "&nbsp;";
5407
5408 $tmp_line = db_fetch_assoc($tmp_result);
5409
5410 print "<a target='_blank'
5411 href=' " . htmlspecialchars($tmp_line['site_url']) . "'>" .
5412 $tmp_line['title'] . "</a>";
5413
5414 print "&nbsp;";
5415
5416 print "<a target='_blank' href='" . htmlspecialchars($tmp_line['feed_url']) . "'>";
5417 print "<img title='".__('Feed URL')."'class='tinyFeedIcon' src='images/pub_set.gif'></a>";
5418
5419 print "</div>";
5420 }
5421 }
5422
0cacc891 5423// print "<div class=\"cdmInnerContent\" id=\"CICD-$id\" $cdm_cstyle>";
621ffb00 5424
c7e51de1
AD
5425 print "<div id=\"POSTNOTE-$id\">";
5426 if ($line['note']) {
5427 print format_article_note($id, $line['note']);
5428 }
5429 print "</div>";
5430
54e61a68
AD
5431 print sanitize_rss($link, $line["content_preview"]);
5432
c54526fe 5433 $article_content = $line["content_preview"];
3c66b582
AD
5434
5435 $e_result = db_query($link, "SELECT * FROM ttrss_enclosures WHERE
4752b041 5436 post_id = '$id' AND content_url != ''");
3c66b582
AD
5437
5438 if (db_num_rows($e_result) > 0) {
3c66b582 5439
a3eeb471 5440 $entries_html = array();
3c66b582
AD
5441 $entries = array();
5442
5443 while ($e_line = db_fetch_assoc($e_result)) {
5444
5445 $url = $e_line["content_url"];
4752b041
AD
5446 $ctype = $e_line["content_type"];
5447 if (!$ctype) $ctype = __("unknown type");
3c66b582
AD
5448
5449 $filename = substr($url, strrpos($url, "/")+1);
5450
51682b23 5451 $entry = format_inline_player($link, $url, $ctype);
8dccabed 5452
51682b23 5453 $entry .= " <a target=\"_blank\" href=\"" . htmlspecialchars($url) . "\">" .
4752b041 5454 $filename . " (" . $ctype . ")" . "</a>";
3c66b582 5455
a3eeb471
AD
5456 array_push($entries_html, $entry);
5457
5458 $entry = array();
5459
5460 $entry["type"] = $ctype;
5461 $entry["filename"] = $filename;
5462 $entry["url"] = $url;
5463
3c66b582
AD
5464 array_push($entries, $entry);
5465 }
5466
54e61a68
AD
5467 $tmp_result = db_query($link, "SELECT always_display_enclosures FROM
5468 ttrss_feeds WHERE id = ".$line['feed_id']." AND owner_uid = ".$_SESSION["uid"]);
5469
5470 $always_display_enclosures = db_fetch_result($tmp_result, 0, "always_display_enclosures");
5471
fbaca246
AD
5472 if (!get_pref($link, "STRIP_IMAGES")) {
5473 if ($always_display_enclosures || !preg_match("/img/i", $article_content)) {
5474 foreach ($entries as $entry) {
5475 if (preg_match("/image/", $entry["type"])) {
5476 print "<p><img
5477 alt=\"".htmlspecialchars($entry["filename"])."\"
5478 src=\"" .htmlspecialchars($entry["url"]) . "\"></p>";
5479 }
a3eeb471
AD
5480 }
5481 }
5482 }
5483
5484 print "<div class=\"cdmEnclosures\">";
5485
5486 if (db_num_rows($e_result) == 1) {
5487 print __("Attachment:") . " ";
5488 } else {
5489 print __("Attachments:") . " ";
5490 }
5491
5492 print join(", ", $entries_html);
3c66b582
AD
5493
5494 print "</div>";
5495 }
5496
a3eeb471 5497
0cacc891
AD
5498 print "<br clear='both'>";
5499// print "</div>";
a04c8e8d 5500
0cacc891 5501/* if (!$expand_cdm) {
12f5d8fe
AD
5502 print "<a id=\"CICH-$id\"
5503 href=\"javascript:cdmExpandArticle($id)\">
5504 Show article</a>";
0cacc891 5505 } */
a04c8e8d 5506
0cacc891 5507 print "</div>";
3de0261a 5508
e2ccbfab 5509 print "<div class=\"cdmFooter\"><span class='s0'>";
3de0261a 5510
e2ccbfab 5511 /* print "<div class=\"markedPic\">Star it: $marked_pic</div>"; */
3de0261a 5512
e2ccbfab
AD
5513 print __("Select:").
5514 " <input type=\"checkbox\" onclick=\"toggleSelectRowById(this,
3de0261a
AD
5515 'RROW-$id')\" class=\"feedCheckBox\" id=\"RCHK-$id\">";
5516
c7e51de1
AD
5517 print "</span><span class='s1'>$marked_pic&nbsp;";
5518 print "$published_pic&nbsp;";
5519 print "<img src=\"images/art-zoom.png\" class='tagsPic'
eedfb635
AD
5520 onclick=\"zoomToArticle($id)\"
5521 style=\"cursor : pointer\"
5522 alt='Zoom'
c7e51de1
AD
5523 title='".__('Show article summary in new window')."'>&nbsp;";
5524
5525 $note_escaped = htmlspecialchars($line['note'], ENT_QUOTES);
5526
5527 print "<img src=\"images/art-pub-note.png\" class='tagsPic'
5528 style=\"cursor : pointer\" style=\"cursor : pointer\"
5529 onclick=\"publishWithNote($id, '$note_escaped')\"
5530 alt='PubNote' title='".__('Publish article with a note')."'>";
5531
5532 print "</span>";
e2ccbfab 5533
307d187c 5534 $tags_str = format_tags_string(get_article_tags($link, $id), $id);
e2ccbfab 5535
5f014cf1 5536 print "<span class='s1'>
e9823609
AD
5537 <img class='tagsPic' src='".theme_image($link,
5538 'images/tag.png')."' alt='Tags' title='Tags'>
307d187c
AD
5539 <span id=\"ATSTR-$id\">$tags_str</span>
5540 <a title=\"".__('Edit tags for this article')."\"
5541 href=\"javascript:editArticleTags($id, $feed_id, true)\">(+)</a>";
3de0261a 5542
e2ccbfab 5543 print "</span>";
3de0261a 5544
c7e51de1 5545 print "<span class='s2'><a class=\"cdmToggleLink\"
e2ccbfab 5546 href=\"javascript:toggleUnread($id)\">
c7e51de1 5547 ".__('toggle unread')."</a></span>";
3de0261a 5548
e2ccbfab 5549 print "</div>";
3de0261a
AD
5550 print "</div>";
5551
5552 }
5553
5554 ++$lnum;
5555 }
5556
ac541432 5557 if (!get_pref($link, 'COMBINED_DISPLAY_MODE') && !$offset) {
3de0261a
AD
5558 print "</table>";
5559 }
5560
3de0261a 5561 } else {
93c841c4
AD
5562 $message = "";
5563
5564 switch ($view_mode) {
5565 case "unread":
5566 $message = __("No unread articles found to display.");
5567 break;
8b09eac8
AD
5568 case "updated":
5569 $message = __("No updated articles found to display.");
5570 break;
93c841c4
AD
5571 case "marked":
5572 $message = __("No starred articles found to display.");
5573 break;
5574 default:
215af892
AD
5575 if ($feed < -10) {
5576 $message = __("No articles found to display. You can assign articles to labels manually (see the Actions menu above) or use a filter.");
5577 } else {
5578 $message = __("No articles found to display.");
5579 }
93c841c4
AD
5580 }
5581
5582 if (!$offset) print "<div class='whiteBox'>$message</div>";
3de0261a
AD
5583 }
5584
ac541432
AD
5585 if (!$offset) {
5586 print "</div>";
5587 print "</div>";
5588 }
3de0261a 5589
081e527d 5590 return array($topmost_article_ids, $headlines_count, $feed, $disable_cache, $vgroup_last_feed);
3de0261a 5591 }
0979b696
AD
5592
5593// from here: http://www.roscripts.com/Create_tag_cloud-71.html
5594
5595 function printTagCloud($link) {
35a03bdd 5596
0979b696
AD
5597 $query = "SELECT tag_name, COUNT(post_int_id) AS count
5598 FROM ttrss_tags WHERE owner_uid = ".$_SESSION["uid"]."
b31af972 5599 GROUP BY tag_name ORDER BY count DESC LIMIT 50";
0979b696
AD
5600
5601 $result = db_query($link, $query);
5602
5603 $tags = array();
5604
5605 while ($line = db_fetch_assoc($result)) {
5606 $tags[$line["tag_name"]] = $line["count"];
5607 }
5608
5609 ksort($tags);
5610
5611 $max_size = 32; // max font size in pixels
4548a580 5612 $min_size = 11; // min font size in pixels
0979b696
AD
5613
5614 // largest and smallest array values
5615 $max_qty = max(array_values($tags));
5616 $min_qty = min(array_values($tags));
5617
5618 // find the range of values
5619 $spread = $max_qty - $min_qty;
5620 if ($spread == 0) { // we don't want to divide by zero
5621 $spread = 1;
5622 }
5623
5624 // set the font-size increment
5625 $step = ($max_size - $min_size) / ($spread);
5626
5627 // loop through the tag array
5628 foreach ($tags as $key => $value) {
5629 // calculate font-size
5630 // find the $value in excess of $min_qty
5631 // multiply by the font-size increment ($size)
5632 // and add the $min_size set above
5633 $size = round($min_size + (($value - $min_qty) * $step));
546ffab4
AD
5634
5635 $key_escaped = str_replace("'", "\\'", $key);
5636
5637 echo "<a href=\"javascript:viewfeed('$key_escaped') \" style=\"font-size: " .
0979b696
AD
5638 $size . "px\" title=\"$value articles tagged with " .
5639 $key . '">' . $key . '</a> ';
5640 }
5641 }
46921916
AD
5642
5643 function print_checkpoint($n, $s) {
5644 $ts = getmicrotime();
5645 echo sprintf("<!-- CP[$n] %.4f seconds -->", $ts - $s);
5646 return $ts;
5647 }
14b6c54b
AD
5648
5649 function sanitize_tag($tag) {
5650 $tag = trim($tag);
5651
5652 $tag = mb_strtolower($tag, 'utf-8');
5653
0c3d1c68
AD
5654 $tag = preg_replace('/[\"\+\>\<]/', "", $tag);
5655
5656// $tag = str_replace('"', "", $tag);
5657// $tag = str_replace("+", " ", $tag);
14b6c54b
AD
5658 $tag = str_replace("technorati tag: ", "", $tag);
5659
5660 return $tag;
5661 }
e4f4b46f
AD
5662
5663 function generate_publish_key() {
5664 return sha1(uniqid(rand(), true));
5665 }
5666
f56e3080
AD
5667 function article_publish_url($link) {
5668
e2749781
AD
5669 $url_path = "";
5670
5671
5672 if ($_SERVER['HTTPS'] != "on") {
5673 $url_path = "http://";
5674 } else {
5675 $url_path = "https://";
5676 }
f56e3080 5677
e2749781 5678 $url_path .= $_SERVER['HTTP_HOST'].dirname($_SERVER['PHP_SELF']);
d9084cf2
AD
5679 $url_path .= "/backend.php?op=publish&key=" .
5680 get_pref($link, "_PREFS_PUBLISH_KEY", $_SESSION["uid"]);
f56e3080
AD
5681
5682 return $url_path;
5683 }
5684
45004d43
AD
5685 /**
5686 * Purge a feed contents, marked articles excepted.
5687 *
5688 * @param mixed $link The database connection.
5689 * @param integer $id The id of the feed to purge.
5690 * @return void
5691 */
d1f0c584 5692 function clear_feed_articles($link, $id) {
e04c18a2
AD
5693
5694 if ($id != 0) {
5695 $result = db_query($link, "DELETE FROM ttrss_user_entries
a8ae1b9a 5696 WHERE feed_id = '$id' AND marked = false AND owner_uid = " . $_SESSION["uid"]);
e04c18a2
AD
5697 } else {
5698 $result = db_query($link, "DELETE FROM ttrss_user_entries
5699 WHERE feed_id IS NULL AND marked = false AND owner_uid = " . $_SESSION["uid"]);
5700 }
d1f0c584
AD
5701
5702 $result = db_query($link, "DELETE FROM ttrss_entries WHERE
5703 (SELECT COUNT(int_id) FROM ttrss_user_entries WHERE ref_id = id) = 0");
ced46404
AD
5704
5705 ccache_update($link, $id, $_SESSION['uid']);
45004d43
AD
5706 } // function clear_feed_articles
5707
5708 /**
5709 * Compute the Mozilla Firefox feed adding URL from server HOST and REQUEST_URI.
5710 *
5711 * @return string The Mozilla Firefox feed adding URL.
5712 */
5713 function add_feed_url() {
d70c5ae4 5714 $url_path = ($_SERVER['HTTPS'] != "on" ? 'http://' : 'https://') . $_SERVER["HTTP_HOST"] . parse_url($_SERVER["REQUEST_URI"], PHP_URL_PATH);
755a43ee
AD
5715 $url_path .= "?op=pref-feeds&quiet=1&subop=add&feed_url=%s";
5716 return $url_path;
45004d43
AD
5717 } // function add_feed_url
5718
5719 /**
5720 * Encrypt a password in SHA1.
5721 *
5722 * @param string $pass The password to encrypt.
5723 * @param string $login A optionnal login.
5724 * @return string The encrypted password.
5725 */
1a9f4d3c
AD
5726 function encrypt_password($pass, $login = '') {
5727 if ($login) {
5728 return "SHA1X:" . sha1("$login:$pass");
5729 } else {
5730 return "SHA1:" . sha1($pass);
5731 }
45004d43
AD
5732 } // function encrypt_password
5733
5734 /**
5735 * Update a feed batch.
5736 * Used by daemons to update n feeds by run.
5737 * Only update feed needing a update, and not being processed
5738 * by another process.
5739 *
5740 * @param mixed $link Database link
5741 * @param integer $limit Maximum number of feeds in update batch. Default to DAEMON_FEED_LIMIT.
5742 * @param boolean $from_http Set to true if you call this function from http to disable cli specific code.
5743 * @param boolean $debug Set to false to disable debug output. Default to true.
5744 * @return void
5745 */
5746 function update_daemon_common($link, $limit = DAEMON_FEED_LIMIT, $from_http = false, $debug = true) {
5747 // Process all other feeds using last_updated and interval parameters
5748
5749 // Test if the user has loggued in recently. If not, it does not update its feeds.
5750 if (DAEMON_UPDATE_LOGIN_LIMIT > 0) {
5751 if (DB_TYPE == "pgsql") {
5752 $login_thresh_qpart = "AND ttrss_users.last_login >= NOW() - INTERVAL '".DAEMON_UPDATE_LOGIN_LIMIT." days'";
5753 } else {
5754 $login_thresh_qpart = "AND ttrss_users.last_login >= DATE_SUB(NOW(), INTERVAL ".DAEMON_UPDATE_LOGIN_LIMIT." DAY)";
5755 }
5756 } else {
5757 $login_thresh_qpart = "";
5758 }
5759
5760 // Test if the feed need a update (update interval exceded).
5761 if (DB_TYPE == "pgsql") {
5762 $update_limit_qpart = "AND ((
5763 ttrss_feeds.update_interval = 0
5764 AND ttrss_feeds.last_updated < NOW() - CAST((ttrss_user_prefs.value || ' minutes') AS INTERVAL)
5765 ) OR (
5766 ttrss_feeds.update_interval > 0
5767 AND ttrss_feeds.last_updated < NOW() - CAST((ttrss_feeds.update_interval || ' minutes') AS INTERVAL)
da4caf5d 5768 ) OR ttrss_feeds.last_updated IS NULL)";
45004d43
AD
5769 } else {
5770 $update_limit_qpart = "AND ((
5771 ttrss_feeds.update_interval = 0
5772 AND ttrss_feeds.last_updated < DATE_SUB(NOW(), INTERVAL CONVERT(ttrss_user_prefs.value, SIGNED INTEGER) MINUTE)
5773 ) OR (
5774 ttrss_feeds.update_interval > 0
5775 AND ttrss_feeds.last_updated < DATE_SUB(NOW(), INTERVAL ttrss_feeds.update_interval MINUTE)
da4caf5d 5776 ) OR ttrss_feeds.last_updated IS NULL)";
45004d43
AD
5777 }
5778
5779 // Test if feed is currently being updated by another process.
5780 if (DB_TYPE == "pgsql") {
5781 $updstart_thresh_qpart = "AND (ttrss_feeds.last_update_started IS NULL OR ttrss_feeds.last_update_started < NOW() - INTERVAL '120 seconds')";
5782 } else {
5783 $updstart_thresh_qpart = "AND (ttrss_feeds.last_update_started IS NULL OR ttrss_feeds.last_update_started < DATE_SUB(NOW(), INTERVAL 120 SECOND))";
5784 }
5785
5786 // Test if there is a limit to number of updated feeds
5787 $query_limit = "";
5788 if($limit) $query_limit = sprintf("LIMIT %d", $limit);
5789
51b8c957
AD
5790 $random_qpart = sql_random_function();
5791
45004d43
AD
5792 // We search for feed needing update.
5793 $result = db_query($link, "SELECT ttrss_feeds.feed_url,ttrss_feeds.id, ttrss_feeds.owner_uid,
fc2b26a6 5794 ".SUBSTRING_FOR_DATE."(ttrss_feeds.last_updated,1,19) AS last_updated,
45004d43
AD
5795 ttrss_feeds.update_interval
5796 FROM
5797 ttrss_feeds, ttrss_users, ttrss_user_prefs
5798 WHERE
5799 ttrss_feeds.owner_uid = ttrss_users.id
5800 AND ttrss_users.id = ttrss_user_prefs.owner_uid
5801 AND ttrss_user_prefs.pref_name = 'DEFAULT_UPDATE_INTERVAL'
5802 $login_thresh_qpart $update_limit_qpart
51b8c957
AD
5803 $updstart_thresh_qpart
5804 ORDER BY $random_qpart $query_limit");
45004d43
AD
5805
5806 $user_prefs_cache = array();
5807
5808 if($debug) _debug(sprintf("Scheduled %d feeds to update...\n", db_num_rows($result)));
5809
5810 // Here is a little cache magic in order to minimize risk of double feed updates.
5811 $feeds_to_update = array();
5812 while ($line = db_fetch_assoc($result)) {
5813 $feeds_to_update[$line['id']] = $line;
5814 }
5815
5816 // We update the feed last update started date before anything else.
5817 // There is no lag due to feed contents downloads
5818 // It prevent an other process to update the same feed.
5819 $feed_ids = array_keys($feeds_to_update);
5820 if($feed_ids) {
5821 db_query($link, sprintf("UPDATE ttrss_feeds SET last_update_started = NOW()
5822 WHERE id IN (%s)", implode(',', $feed_ids)));
5823 }
5824
5825 // For each feed, we call the feed update function.
5826 while ($line = array_pop($feeds_to_update)) {
5827
5828 if($debug) _debug("Feed: " . $line["feed_url"] . ", " . $line["last_updated"]);
5829
5830 // We setup a alarm to alert if the feed take more than 300s to update.
5831 // => HANG alarm.
9a91a51e 5832 if(!$from_http && function_exists('pcntl_alarm')) pcntl_alarm(300);
45004d43
AD
5833 update_rss_feed($link, $line["feed_url"], $line["id"], true);
5834 // Cancel the alarm (the update went well)
9a91a51e 5835 if(!$from_http && function_exists('pcntl_alarm')) pcntl_alarm(0);
45004d43
AD
5836
5837 sleep(1); // prevent flood (FIXME make this an option?)
5838 }
5839
0e0dd486
AD
5840 // Send feed digests by email if needed.
5841 if (DAEMON_SENDS_DIGESTS) send_headlines_digests($link);
5842
5843 purge_orphans($link);
45004d43
AD
5844
5845 } // function update_daemon_common
1a9f4d3c 5846
621ffb00
AD
5847 function sanitize_article_content($text) {
5848 # we don't support CDATA sections in articles, they break our own escaping
5849 $text = preg_replace("/\[\[CDATA/", "", $text);
5850 $text = preg_replace("/\]\]\>/", "", $text);
5851 return $text;
5852 }
fee840fb
AD
5853
5854 function load_filters($link, $feed, $owner_uid, $action_id = false) {
5855 $filters = array();
5856
5857 if ($action_id) $ftype_query_part = "action_id = '$action_id' AND";
5858
5859 $result = db_query($link, "SELECT reg_exp,
5860 ttrss_filter_types.name AS name,
5861 ttrss_filter_actions.name AS action,
5862 inverse,
44d0e774
AD
5863 action_param,
5864 filter_param
fee840fb
AD
5865 FROM ttrss_filters,ttrss_filter_types,ttrss_filter_actions WHERE
5866 enabled = true AND
5867 $ftype_query_part
5868 owner_uid = $owner_uid AND
5869 ttrss_filter_types.id = filter_type AND
5870 ttrss_filter_actions.id = action_id AND
5871 (feed_id IS NULL OR feed_id = '$feed') ORDER BY reg_exp");
5872
5873 while ($line = db_fetch_assoc($result)) {
5874 if (!$filters[$line["name"]]) $filters[$line["name"]] = array();
5875 $filter["reg_exp"] = $line["reg_exp"];
5876 $filter["action"] = $line["action"];
5877 $filter["action_param"] = $line["action_param"];
44d0e774 5878 $filter["filter_param"] = $line["filter_param"];
fee840fb
AD
5879 $filter["inverse"] = sql_bool_to_bool($line["inverse"]);
5880
5881 array_push($filters[$line["name"]], $filter);
5882 }
5883
5884 return $filters;
5885 }
1e36af0c
AD
5886
5887 function get_score_pic($score) {
1cce3aca 5888 if ($score > 100) {
1e36af0c 5889 return "score_high.png";
1cce3aca 5890 } else if ($score > 0) {
883fee8d 5891 return "score_half_high.png";
1cce3aca 5892 } else if ($score < -100) {
883fee8d 5893 return "score_low.png";
1cce3aca 5894 } else if ($score < 0) {
883fee8d 5895 return "score_half_low.png";
1e36af0c 5896 } else {
883fee8d 5897 return "score_neutral.png";
1e36af0c
AD
5898 }
5899 }
ec92c9d1 5900
0745839a 5901 function rounded_table_start($classname, $header = "&nbsp;") {
ec92c9d1 5902 print "<table width='100%' class='$classname' cellspacing='0' cellpadding='0'>";
74d5c8fa 5903 print "<tr><td class='c1'>&nbsp;</td><td class='top'>$header</td><td class='c2'>&nbsp;</td></tr>";
ec92c9d1
AD
5904 print "<tr><td class='left'>&nbsp;</td><td class='content'>";
5905 }
5906
0745839a 5907 function rounded_table_end($footer = "&nbsp;") {
ec92c9d1 5908 print "</td><td class='right'>&nbsp;</td></tr>";
74d5c8fa 5909 print "<tr><td class='c4'>&nbsp;</td><td class='bottom'>$footer</td><td class='c3'>&nbsp;</td></tr>";
ec92c9d1
AD
5910 print "</table>";
5911 }
5912
7defa089
AD
5913 function feed_has_icon($id) {
5914 return is_file(ICONS_DIR . "/$id.ico") && filesize(ICONS_DIR . "/$id.ico") > 0;
5915 }
f29ba148
AD
5916
5917 function init_connection($link) {
5918 if (DB_TYPE == "pgsql") {
6fc720fd 5919 pg_query($link, "set client_encoding = 'UTF-8'");
f29ba148 5920 pg_set_client_encoding("UNICODE");
045d0ab8 5921 pg_query($link, "set datestyle = 'ISO, european'");
f29ba148
AD
5922 } else {
5923 if (defined('MYSQL_CHARSET') && MYSQL_CHARSET) {
5924 db_query($link, "SET NAMES " . MYSQL_CHARSET);
5925 // db_query($link, "SET CHARACTER SET " . MYSQL_CHARSET);
5926 }
5927 }
5928 }
5e96ca9d
AD
5929
5930 function update_feedbrowser_cache($link) {
5931
931dcbc1 5932 $result = db_query($link, "SELECT feed_url,title, COUNT(id) AS subscribers
5e96ca9d
AD
5933 FROM ttrss_feeds WHERE (SELECT COUNT(id) = 0 FROM ttrss_feeds AS tf
5934 WHERE tf.feed_url = ttrss_feeds.feed_url
5935 AND (private IS true OR feed_url LIKE '%:%@%/%'))
d460f7aa 5936 GROUP BY feed_url, title ORDER BY subscribers DESC LIMIT 1000");
5e96ca9d
AD
5937
5938 db_query($link, "BEGIN");
5939
5940 db_query($link, "DELETE FROM ttrss_feedbrowser_cache");
5941
5942 $count = 0;
5943
5944 while ($line = db_fetch_assoc($result)) {
5945 $subscribers = db_escape_string($line["subscribers"]);
5946 $feed_url = db_escape_string($line["feed_url"]);
931dcbc1
AD
5947 $title = db_escape_string($line["title"]);
5948
5949 $tmp_result = db_query($link, "SELECT subscribers FROM
5950 ttrss_feedbrowser_cache WHERE feed_url = '$feed_url'");
5951
5952 if (db_num_rows($tmp_result) == 0) {
5953
5954 db_query($link, "INSERT INTO ttrss_feedbrowser_cache
5955 (feed_url, title, subscribers) VALUES ('$feed_url',
5956 '$title', '$subscribers')");
5957
5958 ++$count;
5959
5960 }
5e96ca9d 5961
5e96ca9d
AD
5962 }
5963
5964 db_query($link, "COMMIT");
5965
5966 return $count;
5967
5968 }
2627f2d0 5969
8a4c759e 5970 function ccache_zero($link, $feed_id, $owner_uid) {
2627f2d0
AD
5971 db_query($link, "UPDATE ttrss_counters_cache SET
5972 value = 0, updated = NOW() WHERE
5973 feed_id = '$feed_id' AND owner_uid = '$owner_uid'");
8a4c759e 5974 }
2627f2d0 5975
ad0056a8
AD
5976 function ccache_zero_all($link, $owner_uid) {
5977 db_query($link, "UPDATE ttrss_counters_cache SET
5978 value = 0 WHERE owner_uid = '$owner_uid'");
5979
5980 db_query($link, "UPDATE ttrss_cat_counters_cache SET
5981 value = 0 WHERE owner_uid = '$owner_uid'");
5982 }
5983
c7e51de1
AD
5984 function ccache_remove($link, $feed_id, $owner_uid, $is_cat = false) {
5985
5986 if (!$is_cat) {
5987 $table = "ttrss_counters_cache";
5988 } else {
5989 $table = "ttrss_cat_counters_cache";
5990 }
5991
5992 db_query($link, "DELETE FROM $table WHERE
5993 feed_id = '$feed_id' AND owner_uid = '$owner_uid'");
5994
5995 }
5996
5f4f7adf
AD
5997 function ccache_update_all($link, $owner_uid) {
5998
5999 if (get_pref($link, 'ENABLE_FEED_CATS', $owner_uid)) {
6000
6001 $result = db_query($link, "SELECT feed_id FROM ttrss_cat_counters_cache
6002 WHERE feed_id > 0 AND owner_uid = '$owner_uid'");
6003
6004 while ($line = db_fetch_assoc($result)) {
6005 ccache_update($link, $line["feed_id"], $owner_uid, true);
6006 }
6007
c5ffeb61
AD
6008 /* We have to manually include category 0 */
6009
6010 ccache_update($link, 0, $owner_uid, true);
6011
8a4c759e 6012 } else {
5f4f7adf
AD
6013 $result = db_query($link, "SELECT feed_id FROM ttrss_counters_cache
6014 WHERE feed_id > 0 AND owner_uid = '$owner_uid'");
8a4c759e 6015
5f4f7adf
AD
6016 while ($line = db_fetch_assoc($result)) {
6017 print ccache_update($link, $line["feed_id"], $owner_uid);
6018
6019 }
6020
6021 }
6022 }
2627f2d0 6023
6b49a3dd
AD
6024 function ccache_find($link, $feed_id, $owner_uid, $is_cat = false,
6025 $no_update = false) {
8a4c759e 6026
5c432ba4
AD
6027 if (!is_numeric($feed_id)) return;
6028
8a4c759e
AD
6029 if (!$is_cat) {
6030 $table = "ttrss_counters_cache";
32d2181b
AD
6031 if ($feed_id > 0) {
6032 $tmp_result = db_query($link, "SELECT owner_uid FROM ttrss_feeds
6033 WHERE id = '$feed_id'");
6034 $owner_uid = db_fetch_result($tmp_result, 0, "owner_uid");
6035 }
8a4c759e
AD
6036 } else {
6037 $table = "ttrss_cat_counters_cache";
6038 }
6039
6040 if (DB_TYPE == "pgsql") {
6041 $date_qpart = "updated > NOW() - INTERVAL '15 minutes'";
6042 } else if (DB_TYPE == "mysql") {
6043 $date_qpart = "updated > DATE_SUB(NOW(), INTERVAL 15 MINUTE)";
6044 }
6045
6046 $result = db_query($link, "SELECT value FROM $table
6047 WHERE owner_uid = '$owner_uid' AND feed_id = '$feed_id'
37fb651d 6048 LIMIT 1");
2627f2d0
AD
6049
6050 if (db_num_rows($result) == 1) {
6051 return db_fetch_result($result, 0, "value");
6052 } else {
6b49a3dd
AD
6053 if ($no_update) {
6054 return -1;
6055 } else {
6056 return ccache_update($link, $feed_id, $owner_uid, $is_cat);
6057 }
2627f2d0
AD
6058 }
6059
6060 }
6061
6c2a9b9e 6062 function ccache_update($link, $feed_id, $owner_uid, $is_cat = false,
6b49a3dd
AD
6063 $update_pcat = true) {
6064
5c432ba4
AD
6065 if (!is_numeric($feed_id)) return;
6066
32d2181b 6067 if (!$is_cat && $feed_id > 0) {
2e93b64c
AD
6068 $tmp_result = db_query($link, "SELECT owner_uid FROM ttrss_feeds
6069 WHERE id = '$feed_id'");
6070 $owner_uid = db_fetch_result($tmp_result, 0, "owner_uid");
6071 }
6072
43ead405
AD
6073 $prev_unread = ccache_find($link, $feed_id, $owner_uid, $is_cat, true);
6074
6075 /* When updating a label, all we need to do is recalculate feed counters
6076 * because labels are not cached */
c98e43db
AD
6077
6078 if ($feed_id < 0) {
43ead405
AD
6079 ccache_update_all($link, $owner_uid);
6080 return;
c98e43db
AD
6081 }
6082
8a4c759e
AD
6083 if (!$is_cat) {
6084 $table = "ttrss_counters_cache";
6085 } else {
6086 $table = "ttrss_cat_counters_cache";
6087 }
6088
b6d486a3 6089 if ($is_cat && $feed_id >= 0) {
37fb651d
AD
6090 if ($feed_id != 0) {
6091 $cat_qpart = "cat_id = '$feed_id'";
6092 } else {
6093 $cat_qpart = "cat_id IS NULL";
6094 }
6095
6b49a3dd
AD
6096 /* Recalculate counters for child feeds */
6097
6098 $result = db_query($link, "SELECT id FROM ttrss_feeds
6099 WHERE owner_uid = '$owner_uid' AND $cat_qpart");
6100
6101 while ($line = db_fetch_assoc($result)) {
6102 ccache_update($link, $line["id"], $owner_uid, false, false);
6103 }
6104
37fb651d
AD
6105 $result = db_query($link, "SELECT SUM(value) AS sv
6106 FROM ttrss_counters_cache, ttrss_feeds
6107 WHERE id = feed_id AND $cat_qpart AND
6108 ttrss_feeds.owner_uid = '$owner_uid'");
6109
51e196de 6110 $unread = (int) db_fetch_result($result, 0, "sv");
37fb651d 6111
f55b0b12
AD
6112 } else {
6113 $unread = (int) getFeedArticles($link, $feed_id, $is_cat, true, $owner_uid);
37fb651d 6114 }
2627f2d0 6115
c7e51de1
AD
6116 db_query($link, "BEGIN");
6117
8a4c759e 6118 $result = db_query($link, "SELECT feed_id FROM $table
2627f2d0
AD
6119 WHERE owner_uid = '$owner_uid' AND feed_id = '$feed_id' LIMIT 1");
6120
6121 if (db_num_rows($result) == 1) {
8a4c759e 6122 db_query($link, "UPDATE $table SET
2627f2d0
AD
6123 value = '$unread', updated = NOW() WHERE
6124 feed_id = '$feed_id' AND owner_uid = '$owner_uid'");
6125
6126 } else {
8a4c759e 6127 db_query($link, "INSERT INTO $table
2627f2d0
AD
6128 (feed_id, value, owner_uid, updated)
6129 VALUES
6130 ($feed_id, $unread, $owner_uid, NOW())");
2627f2d0
AD
6131 }
6132
c7e51de1
AD
6133 db_query($link, "COMMIT");
6134
6b49a3dd 6135 if ($feed_id > 0 && $prev_unread != $unread) {
8a4c759e 6136
37fb651d 6137 if (!$is_cat) {
8a4c759e 6138
6b49a3dd 6139 /* Update parent category */
8a4c759e 6140
6b49a3dd 6141 if ($update_pcat) {
37fb651d 6142
6b49a3dd
AD
6143 $result = db_query($link, "SELECT cat_id FROM ttrss_feeds
6144 WHERE owner_uid = '$owner_uid' AND id = '$feed_id'");
8a4c759e 6145
6b49a3dd 6146 $cat_id = (int) db_fetch_result($result, 0, "cat_id");
37fb651d 6147
6b49a3dd 6148 ccache_update($link, $cat_id, $owner_uid, true);
6c2a9b9e 6149
6c2a9b9e 6150 }
8a4c759e 6151 }
5f4f7adf
AD
6152 } else if ($feed_id < 0) {
6153 ccache_update_all($link, $owner_uid);
8a4c759e
AD
6154 }
6155
6156 return $unread;
2627f2d0 6157 }
ceb30ba4
AD
6158
6159 function label_find_id($link, $label, $owner_uid) {
6160 $result = db_query($link,
6161 "SELECT id FROM ttrss_labels2 WHERE caption = '$label'
6162 AND owner_uid = '$owner_uid' LIMIT 1");
6163
6164 if (db_num_rows($result) == 1) {
6165 return db_fetch_result($result, 0, "id");
6166 } else {
6167 return 0;
6168 }
6169 }
6170
814bff66 6171 function get_article_labels($link, $id) {
d721a547
AD
6172 global $memcache;
6173
814bff66 6174 $result = db_query($link,
2eb9c95c 6175 "SELECT DISTINCT label_id,caption,fg_color,bg_color
814bff66
AD
6176 FROM ttrss_labels2, ttrss_user_labels2
6177 WHERE id = label_id
6178 AND article_id = '$id'
e2549229
AD
6179 AND owner_uid = ".$_SESSION["uid"] . "
6180 ORDER BY caption");
814bff66 6181
d721a547
AD
6182 $obj_id = md5("LABELS:$id:" . $_SESSION["uid"]);
6183
814bff66
AD
6184 $rv = array();
6185
d721a547
AD
6186 if ($memcache && $obj = $memcache->get($obj_id)) {
6187 return $obj;
6188 } else {
6189 while ($line = db_fetch_assoc($result)) {
6190 $rk = array($line["label_id"], $line["caption"], $line["fg_color"],
6191 $line["bg_color"]);
6192 array_push($rv, $rk);
6193 }
6194 if ($memcache) $memcache->add($obj_id, $rv, 0, 3600);
814bff66
AD
6195 }
6196
6197 return $rv;
6198 }
6199
6200
b8a637f3
AD
6201 function label_find_caption($link, $label, $owner_uid) {
6202 $result = db_query($link,
6203 "SELECT caption FROM ttrss_labels2 WHERE id = '$label'
6204 AND owner_uid = '$owner_uid' LIMIT 1");
6205
6206 if (db_num_rows($result) == 1) {
6207 return db_fetch_result($result, 0, "caption");
6208 } else {
6209 return "";
6210 }
6211 }
6212
933ba4ee
AD
6213 function label_remove_article($link, $id, $label, $owner_uid) {
6214
6215 $label_id = label_find_id($link, $label, $owner_uid);
6216
6217 if (!$label_id) return;
6218
6219 $result = db_query($link,
6220 "DELETE FROM ttrss_user_labels2
6221 WHERE
6222 label_id = '$label_id' AND
6223 article_id = '$id'");
6224 }
6225
ceb30ba4
AD
6226 function label_add_article($link, $id, $label, $owner_uid) {
6227
d721a547
AD
6228 global $memcache;
6229
6230 if ($memcache) {
6231 $obj_id = md5("LABELS:$id:$owner_uid");
6232 $memcache->delete($obj_id);
6233 }
6234
ceb30ba4
AD
6235 $label_id = label_find_id($link, $label, $owner_uid);
6236
6237 if (!$label_id) return;
6238
6239 $result = db_query($link,
6240 "SELECT
6241 article_id FROM ttrss_labels2, ttrss_user_labels2
6242 WHERE
6243 label_id = id AND
6244 label_id = '$label_id' AND
6245 article_id = '$id' AND owner_uid = '$owner_uid'
6246 LIMIT 1");
6247
6248 if (db_num_rows($result) == 0) {
6249 db_query($link, "INSERT INTO ttrss_user_labels2
6250 (label_id, article_id) VALUES ('$label_id', '$id')");
6251 }
6252 }
1380f8ee
AD
6253
6254 function label_remove($link, $id, $owner_uid) {
d721a547
AD
6255 global $memcache;
6256
6257 if ($memcache) {
6258 $obj_id = md5("LABELS:$id:$owner_uid");
6259 $memcache->delete($obj_id);
6260 }
1380f8ee
AD
6261
6262 db_query($link, "BEGIN");
6263
6264 $result = db_query($link, "SELECT caption FROM ttrss_labels2
6265 WHERE id = '$id'");
6266
6267 $caption = db_fetch_result($result, 0, "caption");
6268
6269 $result = db_query($link, "DELETE FROM ttrss_labels2 WHERE id = '$id'
6270 AND owner_uid = " . $_SESSION["uid"]);
6271
6272 if (db_affected_rows($link, $result) != 0 && $caption) {
6273
6274 /* Disable filters that reference label being removed */
6275
6276 db_query($link, "UPDATE ttrss_filters SET
6277 enabled = false WHERE action_param = '$caption'
6278 AND action_id = 7
6279 AND owner_uid = " . $_SESSION["uid"]);
6280 }
6281
6282 db_query($link, "COMMIT");
6283 }
79c88e11 6284
6b2ee18d
AD
6285 function label_create($link, $caption) {
6286
6287 db_query($link, "BEGIN");
6288
6289 $result = false;
6290
6291 $result = db_query($link, "SELECT id FROM ttrss_labels2
6292 WHERE caption = '$caption' AND owner_uid = ". $_SESSION["uid"]);
6293
6294 if (db_num_rows($result) == 0) {
6295 $result = db_query($link,
6296 "INSERT INTO ttrss_labels2 (caption,owner_uid)
6297 VALUES ('$caption', '".$_SESSION["uid"]."')");
6298
6299 $result = db_affected_rows($link, $result) != 0;
6300 }
6301
6302 db_query($link, "COMMIT");
6303
6304 return $result;
6305 }
6306
79c88e11
AD
6307 function print_labels_headlines_dropdown($link, $feed_id) {
6308 print "<li onclick=\"javascript:addLabel()\">
6309 &nbsp;&nbsp;".__("Create label...")."</li>";
6310
6311 $result = db_query($link, "SELECT id, caption FROM ttrss_labels2 WHERE
6312 owner_uid = '".$_SESSION["uid"]."' ORDER BY caption");
6313
6314 while ($line = db_fetch_assoc($result)) {
6315
6316 $label_id = $line["id"];
6317 $label_caption = $line["caption"];
6318
6319 if ($feed_id < -10 && $feed_id == -11-$label_id) {
6320 print "<li id=\"LHDL-$id\"
6321 onclick=\"javascript:selectionRemoveLabel($label_id)\">
6322 &nbsp;&nbsp;$label_caption ".__('(remove)')."</li>";
6323 } else {
6324 print "<li id=\"LHDL-$id\"
6325 onclick=\"javascript:selectionAssignLabel($label_id)\">
6326 &nbsp;&nbsp;$label_caption</li>";
6327 }
6328 }
6329 }
307d187c
AD
6330
6331 function format_tags_string($tags, $id) {
6332
6333 $tags_str = "";
6334 $tags_nolinks_str = "";
6335
6336 $num_tags = 0;
6337
dce46cad 6338/* if (get_user_theme($link) == "3pane") {
307d187c
AD
6339 $tag_limit = 3;
6340 } else {
6341 $tag_limit = 6;
d9084cf2
AD
6342 } */
6343
6344 $tag_limit = 6;
307d187c
AD
6345
6346 $formatted_tags = array();
6347
6348 foreach ($tags as $tag) {
6349 $num_tags++;
6350 $tag_escaped = str_replace("'", "\\'", $tag);
6351
275a0af2
AD
6352 if (mb_strlen($tag) > 30) {
6353 $tag = truncate_string($tag, 30);
6354 }
6355
307d187c
AD
6356 $tag_str = "<a href=\"javascript:viewfeed('$tag_escaped')\">$tag</a>";
6357
6358 array_push($formatted_tags, $tag_str);
275a0af2
AD
6359
6360 $tmp_tags_str = implode(", ", $formatted_tags);
307d187c 6361
275a0af2 6362 if ($num_tags == $tag_limit || mb_strlen($tmp_tags_str) > 150) {
307d187c
AD
6363 break;
6364 }
6365 }
6366
6367 $tags_str = implode(", ", $formatted_tags);
6368
6369 if ($num_tags < count($tags)) {
6370 $tags_str .= ", &hellip;";
6371 }
6372
6373 if ($num_tags == 0) {
6374 $tags_str = __("no tags");
6375 }
6376
6377 return $tags_str;
6378
6379 }
2eb9c95c
AD
6380
6381 function format_article_labels($labels, $id) {
6382
6383 $labels_str = "";
6384
6385 foreach ($labels as $l) {
6386 $labels_str .= sprintf("<span class='hlLabelRef'
6387 style='color : %s; background-color : %s'>%s</span>",
6388 $l[2], $l[3], $l[1]);
6389 }
6390
6391 return $labels_str;
6392
6393 }
c7e51de1
AD
6394
6395 function format_article_note($id, $note) {
6396
6397 $note_escaped = htmlspecialchars($note, ENT_QUOTES);
6398
6399 $str = "<div class='articleNote'>";
db54143e 6400 $str .= $note;
c7e51de1
AD
6401 $str .= "<div class='articleNoteOps'>";
6402 $str .= "<a href=\"javascript:publishWithNote($id, '$note_escaped')\">".
6403 __('edit note')."</a>";
6404 $str .= "</div>";
c7e51de1
AD
6405 $str .= "</div>";
6406
6407 return $str;
6408 }
7f969260
AD
6409
6410 function toggle_collapse_cat($link, $cat_id) {
6411 if ($cat_id > 0) {
6412 db_query($link, "UPDATE ttrss_feed_categories SET
6413 collapsed = NOT collapsed WHERE id = '$cat_id' AND owner_uid = " .
6414 $_SESSION["uid"]);
6415 } else {
6416 $pref_name = '';
6417
6418 switch ($cat_id) {
6419 case -1:
6420 $pref_name = '_COLLAPSED_SPECIAL';
6421 break;
6422 case -2:
6423 $pref_name = '_COLLAPSED_LABELS';
6424 break;
6425 case 0:
6426 $pref_name = '_COLLAPSED_UNCAT';
6427 break;
6428 }
6429
6430 if ($pref_name) {
6431 if (get_pref($link, $pref_name)) {
6432 set_pref($link, $pref_name, 'false');
6433 } else {
6434 set_pref($link, $pref_name, 'true');
6435 }
6436 }
6437 }
6438 }
7e329f13
AD
6439
6440 function remove_feed($link, $id, $owner_uid) {
6441
6442 if ($id > 0) {
e04c18a2
AD
6443
6444 /* save starred articles in Archived feed */
6445
6446 db_query($link, "BEGIN");
6447
8056ec50
AD
6448 /* prepare feed if necessary */
6449
6450 $result = db_query($link, "SELECT id FROM ttrss_archived_feeds
6451 WHERE id = '$id'");
6452
6453 if (db_num_rows($result) == 0) {
6454 db_query($link, "INSERT INTO ttrss_archived_feeds
6455 (id, owner_uid, title, feed_url, site_url)
6456 SELECT id, owner_uid, title, feed_url, site_url from ttrss_feeds
6457 WHERE id = '$id'");
6458 }
6459
74d22f0c
AD
6460 db_query($link, "UPDATE ttrss_user_entries SET feed_id = NULL,
6461 orig_feed_id = '$id' WHERE feed_id = '$id' AND
e04c18a2
AD
6462 marked = true AND owner_uid = $owner_uid");
6463
6464 /* remove the feed */
6465
7e329f13
AD
6466 db_query($link, "DELETE FROM ttrss_feeds
6467 WHERE id = '$id' AND owner_uid = $owner_uid");
6468
e04c18a2
AD
6469 db_query($link, "COMMIT");
6470
69877646 6471/* if (file_exists(ICONS_DIR . "/$id.ico")) {
7e329f13 6472 unlink(ICONS_DIR . "/$id.ico");
69877646 6473 } */
7e329f13
AD
6474
6475 ccache_remove($link, $id, $owner_uid);
6476
6477 } else {
6478 label_remove($link, -11-$id, $owner_uid);
6479 ccache_remove($link, -11-$id, $owner_uid);
6480 }
6481 }
6482
6483 function remove_feed_category($link, $id, $owner_uid) {
6484
6485 db_query($link, "DELETE FROM ttrss_feed_categories
6486 WHERE id = '$id' AND owner_uid = $owner_uid");
6487
6488 ccache_remove($link, $id, $owner_uid, true);
6489 }
6490
16fdac16
AD
6491 function archive_article($link, $id, $owner_uid) {
6492 db_query($link, "BEGIN");
6493
6494 $result = db_query($link, "SELECT feed_id FROM ttrss_user_entries
6495 WHERE ref_id = '$id' AND owner_uid = $owner_uid");
6496
6497 if (db_num_rows($result) != 0) {
6498
6499 /* prepare the archived table */
6500
6501 $feed_id = (int) db_fetch_result($result, 0, "feed_id");
6502
6503 if ($feed_id) {
6504 $result = db_query($link, "SELECT id FROM ttrss_archived_feeds
6505 WHERE id = '$feed_id'");
6506
6507 if (db_num_rows($result) == 0) {
6508 db_query($link, "INSERT INTO ttrss_archived_feeds
6509 (id, owner_uid, title, feed_url, site_url)
6510 SELECT id, owner_uid, title, feed_url, site_url from ttrss_feeds
6511 WHERE id = '$feed_id'");
6512 }
6513
6514 db_query($link, "UPDATE ttrss_user_entries
6515 SET orig_feed_id = feed_id, feed_id = NULL
6516 WHERE ref_id = '$id' AND owner_uid = " . $_SESSION["uid"]);
6517 }
6518 }
6519
6520 db_query($link, "COMMIT");
6521 }
ab197ae1
AD
6522
6523 function getArticleFeed($link, $id) {
6524 $result = db_query($link, "SELECT feed_id FROM ttrss_user_entries
a545dc31 6525 WHERE ref_id = '$id' AND owner_uid = " . $_SESSION["uid"]);
ab197ae1
AD
6526
6527 if (db_num_rows($result) != 0) {
6528 return db_fetch_result($result, 0, "feed_id");
6529 } else {
6530 return 0;
6531 }
6532 }
a5819bb3
AD
6533
6534 function make_url_from_parts($parts) {
6535 $url = $parts['scheme'] . '://' . $parts['host'];
6536
6537 if ($parts['path']) $url .= $parts['path'];
6538 if ($parts['query']) $url .= '?' . $parts['query'];
6539
6540 return $url;
6541 }
6542
6543 function validate_feed_url($url) {
6544 $parts = parse_url($url);
6545
6546 return ($parts['scheme'] == 'http' || $parts['scheme'] == 'feed' || $parts['scheme'] == 'https');
6547
6548 }
d9084cf2 6549
be35798b
AD
6550 function get_article_enclosures($link, $id) {
6551
6552 global $memcache;
6553
6554 $query = "SELECT * FROM ttrss_enclosures
6555 WHERE post_id = '$id' AND content_url != ''";
6556
bd3f2ade 6557 $obj_id = md5("ENCLOSURES:$id");
be35798b
AD
6558
6559 $rv = array();
6560
bd3f2ade 6561 if ($memcache && $obj = $memcache->get($obj_id)) {
be35798b
AD
6562 $rv = $obj;
6563 } else {
6564 $result = db_query($link, $query);
6565
6566 if (db_num_rows($result) > 0) {
6567 while ($line = db_fetch_assoc($result)) {
6568 array_push($rv, $line);
6569 }
bd3f2ade 6570 if ($memcache) $memcache->add($obj_id, $rv, 0, 3600);
be35798b
AD
6571 }
6572 }
6573
6574 return $rv;
6575 }
6576
40d13c28 6577?>