]> git.wh0rd.org - tt-rss.git/blame - functions.php
check if moveToPost is defined before parsing n/p hotkeys (3)
[tt-rss.git] / functions.php
CommitLineData
40d13c28 1<?
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';
b619ff15 10 require_once 'db-prefs.php';
5bc0bd27 11 require_once 'compat.php';
af106b0e 12 require_once 'errors.php';
8911ac8b 13 require_once 'version.php';
40d13c28 14
7c5a308d
AD
15 if (RSS_BACKEND_TYPE == "magpie") {
16 require_once 'magpierss/rss_utils.inc';
17 } else if (RSS_BACKEND_TYPE == "simplepie") {
18 require_once 'simplepie/simplepie.inc';
19 }
387234f3 20
a3ee2a38
AD
21 define('MAGPIE_OUTPUT_ENCODING', 'UTF-8');
22
ad507f85
AD
23 function purge_feed($link, $feed_id, $purge_interval, $debug = false) {
24
25 $rows = -1;
4c193675 26
fefa6ca3 27 if (DB_TYPE == "pgsql") {
44e241cb 28/* $result = db_query($link, "DELETE FROM ttrss_user_entries WHERE
fefa6ca3 29 marked = false AND feed_id = '$feed_id' AND
35d8cf43 30 (SELECT date_entered FROM ttrss_entries WHERE
44e241cb
AD
31 id = ref_id) < NOW() - INTERVAL '$purge_interval days'"); */
32
6e7f8d26
AD
33 $pg_version = get_pgsql_version($link);
34
35 if (preg_match("/^7\./", $pg_version) || preg_match("/^8\.0/", $pg_version)) {
1e59ae35
AD
36
37 $result = db_query($link, "DELETE FROM ttrss_user_entries WHERE
38 ttrss_entries.id = ref_id AND
39 marked = false AND
40 feed_id = '$feed_id' AND
41 ttrss_entries.date_entered < NOW() - INTERVAL '$purge_interval days'");
42
43 } else {
44
45 $result = db_query($link, "DELETE FROM ttrss_user_entries
46 USING ttrss_entries
47 WHERE ttrss_entries.id = ref_id AND
48 marked = false AND
49 feed_id = '$feed_id' AND
fc774155 50 ttrss_entries.date_entered < NOW() - INTERVAL '$purge_interval days'");
1e59ae35 51 }
ad507f85
AD
52
53 $rows = pg_affected_rows($result);
54
fefa6ca3 55 } else {
1e59ae35 56
30f1746f 57/* $result = db_query($link, "DELETE FROM ttrss_user_entries WHERE
fefa6ca3 58 marked = false AND feed_id = '$feed_id' AND
35d8cf43 59 (SELECT date_entered FROM ttrss_entries WHERE
30f1746f
AD
60 id = ref_id) < DATE_SUB(NOW(), INTERVAL $purge_interval DAY)"); */
61
62 $result = db_query($link, "DELETE FROM ttrss_user_entries
63 USING ttrss_user_entries, ttrss_entries
64 WHERE ttrss_entries.id = ref_id AND
65 marked = false AND
66 feed_id = '$feed_id' AND
67 ttrss_entries.date_entered < DATE_SUB(NOW(), INTERVAL $purge_interval DAY)");
68
ad507f85
AD
69 $rows = mysql_affected_rows($link);
70
71 }
72
73 if ($debug) {
74 print "Purged feed $feed_id ($purge_interval): deleted $rows articles\n";
fefa6ca3
AD
75 }
76 }
77
44e241cb
AD
78 function global_purge_old_posts($link, $do_output = false, $limit = false) {
79
894ebcf5 80 $random_qpart = sql_random_function();
fefa6ca3 81
44e241cb
AD
82 if ($limit) {
83 $limit_qpart = "LIMIT $limit";
84 } else {
85 $limit_qpart = "";
86 }
87
fefa6ca3 88 $result = db_query($link,
44e241cb
AD
89 "SELECT id,purge_interval,owner_uid FROM ttrss_feeds
90 ORDER BY $random_qpart $limit_qpart");
fefa6ca3
AD
91
92 while ($line = db_fetch_assoc($result)) {
93
94 $feed_id = $line["id"];
95 $purge_interval = $line["purge_interval"];
96 $owner_uid = $line["owner_uid"];
97
98 if ($purge_interval == 0) {
99
100 $tmp_result = db_query($link,
101 "SELECT value FROM ttrss_user_prefs WHERE
102 pref_name = 'PURGE_OLD_DAYS' AND owner_uid = '$owner_uid'");
103
104 if (db_num_rows($tmp_result) != 0) {
105 $purge_interval = db_fetch_result($tmp_result, 0, "value");
106 }
107 }
108
109 if ($do_output) {
ad507f85 110// print "Feed $feed_id: purge interval = $purge_interval\n";
fefa6ca3
AD
111 }
112
113 if ($purge_interval > 0) {
ad507f85 114 purge_feed($link, $feed_id, $purge_interval, $do_output);
fefa6ca3
AD
115 }
116 }
117
71604ca4
AD
118 // purge orphaned posts in main content table
119 db_query($link, "DELETE FROM ttrss_entries WHERE
120 (SELECT COUNT(int_id) FROM ttrss_user_entries WHERE ref_id = id) = 0");
121
fefa6ca3
AD
122 }
123
b6eefba5 124 function purge_old_posts($link) {
5d73494a 125
f1a80dae
AD
126 $user_id = $_SESSION["uid"];
127
128 $result = db_query($link, "SELECT id,purge_interval FROM ttrss_feeds
129 WHERE owner_uid = '$user_id'");
5d73494a
AD
130
131 while ($line = db_fetch_assoc($result)) {
132
133 $feed_id = $line["id"];
134 $purge_interval = $line["purge_interval"];
135
b619ff15 136 if ($purge_interval == 0) $purge_interval = get_pref($link, 'PURGE_OLD_DAYS');
5d73494a 137
140aae81 138 if ($purge_interval > 0) {
fefa6ca3 139 purge_feed($link, $feed_id, $purge_interval);
5d73494a
AD
140 }
141 }
71604ca4
AD
142
143 // purge orphaned posts in main content table
144 db_query($link, "DELETE FROM ttrss_entries WHERE
145 (SELECT COUNT(int_id) FROM ttrss_user_entries WHERE ref_id = id) = 0");
c3a8d71a
AD
146 }
147
1f2b01ed 148 function update_all_feeds($link, $fetch, $user_id = false, $force_daemon = false) {
40d13c28 149
4769ddaf 150 if (WEB_DEMO_MODE) return;
b0b4abcf 151
a2770077
AD
152 if (!$user_id) {
153 $user_id = $_SESSION["uid"];
154 purge_old_posts($link);
155 }
156
25af8dad 157// db_query($link, "BEGIN");
b82af8c3 158
cbd8650d
AD
159 if (MAX_UPDATE_TIME > 0) {
160 if (DB_TYPE == "mysql") {
161 $q_order = "RAND()";
162 } else {
163 $q_order = "RANDOM()";
164 }
165 } else {
166 $q_order = "last_updated DESC";
167 }
168
d148926e 169 $result = db_query($link, "SELECT feed_url,id,
798f722b 170 SUBSTRING(last_updated,1,19) AS last_updated,
5c563acd 171 update_interval FROM ttrss_feeds WHERE owner_uid = '$user_id'
cbd8650d
AD
172 ORDER BY $q_order");
173
174 $upd_start = time();
40d13c28 175
b6eefba5 176 while ($line = db_fetch_assoc($result)) {
d148926e
AD
177 $upd_intl = $line["update_interval"];
178
b619ff15 179 if (!$upd_intl || $upd_intl == 0) {
a2770077 180 $upd_intl = get_pref($link, 'DEFAULT_UPDATE_INTERVAL', $user_id);
b619ff15 181 }
d148926e 182
c1e202b7
AD
183 if ($upd_intl < 0) {
184 // Updates for this feed are disabled
185 continue;
186 }
187
93d40f50
AD
188 if ($fetch || (!$line["last_updated"] ||
189 time() - strtotime($line["last_updated"]) > ($upd_intl * 60))) {
c5142cca 190
cbd8650d
AD
191// print "<!-- feed: ".$line["feed_url"]." -->";
192
1f2b01ed 193 update_rss_feed($link, $line["feed_url"], $line["id"], $force_daemon);
cbd8650d
AD
194
195 $upd_elapsed = time() - $upd_start;
196
197 if (MAX_UPDATE_TIME > 0 && $upd_elapsed > MAX_UPDATE_TIME) {
198 return;
199 }
d148926e 200 }
40d13c28
AD
201 }
202
25af8dad 203// db_query($link, "COMMIT");
b82af8c3 204
40d13c28
AD
205 }
206
9e997874 207 function check_feed_favicon($feed_url, $feed, $link) {
78800912
AD
208 $feed_url = str_replace("http://", "", $feed_url);
209 $feed_url = preg_replace("/\/.*$/", "", $feed_url);
210
211 $icon_url = "http://$feed_url/favicon.ico";
273a2f6b 212 $icon_file = ICONS_DIR . "/$feed.ico";
78800912
AD
213
214 if (!file_exists($icon_file)) {
e695fdc8 215
78800912
AD
216 error_reporting(0);
217 $r = fopen($icon_url, "r");
cce28758 218 error_reporting (DEFAULT_ERROR_LEVEL);
78800912
AD
219
220 if ($r) {
7d7cbaf5 221 $tmpfname = tempnam(TMP_DIRECTORY, "ttrssicon");
78800912
AD
222
223 $t = fopen($tmpfname, "w");
224
225 while (!feof($r)) {
226 $buf = fread($r, 16384);
227 fwrite($t, $buf);
228 }
229
230 fclose($r);
231 fclose($t);
232
e695fdc8
AD
233 error_reporting(0);
234 if (!rename($tmpfname, $icon_file)) {
235 unlink($tmpfname);
236 }
717f5e64
AD
237
238 chmod($icon_file, 0644);
239
cce28758 240 error_reporting (DEFAULT_ERROR_LEVEL);
78800912
AD
241
242 }
243 }
244 }
245
ddb68b81 246 function update_rss_feed($link, $feed_url, $feed, $ignore_daemon = false) {
40d13c28 247
4769ddaf 248 if (WEB_DEMO_MODE) return;
b0b4abcf 249
ddb68b81 250 if (DAEMON_REFRESH_ONLY && !$_GET["daemon"] && !$ignore_daemon) {
21cfcdf2
AD
251 return;
252 }
253
47c6c988 254 $result = db_query($link, "SELECT update_interval,auth_login,auth_pass
a88c1f36
AD
255 FROM ttrss_feeds WHERE id = '$feed'");
256
ff25e639
AD
257 $auth_login = db_unescape_string(db_fetch_result($result, 0, "auth_login"));
258 $auth_pass = db_unescape_string(db_fetch_result($result, 0, "auth_pass"));
47c6c988 259
a88c1f36
AD
260 $update_interval = db_fetch_result($result, 0, "update_interval");
261
262 if ($update_interval < 0) { return; }
263
ab3d0b99
AD
264 $feed = db_escape_string($feed);
265
47c6c988
AD
266 $fetch_url = $feed_url;
267
268 if ($auth_login && $auth_pass) {
269 $url_parts = array();
270 preg_match("/(^[^:]*):\/\/(.*)/", $fetch_url, $url_parts);
271
272 if ($url_parts[1] && $url_parts[2]) {
273 $fetch_url = $url_parts[1] . "://$auth_login:$auth_pass@" . $url_parts[2];
274 }
275
276 }
ab3d0b99 277
7c5a308d
AD
278 if (RSS_BACKEND_TYPE == "magpie") {
279 error_reporting(0);
280 $rss = fetch_rss($fetch_url);
281 error_reporting (DEFAULT_ERROR_LEVEL);
282 } else if (RSS_BACKEND_TYPE == "simplepie") {
283
284 if (!file_exists(SIMPLEPIE_CACHE_DIR)) {
285 mkdir(SIMPLEPIE_CACHE_DIR);
286 }
76798ff3 287
7c5a308d
AD
288 $rss = new SimplePie();
289 $rss->feed_url($fetch_url);
290 $rss->cache_location(SIMPLEPIE_CACHE_DIR);
291 $rss->init();
292 }
293
b6eefba5 294 $feed = db_escape_string($feed);
dcee8f61 295
7c5a308d 296 $rss_check = $rss;
b82af8c3 297
7c5a308d
AD
298 if (RSS_BACKEND_TYPE == "simplepie") {
299 $rss_check = $rss->data;
300 }
301
302 if ($rss_check) {
303
44e241cb 304// db_query($link, "BEGIN");
dd8c76a9 305
a88c1f36 306 $result = db_query($link, "SELECT title,icon_url,site_url,owner_uid
f324892e 307 FROM ttrss_feeds WHERE id = '$feed'");
331900c6 308
b6eefba5
AD
309 $registered_title = db_fetch_result($result, 0, "title");
310 $orig_icon_url = db_fetch_result($result, 0, "icon_url");
f324892e 311 $orig_site_url = db_fetch_result($result, 0, "site_url");
331900c6 312
7fed1940
AD
313 $owner_uid = db_fetch_result($result, 0, "owner_uid");
314
a2770077
AD
315 if (get_pref($link, 'ENABLE_FEED_ICONS', $owner_uid)) {
316 check_feed_favicon($feed_url, $feed, $link);
317 }
318
746b249f 319 if (!$registered_title || $registered_title == "[Unknown]") {
7c5a308d
AD
320
321 if (RSS_BACKEND_TYPE == "magpie") {
322 $feed_title = db_escape_string($rss->channel["title"]);
323 } else {
324 $feed_title = $rss->get_feed_title();
325 }
326
f324892e
AD
327 db_query($link, "UPDATE ttrss_feeds SET
328 title = '$feed_title' WHERE id = '$feed'");
329 }
330
7c5a308d
AD
331 if (RSS_BACKEND_TYPE == "magpie") {
332 $site_url = $rss->channel["link"];
333 // weird, weird Magpie
334 if (!$site_url) $site_url = db_escape_string($rss->channel["link_"]);
335 } else {
336 $site_url = $rss->get_feed_link();
337 }
147f7691
AD
338
339 if ($site_url && $orig_site_url != db_escape_string($site_url)) {
f324892e
AD
340 db_query($link, "UPDATE ttrss_feeds SET
341 site_url = '$site_url' WHERE id = '$feed'");
331900c6 342 }
40d13c28 343
b7f4bda2
AD
344// print "I: " . $rss->channel["image"]["url"];
345
7c5a308d
AD
346 if (RSS_BACKEND_TYPE == "magpie") {
347 $icon_url = $rss->image["url"];
348 } else {
349 $icon_url = $rss->get_image_url(); # FIXME
350 }
b7f4bda2 351
147f7691 352 if ($icon_url && !$orig_icon_url != db_escape_string($icon_url)) {
b6eefba5
AD
353 $icon_url = db_escape_string($icon_url);
354 db_query($link, "UPDATE ttrss_feeds SET icon_url = '$icon_url' WHERE id = '$feed'");
b7f4bda2
AD
355 }
356
e6155a06
AD
357
358 $filters = array();
359
4b3dff6e 360 $result = db_query($link, "SELECT reg_exp,
db42b934
AD
361 ttrss_filter_types.name AS name,
362 ttrss_filter_actions.name AS action
363 FROM ttrss_filters,ttrss_filter_types,ttrss_filter_actions WHERE
364 owner_uid = $owner_uid AND
365 ttrss_filter_types.id = filter_type AND
366 ttrss_filter_actions.id = action_id AND
ead60402 367 (feed_id IS NULL OR feed_id = '$feed')");
e6155a06 368
b6eefba5 369 while ($line = db_fetch_assoc($result)) {
e6155a06 370 if (!$filters[$line["name"]]) $filters[$line["name"]] = array();
19c9cb11
AD
371
372 $filter["reg_exp"] = $line["reg_exp"];
373 $filter["action"] = $line["action"];
374
375 array_push($filters[$line["name"]], $filter);
e6155a06
AD
376 }
377
7c5a308d
AD
378 if (RSS_BACKEND_TYPE == "magpie") {
379 $iterator = $rss->items;
ddb68b81 380
7c5a308d
AD
381 if (!$iterator || !is_array($iterator)) $iterator = $rss->entries;
382 if (!$iterator || !is_array($iterator)) $iterator = $rss;
383
384 } else {
385 $iterator = $rss->get_items();
386 }
c22789da
AD
387
388 if (!is_array($iterator)) {
39541e74 389 /* db_query($link, "UPDATE ttrss_feeds
75bd0669 390 SET last_error = 'Parse error: can\'t find any articles.'
39541e74 391 WHERE id = '$feed'"); */
c22789da
AD
392 return; // WTF?
393 }
ddb68b81
AD
394
395 foreach ($iterator as $item) {
7c5a308d
AD
396
397 if (RSS_BACKEND_TYPE == "magpie") {
398
399 $entry_guid = $item["id"];
400
401 if (!$entry_guid) $entry_guid = $item["guid"];
402 if (!$entry_guid) $entry_guid = $item["link"];
40d13c28 403
7c5a308d 404 if (!$entry_guid) continue;
40d13c28 405
7c5a308d
AD
406 $entry_timestamp = "";
407
408 $rss_2_date = $item['pubdate'];
409 $rss_1_date = $item['dc']['date'];
410 $atom_date = $item['issued'];
411 if (!$atom_date) $atom_date = $item['updated'];
b82af8c3 412
7c5a308d
AD
413 if ($atom_date != "") $entry_timestamp = parse_w3cdtf($atom_date);
414 if ($rss_1_date != "") $entry_timestamp = parse_w3cdtf($rss_1_date);
415 if ($rss_2_date != "") $entry_timestamp = strtotime($rss_2_date);
416
417 if ($entry_timestamp == "") {
418 $entry_timestamp = time();
419 $no_orig_date = 'true';
420 } else {
421 $no_orig_date = 'false';
422 }
423
424 $entry_timestamp_fmt = strftime("%Y/%m/%d %H:%M:%S", $entry_timestamp);
425
426 $entry_title = $item["title"];
427
428 // strange Magpie workaround
429 $entry_link = $item["link_"];
430 if (!$entry_link) $entry_link = $item["link"];
431
432 if (!$entry_title) continue;
433 if (!$entry_link) continue;
434
435 $entry_content = $item["content:escaped"];
436
437 if (!$entry_content) $entry_content = $item["content:encoded"];
438 if (!$entry_content) $entry_content = $item["content"];
79b5d2d2 439 if (!$entry_content) $entry_content = $item["atom_content"];
7c5a308d
AD
440 if (!$entry_content) $entry_content = $item["summary"];
441 if (!$entry_content) $entry_content = $item["description"];
442
443 // if (!$entry_content) continue;
444
445 // WTF
446 if (is_array($entry_content)) {
447 $entry_content = $entry_content["encoded"];
448 if (!$entry_content) $entry_content = $entry_content["escaped"];
449 }
450
451 // print_r($item);
452 // print_r(htmlspecialchars($entry_content));
453 // print "<br>";
454
455 $entry_content_unescaped = $entry_content;
456 $content_hash = "SHA1:" . sha1(strip_tags($entry_content));
457
458 $entry_comments = $item["comments"];
459
460 $entry_author = db_escape_string($item['dc']['creator']);
461
462 $entry_guid = db_escape_string($entry_guid);
463
464 $result = db_query($link, "SELECT id FROM ttrss_entries
465 WHERE guid = '$entry_guid'");
466
467 $entry_content = db_escape_string($entry_content);
468 $entry_title = db_escape_string($entry_title);
469 $entry_link = db_escape_string($entry_link);
470 $entry_comments = db_escape_string($entry_comments);
471
472 $num_comments = db_escape_string($item["slash"]["comments"]);
473
474 if (!$num_comments) $num_comments = 0;
71ad3959 475
7c5a308d 476 } else if (RSS_BACKEND_TYPE == "simplepie") {
ddb68b81 477
7c5a308d 478 $entry_guid = $item->get_id();
71ad3959 479
7c5a308d
AD
480 if (!$entry_guid) {
481 $entry_guid = $item->get_permalink();
482 }
483
484 if (!$entry_guid) continue;
485
486 $entry_timestamp = $item->get_date("U");
487
488 if ($entry_timestamp == "") {
489 $entry_timestamp = time();
490 $no_orig_date = 'true';
491 } else {
492 $no_orig_date = 'false';
493 }
494
495 $entry_timestamp_fmt = strftime("%Y/%m/%d %H:%M:%S", $entry_timestamp);
496
497 $entry_title = $item->get_title();
498 $entry_link = $item->get_permalink();
499
500 if (!$entry_title) continue;
501 if (!$entry_link) continue;
71ad3959 502
7c5a308d
AD
503 $entry_content = $item->get_description();
504
505// print_r(htmlspecialchars($entry_content));
506// print "<br>";
507
508 $entry_content_unescaped = $entry_content;
509 $content_hash = "SHA1:" . sha1(strip_tags($entry_content));
510
511 $entry_comments = ""; # FIXME
512
513 $entry_author = $item->get_author(0);
1696229f 514
7c5a308d
AD
515 $entry_author = db_escape_string($entry_author->name);
516
517 $entry_guid = db_escape_string($entry_guid);
a2015351 518
7c5a308d
AD
519 $result = db_query($link, "SELECT id FROM ttrss_entries
520 WHERE guid = '$entry_guid'");
521
522 $entry_content = db_escape_string($entry_content);
523 $entry_title = db_escape_string($entry_title);
524 $entry_link = db_escape_string($entry_link);
525 $entry_comments = db_escape_string($entry_comments);
526
527 $num_comments = 0; # FIXME
528
529 if (!$num_comments) $num_comments = 0;
a2015351 530
8add756a
AD
531 }
532
d48d160c 533 # sanitize content
183ad07b
AD
534
535 $entry_content = sanitize_rss($entry_content);
536 $entry_title = sanitize_rss($entry_title);
537 $entry_link = sanitize_rss($entry_link);
538 $entry_comments = sanitize_rss($entry_comments);
d48d160c 539
44e241cb
AD
540 db_query($link, "BEGIN");
541
4c193675
AD
542 if (db_num_rows($result) == 0) {
543
544 // base post entry does not exist, create it
545
4c193675
AD
546 $result = db_query($link,
547 "INSERT INTO ttrss_entries
548 (title,
549 guid,
550 link,
551 updated,
552 content,
553 content_hash,
554 no_orig_date,
555 date_entered,
11b0dce2 556 comments,
b6104dee
AD
557 num_comments,
558 author)
4c193675
AD
559 VALUES
560 ('$entry_title',
561 '$entry_guid',
562 '$entry_link',
563 '$entry_timestamp_fmt',
564 '$entry_content',
565 '$content_hash',
566 $no_orig_date,
567 NOW(),
11b0dce2 568 '$entry_comments',
b6104dee
AD
569 '$num_comments',
570 '$entry_author')");
8926aab8
AD
571 } else {
572 // we keep encountering the entry in feeds, so we need to
573 // update date_entered column so that we don't get horrible
574 // dupes when the entry gets purged and reinserted again e.g.
575 // in the case of SLOW SLOW OMG SLOW updating feeds
576
577 $base_entry_id = db_fetch_result($result, 0, "id");
578
579 db_query($link, "UPDATE ttrss_entries SET date_entered = NOW()
580 WHERE id = '$base_entry_id'");
4c193675
AD
581 }
582
583 // now it should exist, if not - bad luck then
584
6385315d
AD
585 $result = db_query($link, "SELECT
586 id,content_hash,no_orig_date,title,
8926aab8 587 substring(date_entered,1,19) as date_entered,
11b0dce2
AD
588 substring(updated,1,19) as updated,
589 num_comments
6385315d
AD
590 FROM
591 ttrss_entries
592 WHERE guid = '$entry_guid'");
4c193675
AD
593
594 if (db_num_rows($result) == 1) {
595
11b0dce2
AD
596 // this will be used below in update handler
597 $orig_content_hash = db_fetch_result($result, 0, "content_hash");
598 $orig_title = db_fetch_result($result, 0, "title");
599 $orig_num_comments = db_fetch_result($result, 0, "num_comments");
8926aab8
AD
600 $orig_date_entered = strtotime(db_fetch_result($result,
601 0, "date_entered"));
6385315d 602
11b0dce2 603 $ref_id = db_fetch_result($result, 0, "id");
4c193675 604
11b0dce2 605 // check for user post link to main table
4c193675 606
11b0dce2
AD
607 // do we allow duplicate posts with same GUID in different feeds?
608 if (get_pref($link, "ALLOW_DUPLICATE_POSTS", $owner_uid)) {
609 $dupcheck_qpart = "AND feed_id = '$feed'";
610 } else {
611 $dupcheck_qpart = "";
612 }
71604ca4 613
11b0dce2 614// error_reporting(0);
19c9cb11 615
11b0dce2
AD
616 $filter_name = get_filter_name($entry_title, $entry_content,
617 $entry_link, $filters);
19c9cb11 618
11b0dce2
AD
619 if ($filter_name == "filter") {
620 continue;
621 }
19c9cb11 622
11b0dce2 623// error_reporting (DEFAULT_ERROR_LEVEL);
3a933f22 624
11b0dce2
AD
625 $result = db_query($link,
626 "SELECT ref_id FROM ttrss_user_entries WHERE
627 ref_id = '$ref_id' AND owner_uid = '$owner_uid'
628 $dupcheck_qpart");
629
630 // okay it doesn't exist - create user entry
631 if (db_num_rows($result) == 0) {
632
633 if ($filter_name != 'catchup') {
634 $unread = 'true';
635 $last_read_qpart = 'NULL';
636 } else {
637 $unread = 'false';
638 $last_read_qpart = 'NOW()';
639 }
dd7d3187
AD
640
641 if ($filter_name == 'mark') {
642 $marked = 'true';
643 } else {
644 $marked = 'false';
645 }
19c9cb11 646
11b0dce2
AD
647 $result = db_query($link,
648 "INSERT INTO ttrss_user_entries
dd7d3187 649 (ref_id, owner_uid, feed_id, unread, last_read, marked)
11b0dce2 650 VALUES ('$ref_id', '$owner_uid', '$feed', $unread,
dd7d3187 651 $last_read_qpart, $marked)");
11b0dce2
AD
652 }
653
6385315d
AD
654 $post_needs_update = false;
655
a2770077 656 if (get_pref($link, "UPDATE_POST_ON_CHECKSUM_CHANGE", $owner_uid) &&
6385315d
AD
657 ($content_hash != $orig_content_hash)) {
658 $post_needs_update = true;
659 }
660
661 if ($orig_title != $entry_title) {
662 $post_needs_update = true;
663 }
664
11b0dce2
AD
665 if ($orig_num_comments != $num_comments) {
666 $post_needs_update = true;
667 }
668
6385315d
AD
669// this doesn't seem to be very reliable
670//
671// if ($orig_timestamp != $entry_timestamp && !$orig_no_orig_date) {
672// $post_needs_update = true;
673// }
674
675 // if post needs update, update it and mark all user entries
1c73bc0c 676 // linking to this post as updated
6385315d
AD
677 if ($post_needs_update) {
678
679// print "<!-- post $orig_title needs update : $post_needs_update -->";
680
6385315d 681 db_query($link, "UPDATE ttrss_entries
11b0dce2
AD
682 SET title = '$entry_title', content = '$entry_content',
683 num_comments = '$num_comments'
6385315d
AD
684 WHERE id = '$ref_id'");
685
4919fb42
AD
686 if (get_pref($link, "MARK_UNREAD_ON_UPDATE")) {
687 db_query($link, "UPDATE ttrss_user_entries
688 SET last_read = null, unread = true WHERE ref_id = '$ref_id'");
689 } else {
690 db_query($link, "UPDATE ttrss_user_entries
691 SET last_read = null WHERE ref_id = '$ref_id' AND unread = false");
692 }
6385315d
AD
693
694 }
4c193675
AD
695 }
696
44e241cb
AD
697 db_query($link, "COMMIT");
698
eb36b4eb
AD
699 /* taaaags */
700 // <a href="http://technorati.com/tag/Xorg" rel="tag">Xorg</a>, //
701
05732aa0 702 $entry_tags = null;
eb36b4eb 703
372ced8b 704 preg_match_all("/<a.*?href=.http:\/\/.*?technorati.com\/tag\/([^\"\'>]+)/i",
ee2c3050
AD
705 $entry_content_unescaped, $entry_tags);
706
707// print "<br>$entry_title : $entry_content_unescaped<br>";
708// print_r($entry_tags);
372ced8b 709// print "<br>";
eb36b4eb
AD
710
711 $entry_tags = $entry_tags[1];
712
713 if (count($entry_tags) > 0) {
714
44e241cb
AD
715 db_query($link, "BEGIN");
716
05732aa0
AD
717 $result = db_query($link, "SELECT id,int_id
718 FROM ttrss_entries,ttrss_user_entries
25da6909 719 WHERE guid = '$entry_guid'
05732aa0 720 AND feed_id = '$feed' AND ref_id = id
7fed1940 721 AND owner_uid = '$owner_uid'");
eb36b4eb 722
fe99ab12 723 if (db_num_rows($result) == 1) {
eb36b4eb 724
fe99ab12
AD
725 $entry_id = db_fetch_result($result, 0, "id");
726 $entry_int_id = db_fetch_result($result, 0, "int_id");
727
728 foreach ($entry_tags as $tag) {
729 $tag = db_escape_string(strtolower($tag));
31483fc1
AD
730
731 $tag = str_replace("+", " ", $tag);
fe99ab12
AD
732 $tag = str_replace("technorati tag: ", "", $tag);
733
734 $result = db_query($link, "SELECT id FROM ttrss_tags
735 WHERE tag_name = '$tag' AND post_int_id = '$entry_int_id' AND
736 owner_uid = '$owner_uid' LIMIT 1");
737
738 // print db_fetch_result($result, 0, "id");
739
740 if ($result && db_num_rows($result) == 0) {
741
742 // print "tagging $entry_id as $tag<br>";
743
744 db_query($link, "INSERT INTO ttrss_tags
745 (owner_uid,tag_name,post_int_id)
746 VALUES ('$owner_uid','$tag', '$entry_int_id')");
747 }
748 }
eb36b4eb 749 }
44e241cb 750 db_query($link, "COMMIT");
05732aa0 751 }
4c193675 752 }
40d13c28 753
ab3d0b99
AD
754 db_query($link, "UPDATE ttrss_feeds
755 SET last_updated = NOW(), last_error = '' WHERE id = '$feed'");
eb36b4eb 756
44e241cb 757// db_query($link, "COMMIT");
dd8c76a9 758
ab3d0b99
AD
759 } else {
760 $error_msg = db_escape_string(magpie_error());
761 db_query($link,
aa5f9f5f
AD
762 "UPDATE ttrss_feeds SET last_error = '$error_msg',
763 last_updated = NOW() WHERE id = '$feed'");
40d13c28
AD
764 }
765
766 }
767
f175937c 768 function print_select($id, $default, $values, $attributes = "") {
79f3553b 769 print "<select name=\"$id\" id=\"$id\" $attributes>";
a0d53889
AD
770 foreach ($values as $v) {
771 if ($v == $default)
772 $sel = " selected";
773 else
774 $sel = "";
775
776 print "<option$sel>$v</option>";
777 }
778 print "</select>";
779 }
40d13c28 780
79f3553b
AD
781 function print_select_hash($id, $default, $values, $attributes = "") {
782 print "<select name=\"$id\" id='$id' $attributes>";
673d54ca
AD
783 foreach (array_keys($values) as $v) {
784 if ($v == $default)
785 $sel = "selected";
786 else
787 $sel = "";
788
789 print "<option $sel value=\"$v\">".$values[$v]."</option>";
790 }
791
792 print "</select>";
793 }
794
19c9cb11 795 function get_filter_name($title, $content, $link, $filters) {
e6155a06
AD
796
797 if ($filters["title"]) {
19c9cb11
AD
798 foreach ($filters["title"] as $filter) {
799 $reg_exp = $filter["reg_exp"];
800 if (preg_match("/$reg_exp/i", $title)) {
801 return $filter["action"];
802 }
e6155a06
AD
803 }
804 }
805
806 if ($filters["content"]) {
19c9cb11
AD
807 foreach ($filters["content"] as $filter) {
808 $reg_exp = $filter["reg_exp"];
809 if (preg_match("/$reg_exp/i", $content)) {
810 return $filter["action"];
811 }
e6155a06
AD
812 }
813 }
814
815 if ($filters["both"]) {
816 foreach ($filters["both"] as $filter) {
19c9cb11
AD
817 $reg_exp = $filter["reg_exp"];
818 if (preg_match("/$reg_exp/i", $title) ||
819 preg_match("/$reg_exp/i", $content)) {
820 return $filter["action"];
821 }
e6155a06
AD
822 }
823 }
824
3a933f22 825 if ($filters["link"]) {
19c9cb11
AD
826 $reg_exp = $filter["reg_exp"];
827 foreach ($filters["link"] as $filter) {
828 $reg_exp = $filter["reg_exp"];
829 if (preg_match("/$reg_exp/i", $link)) {
830 return $filter["action"];
831 }
3a933f22
AD
832 }
833 }
834
e6155a06
AD
835 return false;
836 }
837
9323147e 838 function printFeedEntry($feed_id, $class, $feed_title, $unread, $icon_file, $link,
fb1fb4ab 839 $rtl_content = false, $last_updated = false, $last_error = false) {
254e0e4b
AD
840
841 if (file_exists($icon_file) && filesize($icon_file) > 0) {
023fe037 842 $feed_icon = "<img id=\"FIMG-$feed_id\" src=\"$icon_file\">";
254e0e4b 843 } else {
023fe037 844 $feed_icon = "<img id=\"FIMG-$feed_id\" src=\"images/blank_icon.gif\">";
254e0e4b
AD
845 }
846
9323147e
AD
847 if ($rtl_content) {
848 $rtl_tag = "dir=\"rtl\"";
849 } else {
850 $rtl_tag = "dir=\"ltr\"";
851 }
852
78d5212c
AD
853 $error_notify_msg = "";
854
fb1fb4ab
AD
855 if ($last_error) {
856 $link_title = "Error: $last_error ($last_updated)";
78d5212c 857 $error_notify_msg = "(Error)";
ad780e9c 858 } else if ($last_updated) {
fb1fb4ab
AD
859 $link_title = "Updated: $last_updated";
860 }
861
767e2486 862 $feed = "<a title=\"$link_title\" id=\"FEEDL-$feed_id\" href=\"javascript:viewfeed('$feed_id', '', false);\">$feed_title</a>";
254e0e4b
AD
863
864 print "<li id=\"FEEDR-$feed_id\" class=\"$class\">";
b619ff15 865 if (get_pref($link, 'ENABLE_FEED_ICONS')) {
254e0e4b
AD
866 print "$feed_icon";
867 }
868
9323147e 869 print "<span $rtl_tag id=\"FEEDN-$feed_id\">$feed</span>";
254e0e4b
AD
870
871 if ($unread != 0) {
872 $fctr_class = "";
873 } else {
874 $fctr_class = "class=\"invisible\"";
875 }
876
9323147e 877 print " <span $rtl_tag $fctr_class id=\"FEEDCTR-$feed_id\">
254e0e4b 878 (<span id=\"FEEDU-$feed_id\">$unread</span>)</span>";
78d5212c
AD
879
880 if (get_pref($link, "EXTENDED_FEEDLIST")) {
881 print "<div class=\"feedExtInfo\">
882 <span id=\"FLUPD-$feed_id\">$last_updated $error_notify_msg</span></div>";
883 }
884
254e0e4b
AD
885 print "</li>";
886
887 }
888
406d9489
AD
889 function getmicrotime() {
890 list($usec, $sec) = explode(" ",microtime());
891 return ((float)$usec + (float)$sec);
892 }
893
77e96719
AD
894 function print_radio($id, $default, $values, $attributes = "") {
895 foreach ($values as $v) {
896
897 if ($v == $default)
5da169d9 898 $sel = "checked";
77e96719 899 else
5da169d9
AD
900 $sel = "";
901
902 if ($v == "Yes") {
903 $sel .= " value=\"1\"";
904 } else {
905 $sel .= " value=\"0\"";
906 }
77e96719 907
69654950
AD
908 print "<input class=\"noborder\"
909 type=\"radio\" $sel $attributes name=\"$id\">&nbsp;$v&nbsp;";
77e96719
AD
910
911 }
912 }
913
ff485f1d
AD
914 function initialize_user_prefs($link, $uid) {
915
916 $uid = db_escape_string($uid);
917
918 db_query($link, "BEGIN");
919
920 $result = db_query($link, "SELECT pref_name,def_value FROM ttrss_prefs");
921
922 $u_result = db_query($link, "SELECT pref_name
923 FROM ttrss_user_prefs WHERE owner_uid = '$uid'");
924
925 $active_prefs = array();
926
927 while ($line = db_fetch_assoc($u_result)) {
928 array_push($active_prefs, $line["pref_name"]);
929 }
930
931 while ($line = db_fetch_assoc($result)) {
932 if (array_search($line["pref_name"], $active_prefs) === FALSE) {
933// print "adding " . $line["pref_name"] . "<br>";
934
935 db_query($link, "INSERT INTO ttrss_user_prefs
936 (owner_uid,pref_name,value) VALUES
937 ('$uid', '".$line["pref_name"]."','".$line["def_value"]."')");
938
939 }
940 }
941
942 db_query($link, "COMMIT");
943
944 }
956c7629
AD
945
946 function lookup_user_id($link, $user) {
947
948 $result = db_query($link, "SELECT id FROM ttrss_users WHERE
949 login = '$login'");
950
951 if (db_num_rows($result) == 1) {
952 return db_fetch_result($result, 0, "id");
953 } else {
954 return false;
955 }
956 }
957
18664970
AD
958 function http_authenticate_user($link) {
959
960 if (!$_SERVER["PHP_AUTH_USER"]) {
961
962 header('WWW-Authenticate: Basic realm="Tiny Tiny RSS RSSGen"');
963 header('HTTP/1.0 401 Unauthorized');
964 exit;
965
966 } else {
967 $auth_result = authenticate_user($link,
968 $_SERVER["PHP_AUTH_USER"], $_SERVER["PHP_AUTH_PW"]);
969
970 if (!$auth_result) {
971 header('WWW-Authenticate: Basic realm="Tiny Tiny RSS RSSGen"');
972 header('HTTP/1.0 401 Unauthorized');
973 exit;
974 }
975 }
976
977 return true;
978 }
979
c8437f35
AD
980 function authenticate_user($link, $login, $password) {
981
131b01b3 982 if (!SINGLE_USER_MODE) {
c8437f35 983
131b01b3
AD
984 $pwd_hash = 'SHA1:' . sha1($password);
985
986 $result = db_query($link, "SELECT id,login,access_level FROM ttrss_users WHERE
987 login = '$login' AND pwd_hash = '$pwd_hash'");
988
989 if (db_num_rows($result) == 1) {
990 $_SESSION["uid"] = db_fetch_result($result, 0, "id");
991 $_SESSION["name"] = db_fetch_result($result, 0, "login");
992 $_SESSION["access_level"] = db_fetch_result($result, 0, "access_level");
993
994 db_query($link, "UPDATE ttrss_users SET last_login = NOW() WHERE id = " .
995 $_SESSION["uid"]);
996
997 $user_theme = get_user_theme_path($link);
998
999 $_SESSION["theme"] = $user_theme;
1000 $_SESSION["ip_address"] = $_SERVER["REMOTE_ADDR"];
1001
1002 initialize_user_prefs($link, $_SESSION["uid"]);
1003
1004 return true;
1005 }
1006
1007 return false;
503eb349 1008
131b01b3 1009 } else {
503eb349 1010
131b01b3
AD
1011 $_SESSION["uid"] = 1;
1012 $_SESSION["name"] = "admin";
f557cd78 1013
0bbba72d
AD
1014 $user_theme = get_user_theme_path($link);
1015
1016 $_SESSION["theme"] = $user_theme;
1017 $_SESSION["ip_address"] = $_SERVER["REMOTE_ADDR"];
1018
1019 initialize_user_prefs($link, $_SESSION["uid"]);
1020
c8437f35
AD
1021 return true;
1022 }
c8437f35
AD
1023 }
1024
e6cb77a0
AD
1025 function make_password($length = 8) {
1026
1027 $password = "";
798f722b
AD
1028 $possible = "0123456789abcdfghjkmnpqrstvwxyzABCDFGHJKMNPQRSTVWXYZ";
1029
1030 $i = 0;
e6cb77a0
AD
1031
1032 while ($i < $length) {
1033 $char = substr($possible, mt_rand(0, strlen($possible)-1), 1);
1034
1035 if (!strstr($password, $char)) {
1036 $password .= $char;
1037 $i++;
1038 }
1039 }
1040 return $password;
1041 }
1042
1043 // this is called after user is created to initialize default feeds, labels
1044 // or whatever else
1045
1046 // user preferences are checked on every login, not here
1047
1048 function initialize_user($link, $uid) {
1049
1050 db_query($link, "insert into ttrss_labels (owner_uid,sql_exp,description)
1051 values ('$uid','unread = true', 'Unread articles')");
1052
1053 db_query($link, "insert into ttrss_labels (owner_uid,sql_exp,description)
1054 values ('$uid','last_read is null and unread = false', 'Updated articles')");
1055
1056 db_query($link, "insert into ttrss_feeds (owner_uid,title,feed_url)
74bff337 1057 values ('$uid', 'Tiny Tiny RSS: New Releases',
628fcd2c 1058 'http://tt-rss.spb.ru/releases.rss')");
3b0feb9b
AD
1059
1060 }
e6cb77a0 1061
b8aa49bc 1062 function logout_user() {
5ccc1cf5
AD
1063 session_destroy();
1064 if (isset($_COOKIE[session_name()])) {
1065 setcookie(session_name(), '', time()-42000, '/');
1066 }
b8aa49bc
AD
1067 }
1068
75836f33 1069 function get_script_urlpath() {
87a79fa4 1070 return preg_replace('/\/[^\/]*$/', "", $_SERVER["REQUEST_URI"]);
75836f33
AD
1071 }
1072
1073 function get_login_redirect() {
1074 $server = $_SERVER["SERVER_NAME"];
1075
1076 if (ENABLE_LOGIN_SSL) {
1077 $protocol = "https";
1078 } else {
1079 $protocol = "http";
1080 }
1081
1082 $url_path = get_script_urlpath();
1083
1084 $redirect_uri = "$protocol://$server$url_path/login.php";
1085
1086 return $redirect_uri;
1087 }
1088
916f788a 1089 function validate_session($link) {
a2e9b457 1090 if (SESSION_CHECK_ADDRESS && $_SESSION["uid"]) {
916f788a
AD
1091 if ($_SESSION["ip_address"]) {
1092 if ($_SESSION["ip_address"] != $_SERVER["REMOTE_ADDR"]) {
1093 return false;
1094 }
1095 }
1096 }
1097 return true;
1098 }
1099
7ae65adf
AD
1100 function basic_nosid_redirect_check() {
1101 if (!SINGLE_USER_MODE) {
3dd46f19 1102 if (!$_COOKIE[get_session_cookie_name()]) {
7ae65adf
AD
1103 $redirect_uri = get_login_redirect();
1104 $return_to = preg_replace('/.*?\//', '', $_SERVER["REQUEST_URI"]);
1105 header("Location: $redirect_uri?rt=$return_to");
1106 exit;
1107 }
1108 }
1109 }
1110
b8aa49bc
AD
1111 function login_sequence($link) {
1112 if (!SINGLE_USER_MODE) {
75836f33 1113
916f788a
AD
1114 if (!validate_session($link)) {
1115 logout_user();
1116 $redirect_uri = get_login_redirect();
1117 $return_to = preg_replace('/.*?\//', '', $_SERVER["REQUEST_URI"]);
1118 header("Location: $redirect_uri?rt=$return_to");
1119 exit;
1120 }
1121
b8aa49bc
AD
1122 if (!USE_HTTP_AUTH) {
1123 if (!$_SESSION["uid"]) {
75836f33 1124 $redirect_uri = get_login_redirect();
e31dca14
AD
1125 $return_to = preg_replace('/.*?\//', '', $_SERVER["REQUEST_URI"]);
1126 header("Location: $redirect_uri?rt=$return_to");
b8aa49bc
AD
1127 exit;
1128 }
1129 } else {
f557cd78
AD
1130 if (!$_SESSION["uid"]) {
1131 if (!$_SERVER["PHP_AUTH_USER"]) {
1132
1133 header('WWW-Authenticate: Basic realm="Tiny Tiny RSS"');
1134 header('HTTP/1.0 401 Unauthorized');
1135 exit;
1136
1137 } else {
1138 $auth_result = authenticate_user($link,
1139 $_SERVER["PHP_AUTH_USER"], $_SERVER["PHP_AUTH_PW"]);
1140
1141 if (!$auth_result) {
1142 header('WWW-Authenticate: Basic realm="Tiny Tiny RSS"');
1143 header('HTTP/1.0 401 Unauthorized');
1144 exit;
1145 }
1146 }
1147 }
b8aa49bc
AD
1148 }
1149 } else {
0bbba72d 1150 return authenticate_user($link, "admin", null);
b8aa49bc
AD
1151 }
1152 }
3547842a
AD
1153
1154 function truncate_string($str, $max_len) {
12db369c
AD
1155 if (mb_strlen($str, "utf-8") > $max_len - 3) {
1156 return mb_substr($str, 0, $max_len, "utf-8") . "...";
3547842a
AD
1157 } else {
1158 return $str;
1159 }
1160 }
54a60e1a
AD
1161
1162 function get_user_theme_path($link) {
798f722b
AD
1163 $result = db_query($link, "SELECT theme_path
1164 FROM
1165 ttrss_themes,ttrss_users
1166 WHERE ttrss_themes.id = theme_id AND ttrss_users.id = " . $_SESSION["uid"]);
54a60e1a
AD
1167 if (db_num_rows($result) != 0) {
1168 return db_fetch_result($result, 0, "theme_path");
1169 } else {
1170 return null;
1171 }
1172 }
be773442
AD
1173
1174 function smart_date_time($timestamp) {
1175 if (date("Y.m.d", $timestamp) == date("Y.m.d")) {
1176 return date("G:i", $timestamp);
f26450f1 1177 } else if (date("Y", $timestamp) == date("Y")) {
be773442
AD
1178 return date("M d, G:i", $timestamp);
1179 } else {
b02111c2 1180 return date("Y/m/d G:i", $timestamp);
be773442
AD
1181 }
1182 }
1183
1184 function smart_date($timestamp) {
1185 if (date("Y.m.d", $timestamp) == date("Y.m.d")) {
1186 return "Today";
f26450f1 1187 } else if (date("Y", $timestamp) == date("Y")) {
be773442
AD
1188 return date("D m", $timestamp);
1189 } else {
b02111c2 1190 return date("Y/m/d", $timestamp);
be773442
AD
1191 }
1192 }
a654a595
AD
1193
1194 function sql_bool_to_string($s) {
1195 if ($s == "t" || $s == "1") {
1196 return "true";
1197 } else {
1198 return "false";
1199 }
1200 }
e3c99f3b
AD
1201
1202 function sql_bool_to_bool($s) {
1203 if ($s == "t" || $s == "1") {
1204 return true;
1205 } else {
1206 return false;
1207 }
1208 }
0ea4fb50 1209
e3c99f3b 1210
0ea4fb50
AD
1211 function toggleEvenOdd($a) {
1212 if ($a == "even")
1213 return "odd";
1214 else
1215 return "even";
1216 }
6043fb7e
AD
1217
1218 function sanity_check($link) {
9cbca41f 1219
6043fb7e
AD
1220 $error_code = 0;
1221 $result = db_query($link, "SELECT schema_version FROM ttrss_version");
1222 $schema_version = db_fetch_result($result, 0, "schema_version");
1223
1224 if ($schema_version != SCHEMA_VERSION) {
1225 $error_code = 5;
1226 }
1227
6043fb7e 1228 if ($error_code != 0) {
3560a0be 1229 print_error_xml(5);
6043fb7e
AD
1230 return false;
1231 } else {
1232 return true;
9cbca41f 1233 }
6043fb7e
AD
1234 }
1235
27981ca3
AD
1236 function file_is_locked($filename) {
1237 error_reporting(0);
1238 $fp = fopen($filename, "r");
1239 error_reporting(DEFAULT_ERROR_LEVEL);
1240 if ($fp) {
1241 if (flock($fp, LOCK_EX | LOCK_NB)) {
1242 flock($fp, LOCK_UN);
1243 fclose($fp);
1244 return false;
1245 }
1246 fclose($fp);
1247 return true;
1248 }
1249 return false;
1250 }
1251
fcb4c0c9
AD
1252 function make_lockfile($filename) {
1253 $fp = fopen($filename, "w");
1254
1255 if (flock($fp, LOCK_EX | LOCK_NB)) {
1256 return $fp;
1257 } else {
1258 return false;
1259 }
1260 }
1261
894ebcf5
AD
1262 function sql_random_function() {
1263 if (DB_TYPE == "mysql") {
1264 return "RAND()";
1265 } else {
1266 return "RANDOM()";
1267 }
1268 }
1269
23aa0d16 1270 function catchup_feed($link, $feed, $cat_view) {
88040f57
AD
1271
1272 if (preg_match("/^-?[0-9][0-9]*$/", $feed) != false) {
23aa0d16
AD
1273
1274 if ($cat_view) {
1275
1276 if ($feed > 0) {
1277 $cat_qpart = "cat_id = '$feed'";
1278 } else {
1279 $cat_qpart = "cat_id IS NULL";
1280 }
1281
1282 $tmp_result = db_query($link, "SELECT id
1283 FROM ttrss_feeds WHERE $cat_qpart AND owner_uid = " .
1284 $_SESSION["uid"]);
1285
1286 while ($tmp_line = db_fetch_assoc($tmp_result)) {
1287
1288 $tmp_feed = $tmp_line["id"];
1289
1290 db_query($link, "UPDATE ttrss_user_entries
1291 SET unread = false,last_read = NOW()
1292 WHERE feed_id = '$tmp_feed' AND owner_uid = " . $_SESSION["uid"]);
1293 }
1294
1295 } else if ($feed > 0) {
1296
1297 $tmp_result = db_query($link, "SELECT id
1298 FROM ttrss_feeds WHERE parent_feed = '$feed'
1299 ORDER BY cat_id,title");
1300
1301 $parent_ids = array();
1302
1303 if (db_num_rows($tmp_result) > 0) {
1304 while ($p = db_fetch_assoc($tmp_result)) {
1305 array_push($parent_ids, "feed_id = " . $p["id"]);
1306 }
1307
1308 $children_qpart = implode(" OR ", $parent_ids);
1309
1310 db_query($link, "UPDATE ttrss_user_entries
1311 SET unread = false,last_read = NOW()
1312 WHERE (feed_id = '$feed' OR $children_qpart)
1313 AND owner_uid = " . $_SESSION["uid"]);
1314
1315 } else {
1316 db_query($link, "UPDATE ttrss_user_entries
1317 SET unread = false,last_read = NOW()
1318 WHERE feed_id = '$feed' AND owner_uid = " . $_SESSION["uid"]);
1319 }
1320
1321 } else if ($feed < 0 && $feed > -10) { // special, like starred
1322
1323 if ($feed == -1) {
1324 db_query($link, "UPDATE ttrss_user_entries
1325 SET unread = false,last_read = NOW()
1326 WHERE marked = true AND owner_uid = ".$_SESSION["uid"]);
1327 }
1328
1329 } else if ($feed < -10) { // label
1330
1331 // TODO make this more efficient
1332
1333 $label_id = -$feed - 11;
1334
1335 $tmp_result = db_query($link, "SELECT sql_exp FROM ttrss_labels
1336 WHERE id = '$label_id'");
1337
1338 if ($tmp_result) {
1339 $sql_exp = db_fetch_result($tmp_result, 0, "sql_exp");
1340
1341 db_query($link, "BEGIN");
1342
1343 $tmp2_result = db_query($link,
1344 "SELECT
1345 int_id
1346 FROM
88040f57 1347 ttrss_user_entries,ttrss_entries,ttrss_feeds
23aa0d16 1348 WHERE
88040f57
AD
1349 ref_id = ttrss_entries.id AND
1350 ttrss_user_entries.feed_id = ttrss_feeds.id AND
23aa0d16 1351 $sql_exp AND
88040f57 1352 ttrss_user_entries.owner_uid = " . $_SESSION["uid"]);
23aa0d16
AD
1353
1354 while ($tmp_line = db_fetch_assoc($tmp2_result)) {
1355 db_query($link, "UPDATE
1356 ttrss_user_entries
1357 SET
1358 unread = false, last_read = NOW()
1359 WHERE
1360 int_id = " . $tmp_line["int_id"]);
1361 }
1362
1363 db_query($link, "COMMIT");
1364
1365/* db_query($link, "UPDATE ttrss_user_entries,ttrss_entries
1366 SET unread = false,last_read = NOW()
1367 WHERE $sql_exp
1368 AND ref_id = id
1369 AND owner_uid = ".$_SESSION["uid"]); */
1370 }
1371 }
1372 } else { // tag
1373 db_query($link, "BEGIN");
1374
1375 $tag_name = db_escape_string($feed);
1376
1377 $result = db_query($link, "SELECT post_int_id FROM ttrss_tags
1378 WHERE tag_name = '$tag_name' AND owner_uid = " . $_SESSION["uid"]);
1379
1380 while ($line = db_fetch_assoc($result)) {
1381 db_query($link, "UPDATE ttrss_user_entries SET
1382 unread = false, last_read = NOW()
1383 WHERE int_id = " . $line["post_int_id"]);
1384 }
1385 db_query($link, "COMMIT");
1386 }
1387 }
1388
1389 function update_generic_feed($link, $feed, $cat_view) {
1390 if ($cat_view) {
1391
1392 if ($feed > 0) {
1393 $cat_qpart = "cat_id = '$feed'";
1394 } else {
1395 $cat_qpart = "cat_id IS NULL";
1396 }
1397
1398 $tmp_result = db_query($link, "SELECT feed_url FROM ttrss_feeds
1399 WHERE $cat_qpart AND owner_uid = " . $_SESSION["uid"]);
1400
1401 while ($tmp_line = db_fetch_assoc($tmp_result)) {
1402 $feed_url = $tmp_line["feed_url"];
1403 update_rss_feed($link, $feed_url, $feed, ENABLE_UPDATE_DAEMON);
1404 }
1405
1406 } else {
1407 $tmp_result = db_query($link, "SELECT feed_url FROM ttrss_feeds
1408 WHERE id = '$feed'");
1409 $feed_url = db_fetch_result($tmp_result, 0, "feed_url");
1410 update_rss_feed($link, $feed_url, $feed, ENABLE_UPDATE_DAEMON);
1411 }
1412 }
a9cb1f83
AD
1413
1414 function getAllCounters($link) {
1415 getLabelCounters($link);
1416 getFeedCounters($link);
1417 getTagCounters($link);
1418 getGlobalCounters($link);
1419 if (get_pref($link, 'ENABLE_FEED_CATS')) {
1420 getCategoryCounters($link);
1421 }
1422 }
1423
1424 function getCategoryCounters($link) {
1425 $result = db_query($link, "SELECT cat_id,SUM((SELECT COUNT(int_id)
1426 FROM ttrss_user_entries WHERE feed_id = ttrss_feeds.id
1427 AND unread = true)) AS unread FROM ttrss_feeds
1428 WHERE
1429 owner_uid = ".$_SESSION["uid"]." GROUP BY cat_id");
1430
1431 while ($line = db_fetch_assoc($result)) {
1432 $line["cat_id"] = sprintf("%d", $line["cat_id"]);
1433 print "<counter type=\"category\" id=\"".$line["cat_id"]."\" counter=\"".
1434 $line["unread"]."\"/>";
1435 }
1436 }
1437
f295c368
AD
1438 function getCategoryUnread($link, $cat) {
1439
18664970
AD
1440 if ($cat != 0) {
1441 $cat_query = "cat_id = '$cat'";
1442 } else {
1443 $cat_query = "cat_id IS NULL";
1444 }
1445
1446 $result = db_query($link, "SELECT id FROM ttrss_feeds WHERE $cat_query
f295c368
AD
1447 AND owner_uid = " . $_SESSION["uid"]);
1448
1449 $cat_feeds = array();
1450 while ($line = db_fetch_assoc($result)) {
1451 array_push($cat_feeds, "feed_id = " . $line["id"]);
1452 }
1453
18664970
AD
1454 if (count($cat_feeds) == 0) return 0;
1455
f295c368
AD
1456 $match_part = implode(" OR ", $cat_feeds);
1457
1458 $result = db_query($link, "SELECT COUNT(int_id) AS unread
1459 FROM ttrss_user_entries
4919fb42 1460 WHERE unread = true AND ($match_part) AND owner_uid = " . $_SESSION["uid"]);
f295c368
AD
1461
1462 $unread = 0;
1463
1464 # this needs to be rewritten
1465 while ($line = db_fetch_assoc($result)) {
1466 $unread += $line["unread"];
1467 }
1468
1469 return $unread;
1470
1471 }
1472
1473 function getFeedUnread($link, $feed, $is_cat = false) {
a9cb1f83 1474 $n_feed = sprintf("%d", $feed);
f295c368
AD
1475
1476 if ($is_cat) {
831ff047 1477 return getCategoryUnread($link, $n_feed);
f295c368 1478 } else if ($n_feed == -1) {
a9cb1f83 1479 $match_part = "marked = true";
4919fb42 1480 } else if ($n_feed > 0) {
831ff047 1481
4919fb42
AD
1482 $result = db_query($link, "SELECT id FROM ttrss_feeds WHERE parent_feed = '$n_feed'
1483 AND owner_uid = " . $_SESSION["uid"]);
831ff047
AD
1484
1485 if (db_num_rows($result) > 0) {
4919fb42 1486
831ff047
AD
1487 $linked_feeds = array();
1488 while ($line = db_fetch_assoc($result)) {
1489 array_push($linked_feeds, "feed_id = " . $line["id"]);
1490 }
1491
1492 $match_part = implode(" OR ", $linked_feeds);
1493
4919fb42
AD
1494 $result = db_query($link, "SELECT COUNT(int_id) AS unread
1495 FROM ttrss_user_entries
1496 WHERE unread = true AND ($match_part) AND owner_uid = " . $_SESSION["uid"]);
1497
1498 $unread = 0;
1499
1500 # this needs to be rewritten
1501 while ($line = db_fetch_assoc($result)) {
1502 $unread += $line["unread"];
1503 }
1504
1505 return $unread;
1506
831ff047
AD
1507 } else {
1508 $match_part = "feed_id = '$n_feed'";
1509 }
a9cb1f83
AD
1510 } else if ($feed < -10) {
1511 $label_id = -$feed - 11;
1512
1513 $result = db_query($link, "SELECT sql_exp FROM ttrss_labels WHERE
1514 id = '$label_id' AND owner_uid = " . $_SESSION["uid"]);
1515
1516 $match_part = db_fetch_result($result, 0, "sql_exp");
1517 }
1518
1519 if ($match_part) {
1520
1521 $result = db_query($link, "SELECT count(int_id) AS unread
88040f57
AD
1522 FROM ttrss_user_entries,ttrss_feeds,ttrss_entries WHERE
1523 ttrss_user_entries.feed_id = ttrss_feeds.id AND
1524 ttrss_user_entries.ref_id = ttrss_entries.id AND
1525 unread = true AND ($match_part) AND ttrss_user_entries.owner_uid = " . $_SESSION["uid"]);
a9cb1f83
AD
1526
1527 } else {
1528
1529 $result = db_query($link, "SELECT COUNT(post_int_id) AS unread
1530 FROM ttrss_tags,ttrss_user_entries
1531 WHERE tag_name = '$feed' AND post_int_id = int_id AND unread = true AND
1532 ttrss_tags.owner_uid = " . $_SESSION["uid"]);
1533 }
1534
1535 $unread = db_fetch_result($result, 0, "unread");
1536 return $unread;
1537 }
1538
1539 /* FIXME this needs reworking */
1540
1541 function getGlobalUnread($link) {
1542 $result = db_query($link, "SELECT count(id) as c_id FROM ttrss_entries,ttrss_user_entries
1543 WHERE unread = true AND
1544 ttrss_user_entries.ref_id = ttrss_entries.id AND
1545 owner_uid = " . $_SESSION["uid"]);
1546 $c_id = db_fetch_result($result, 0, "c_id");
1547 return $c_id;
1548 }
1549
1550 function getGlobalCounters($link, $global_unread = -1) {
1551 if ($global_unread == -1) {
1552 $global_unread = getGlobalUnread($link);
1553 }
1554 print "<counter type=\"global\" id='global-unread' counter='$global_unread'/>";
1555 }
1556
1557 function getTagCounters($link, $smart_mode = SMART_RPC_COUNTERS) {
1558
1559 if ($smart_mode) {
1560 if (!$_SESSION["tctr_last_value"]) {
1561 $_SESSION["tctr_last_value"] = array();
1562 }
1563 }
1564
1565 $old_counters = $_SESSION["tctr_last_value"];
1566
1567 $tctrs_modified = false;
1568
1569/* $result = db_query($link, "SELECT tag_name,count(ttrss_entries.id) AS count
1570 FROM ttrss_tags,ttrss_entries,ttrss_user_entries WHERE
1571 ttrss_user_entries.ref_id = ttrss_entries.id AND
1572 ttrss_tags.owner_uid = ".$_SESSION["uid"]." AND
1573 post_int_id = ttrss_user_entries.int_id AND unread = true GROUP BY tag_name
1574 UNION
1575 select tag_name,0 as count FROM ttrss_tags
1576 WHERE ttrss_tags.owner_uid = ".$_SESSION["uid"]); */
1577
1578 $result = db_query($link, "SELECT tag_name,SUM((SELECT COUNT(int_id)
1579 FROM ttrss_user_entries WHERE int_id = post_int_id
1580 AND unread = true)) AS count FROM ttrss_tags
1581 WHERE owner_uid = 2 GROUP BY tag_name ORDER BY tag_name");
1582
1583 $tags = array();
1584
1585 while ($line = db_fetch_assoc($result)) {
1586 $tags[$line["tag_name"]] += $line["count"];
1587 }
1588
1589 foreach (array_keys($tags) as $tag) {
1590 $unread = $tags[$tag];
1591
1592 $tag = htmlspecialchars($tag);
1593
1594 if (!$smart_mode || $old_counters[$tag] != $unread) {
1595 $old_counters[$tag] = $unread;
1596 $tctrs_modified = true;
1597 print "<counter type=\"tag\" id=\"$tag\" counter=\"$unread\"/>";
1598 }
1599
1600 }
1601
1602 if ($smart_mode && $tctrs_modified) {
1603 $_SESSION["tctr_last_value"] = $old_counters;
1604 }
1605
1606 }
1607
ef393de7 1608 function getLabelCounters($link, $smart_mode = SMART_RPC_COUNTERS, $ret_mode = false) {
a9cb1f83
AD
1609
1610 if ($smart_mode) {
1611 if (!$_SESSION["lctr_last_value"]) {
1612 $_SESSION["lctr_last_value"] = array();
1613 }
1614 }
1615
ef393de7
AD
1616 $ret_arr = array();
1617
a9cb1f83
AD
1618 $old_counters = $_SESSION["lctr_last_value"];
1619 $lctrs_modified = false;
1620
88040f57 1621 $result = db_query($link, "SELECT count(ttrss_entries.id) as count FROM ttrss_entries,ttrss_user_entries,ttrss_feeds
a9cb1f83 1622 WHERE marked = true AND ttrss_user_entries.ref_id = ttrss_entries.id AND
88040f57
AD
1623 ttrss_user_entries.feed_id = ttrss_feeds.id AND
1624 unread = true AND ttrss_user_entries.owner_uid = ".$_SESSION["uid"]);
a9cb1f83
AD
1625
1626 $count = db_fetch_result($result, 0, "count");
1627
ef393de7
AD
1628 if (!$ret_mode) {
1629 print "<counter type=\"label\" id=\"-1\" counter=\"$count\"/>";
1630 } else {
1631 $ret_arr["-1"]["counter"] = $count;
1632 $ret_arr["-1"]["description"] = "Starred";
1633 }
a9cb1f83
AD
1634
1635 $result = db_query($link, "SELECT owner_uid,id,sql_exp,description FROM
1636 ttrss_labels WHERE owner_uid = ".$_SESSION["uid"]." ORDER by description");
1637
1638 while ($line = db_fetch_assoc($result)) {
1639
1640 $id = -$line["id"] - 11;
1641
ef393de7
AD
1642 $label_name = $line["description"];
1643
a9cb1f83
AD
1644 error_reporting (0);
1645
88040f57 1646 $tmp_result = db_query($link, "SELECT count(ttrss_entries.id) as count FROM ttrss_user_entries,ttrss_entries,ttrss_feeds
a9cb1f83 1647 WHERE (" . $line["sql_exp"] . ") AND unread = true AND
88040f57 1648 ttrss_user_entries.feed_id = ttrss_feeds.id AND
a9cb1f83 1649 ttrss_user_entries.ref_id = ttrss_entries.id AND
88040f57 1650 ttrss_user_entries.owner_uid = ".$_SESSION["uid"]);
a9cb1f83
AD
1651
1652 $count = db_fetch_result($tmp_result, 0, "count");
1653
1654 if (!$smart_mode || $old_counters[$id] != $count) {
1655 $old_counters[$id] = $count;
1656 $lctrs_modified = true;
ef393de7
AD
1657 if (!$ret_mode) {
1658 print "<counter type=\"label\" id=\"$id\" counter=\"$count\"/>";
1659 } else {
1660 $ret_arr[$id]["counter"] = $count;
1661 $ret_arr[$id]["description"] = $label_name;
1662 }
a9cb1f83
AD
1663 }
1664
1665 error_reporting (DEFAULT_ERROR_LEVEL);
1666 }
1667
1668 if ($smart_mode && $lctrs_modified) {
1669 $_SESSION["lctr_last_value"] = $old_counters;
1670 }
ef393de7
AD
1671
1672 return $ret_arr;
a9cb1f83
AD
1673 }
1674
1675/* function getFeedCounter($link, $id) {
1676
1677 $result = db_query($link, "SELECT
1678 count(id) as count,last_error
1679 FROM ttrss_entries,ttrss_user_entries,ttrss_feeds
1680 WHERE feed_id = '$id' AND unread = true
1681 AND ttrss_user_entries.feed_id = ttrss_feeds.id
1682 AND ttrss_user_entries.ref_id = ttrss_entries.id");
1683
1684 $count = db_fetch_result($result, 0, "count");
1685 $last_error = htmlspecialchars(db_fetch_result($result, 0, "last_error"));
1686
1687 print "<counter type=\"feed\" id=\"$id\" counter=\"$count\" error=\"$last_error\"/>";
1688 } */
1689
1690 function getFeedCounters($link, $smart_mode = SMART_RPC_COUNTERS) {
1691
1692 if ($smart_mode) {
1693 if (!$_SESSION["fctr_last_value"]) {
1694 $_SESSION["fctr_last_value"] = array();
1695 }
1696 }
1697
1698 $old_counters = $_SESSION["fctr_last_value"];
1699
1700 $result = db_query($link, "SELECT id,last_error,parent_feed,
fb1fb4ab 1701 SUBSTRING(last_updated,1,19) AS last_updated,
a9cb1f83
AD
1702 (SELECT count(id)
1703 FROM ttrss_entries,ttrss_user_entries
1704 WHERE feed_id = ttrss_feeds.id AND
1705 ttrss_user_entries.ref_id = ttrss_entries.id
1706 AND unread = true AND owner_uid = ".$_SESSION["uid"].") as count
1707 FROM ttrss_feeds WHERE owner_uid = ".$_SESSION["uid"] . "
1708 AND parent_feed IS NULL");
1709
1710 $fctrs_modified = false;
1711
fb1fb4ab
AD
1712 $short_date = get_pref($link, 'SHORT_DATE_FORMAT');
1713
a9cb1f83
AD
1714 while ($line = db_fetch_assoc($result)) {
1715
1716 $id = $line["id"];
1717 $count = $line["count"];
1718 $last_error = htmlspecialchars($line["last_error"]);
fb1fb4ab
AD
1719
1720 if (get_pref($link, 'HEADLINES_SMART_DATE')) {
1721 $last_updated = smart_date_time(strtotime($line["last_updated"]));
1722 } else {
1723 $last_updated = date($short_date, strtotime($line["last_updated"]));
1724 }
1725
a9cb1f83
AD
1726 $has_img = is_file(ICONS_DIR . "/$id.ico");
1727
1728 $tmp_result = db_query($link,
1729 "SELECT id,COUNT(unread) AS unread
1730 FROM ttrss_feeds LEFT JOIN ttrss_user_entries
1731 ON (ttrss_feeds.id = ttrss_user_entries.feed_id)
1732 WHERE parent_feed = '$id' AND unread = true GROUP BY ttrss_feeds.id");
1733
1734 if (db_num_rows($tmp_result) > 0) {
1735 while ($l = db_fetch_assoc($tmp_result)) {
1736 $count += $l["unread"];
1737 }
1738 }
1739
1740 if (!$smart_mode || $old_counters[$id] != $count) {
1741 $old_counters[$id] = $count;
1742 $fctrs_modified = true;
1743
1744 if ($last_error) {
1745 $error_part = "error=\"$last_error\"";
1746 } else {
1747 $error_part = "";
1748 }
1749
1750 if ($has_img) {
1751 $has_img_part = "hi=\"$has_img\"";
1752 } else {
1753 $has_img_part = "";
1754 }
1755
fb1fb4ab 1756 print "<counter type=\"feed\" id=\"$id\" counter=\"$count\" $has_img_part $error_part updated=\"$last_updated\"/>";
a9cb1f83
AD
1757 }
1758 }
1759
1760 if ($smart_mode && $fctrs_modified) {
1761 $_SESSION["fctr_last_value"] = $old_counters;
1762 }
1763 }
1764
1b758780
AD
1765 function get_script_dt_add() {
1766 if (strpos(VERSION, "99") === false) {
1767 return VERSION;
1768 } else {
1769 return time();
1770 }
1771 }
1772
6e7f8d26
AD
1773 function get_pgsql_version($link) {
1774 $result = db_query($link, "SELECT version() AS version");
1775 $version = split(" ", db_fetch_result($result, 0, "version"));
1776 return $version[1];
1777 }
1778
af106b0e
AD
1779 function print_error_xml($code, $add_msg = "") {
1780 global $ERRORS;
1781
1782 $error_msg = $ERRORS[$code];
1783
1784 if ($add_msg) {
1785 $error_msg = "$error_msg; $add_msg";
1786 }
1787
4c2abbc1 1788 print "<rpc-reply>";
af106b0e 1789 print "<error error-code=\"$code\" error-msg=\"$error_msg\"/>";
4c2abbc1 1790 print "</rpc-reply>";
af106b0e 1791 }
956c7629
AD
1792
1793 function subscribe_to_feed($link, $feed_link, $cat_id = 0) {
1794
1795 if ($cat_id == "0" || !$cat_id) {
1796 $cat_qpart = "NULL";
1797 } else {
1798 $cat_qpart = "'$cat_id'";
1799 }
1800
1801 $result = db_query($link,
1802 "SELECT id FROM ttrss_feeds
1803 WHERE feed_url = '$feed_link' AND owner_uid = ".$_SESSION["uid"]);
1804
1805 if (db_num_rows($result) == 0) {
1806
1807 $result = db_query($link,
1808 "INSERT INTO ttrss_feeds (owner_uid,feed_url,title,cat_id)
1809 VALUES ('".$_SESSION["uid"]."', '$feed_link',
1810 '[Unknown]', $cat_qpart)");
1811
1812 $result = db_query($link,
1813 "SELECT id FROM ttrss_feeds WHERE feed_url = '$feed_link'
1814 AND owner_uid = " . $_SESSION["uid"]);
1815
1816 $feed_id = db_fetch_result($result, 0, "id");
1817
1818 if ($feed_id) {
1819 update_rss_feed($link, $feed_link, $feed_id, true);
1820 }
1821
1822 return true;
1823 } else {
1824 return false;
1825 }
1826 }
1827
673d54ca
AD
1828 function print_feed_select($link, $id, $default_id = "",
1829 $attributes = "", $include_all_feeds = true) {
1830
79f3553b 1831 print "<select id=\"$id\" name=\"$id\" $attributes>";
673d54ca 1832 if ($include_all_feeds) {
79f3553b 1833 print "<option value=\"0\">All feeds</option>";
673d54ca
AD
1834 }
1835
1836 $result = db_query($link, "SELECT id,title FROM ttrss_feeds
1837 WHERE owner_uid = ".$_SESSION["uid"]." ORDER BY title");
1838
1839 if (db_num_rows($result) > 0 && $include_all_feeds) {
1840 print "<option disabled>--------</option>";
1841 }
1842
1843 while ($line = db_fetch_assoc($result)) {
1844 if ($line["id"] == $default_id) {
1845 $is_selected = "selected";
1846 } else {
1847 $is_selected = "";
1848 }
79f3553b 1849 printf("<option $is_selected value='%d'>%s</option>",
07164479 1850 $line["id"], htmlspecialchars(db_unescape_string($line["title"])));
673d54ca
AD
1851 }
1852
1853 print "</select>";
1854 }
1855
1856 function print_feed_cat_select($link, $id, $default_id = "",
1857 $attributes = "", $include_all_cats = true) {
1858
79f3553b 1859 print "<select id=\"$id\" name=\"$id\" $attributes>";
673d54ca
AD
1860
1861 if ($include_all_cats) {
14f69488 1862 print "<option value=\"0\">Uncategorized</option>";
673d54ca
AD
1863 }
1864
1865 $result = db_query($link, "SELECT id,title FROM ttrss_feed_categories
1866 WHERE owner_uid = ".$_SESSION["uid"]." ORDER BY title");
1867
1868 if (db_num_rows($result) > 0 && $include_all_cats) {
1869 print "<option disabled>--------</option>";
1870 }
1871
1872 while ($line = db_fetch_assoc($result)) {
1873 if ($line["id"] == $default_id) {
1874 $is_selected = "selected";
1875 } else {
1876 $is_selected = "";
1877 }
14f69488 1878 printf("<option $is_selected value='%d'>%s</option>",
07164479 1879 $line["id"], htmlspecialchars(db_unescape_string($line["title"])));
673d54ca
AD
1880 }
1881
1882 print "</select>";
1883 }
1884
14f69488
AD
1885 function checkbox_to_sql_bool($val) {
1886 return ($val == "on") ? "true" : "false";
1887 }
86b682ce
AD
1888
1889 function getFeedCatTitle($link, $id) {
1890 if ($id == -1) {
1891 return "Special";
1892 } else if ($id < -10) {
1893 return "Labels";
1894 } else if ($id > 0) {
1895 $result = db_query($link, "SELECT ttrss_feed_categories.title
1896 FROM ttrss_feeds, ttrss_feed_categories WHERE ttrss_feeds.id = '$id' AND
1897 cat_id = ttrss_feed_categories.id");
1898 if (db_num_rows($result) == 1) {
1899 return db_fetch_result($result, 0, "title");
1900 } else {
eb4311d0 1901 return "Uncategorized";
86b682ce
AD
1902 }
1903 } else {
1904 return "getFeedCatTitle($id) failed";
1905 }
1906
1907 }
1908
1909 function getFeedTitle($link, $id) {
1910 if ($id == -1) {
1911 return "Starred articles";
1912 } else if ($id < -10) {
1913 $label_id = -10 - $id;
1914 $result = db_query($link, "SELECT description FROM ttrss_labels WHERE id = '$label_id'");
1915 if (db_num_rows($result) == 1) {
1916 return db_fetch_result($result, 0, "description");
1917 } else {
1918 return "Unknown label ($label_id)";
1919 }
1920
1921 } else if ($id > 0) {
1922 $result = db_query($link, "SELECT title FROM ttrss_feeds WHERE id = '$id'");
1923 if (db_num_rows($result) == 1) {
1924 return db_fetch_result($result, 0, "title");
1925 } else {
1926 return "Unknown feed ($id)";
1927 }
1928 } else {
1929 return "getFeedTitle($id) failed";
1930 }
1931
1932 }
3dd46f19
AD
1933
1934 function get_session_cookie_name() {
1935 return ((!defined('TTRSS_SESSION_NAME')) ? "ttrss_sid" : TTRSS_SESSION_NAME);
1936 }
3ac2b520
AD
1937
1938 function print_init_params($link) {
1939 print "<init-params>";
1940 if ($_SESSION["stored-params"]) {
1941 foreach (array_keys($_SESSION["stored-params"]) as $key) {
5f57b06d
AD
1942 if ($key) {
1943 $value = htmlspecialchars($_SESSION["stored-params"][$key]);
1944 print "<param key=\"$key\" value=\"$value\"/>";
1945 }
3ac2b520
AD
1946 }
1947 }
1948
1949 print "<param key=\"daemon_enabled\" value=\"" . ENABLE_UPDATE_DAEMON . "\"/>";
1950 print "<param key=\"feeds_frame_refresh\" value=\"" . FEEDS_FRAME_REFRESH . "\"/>";
0d51e25d 1951 print "<param key=\"daemon_refresh_only\" value=\"" . DAEMON_REFRESH_ONLY . "\"/>";
3ac2b520
AD
1952
1953 print "<param key=\"on_catchup_show_next_feed\" value=\"" .
1954 get_pref($link, "ON_CATCHUP_SHOW_NEXT_FEED") . "\"/>";
1955
e8bd0da9
AD
1956 print "<param key=\"hide_read_feeds\" value=\"" .
1957 sprintf("%d", get_pref($link, "HIDE_READ_FEEDS")) . "\"/>";
1958
c9268ed5
AD
1959 print "<param key=\"feeds_sort_by_unread\" value=\"" .
1960 sprintf("%d", get_pref($link, "FEEDS_SORT_BY_UNREAD")) . "\"/>";
1961
3ac2b520
AD
1962 print "</init-params>";
1963 }
f54f515f
AD
1964
1965 function print_runtime_info($link) {
1966 print "<runtime-info>";
71ad883b
AD
1967 if (ENABLE_UPDATE_DAEMON) {
1968 print "<param key=\"daemon_is_running\" value=\"".
1969 sprintf("%d", file_is_locked("update_daemon.lock")) . "\"/>";
1970 }
f54f515f
AD
1971 print "</runtime-info>";
1972 }
ef393de7 1973
88040f57 1974 function getSearchSql($search, $match_on) {
ef393de7 1975
88040f57 1976 $search_query_part = "";
e20c9d88 1977
88040f57
AD
1978 $keywords = split(" ", $search);
1979 $query_keywords = array();
e20c9d88 1980
88040f57 1981 if ($match_on == "both") {
e20c9d88 1982
88040f57
AD
1983 foreach ($keywords as $k) {
1984 array_push($query_keywords, "(UPPER(ttrss_entries.title) LIKE UPPER('%$k%')
1985 OR UPPER(ttrss_entries.content) LIKE UPPER('%$k%'))");
1986 }
e20c9d88 1987
88040f57 1988 $search_query_part = implode("AND", $query_keywords) . " AND ";
e20c9d88 1989
88040f57 1990 } else if ($match_on == "title") {
e20c9d88 1991
88040f57
AD
1992 foreach ($keywords as $k) {
1993 array_push($query_keywords, "(UPPER(ttrss_entries.title) LIKE UPPER('%$k%'))");
1994 }
e20c9d88 1995
88040f57 1996 $search_query_part = implode("AND", $query_keywords) . " AND ";
e20c9d88 1997
88040f57
AD
1998 } else if ($match_on == "content") {
1999
2000 foreach ($keywords as $k) {
2001 array_push($query_keywords, "(UPPER(ttrss_entries.content) LIKE UPPER('%$k%'))");
2002 }
2003 }
2004
2005 $search_query_part = implode("AND", $query_keywords);
2006
2007 return $search_query_part;
2008 }
2009
2010 function queryFeedHeadlines($link, $feed, $limit, $view_mode, $cat_view, $search, $search_mode, $match_on, $override_order = false) {
88040f57
AD
2011 if ($search) {
2012
2013 $search_query_part = getSearchSql($search, $match_on);
2014 $search_query_part .= " AND ";
e20c9d88 2015
ef393de7
AD
2016 } else {
2017 $search_query_part = "";
2018 }
2019
2020 $view_query_part = "";
2021
2022 if ($view_mode == "adaptive") {
2023 if ($search) {
2024 $view_query_part = " ";
2025 } else if ($feed != -1) {
f295c368 2026 $unread = getFeedUnread($link, $feed, $cat_view);
ef393de7
AD
2027 if ($unread > 0) {
2028 $view_query_part = " unread = true AND ";
2029 }
2030 }
2031 }
2032
2033 if ($view_mode == "marked") {
2034 $view_query_part = " marked = true AND ";
2035 }
2036
2037 if ($view_mode == "unread") {
2038 $view_query_part = " unread = true AND ";
2039 }
2040
2041 if ($limit > 0) {
2042 $limit_query_part = "LIMIT " . $limit;
2043 }
2044
2045 $vfeed_query_part = "";
2046
2047 // override query strategy and enable feed display when searching globally
2048 if ($search && $search_mode == "all_feeds") {
2049 $query_strategy_part = "ttrss_entries.id > 0";
2050 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
2051 } else if (preg_match("/^-?[0-9][0-9]*$/", $feed) == false) {
2052 $query_strategy_part = "ttrss_entries.id > 0";
2053 $vfeed_query_part = "(SELECT title FROM ttrss_feeds WHERE
2054 id = feed_id) as feed_title,";
2055 } else if ($feed >= 0 && $search && $search_mode == "this_cat") {
2056
2057 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
0a6c4846
AD
2058
2059 $tmp_result = false;
2060
2061 if ($cat_view) {
2062 $tmp_result = db_query($link, "SELECT id
2063 FROM ttrss_feeds WHERE cat_id = '$feed'");
2064 } else {
2065 $tmp_result = db_query($link, "SELECT id
2066 FROM ttrss_feeds WHERE cat_id = (SELECT cat_id FROM ttrss_feeds
2067 WHERE id = '$feed') AND id != '$feed'");
2068 }
ef393de7
AD
2069
2070 $cat_siblings = array();
2071
2072 if (db_num_rows($tmp_result) > 0) {
2073 while ($p = db_fetch_assoc($tmp_result)) {
2074 array_push($cat_siblings, "feed_id = " . $p["id"]);
2075 }
2076
2077 $query_strategy_part = sprintf("(feed_id = %d OR %s)",
2078 $feed, implode(" OR ", $cat_siblings));
2079
2080 } else {
2081 $query_strategy_part = "ttrss_entries.id > 0";
2082 }
2083
2084 } else if ($feed >= 0) {
2085
2086 if ($cat_view) {
5c365f60 2087
ef393de7
AD
2088 if ($feed > 0) {
2089 $query_strategy_part = "cat_id = '$feed'";
2090 } else {
2091 $query_strategy_part = "cat_id IS NULL";
2092 }
2093
2094 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
5c365f60 2095
ef393de7
AD
2096 } else {
2097 $tmp_result = db_query($link, "SELECT id
2098 FROM ttrss_feeds WHERE parent_feed = '$feed'
2099 ORDER BY cat_id,title");
2100
2101 $parent_ids = array();
2102
2103 if (db_num_rows($tmp_result) > 0) {
2104 while ($p = db_fetch_assoc($tmp_result)) {
2105 array_push($parent_ids, "feed_id = " . $p["id"]);
2106 }
2107
2108 $query_strategy_part = sprintf("(feed_id = %d OR %s)",
2109 $feed, implode(" OR ", $parent_ids));
2110
2111 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
2112 } else {
2113 $query_strategy_part = "feed_id = '$feed'";
2114 }
2115 }
2116 } else if ($feed == -1) { // starred virtual feed
2117 $query_strategy_part = "marked = true";
2118 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
2119 } else if ($feed <= -10) { // labels
2120 $label_id = -$feed - 11;
2121
2122 $tmp_result = db_query($link, "SELECT sql_exp FROM ttrss_labels
2123 WHERE id = '$label_id'");
2124
2125 $query_strategy_part = db_fetch_result($tmp_result, 0, "sql_exp");
2126
2127 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
2128 } else {
2129 $query_strategy_part = "id > 0"; // dumb
2130 }
d6e5706d
AD
2131
2132 if (get_pref($link, 'REVERSE_HEADLINES')) {
2133 $order_by = "updated";
2134 } else {
2135 $order_by = "updated DESC";
2136 }
e939722a
AD
2137
2138 if ($override_order) {
2139 $order_by = $override_order;
2140 }
ef393de7
AD
2141
2142 $feed_title = "";
2143
2144 if ($search && $search_mode == "all_feeds") {
2145 $feed_title = "Global search results ($search)";
2146 } else if ($search && preg_match('/^-?[0-9][0-9]*$/', $feed) == false) {
e1eb2147 2147 $feed_title = "Tag search results ($search, $feed)";
ef393de7
AD
2148 } else if (preg_match('/^-?[0-9][0-9]*$/', $feed) == false) {
2149 $feed_title = $feed;
2150 } else if (preg_match('/^-?[0-9][0-9]*$/', $feed) != false && $feed >= 0) {
2151
2152 if ($cat_view) {
5c365f60 2153
ef393de7
AD
2154 if ($feed != 0) {
2155 $result = db_query($link, "SELECT title FROM ttrss_feed_categories
2156 WHERE id = '$feed' AND owner_uid = " . $_SESSION["uid"]);
2157 $feed_title = db_fetch_result($result, 0, "title");
2158 } else {
2159 $feed_title = "Uncategorized";
2160 }
e1eb2147
AD
2161
2162 if ($search) {
2163 $feed_title = "Category search results ($search, $feed_title)";
2164 }
2165
ef393de7
AD
2166 } else {
2167
2168 $result = db_query($link, "SELECT title,site_url,last_error FROM ttrss_feeds
2169 WHERE id = '$feed' AND owner_uid = " . $_SESSION["uid"]);
2170
2171 $feed_title = db_fetch_result($result, 0, "title");
2172 $feed_site_url = db_fetch_result($result, 0, "site_url");
2173 $last_error = db_fetch_result($result, 0, "last_error");
e1eb2147
AD
2174
2175 if ($search) {
2176 $feed_title = "Feed search results ($search, $feed_title)";
2177 }
ef393de7
AD
2178 }
2179
2180 } else if ($feed == -1) {
2181 $feed_title = "Starred articles";
2182 } else if ($feed < -10) {
2183 $label_id = -$feed - 11;
2184 $result = db_query($link, "SELECT description FROM ttrss_labels
2185 WHERE id = '$label_id'");
2186 $feed_title = db_fetch_result($result, 0, "description");
88040f57
AD
2187
2188 if ($search) {
2189 $feed_title = "Label search results ($search, $feed_title)";
2190 }
ef393de7
AD
2191 } else {
2192 $feed_title = "?";
2193 }
2194
2195 $feed_title = db_unescape_string($feed_title);
2196
2197 if ($feed < -10) error_reporting (0);
2198
2199 if (preg_match("/^-?[0-9][0-9]*$/", $feed) != false) {
2200
2201 if ($feed >= 0) {
2202 $feed_kind = "Feeds";
2203 } else {
2204 $feed_kind = "Labels";
2205 }
2206
2207 $content_query_part = "content as content_preview,";
2208
2209 $query = "SELECT
2210 ttrss_entries.id,ttrss_entries.title,
2211 SUBSTRING(updated,1,16) as updated,
2212 unread,feed_id,marked,link,last_read,
2213 SUBSTRING(last_read,1,19) as last_read_noms,
2214 $vfeed_query_part
2215 $content_query_part
2216 SUBSTRING(updated,1,19) as updated_noms
2217 FROM
2218 ttrss_entries,ttrss_user_entries,ttrss_feeds
2219 WHERE
2220 ttrss_user_entries.feed_id = ttrss_feeds.id AND
2221 ttrss_user_entries.ref_id = ttrss_entries.id AND
2222 ttrss_user_entries.owner_uid = '".$_SESSION["uid"]."' AND
2223 $search_query_part
2224 $view_query_part
2225 $query_strategy_part ORDER BY $order_by
2226 $limit_query_part";
2227
2228 $result = db_query($link, $query);
2229
2230 if ($_GET["debug"]) print $query;
2231
2232 } else {
2233 // browsing by tag
2234
2235 $feed_kind = "Tags";
2236
2237 $result = db_query($link, "SELECT
2238 ttrss_entries.id as id,title,
2239 SUBSTRING(updated,1,16) as updated,
2240 unread,feed_id,
2241 marked,link,last_read,
2242 SUBSTRING(last_read,1,19) as last_read_noms,
2243 $vfeed_query_part
2244 $content_query_part
2245 SUBSTRING(updated,1,19) as updated_noms
2246 FROM
2247 ttrss_entries,ttrss_user_entries,ttrss_tags
2248 WHERE
2249 ref_id = ttrss_entries.id AND
2250 ttrss_user_entries.owner_uid = '".$_SESSION["uid"]."' AND
2251 post_int_id = int_id AND tag_name = '$feed' AND
2252 $view_query_part
2253 $search_query_part
2254 $query_strategy_part ORDER BY $order_by
2255 $limit_query_part");
2256 }
2257
c7188969 2258 return array($result, $feed_title, $feed_site_url, $last_error);
ef393de7
AD
2259
2260 }
2261
e1eb2147
AD
2262 function generate_syndicated_feed($link, $feed, $is_cat,
2263 $search, $search_mode, $match_on) {
18664970
AD
2264
2265 $qfh_ret = queryFeedHeadlines($link, $feed,
e939722a 2266 30, false, $is_cat, $search, $search_mode, $match_on, "updated DESC");
18664970
AD
2267
2268 $result = $qfh_ret[0];
59e2aab4 2269 $feed_title = htmlspecialchars($qfh_ret[1]);
18664970
AD
2270 $feed_site_url = $qfh_ret[2];
2271 $last_error = $qfh_ret[3];
2272
2273 print "<rss version=\"2.0\">
2274 <channel>
2275 <title>$feed_title</title>
2276 <link>$feed_site_url</link>
2277 <generator>Tiny Tiny RSS v".VERSION."</generator>";
2278
2279 while ($line = db_fetch_assoc($result)) {
2280 print "<item>";
2281 print "<link>" . htmlspecialchars($line["link"]) . "</link>";
2282
2283 $rfc822_date = date('r', strtotime($line["updated"]));
2284
2285 print "<pubDate>$rfc822_date</pubDate>";
2286
2287 print "<title>" .
2288 htmlspecialchars($line["title"]) . "</title>";
2289
2290 print "<description>" .
2291 htmlspecialchars($line["content_preview"]) . "</description>";
2292
2293 print "</item>";
2294 }
2295
2296 print "</channel></rss>";
2297
2298 }
2299
0a6c4846
AD
2300 function getCategoryTitle($link, $cat_id) {
2301
2302 $result = db_query($link, "SELECT title FROM ttrss_feed_categories WHERE
2303 id = '$cat_id'");
2304
2305 if (db_num_rows($result) == 1) {
2306 return db_fetch_result($result, 0, "title");
2307 } else {
2308 return "Uncategorized";
2309 }
2310 }
2311
183ad07b
AD
2312 function sanitize_rss($str) {
2313 $res = "";
2314
2315 $res = preg_replace('/<script.*?>/i',
2316 "<p class=\"scriptWarn\">", $str);
2317
2318 $res = preg_replace('/<\/script>/i',
2319 "</p>", $res);
2320
2321 return $res;
2322 }
40d13c28 2323?>