]> git.wh0rd.org - tt-rss.git/blame - functions.php
move 3 options to advanced section
[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
44e241cb
AD
533 db_query($link, "BEGIN");
534
4c193675
AD
535 if (db_num_rows($result) == 0) {
536
537 // base post entry does not exist, create it
538
4c193675
AD
539 $result = db_query($link,
540 "INSERT INTO ttrss_entries
541 (title,
542 guid,
543 link,
544 updated,
545 content,
546 content_hash,
547 no_orig_date,
548 date_entered,
11b0dce2 549 comments,
b6104dee
AD
550 num_comments,
551 author)
4c193675
AD
552 VALUES
553 ('$entry_title',
554 '$entry_guid',
555 '$entry_link',
556 '$entry_timestamp_fmt',
557 '$entry_content',
558 '$content_hash',
559 $no_orig_date,
560 NOW(),
11b0dce2 561 '$entry_comments',
b6104dee
AD
562 '$num_comments',
563 '$entry_author')");
8926aab8
AD
564 } else {
565 // we keep encountering the entry in feeds, so we need to
566 // update date_entered column so that we don't get horrible
567 // dupes when the entry gets purged and reinserted again e.g.
568 // in the case of SLOW SLOW OMG SLOW updating feeds
569
570 $base_entry_id = db_fetch_result($result, 0, "id");
571
572 db_query($link, "UPDATE ttrss_entries SET date_entered = NOW()
573 WHERE id = '$base_entry_id'");
4c193675
AD
574 }
575
576 // now it should exist, if not - bad luck then
577
6385315d
AD
578 $result = db_query($link, "SELECT
579 id,content_hash,no_orig_date,title,
8926aab8 580 substring(date_entered,1,19) as date_entered,
11b0dce2
AD
581 substring(updated,1,19) as updated,
582 num_comments
6385315d
AD
583 FROM
584 ttrss_entries
585 WHERE guid = '$entry_guid'");
4c193675
AD
586
587 if (db_num_rows($result) == 1) {
588
11b0dce2
AD
589 // this will be used below in update handler
590 $orig_content_hash = db_fetch_result($result, 0, "content_hash");
591 $orig_title = db_fetch_result($result, 0, "title");
592 $orig_num_comments = db_fetch_result($result, 0, "num_comments");
8926aab8
AD
593 $orig_date_entered = strtotime(db_fetch_result($result,
594 0, "date_entered"));
6385315d 595
11b0dce2 596 $ref_id = db_fetch_result($result, 0, "id");
4c193675 597
11b0dce2 598 // check for user post link to main table
4c193675 599
11b0dce2
AD
600 // do we allow duplicate posts with same GUID in different feeds?
601 if (get_pref($link, "ALLOW_DUPLICATE_POSTS", $owner_uid)) {
602 $dupcheck_qpart = "AND feed_id = '$feed'";
603 } else {
604 $dupcheck_qpart = "";
605 }
71604ca4 606
11b0dce2 607// error_reporting(0);
19c9cb11 608
11b0dce2
AD
609 $filter_name = get_filter_name($entry_title, $entry_content,
610 $entry_link, $filters);
19c9cb11 611
11b0dce2
AD
612 if ($filter_name == "filter") {
613 continue;
614 }
19c9cb11 615
11b0dce2 616// error_reporting (DEFAULT_ERROR_LEVEL);
3a933f22 617
11b0dce2
AD
618 $result = db_query($link,
619 "SELECT ref_id FROM ttrss_user_entries WHERE
620 ref_id = '$ref_id' AND owner_uid = '$owner_uid'
621 $dupcheck_qpart");
622
623 // okay it doesn't exist - create user entry
624 if (db_num_rows($result) == 0) {
625
626 if ($filter_name != 'catchup') {
627 $unread = 'true';
628 $last_read_qpart = 'NULL';
629 } else {
630 $unread = 'false';
631 $last_read_qpart = 'NOW()';
632 }
dd7d3187
AD
633
634 if ($filter_name == 'mark') {
635 $marked = 'true';
636 } else {
637 $marked = 'false';
638 }
19c9cb11 639
11b0dce2
AD
640 $result = db_query($link,
641 "INSERT INTO ttrss_user_entries
dd7d3187 642 (ref_id, owner_uid, feed_id, unread, last_read, marked)
11b0dce2 643 VALUES ('$ref_id', '$owner_uid', '$feed', $unread,
dd7d3187 644 $last_read_qpart, $marked)");
11b0dce2
AD
645 }
646
6385315d
AD
647 $post_needs_update = false;
648
a2770077 649 if (get_pref($link, "UPDATE_POST_ON_CHECKSUM_CHANGE", $owner_uid) &&
6385315d
AD
650 ($content_hash != $orig_content_hash)) {
651 $post_needs_update = true;
652 }
653
654 if ($orig_title != $entry_title) {
655 $post_needs_update = true;
656 }
657
11b0dce2
AD
658 if ($orig_num_comments != $num_comments) {
659 $post_needs_update = true;
660 }
661
6385315d
AD
662// this doesn't seem to be very reliable
663//
664// if ($orig_timestamp != $entry_timestamp && !$orig_no_orig_date) {
665// $post_needs_update = true;
666// }
667
668 // if post needs update, update it and mark all user entries
1c73bc0c 669 // linking to this post as updated
6385315d
AD
670 if ($post_needs_update) {
671
672// print "<!-- post $orig_title needs update : $post_needs_update -->";
673
6385315d 674 db_query($link, "UPDATE ttrss_entries
11b0dce2
AD
675 SET title = '$entry_title', content = '$entry_content',
676 num_comments = '$num_comments'
6385315d
AD
677 WHERE id = '$ref_id'");
678
4919fb42
AD
679 if (get_pref($link, "MARK_UNREAD_ON_UPDATE")) {
680 db_query($link, "UPDATE ttrss_user_entries
681 SET last_read = null, unread = true WHERE ref_id = '$ref_id'");
682 } else {
683 db_query($link, "UPDATE ttrss_user_entries
684 SET last_read = null WHERE ref_id = '$ref_id' AND unread = false");
685 }
6385315d
AD
686
687 }
4c193675
AD
688 }
689
44e241cb
AD
690 db_query($link, "COMMIT");
691
eb36b4eb
AD
692 /* taaaags */
693 // <a href="http://technorati.com/tag/Xorg" rel="tag">Xorg</a>, //
694
05732aa0 695 $entry_tags = null;
eb36b4eb 696
372ced8b 697 preg_match_all("/<a.*?href=.http:\/\/.*?technorati.com\/tag\/([^\"\'>]+)/i",
ee2c3050
AD
698 $entry_content_unescaped, $entry_tags);
699
700// print "<br>$entry_title : $entry_content_unescaped<br>";
701// print_r($entry_tags);
372ced8b 702// print "<br>";
eb36b4eb
AD
703
704 $entry_tags = $entry_tags[1];
705
706 if (count($entry_tags) > 0) {
707
44e241cb
AD
708 db_query($link, "BEGIN");
709
05732aa0
AD
710 $result = db_query($link, "SELECT id,int_id
711 FROM ttrss_entries,ttrss_user_entries
25da6909 712 WHERE guid = '$entry_guid'
05732aa0 713 AND feed_id = '$feed' AND ref_id = id
7fed1940 714 AND owner_uid = '$owner_uid'");
eb36b4eb 715
fe99ab12 716 if (db_num_rows($result) == 1) {
eb36b4eb 717
fe99ab12
AD
718 $entry_id = db_fetch_result($result, 0, "id");
719 $entry_int_id = db_fetch_result($result, 0, "int_id");
720
721 foreach ($entry_tags as $tag) {
722 $tag = db_escape_string(strtolower($tag));
31483fc1
AD
723
724 $tag = str_replace("+", " ", $tag);
fe99ab12
AD
725 $tag = str_replace("technorati tag: ", "", $tag);
726
727 $result = db_query($link, "SELECT id FROM ttrss_tags
728 WHERE tag_name = '$tag' AND post_int_id = '$entry_int_id' AND
729 owner_uid = '$owner_uid' LIMIT 1");
730
731 // print db_fetch_result($result, 0, "id");
732
733 if ($result && db_num_rows($result) == 0) {
734
735 // print "tagging $entry_id as $tag<br>";
736
737 db_query($link, "INSERT INTO ttrss_tags
738 (owner_uid,tag_name,post_int_id)
739 VALUES ('$owner_uid','$tag', '$entry_int_id')");
740 }
741 }
eb36b4eb 742 }
44e241cb 743 db_query($link, "COMMIT");
05732aa0 744 }
4c193675 745 }
40d13c28 746
ab3d0b99
AD
747 db_query($link, "UPDATE ttrss_feeds
748 SET last_updated = NOW(), last_error = '' WHERE id = '$feed'");
eb36b4eb 749
44e241cb 750// db_query($link, "COMMIT");
dd8c76a9 751
ab3d0b99
AD
752 } else {
753 $error_msg = db_escape_string(magpie_error());
754 db_query($link,
aa5f9f5f
AD
755 "UPDATE ttrss_feeds SET last_error = '$error_msg',
756 last_updated = NOW() WHERE id = '$feed'");
40d13c28
AD
757 }
758
759 }
760
f175937c 761 function print_select($id, $default, $values, $attributes = "") {
79f3553b 762 print "<select name=\"$id\" id=\"$id\" $attributes>";
a0d53889
AD
763 foreach ($values as $v) {
764 if ($v == $default)
765 $sel = " selected";
766 else
767 $sel = "";
768
769 print "<option$sel>$v</option>";
770 }
771 print "</select>";
772 }
40d13c28 773
79f3553b
AD
774 function print_select_hash($id, $default, $values, $attributes = "") {
775 print "<select name=\"$id\" id='$id' $attributes>";
673d54ca
AD
776 foreach (array_keys($values) as $v) {
777 if ($v == $default)
778 $sel = "selected";
779 else
780 $sel = "";
781
782 print "<option $sel value=\"$v\">".$values[$v]."</option>";
783 }
784
785 print "</select>";
786 }
787
19c9cb11 788 function get_filter_name($title, $content, $link, $filters) {
e6155a06
AD
789
790 if ($filters["title"]) {
19c9cb11
AD
791 foreach ($filters["title"] as $filter) {
792 $reg_exp = $filter["reg_exp"];
793 if (preg_match("/$reg_exp/i", $title)) {
794 return $filter["action"];
795 }
e6155a06
AD
796 }
797 }
798
799 if ($filters["content"]) {
19c9cb11
AD
800 foreach ($filters["content"] as $filter) {
801 $reg_exp = $filter["reg_exp"];
802 if (preg_match("/$reg_exp/i", $content)) {
803 return $filter["action"];
804 }
e6155a06
AD
805 }
806 }
807
808 if ($filters["both"]) {
809 foreach ($filters["both"] as $filter) {
19c9cb11
AD
810 $reg_exp = $filter["reg_exp"];
811 if (preg_match("/$reg_exp/i", $title) ||
812 preg_match("/$reg_exp/i", $content)) {
813 return $filter["action"];
814 }
e6155a06
AD
815 }
816 }
817
3a933f22 818 if ($filters["link"]) {
19c9cb11
AD
819 $reg_exp = $filter["reg_exp"];
820 foreach ($filters["link"] as $filter) {
821 $reg_exp = $filter["reg_exp"];
822 if (preg_match("/$reg_exp/i", $link)) {
823 return $filter["action"];
824 }
3a933f22
AD
825 }
826 }
827
e6155a06
AD
828 return false;
829 }
830
9323147e 831 function printFeedEntry($feed_id, $class, $feed_title, $unread, $icon_file, $link,
fb1fb4ab 832 $rtl_content = false, $last_updated = false, $last_error = false) {
254e0e4b
AD
833
834 if (file_exists($icon_file) && filesize($icon_file) > 0) {
023fe037 835 $feed_icon = "<img id=\"FIMG-$feed_id\" src=\"$icon_file\">";
254e0e4b 836 } else {
023fe037 837 $feed_icon = "<img id=\"FIMG-$feed_id\" src=\"images/blank_icon.gif\">";
254e0e4b
AD
838 }
839
9323147e
AD
840 if ($rtl_content) {
841 $rtl_tag = "dir=\"rtl\"";
842 } else {
843 $rtl_tag = "dir=\"ltr\"";
844 }
845
78d5212c
AD
846 $error_notify_msg = "";
847
fb1fb4ab
AD
848 if ($last_error) {
849 $link_title = "Error: $last_error ($last_updated)";
78d5212c 850 $error_notify_msg = "(Error)";
ad780e9c 851 } else if ($last_updated) {
fb1fb4ab
AD
852 $link_title = "Updated: $last_updated";
853 }
854
855 $feed = "<a title=\"$link_title\" id=\"FEEDL-$feed_id\" href=\"javascript:viewfeed('$feed_id', 0);\">$feed_title</a>";
254e0e4b
AD
856
857 print "<li id=\"FEEDR-$feed_id\" class=\"$class\">";
b619ff15 858 if (get_pref($link, 'ENABLE_FEED_ICONS')) {
254e0e4b
AD
859 print "$feed_icon";
860 }
861
9323147e 862 print "<span $rtl_tag id=\"FEEDN-$feed_id\">$feed</span>";
254e0e4b
AD
863
864 if ($unread != 0) {
865 $fctr_class = "";
866 } else {
867 $fctr_class = "class=\"invisible\"";
868 }
869
9323147e 870 print " <span $rtl_tag $fctr_class id=\"FEEDCTR-$feed_id\">
254e0e4b 871 (<span id=\"FEEDU-$feed_id\">$unread</span>)</span>";
78d5212c
AD
872
873 if (get_pref($link, "EXTENDED_FEEDLIST")) {
874 print "<div class=\"feedExtInfo\">
875 <span id=\"FLUPD-$feed_id\">$last_updated $error_notify_msg</span></div>";
876 }
877
254e0e4b
AD
878 print "</li>";
879
880 }
881
406d9489
AD
882 function getmicrotime() {
883 list($usec, $sec) = explode(" ",microtime());
884 return ((float)$usec + (float)$sec);
885 }
886
77e96719
AD
887 function print_radio($id, $default, $values, $attributes = "") {
888 foreach ($values as $v) {
889
890 if ($v == $default)
5da169d9 891 $sel = "checked";
77e96719 892 else
5da169d9
AD
893 $sel = "";
894
895 if ($v == "Yes") {
896 $sel .= " value=\"1\"";
897 } else {
898 $sel .= " value=\"0\"";
899 }
77e96719 900
69654950
AD
901 print "<input class=\"noborder\"
902 type=\"radio\" $sel $attributes name=\"$id\">&nbsp;$v&nbsp;";
77e96719
AD
903
904 }
905 }
906
ff485f1d
AD
907 function initialize_user_prefs($link, $uid) {
908
909 $uid = db_escape_string($uid);
910
911 db_query($link, "BEGIN");
912
913 $result = db_query($link, "SELECT pref_name,def_value FROM ttrss_prefs");
914
915 $u_result = db_query($link, "SELECT pref_name
916 FROM ttrss_user_prefs WHERE owner_uid = '$uid'");
917
918 $active_prefs = array();
919
920 while ($line = db_fetch_assoc($u_result)) {
921 array_push($active_prefs, $line["pref_name"]);
922 }
923
924 while ($line = db_fetch_assoc($result)) {
925 if (array_search($line["pref_name"], $active_prefs) === FALSE) {
926// print "adding " . $line["pref_name"] . "<br>";
927
928 db_query($link, "INSERT INTO ttrss_user_prefs
929 (owner_uid,pref_name,value) VALUES
930 ('$uid', '".$line["pref_name"]."','".$line["def_value"]."')");
931
932 }
933 }
934
935 db_query($link, "COMMIT");
936
937 }
956c7629
AD
938
939 function lookup_user_id($link, $user) {
940
941 $result = db_query($link, "SELECT id FROM ttrss_users WHERE
942 login = '$login'");
943
944 if (db_num_rows($result) == 1) {
945 return db_fetch_result($result, 0, "id");
946 } else {
947 return false;
948 }
949 }
950
c8437f35
AD
951 function authenticate_user($link, $login, $password) {
952
131b01b3 953 if (!SINGLE_USER_MODE) {
c8437f35 954
131b01b3
AD
955 $pwd_hash = 'SHA1:' . sha1($password);
956
957 $result = db_query($link, "SELECT id,login,access_level FROM ttrss_users WHERE
958 login = '$login' AND pwd_hash = '$pwd_hash'");
959
960 if (db_num_rows($result) == 1) {
961 $_SESSION["uid"] = db_fetch_result($result, 0, "id");
962 $_SESSION["name"] = db_fetch_result($result, 0, "login");
963 $_SESSION["access_level"] = db_fetch_result($result, 0, "access_level");
964
965 db_query($link, "UPDATE ttrss_users SET last_login = NOW() WHERE id = " .
966 $_SESSION["uid"]);
967
968 $user_theme = get_user_theme_path($link);
969
970 $_SESSION["theme"] = $user_theme;
971 $_SESSION["ip_address"] = $_SERVER["REMOTE_ADDR"];
972
973 initialize_user_prefs($link, $_SESSION["uid"]);
974
975 return true;
976 }
977
978 return false;
503eb349 979
131b01b3 980 } else {
503eb349 981
131b01b3
AD
982 $_SESSION["uid"] = 1;
983 $_SESSION["name"] = "admin";
f557cd78 984
0bbba72d
AD
985 $user_theme = get_user_theme_path($link);
986
987 $_SESSION["theme"] = $user_theme;
988 $_SESSION["ip_address"] = $_SERVER["REMOTE_ADDR"];
989
990 initialize_user_prefs($link, $_SESSION["uid"]);
991
c8437f35
AD
992 return true;
993 }
c8437f35
AD
994 }
995
e6cb77a0
AD
996 function make_password($length = 8) {
997
998 $password = "";
798f722b
AD
999 $possible = "0123456789abcdfghjkmnpqrstvwxyzABCDFGHJKMNPQRSTVWXYZ";
1000
1001 $i = 0;
e6cb77a0
AD
1002
1003 while ($i < $length) {
1004 $char = substr($possible, mt_rand(0, strlen($possible)-1), 1);
1005
1006 if (!strstr($password, $char)) {
1007 $password .= $char;
1008 $i++;
1009 }
1010 }
1011 return $password;
1012 }
1013
1014 // this is called after user is created to initialize default feeds, labels
1015 // or whatever else
1016
1017 // user preferences are checked on every login, not here
1018
1019 function initialize_user($link, $uid) {
1020
1021 db_query($link, "insert into ttrss_labels (owner_uid,sql_exp,description)
1022 values ('$uid','unread = true', 'Unread articles')");
1023
1024 db_query($link, "insert into ttrss_labels (owner_uid,sql_exp,description)
1025 values ('$uid','last_read is null and unread = false', 'Updated articles')");
1026
1027 db_query($link, "insert into ttrss_feeds (owner_uid,title,feed_url)
74bff337 1028 values ('$uid', 'Tiny Tiny RSS: New Releases',
628fcd2c 1029 'http://tt-rss.spb.ru/releases.rss')");
3b0feb9b
AD
1030
1031 }
e6cb77a0 1032
b8aa49bc 1033 function logout_user() {
5ccc1cf5
AD
1034 session_destroy();
1035 if (isset($_COOKIE[session_name()])) {
1036 setcookie(session_name(), '', time()-42000, '/');
1037 }
b8aa49bc
AD
1038 }
1039
75836f33 1040 function get_script_urlpath() {
87a79fa4 1041 return preg_replace('/\/[^\/]*$/', "", $_SERVER["REQUEST_URI"]);
75836f33
AD
1042 }
1043
1044 function get_login_redirect() {
1045 $server = $_SERVER["SERVER_NAME"];
1046
1047 if (ENABLE_LOGIN_SSL) {
1048 $protocol = "https";
1049 } else {
1050 $protocol = "http";
1051 }
1052
1053 $url_path = get_script_urlpath();
1054
1055 $redirect_uri = "$protocol://$server$url_path/login.php";
1056
1057 return $redirect_uri;
1058 }
1059
916f788a 1060 function validate_session($link) {
a2e9b457 1061 if (SESSION_CHECK_ADDRESS && $_SESSION["uid"]) {
916f788a
AD
1062 if ($_SESSION["ip_address"]) {
1063 if ($_SESSION["ip_address"] != $_SERVER["REMOTE_ADDR"]) {
1064 return false;
1065 }
1066 }
1067 }
1068 return true;
1069 }
1070
7ae65adf
AD
1071 function basic_nosid_redirect_check() {
1072 if (!SINGLE_USER_MODE) {
3dd46f19 1073 if (!$_COOKIE[get_session_cookie_name()]) {
7ae65adf
AD
1074 $redirect_uri = get_login_redirect();
1075 $return_to = preg_replace('/.*?\//', '', $_SERVER["REQUEST_URI"]);
1076 header("Location: $redirect_uri?rt=$return_to");
1077 exit;
1078 }
1079 }
1080 }
1081
b8aa49bc
AD
1082 function login_sequence($link) {
1083 if (!SINGLE_USER_MODE) {
75836f33 1084
916f788a
AD
1085 if (!validate_session($link)) {
1086 logout_user();
1087 $redirect_uri = get_login_redirect();
1088 $return_to = preg_replace('/.*?\//', '', $_SERVER["REQUEST_URI"]);
1089 header("Location: $redirect_uri?rt=$return_to");
1090 exit;
1091 }
1092
b8aa49bc
AD
1093 if (!USE_HTTP_AUTH) {
1094 if (!$_SESSION["uid"]) {
75836f33 1095 $redirect_uri = get_login_redirect();
e31dca14
AD
1096 $return_to = preg_replace('/.*?\//', '', $_SERVER["REQUEST_URI"]);
1097 header("Location: $redirect_uri?rt=$return_to");
b8aa49bc
AD
1098 exit;
1099 }
1100 } else {
f557cd78
AD
1101 if (!$_SESSION["uid"]) {
1102 if (!$_SERVER["PHP_AUTH_USER"]) {
1103
1104 header('WWW-Authenticate: Basic realm="Tiny Tiny RSS"');
1105 header('HTTP/1.0 401 Unauthorized');
1106 exit;
1107
1108 } else {
1109 $auth_result = authenticate_user($link,
1110 $_SERVER["PHP_AUTH_USER"], $_SERVER["PHP_AUTH_PW"]);
1111
1112 if (!$auth_result) {
1113 header('WWW-Authenticate: Basic realm="Tiny Tiny RSS"');
1114 header('HTTP/1.0 401 Unauthorized');
1115 exit;
1116 }
1117 }
1118 }
b8aa49bc
AD
1119 }
1120 } else {
0bbba72d 1121 return authenticate_user($link, "admin", null);
b8aa49bc
AD
1122 }
1123 }
3547842a
AD
1124
1125 function truncate_string($str, $max_len) {
12db369c
AD
1126 if (mb_strlen($str, "utf-8") > $max_len - 3) {
1127 return mb_substr($str, 0, $max_len, "utf-8") . "...";
3547842a
AD
1128 } else {
1129 return $str;
1130 }
1131 }
54a60e1a
AD
1132
1133 function get_user_theme_path($link) {
798f722b
AD
1134 $result = db_query($link, "SELECT theme_path
1135 FROM
1136 ttrss_themes,ttrss_users
1137 WHERE ttrss_themes.id = theme_id AND ttrss_users.id = " . $_SESSION["uid"]);
54a60e1a
AD
1138 if (db_num_rows($result) != 0) {
1139 return db_fetch_result($result, 0, "theme_path");
1140 } else {
1141 return null;
1142 }
1143 }
be773442
AD
1144
1145 function smart_date_time($timestamp) {
1146 if (date("Y.m.d", $timestamp) == date("Y.m.d")) {
1147 return date("G:i", $timestamp);
f26450f1 1148 } else if (date("Y", $timestamp) == date("Y")) {
be773442
AD
1149 return date("M d, G:i", $timestamp);
1150 } else {
b02111c2 1151 return date("Y/m/d G:i", $timestamp);
be773442
AD
1152 }
1153 }
1154
1155 function smart_date($timestamp) {
1156 if (date("Y.m.d", $timestamp) == date("Y.m.d")) {
1157 return "Today";
f26450f1 1158 } else if (date("Y", $timestamp) == date("Y")) {
be773442
AD
1159 return date("D m", $timestamp);
1160 } else {
b02111c2 1161 return date("Y/m/d", $timestamp);
be773442
AD
1162 }
1163 }
a654a595
AD
1164
1165 function sql_bool_to_string($s) {
1166 if ($s == "t" || $s == "1") {
1167 return "true";
1168 } else {
1169 return "false";
1170 }
1171 }
e3c99f3b
AD
1172
1173 function sql_bool_to_bool($s) {
1174 if ($s == "t" || $s == "1") {
1175 return true;
1176 } else {
1177 return false;
1178 }
1179 }
0ea4fb50 1180
e3c99f3b 1181
0ea4fb50
AD
1182 function toggleEvenOdd($a) {
1183 if ($a == "even")
1184 return "odd";
1185 else
1186 return "even";
1187 }
6043fb7e
AD
1188
1189 function sanity_check($link) {
9cbca41f 1190
6043fb7e
AD
1191 $error_code = 0;
1192 $result = db_query($link, "SELECT schema_version FROM ttrss_version");
1193 $schema_version = db_fetch_result($result, 0, "schema_version");
1194
1195 if ($schema_version != SCHEMA_VERSION) {
1196 $error_code = 5;
1197 }
1198
6043fb7e 1199 if ($error_code != 0) {
3560a0be 1200 print_error_xml(5);
6043fb7e
AD
1201 return false;
1202 } else {
1203 return true;
9cbca41f 1204 }
6043fb7e
AD
1205 }
1206
27981ca3
AD
1207 function file_is_locked($filename) {
1208 error_reporting(0);
1209 $fp = fopen($filename, "r");
1210 error_reporting(DEFAULT_ERROR_LEVEL);
1211 if ($fp) {
1212 if (flock($fp, LOCK_EX | LOCK_NB)) {
1213 flock($fp, LOCK_UN);
1214 fclose($fp);
1215 return false;
1216 }
1217 fclose($fp);
1218 return true;
1219 }
1220 return false;
1221 }
1222
fcb4c0c9
AD
1223 function make_lockfile($filename) {
1224 $fp = fopen($filename, "w");
1225
1226 if (flock($fp, LOCK_EX | LOCK_NB)) {
1227 return $fp;
1228 } else {
1229 return false;
1230 }
1231 }
1232
894ebcf5
AD
1233 function sql_random_function() {
1234 if (DB_TYPE == "mysql") {
1235 return "RAND()";
1236 } else {
1237 return "RANDOM()";
1238 }
1239 }
1240
23aa0d16
AD
1241 function catchup_feed($link, $feed, $cat_view) {
1242 if (preg_match("/^[0-9][0-9]*$/", $feed) != false && $feed >= 0) {
1243
1244 if ($cat_view) {
1245
1246 if ($feed > 0) {
1247 $cat_qpart = "cat_id = '$feed'";
1248 } else {
1249 $cat_qpart = "cat_id IS NULL";
1250 }
1251
1252 $tmp_result = db_query($link, "SELECT id
1253 FROM ttrss_feeds WHERE $cat_qpart AND owner_uid = " .
1254 $_SESSION["uid"]);
1255
1256 while ($tmp_line = db_fetch_assoc($tmp_result)) {
1257
1258 $tmp_feed = $tmp_line["id"];
1259
1260 db_query($link, "UPDATE ttrss_user_entries
1261 SET unread = false,last_read = NOW()
1262 WHERE feed_id = '$tmp_feed' AND owner_uid = " . $_SESSION["uid"]);
1263 }
1264
1265 } else if ($feed > 0) {
1266
1267 $tmp_result = db_query($link, "SELECT id
1268 FROM ttrss_feeds WHERE parent_feed = '$feed'
1269 ORDER BY cat_id,title");
1270
1271 $parent_ids = array();
1272
1273 if (db_num_rows($tmp_result) > 0) {
1274 while ($p = db_fetch_assoc($tmp_result)) {
1275 array_push($parent_ids, "feed_id = " . $p["id"]);
1276 }
1277
1278 $children_qpart = implode(" OR ", $parent_ids);
1279
1280 db_query($link, "UPDATE ttrss_user_entries
1281 SET unread = false,last_read = NOW()
1282 WHERE (feed_id = '$feed' OR $children_qpart)
1283 AND owner_uid = " . $_SESSION["uid"]);
1284
1285 } else {
1286 db_query($link, "UPDATE ttrss_user_entries
1287 SET unread = false,last_read = NOW()
1288 WHERE feed_id = '$feed' AND owner_uid = " . $_SESSION["uid"]);
1289 }
1290
1291 } else if ($feed < 0 && $feed > -10) { // special, like starred
1292
1293 if ($feed == -1) {
1294 db_query($link, "UPDATE ttrss_user_entries
1295 SET unread = false,last_read = NOW()
1296 WHERE marked = true AND owner_uid = ".$_SESSION["uid"]);
1297 }
1298
1299 } else if ($feed < -10) { // label
1300
1301 // TODO make this more efficient
1302
1303 $label_id = -$feed - 11;
1304
1305 $tmp_result = db_query($link, "SELECT sql_exp FROM ttrss_labels
1306 WHERE id = '$label_id'");
1307
1308 if ($tmp_result) {
1309 $sql_exp = db_fetch_result($tmp_result, 0, "sql_exp");
1310
1311 db_query($link, "BEGIN");
1312
1313 $tmp2_result = db_query($link,
1314 "SELECT
1315 int_id
1316 FROM
1317 ttrss_user_entries,ttrss_entries
1318 WHERE
1319 ref_id = id AND
1320 $sql_exp AND
1321 owner_uid = " . $_SESSION["uid"]);
1322
1323 while ($tmp_line = db_fetch_assoc($tmp2_result)) {
1324 db_query($link, "UPDATE
1325 ttrss_user_entries
1326 SET
1327 unread = false, last_read = NOW()
1328 WHERE
1329 int_id = " . $tmp_line["int_id"]);
1330 }
1331
1332 db_query($link, "COMMIT");
1333
1334/* db_query($link, "UPDATE ttrss_user_entries,ttrss_entries
1335 SET unread = false,last_read = NOW()
1336 WHERE $sql_exp
1337 AND ref_id = id
1338 AND owner_uid = ".$_SESSION["uid"]); */
1339 }
1340 }
1341 } else { // tag
1342 db_query($link, "BEGIN");
1343
1344 $tag_name = db_escape_string($feed);
1345
1346 $result = db_query($link, "SELECT post_int_id FROM ttrss_tags
1347 WHERE tag_name = '$tag_name' AND owner_uid = " . $_SESSION["uid"]);
1348
1349 while ($line = db_fetch_assoc($result)) {
1350 db_query($link, "UPDATE ttrss_user_entries SET
1351 unread = false, last_read = NOW()
1352 WHERE int_id = " . $line["post_int_id"]);
1353 }
1354 db_query($link, "COMMIT");
1355 }
1356 }
1357
1358 function update_generic_feed($link, $feed, $cat_view) {
1359 if ($cat_view) {
1360
1361 if ($feed > 0) {
1362 $cat_qpart = "cat_id = '$feed'";
1363 } else {
1364 $cat_qpart = "cat_id IS NULL";
1365 }
1366
1367 $tmp_result = db_query($link, "SELECT feed_url FROM ttrss_feeds
1368 WHERE $cat_qpart AND owner_uid = " . $_SESSION["uid"]);
1369
1370 while ($tmp_line = db_fetch_assoc($tmp_result)) {
1371 $feed_url = $tmp_line["feed_url"];
1372 update_rss_feed($link, $feed_url, $feed, ENABLE_UPDATE_DAEMON);
1373 }
1374
1375 } else {
1376 $tmp_result = db_query($link, "SELECT feed_url FROM ttrss_feeds
1377 WHERE id = '$feed'");
1378 $feed_url = db_fetch_result($tmp_result, 0, "feed_url");
1379 update_rss_feed($link, $feed_url, $feed, ENABLE_UPDATE_DAEMON);
1380 }
1381 }
a9cb1f83
AD
1382
1383 function getAllCounters($link) {
1384 getLabelCounters($link);
1385 getFeedCounters($link);
1386 getTagCounters($link);
1387 getGlobalCounters($link);
1388 if (get_pref($link, 'ENABLE_FEED_CATS')) {
1389 getCategoryCounters($link);
1390 }
1391 }
1392
1393 function getCategoryCounters($link) {
1394 $result = db_query($link, "SELECT cat_id,SUM((SELECT COUNT(int_id)
1395 FROM ttrss_user_entries WHERE feed_id = ttrss_feeds.id
1396 AND unread = true)) AS unread FROM ttrss_feeds
1397 WHERE
1398 owner_uid = ".$_SESSION["uid"]." GROUP BY cat_id");
1399
1400 while ($line = db_fetch_assoc($result)) {
1401 $line["cat_id"] = sprintf("%d", $line["cat_id"]);
1402 print "<counter type=\"category\" id=\"".$line["cat_id"]."\" counter=\"".
1403 $line["unread"]."\"/>";
1404 }
1405 }
1406
f295c368
AD
1407 function getCategoryUnread($link, $cat) {
1408
1409 $result = db_query($link, "SELECT id FROM ttrss_feeds WHERE cat_id = '$cat'
1410 AND owner_uid = " . $_SESSION["uid"]);
1411
1412 $cat_feeds = array();
1413 while ($line = db_fetch_assoc($result)) {
1414 array_push($cat_feeds, "feed_id = " . $line["id"]);
1415 }
1416
1417 $match_part = implode(" OR ", $cat_feeds);
1418
1419 $result = db_query($link, "SELECT COUNT(int_id) AS unread
1420 FROM ttrss_user_entries
4919fb42 1421 WHERE unread = true AND ($match_part) AND owner_uid = " . $_SESSION["uid"]);
f295c368
AD
1422
1423 $unread = 0;
1424
1425 # this needs to be rewritten
1426 while ($line = db_fetch_assoc($result)) {
1427 $unread += $line["unread"];
1428 }
1429
1430 return $unread;
1431
1432 }
1433
1434 function getFeedUnread($link, $feed, $is_cat = false) {
a9cb1f83 1435 $n_feed = sprintf("%d", $feed);
f295c368
AD
1436
1437 if ($is_cat) {
831ff047 1438 return getCategoryUnread($link, $n_feed);
f295c368 1439 } else if ($n_feed == -1) {
a9cb1f83 1440 $match_part = "marked = true";
4919fb42 1441 } else if ($n_feed > 0) {
831ff047 1442
4919fb42
AD
1443 $result = db_query($link, "SELECT id FROM ttrss_feeds WHERE parent_feed = '$n_feed'
1444 AND owner_uid = " . $_SESSION["uid"]);
831ff047
AD
1445
1446 if (db_num_rows($result) > 0) {
4919fb42 1447
831ff047
AD
1448 $linked_feeds = array();
1449 while ($line = db_fetch_assoc($result)) {
1450 array_push($linked_feeds, "feed_id = " . $line["id"]);
1451 }
1452
1453 $match_part = implode(" OR ", $linked_feeds);
1454
4919fb42
AD
1455 $result = db_query($link, "SELECT COUNT(int_id) AS unread
1456 FROM ttrss_user_entries
1457 WHERE unread = true AND ($match_part) AND owner_uid = " . $_SESSION["uid"]);
1458
1459 $unread = 0;
1460
1461 # this needs to be rewritten
1462 while ($line = db_fetch_assoc($result)) {
1463 $unread += $line["unread"];
1464 }
1465
1466 return $unread;
1467
831ff047
AD
1468 } else {
1469 $match_part = "feed_id = '$n_feed'";
1470 }
a9cb1f83
AD
1471 } else if ($feed < -10) {
1472 $label_id = -$feed - 11;
1473
1474 $result = db_query($link, "SELECT sql_exp FROM ttrss_labels WHERE
1475 id = '$label_id' AND owner_uid = " . $_SESSION["uid"]);
1476
1477 $match_part = db_fetch_result($result, 0, "sql_exp");
1478 }
1479
1480 if ($match_part) {
1481
1482 $result = db_query($link, "SELECT count(int_id) AS unread
1483 FROM ttrss_user_entries
1484 WHERE unread = true AND $match_part AND owner_uid = " . $_SESSION["uid"]);
1485
1486 } else {
1487
1488 $result = db_query($link, "SELECT COUNT(post_int_id) AS unread
1489 FROM ttrss_tags,ttrss_user_entries
1490 WHERE tag_name = '$feed' AND post_int_id = int_id AND unread = true AND
1491 ttrss_tags.owner_uid = " . $_SESSION["uid"]);
1492 }
1493
1494 $unread = db_fetch_result($result, 0, "unread");
1495 return $unread;
1496 }
1497
1498 /* FIXME this needs reworking */
1499
1500 function getGlobalUnread($link) {
1501 $result = db_query($link, "SELECT count(id) as c_id FROM ttrss_entries,ttrss_user_entries
1502 WHERE unread = true AND
1503 ttrss_user_entries.ref_id = ttrss_entries.id AND
1504 owner_uid = " . $_SESSION["uid"]);
1505 $c_id = db_fetch_result($result, 0, "c_id");
1506 return $c_id;
1507 }
1508
1509 function getGlobalCounters($link, $global_unread = -1) {
1510 if ($global_unread == -1) {
1511 $global_unread = getGlobalUnread($link);
1512 }
1513 print "<counter type=\"global\" id='global-unread' counter='$global_unread'/>";
1514 }
1515
1516 function getTagCounters($link, $smart_mode = SMART_RPC_COUNTERS) {
1517
1518 if ($smart_mode) {
1519 if (!$_SESSION["tctr_last_value"]) {
1520 $_SESSION["tctr_last_value"] = array();
1521 }
1522 }
1523
1524 $old_counters = $_SESSION["tctr_last_value"];
1525
1526 $tctrs_modified = false;
1527
1528/* $result = db_query($link, "SELECT tag_name,count(ttrss_entries.id) AS count
1529 FROM ttrss_tags,ttrss_entries,ttrss_user_entries WHERE
1530 ttrss_user_entries.ref_id = ttrss_entries.id AND
1531 ttrss_tags.owner_uid = ".$_SESSION["uid"]." AND
1532 post_int_id = ttrss_user_entries.int_id AND unread = true GROUP BY tag_name
1533 UNION
1534 select tag_name,0 as count FROM ttrss_tags
1535 WHERE ttrss_tags.owner_uid = ".$_SESSION["uid"]); */
1536
1537 $result = db_query($link, "SELECT tag_name,SUM((SELECT COUNT(int_id)
1538 FROM ttrss_user_entries WHERE int_id = post_int_id
1539 AND unread = true)) AS count FROM ttrss_tags
1540 WHERE owner_uid = 2 GROUP BY tag_name ORDER BY tag_name");
1541
1542 $tags = array();
1543
1544 while ($line = db_fetch_assoc($result)) {
1545 $tags[$line["tag_name"]] += $line["count"];
1546 }
1547
1548 foreach (array_keys($tags) as $tag) {
1549 $unread = $tags[$tag];
1550
1551 $tag = htmlspecialchars($tag);
1552
1553 if (!$smart_mode || $old_counters[$tag] != $unread) {
1554 $old_counters[$tag] = $unread;
1555 $tctrs_modified = true;
1556 print "<counter type=\"tag\" id=\"$tag\" counter=\"$unread\"/>";
1557 }
1558
1559 }
1560
1561 if ($smart_mode && $tctrs_modified) {
1562 $_SESSION["tctr_last_value"] = $old_counters;
1563 }
1564
1565 }
1566
ef393de7 1567 function getLabelCounters($link, $smart_mode = SMART_RPC_COUNTERS, $ret_mode = false) {
a9cb1f83
AD
1568
1569 if ($smart_mode) {
1570 if (!$_SESSION["lctr_last_value"]) {
1571 $_SESSION["lctr_last_value"] = array();
1572 }
1573 }
1574
ef393de7
AD
1575 $ret_arr = array();
1576
a9cb1f83
AD
1577 $old_counters = $_SESSION["lctr_last_value"];
1578 $lctrs_modified = false;
1579
1580 $result = db_query($link, "SELECT count(id) as count FROM ttrss_entries,ttrss_user_entries
1581 WHERE marked = true AND ttrss_user_entries.ref_id = ttrss_entries.id AND
1582 unread = true AND owner_uid = ".$_SESSION["uid"]);
1583
1584 $count = db_fetch_result($result, 0, "count");
1585
ef393de7
AD
1586 if (!$ret_mode) {
1587 print "<counter type=\"label\" id=\"-1\" counter=\"$count\"/>";
1588 } else {
1589 $ret_arr["-1"]["counter"] = $count;
1590 $ret_arr["-1"]["description"] = "Starred";
1591 }
a9cb1f83
AD
1592
1593 $result = db_query($link, "SELECT owner_uid,id,sql_exp,description FROM
1594 ttrss_labels WHERE owner_uid = ".$_SESSION["uid"]." ORDER by description");
1595
1596 while ($line = db_fetch_assoc($result)) {
1597
1598 $id = -$line["id"] - 11;
1599
ef393de7
AD
1600 $label_name = $line["description"];
1601
a9cb1f83
AD
1602 error_reporting (0);
1603
1604 $tmp_result = db_query($link, "SELECT count(id) as count FROM ttrss_user_entries,ttrss_entries
1605 WHERE (" . $line["sql_exp"] . ") AND unread = true AND
1606 ttrss_user_entries.ref_id = ttrss_entries.id AND
1607 owner_uid = ".$_SESSION["uid"]);
1608
1609 $count = db_fetch_result($tmp_result, 0, "count");
1610
1611 if (!$smart_mode || $old_counters[$id] != $count) {
1612 $old_counters[$id] = $count;
1613 $lctrs_modified = true;
ef393de7
AD
1614 if (!$ret_mode) {
1615 print "<counter type=\"label\" id=\"$id\" counter=\"$count\"/>";
1616 } else {
1617 $ret_arr[$id]["counter"] = $count;
1618 $ret_arr[$id]["description"] = $label_name;
1619 }
a9cb1f83
AD
1620 }
1621
1622 error_reporting (DEFAULT_ERROR_LEVEL);
1623 }
1624
1625 if ($smart_mode && $lctrs_modified) {
1626 $_SESSION["lctr_last_value"] = $old_counters;
1627 }
ef393de7
AD
1628
1629 return $ret_arr;
a9cb1f83
AD
1630 }
1631
1632/* function getFeedCounter($link, $id) {
1633
1634 $result = db_query($link, "SELECT
1635 count(id) as count,last_error
1636 FROM ttrss_entries,ttrss_user_entries,ttrss_feeds
1637 WHERE feed_id = '$id' AND unread = true
1638 AND ttrss_user_entries.feed_id = ttrss_feeds.id
1639 AND ttrss_user_entries.ref_id = ttrss_entries.id");
1640
1641 $count = db_fetch_result($result, 0, "count");
1642 $last_error = htmlspecialchars(db_fetch_result($result, 0, "last_error"));
1643
1644 print "<counter type=\"feed\" id=\"$id\" counter=\"$count\" error=\"$last_error\"/>";
1645 } */
1646
1647 function getFeedCounters($link, $smart_mode = SMART_RPC_COUNTERS) {
1648
1649 if ($smart_mode) {
1650 if (!$_SESSION["fctr_last_value"]) {
1651 $_SESSION["fctr_last_value"] = array();
1652 }
1653 }
1654
1655 $old_counters = $_SESSION["fctr_last_value"];
1656
1657 $result = db_query($link, "SELECT id,last_error,parent_feed,
fb1fb4ab 1658 SUBSTRING(last_updated,1,19) AS last_updated,
a9cb1f83
AD
1659 (SELECT count(id)
1660 FROM ttrss_entries,ttrss_user_entries
1661 WHERE feed_id = ttrss_feeds.id AND
1662 ttrss_user_entries.ref_id = ttrss_entries.id
1663 AND unread = true AND owner_uid = ".$_SESSION["uid"].") as count
1664 FROM ttrss_feeds WHERE owner_uid = ".$_SESSION["uid"] . "
1665 AND parent_feed IS NULL");
1666
1667 $fctrs_modified = false;
1668
fb1fb4ab
AD
1669 $short_date = get_pref($link, 'SHORT_DATE_FORMAT');
1670
a9cb1f83
AD
1671 while ($line = db_fetch_assoc($result)) {
1672
1673 $id = $line["id"];
1674 $count = $line["count"];
1675 $last_error = htmlspecialchars($line["last_error"]);
fb1fb4ab
AD
1676
1677 if (get_pref($link, 'HEADLINES_SMART_DATE')) {
1678 $last_updated = smart_date_time(strtotime($line["last_updated"]));
1679 } else {
1680 $last_updated = date($short_date, strtotime($line["last_updated"]));
1681 }
1682
a9cb1f83
AD
1683 $has_img = is_file(ICONS_DIR . "/$id.ico");
1684
1685 $tmp_result = db_query($link,
1686 "SELECT id,COUNT(unread) AS unread
1687 FROM ttrss_feeds LEFT JOIN ttrss_user_entries
1688 ON (ttrss_feeds.id = ttrss_user_entries.feed_id)
1689 WHERE parent_feed = '$id' AND unread = true GROUP BY ttrss_feeds.id");
1690
1691 if (db_num_rows($tmp_result) > 0) {
1692 while ($l = db_fetch_assoc($tmp_result)) {
1693 $count += $l["unread"];
1694 }
1695 }
1696
1697 if (!$smart_mode || $old_counters[$id] != $count) {
1698 $old_counters[$id] = $count;
1699 $fctrs_modified = true;
1700
1701 if ($last_error) {
1702 $error_part = "error=\"$last_error\"";
1703 } else {
1704 $error_part = "";
1705 }
1706
1707 if ($has_img) {
1708 $has_img_part = "hi=\"$has_img\"";
1709 } else {
1710 $has_img_part = "";
1711 }
1712
fb1fb4ab 1713 print "<counter type=\"feed\" id=\"$id\" counter=\"$count\" $has_img_part $error_part updated=\"$last_updated\"/>";
a9cb1f83
AD
1714 }
1715 }
1716
1717 if ($smart_mode && $fctrs_modified) {
1718 $_SESSION["fctr_last_value"] = $old_counters;
1719 }
1720 }
1721
1b758780
AD
1722 function get_script_dt_add() {
1723 if (strpos(VERSION, "99") === false) {
1724 return VERSION;
1725 } else {
1726 return time();
1727 }
1728 }
1729
6e7f8d26
AD
1730 function get_pgsql_version($link) {
1731 $result = db_query($link, "SELECT version() AS version");
1732 $version = split(" ", db_fetch_result($result, 0, "version"));
1733 return $version[1];
1734 }
1735
af106b0e
AD
1736 function print_error_xml($code, $add_msg = "") {
1737 global $ERRORS;
1738
1739 $error_msg = $ERRORS[$code];
1740
1741 if ($add_msg) {
1742 $error_msg = "$error_msg; $add_msg";
1743 }
1744
4c2abbc1 1745 print "<rpc-reply>";
af106b0e 1746 print "<error error-code=\"$code\" error-msg=\"$error_msg\"/>";
4c2abbc1 1747 print "</rpc-reply>";
af106b0e 1748 }
956c7629
AD
1749
1750 function subscribe_to_feed($link, $feed_link, $cat_id = 0) {
1751
1752 if ($cat_id == "0" || !$cat_id) {
1753 $cat_qpart = "NULL";
1754 } else {
1755 $cat_qpart = "'$cat_id'";
1756 }
1757
1758 $result = db_query($link,
1759 "SELECT id FROM ttrss_feeds
1760 WHERE feed_url = '$feed_link' AND owner_uid = ".$_SESSION["uid"]);
1761
1762 if (db_num_rows($result) == 0) {
1763
1764 $result = db_query($link,
1765 "INSERT INTO ttrss_feeds (owner_uid,feed_url,title,cat_id)
1766 VALUES ('".$_SESSION["uid"]."', '$feed_link',
1767 '[Unknown]', $cat_qpart)");
1768
1769 $result = db_query($link,
1770 "SELECT id FROM ttrss_feeds WHERE feed_url = '$feed_link'
1771 AND owner_uid = " . $_SESSION["uid"]);
1772
1773 $feed_id = db_fetch_result($result, 0, "id");
1774
1775 if ($feed_id) {
1776 update_rss_feed($link, $feed_link, $feed_id, true);
1777 }
1778
1779 return true;
1780 } else {
1781 return false;
1782 }
1783 }
1784
673d54ca
AD
1785 function print_feed_select($link, $id, $default_id = "",
1786 $attributes = "", $include_all_feeds = true) {
1787
79f3553b 1788 print "<select id=\"$id\" name=\"$id\" $attributes>";
673d54ca 1789 if ($include_all_feeds) {
79f3553b 1790 print "<option value=\"0\">All feeds</option>";
673d54ca
AD
1791 }
1792
1793 $result = db_query($link, "SELECT id,title FROM ttrss_feeds
1794 WHERE owner_uid = ".$_SESSION["uid"]." ORDER BY title");
1795
1796 if (db_num_rows($result) > 0 && $include_all_feeds) {
1797 print "<option disabled>--------</option>";
1798 }
1799
1800 while ($line = db_fetch_assoc($result)) {
1801 if ($line["id"] == $default_id) {
1802 $is_selected = "selected";
1803 } else {
1804 $is_selected = "";
1805 }
79f3553b 1806 printf("<option $is_selected value='%d'>%s</option>",
07164479 1807 $line["id"], htmlspecialchars(db_unescape_string($line["title"])));
673d54ca
AD
1808 }
1809
1810 print "</select>";
1811 }
1812
1813 function print_feed_cat_select($link, $id, $default_id = "",
1814 $attributes = "", $include_all_cats = true) {
1815
79f3553b 1816 print "<select id=\"$id\" name=\"$id\" $attributes>";
673d54ca
AD
1817
1818 if ($include_all_cats) {
14f69488 1819 print "<option value=\"0\">Uncategorized</option>";
673d54ca
AD
1820 }
1821
1822 $result = db_query($link, "SELECT id,title FROM ttrss_feed_categories
1823 WHERE owner_uid = ".$_SESSION["uid"]." ORDER BY title");
1824
1825 if (db_num_rows($result) > 0 && $include_all_cats) {
1826 print "<option disabled>--------</option>";
1827 }
1828
1829 while ($line = db_fetch_assoc($result)) {
1830 if ($line["id"] == $default_id) {
1831 $is_selected = "selected";
1832 } else {
1833 $is_selected = "";
1834 }
14f69488 1835 printf("<option $is_selected value='%d'>%s</option>",
07164479 1836 $line["id"], htmlspecialchars(db_unescape_string($line["title"])));
673d54ca
AD
1837 }
1838
1839 print "</select>";
1840 }
1841
14f69488
AD
1842 function checkbox_to_sql_bool($val) {
1843 return ($val == "on") ? "true" : "false";
1844 }
86b682ce
AD
1845
1846 function getFeedCatTitle($link, $id) {
1847 if ($id == -1) {
1848 return "Special";
1849 } else if ($id < -10) {
1850 return "Labels";
1851 } else if ($id > 0) {
1852 $result = db_query($link, "SELECT ttrss_feed_categories.title
1853 FROM ttrss_feeds, ttrss_feed_categories WHERE ttrss_feeds.id = '$id' AND
1854 cat_id = ttrss_feed_categories.id");
1855 if (db_num_rows($result) == 1) {
1856 return db_fetch_result($result, 0, "title");
1857 } else {
eb4311d0 1858 return "Uncategorized";
86b682ce
AD
1859 }
1860 } else {
1861 return "getFeedCatTitle($id) failed";
1862 }
1863
1864 }
1865
1866 function getFeedTitle($link, $id) {
1867 if ($id == -1) {
1868 return "Starred articles";
1869 } else if ($id < -10) {
1870 $label_id = -10 - $id;
1871 $result = db_query($link, "SELECT description FROM ttrss_labels WHERE id = '$label_id'");
1872 if (db_num_rows($result) == 1) {
1873 return db_fetch_result($result, 0, "description");
1874 } else {
1875 return "Unknown label ($label_id)";
1876 }
1877
1878 } else if ($id > 0) {
1879 $result = db_query($link, "SELECT title FROM ttrss_feeds WHERE id = '$id'");
1880 if (db_num_rows($result) == 1) {
1881 return db_fetch_result($result, 0, "title");
1882 } else {
1883 return "Unknown feed ($id)";
1884 }
1885 } else {
1886 return "getFeedTitle($id) failed";
1887 }
1888
1889 }
3dd46f19
AD
1890
1891 function get_session_cookie_name() {
1892 return ((!defined('TTRSS_SESSION_NAME')) ? "ttrss_sid" : TTRSS_SESSION_NAME);
1893 }
3ac2b520
AD
1894
1895 function print_init_params($link) {
1896 print "<init-params>";
1897 if ($_SESSION["stored-params"]) {
1898 foreach (array_keys($_SESSION["stored-params"]) as $key) {
5f57b06d
AD
1899 if ($key) {
1900 $value = htmlspecialchars($_SESSION["stored-params"][$key]);
1901 print "<param key=\"$key\" value=\"$value\"/>";
1902 }
3ac2b520
AD
1903 }
1904 }
1905
1906 print "<param key=\"daemon_enabled\" value=\"" . ENABLE_UPDATE_DAEMON . "\"/>";
1907 print "<param key=\"feeds_frame_refresh\" value=\"" . FEEDS_FRAME_REFRESH . "\"/>";
0d51e25d 1908 print "<param key=\"daemon_refresh_only\" value=\"" . DAEMON_REFRESH_ONLY . "\"/>";
3ac2b520
AD
1909
1910 print "<param key=\"on_catchup_show_next_feed\" value=\"" .
1911 get_pref($link, "ON_CATCHUP_SHOW_NEXT_FEED") . "\"/>";
1912
e8bd0da9
AD
1913 print "<param key=\"hide_read_feeds\" value=\"" .
1914 sprintf("%d", get_pref($link, "HIDE_READ_FEEDS")) . "\"/>";
1915
c9268ed5
AD
1916 print "<param key=\"feeds_sort_by_unread\" value=\"" .
1917 sprintf("%d", get_pref($link, "FEEDS_SORT_BY_UNREAD")) . "\"/>";
1918
3ac2b520
AD
1919 print "</init-params>";
1920 }
f54f515f
AD
1921
1922 function print_runtime_info($link) {
1923 print "<runtime-info>";
71ad883b
AD
1924 if (ENABLE_UPDATE_DAEMON) {
1925 print "<param key=\"daemon_is_running\" value=\"".
1926 sprintf("%d", file_is_locked("update_daemon.lock")) . "\"/>";
1927 }
f54f515f
AD
1928 print "</runtime-info>";
1929 }
ef393de7
AD
1930
1931 function queryFeedHeadlines($link, $feed, $limit, $view_mode, $cat_view, $search, $search_mode, $match_on) {
1932
1933 if ($search) {
e20c9d88
AD
1934
1935 $keywords = split(" ", $search);
1936 $query_keywords = array();
1937
ef393de7 1938 if ($match_on == "both") {
e20c9d88
AD
1939
1940 foreach ($keywords as $k) {
1941 array_push($query_keywords, "(UPPER(ttrss_entries.title) LIKE UPPER('%$k%')
1942 OR UPPER(ttrss_entries.content) LIKE UPPER('%$k%'))");
1943 }
1944
1945 $search_query_part = implode("AND", $query_keywords) . "AND";
1946
ef393de7 1947 } else if ($match_on == "title") {
e20c9d88
AD
1948
1949 foreach ($keywords as $k) {
1950 array_push($query_keywords, "(UPPER(ttrss_entries.title) LIKE UPPER('%$k%'))");
1951 }
1952
1953 $search_query_part = implode("AND", $query_keywords) . "AND";
1954
ef393de7 1955 } else if ($match_on == "content") {
e20c9d88
AD
1956
1957 foreach ($keywords as $k) {
1958 array_push($query_keywords, "(UPPER(ttrss_entries.content) LIKE UPPER('%$k%'))");
1959 }
1960
1961 $search_query_part = implode("AND", $query_keywords) . "AND";
ef393de7
AD
1962 }
1963 } else {
1964 $search_query_part = "";
1965 }
1966
1967 $view_query_part = "";
1968
1969 if ($view_mode == "adaptive") {
1970 if ($search) {
1971 $view_query_part = " ";
1972 } else if ($feed != -1) {
f295c368 1973 $unread = getFeedUnread($link, $feed, $cat_view);
ef393de7
AD
1974 if ($unread > 0) {
1975 $view_query_part = " unread = true AND ";
1976 }
1977 }
1978 }
1979
1980 if ($view_mode == "marked") {
1981 $view_query_part = " marked = true AND ";
1982 }
1983
1984 if ($view_mode == "unread") {
1985 $view_query_part = " unread = true AND ";
1986 }
1987
1988 if ($limit > 0) {
1989 $limit_query_part = "LIMIT " . $limit;
1990 }
1991
1992 $vfeed_query_part = "";
1993
1994 // override query strategy and enable feed display when searching globally
1995 if ($search && $search_mode == "all_feeds") {
1996 $query_strategy_part = "ttrss_entries.id > 0";
1997 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
1998 } else if (preg_match("/^-?[0-9][0-9]*$/", $feed) == false) {
1999 $query_strategy_part = "ttrss_entries.id > 0";
2000 $vfeed_query_part = "(SELECT title FROM ttrss_feeds WHERE
2001 id = feed_id) as feed_title,";
2002 } else if ($feed >= 0 && $search && $search_mode == "this_cat") {
2003
2004 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
2005
2006 $tmp_result = db_query($link, "SELECT id
2007 FROM ttrss_feeds WHERE cat_id =
2008 (SELECT cat_id FROM ttrss_feeds WHERE id = '$feed') AND id != '$feed'");
2009
2010 $cat_siblings = array();
2011
2012 if (db_num_rows($tmp_result) > 0) {
2013 while ($p = db_fetch_assoc($tmp_result)) {
2014 array_push($cat_siblings, "feed_id = " . $p["id"]);
2015 }
2016
2017 $query_strategy_part = sprintf("(feed_id = %d OR %s)",
2018 $feed, implode(" OR ", $cat_siblings));
2019
2020 } else {
2021 $query_strategy_part = "ttrss_entries.id > 0";
2022 }
2023
2024 } else if ($feed >= 0) {
2025
2026 if ($cat_view) {
2027
2028 if ($feed > 0) {
2029 $query_strategy_part = "cat_id = '$feed'";
2030 } else {
2031 $query_strategy_part = "cat_id IS NULL";
2032 }
2033
2034 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
2035
2036 } else {
2037 $tmp_result = db_query($link, "SELECT id
2038 FROM ttrss_feeds WHERE parent_feed = '$feed'
2039 ORDER BY cat_id,title");
2040
2041 $parent_ids = array();
2042
2043 if (db_num_rows($tmp_result) > 0) {
2044 while ($p = db_fetch_assoc($tmp_result)) {
2045 array_push($parent_ids, "feed_id = " . $p["id"]);
2046 }
2047
2048 $query_strategy_part = sprintf("(feed_id = %d OR %s)",
2049 $feed, implode(" OR ", $parent_ids));
2050
2051 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
2052 } else {
2053 $query_strategy_part = "feed_id = '$feed'";
2054 }
2055 }
2056 } else if ($feed == -1) { // starred virtual feed
2057 $query_strategy_part = "marked = true";
2058 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
2059 } else if ($feed <= -10) { // labels
2060 $label_id = -$feed - 11;
2061
2062 $tmp_result = db_query($link, "SELECT sql_exp FROM ttrss_labels
2063 WHERE id = '$label_id'");
2064
2065 $query_strategy_part = db_fetch_result($tmp_result, 0, "sql_exp");
2066
2067 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
2068 } else {
2069 $query_strategy_part = "id > 0"; // dumb
2070 }
2071
2072 $order_by = "updated DESC";
2073
2074 $feed_title = "";
2075
2076 if ($search && $search_mode == "all_feeds") {
2077 $feed_title = "Global search results ($search)";
2078 } else if ($search && preg_match('/^-?[0-9][0-9]*$/', $feed) == false) {
2079 $feed_title = "Feed search results ($search, $feed)";
2080 } else if (preg_match('/^-?[0-9][0-9]*$/', $feed) == false) {
2081 $feed_title = $feed;
2082 } else if (preg_match('/^-?[0-9][0-9]*$/', $feed) != false && $feed >= 0) {
2083
2084 if ($cat_view) {
2085
2086 if ($feed != 0) {
2087 $result = db_query($link, "SELECT title FROM ttrss_feed_categories
2088 WHERE id = '$feed' AND owner_uid = " . $_SESSION["uid"]);
2089 $feed_title = db_fetch_result($result, 0, "title");
2090 } else {
2091 $feed_title = "Uncategorized";
2092 }
2093 } else {
2094
2095 $result = db_query($link, "SELECT title,site_url,last_error FROM ttrss_feeds
2096 WHERE id = '$feed' AND owner_uid = " . $_SESSION["uid"]);
2097
2098 $feed_title = db_fetch_result($result, 0, "title");
2099 $feed_site_url = db_fetch_result($result, 0, "site_url");
2100 $last_error = db_fetch_result($result, 0, "last_error");
2101
2102 }
2103
2104 } else if ($feed == -1) {
2105 $feed_title = "Starred articles";
2106 } else if ($feed < -10) {
2107 $label_id = -$feed - 11;
2108 $result = db_query($link, "SELECT description FROM ttrss_labels
2109 WHERE id = '$label_id'");
2110 $feed_title = db_fetch_result($result, 0, "description");
2111 } else {
2112 $feed_title = "?";
2113 }
2114
2115 $feed_title = db_unescape_string($feed_title);
2116
2117 if ($feed < -10) error_reporting (0);
2118
2119 if (preg_match("/^-?[0-9][0-9]*$/", $feed) != false) {
2120
2121 if ($feed >= 0) {
2122 $feed_kind = "Feeds";
2123 } else {
2124 $feed_kind = "Labels";
2125 }
2126
2127 $content_query_part = "content as content_preview,";
2128
2129 $query = "SELECT
2130 ttrss_entries.id,ttrss_entries.title,
2131 SUBSTRING(updated,1,16) as updated,
2132 unread,feed_id,marked,link,last_read,
2133 SUBSTRING(last_read,1,19) as last_read_noms,
2134 $vfeed_query_part
2135 $content_query_part
2136 SUBSTRING(updated,1,19) as updated_noms
2137 FROM
2138 ttrss_entries,ttrss_user_entries,ttrss_feeds
2139 WHERE
2140 ttrss_user_entries.feed_id = ttrss_feeds.id AND
2141 ttrss_user_entries.ref_id = ttrss_entries.id AND
2142 ttrss_user_entries.owner_uid = '".$_SESSION["uid"]."' AND
2143 $search_query_part
2144 $view_query_part
2145 $query_strategy_part ORDER BY $order_by
2146 $limit_query_part";
2147
2148 $result = db_query($link, $query);
2149
2150 if ($_GET["debug"]) print $query;
2151
2152 } else {
2153 // browsing by tag
2154
2155 $feed_kind = "Tags";
2156
2157 $result = db_query($link, "SELECT
2158 ttrss_entries.id as id,title,
2159 SUBSTRING(updated,1,16) as updated,
2160 unread,feed_id,
2161 marked,link,last_read,
2162 SUBSTRING(last_read,1,19) as last_read_noms,
2163 $vfeed_query_part
2164 $content_query_part
2165 SUBSTRING(updated,1,19) as updated_noms
2166 FROM
2167 ttrss_entries,ttrss_user_entries,ttrss_tags
2168 WHERE
2169 ref_id = ttrss_entries.id AND
2170 ttrss_user_entries.owner_uid = '".$_SESSION["uid"]."' AND
2171 post_int_id = int_id AND tag_name = '$feed' AND
2172 $view_query_part
2173 $search_query_part
2174 $query_strategy_part ORDER BY $order_by
2175 $limit_query_part");
2176 }
2177
c7188969 2178 return array($result, $feed_title, $feed_site_url, $last_error);
ef393de7
AD
2179
2180 }
2181
40d13c28 2182?>