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