]> git.wh0rd.org - tt-rss.git/blame - functions.php
disable DATABASE_BACKED_SESSIONS by default
[tt-rss.git] / functions.php
CommitLineData
40d13c28 1<?
f1a80dae 2
cce28758
AD
3 if ($_GET["debug"]) {
4 define('DEFAULT_ERROR_LEVEL', E_ALL);
5 } else {
6 define('DEFAULT_ERROR_LEVEL', E_ERROR | E_WARNING | E_PARSE);
7 }
8
40d13c28 9 require_once 'config.php';
b619ff15 10 require_once 'db-prefs.php';
5bc0bd27 11 require_once 'compat.php';
40d13c28 12
387234f3
AD
13 require_once 'magpierss/rss_utils.inc';
14
a3ee2a38
AD
15 define('MAGPIE_OUTPUT_ENCODING', 'UTF-8');
16
ad507f85
AD
17 function purge_feed($link, $feed_id, $purge_interval, $debug = false) {
18
19 $rows = -1;
4c193675 20
fefa6ca3 21 if (DB_TYPE == "pgsql") {
ad507f85 22 $result = db_query($link, "DELETE FROM ttrss_user_entries WHERE
fefa6ca3 23 marked = false AND feed_id = '$feed_id' AND
35d8cf43
AD
24 (SELECT date_entered FROM ttrss_entries WHERE
25 id = ref_id) < NOW() - INTERVAL '$purge_interval days'");
ad507f85
AD
26
27 $rows = pg_affected_rows($result);
28
fefa6ca3 29 } else {
ad507f85 30 $result = db_query($link, "DELETE FROM ttrss_user_entries WHERE
fefa6ca3 31 marked = false AND feed_id = '$feed_id' AND
35d8cf43
AD
32 (SELECT date_entered FROM ttrss_entries WHERE
33 id = ref_id) < DATE_SUB(NOW(), INTERVAL $purge_interval DAY)");
ad507f85
AD
34 $rows = mysql_affected_rows($link);
35
36 }
37
38 if ($debug) {
39 print "Purged feed $feed_id ($purge_interval): deleted $rows articles\n";
fefa6ca3
AD
40 }
41 }
42
43 function global_purge_old_posts($link, $do_output = false) {
44
45 $result = db_query($link,
ad507f85 46 "SELECT id,purge_interval,owner_uid FROM ttrss_feeds ORDER BY id");
fefa6ca3
AD
47
48 while ($line = db_fetch_assoc($result)) {
49
50 $feed_id = $line["id"];
51 $purge_interval = $line["purge_interval"];
52 $owner_uid = $line["owner_uid"];
53
54 if ($purge_interval == 0) {
55
56 $tmp_result = db_query($link,
57 "SELECT value FROM ttrss_user_prefs WHERE
58 pref_name = 'PURGE_OLD_DAYS' AND owner_uid = '$owner_uid'");
59
60 if (db_num_rows($tmp_result) != 0) {
61 $purge_interval = db_fetch_result($tmp_result, 0, "value");
62 }
63 }
64
65 if ($do_output) {
ad507f85 66// print "Feed $feed_id: purge interval = $purge_interval\n";
fefa6ca3
AD
67 }
68
69 if ($purge_interval > 0) {
ad507f85 70 purge_feed($link, $feed_id, $purge_interval, $do_output);
fefa6ca3
AD
71 }
72 }
73
71604ca4
AD
74 // purge orphaned posts in main content table
75 db_query($link, "DELETE FROM ttrss_entries WHERE
76 (SELECT COUNT(int_id) FROM ttrss_user_entries WHERE ref_id = id) = 0");
77
fefa6ca3
AD
78 }
79
b6eefba5 80 function purge_old_posts($link) {
5d73494a 81
f1a80dae
AD
82 $user_id = $_SESSION["uid"];
83
84 $result = db_query($link, "SELECT id,purge_interval FROM ttrss_feeds
85 WHERE owner_uid = '$user_id'");
5d73494a
AD
86
87 while ($line = db_fetch_assoc($result)) {
88
89 $feed_id = $line["id"];
90 $purge_interval = $line["purge_interval"];
91
b619ff15 92 if ($purge_interval == 0) $purge_interval = get_pref($link, 'PURGE_OLD_DAYS');
5d73494a 93
140aae81 94 if ($purge_interval > 0) {
fefa6ca3 95 purge_feed($link, $feed_id, $purge_interval);
5d73494a
AD
96 }
97 }
71604ca4
AD
98
99 // purge orphaned posts in main content table
100 db_query($link, "DELETE FROM ttrss_entries WHERE
101 (SELECT COUNT(int_id) FROM ttrss_user_entries WHERE ref_id = id) = 0");
c3a8d71a
AD
102 }
103
1f2b01ed 104 function update_all_feeds($link, $fetch, $user_id = false, $force_daemon = false) {
40d13c28 105
4769ddaf 106 if (WEB_DEMO_MODE) return;
b0b4abcf 107
a2770077
AD
108 if (!$user_id) {
109 $user_id = $_SESSION["uid"];
110 purge_old_posts($link);
111 }
112
25af8dad 113// db_query($link, "BEGIN");
b82af8c3 114
cbd8650d
AD
115 if (MAX_UPDATE_TIME > 0) {
116 if (DB_TYPE == "mysql") {
117 $q_order = "RAND()";
118 } else {
119 $q_order = "RANDOM()";
120 }
121 } else {
122 $q_order = "last_updated DESC";
123 }
124
d148926e 125 $result = db_query($link, "SELECT feed_url,id,
798f722b 126 SUBSTRING(last_updated,1,19) AS last_updated,
5c563acd 127 update_interval FROM ttrss_feeds WHERE owner_uid = '$user_id'
cbd8650d
AD
128 ORDER BY $q_order");
129
130 $upd_start = time();
40d13c28 131
b6eefba5 132 while ($line = db_fetch_assoc($result)) {
d148926e
AD
133 $upd_intl = $line["update_interval"];
134
b619ff15 135 if (!$upd_intl || $upd_intl == 0) {
a2770077 136 $upd_intl = get_pref($link, 'DEFAULT_UPDATE_INTERVAL', $user_id);
b619ff15 137 }
d148926e 138
c1e202b7
AD
139 if ($upd_intl < 0) {
140 // Updates for this feed are disabled
141 continue;
142 }
143
93d40f50
AD
144 if ($fetch || (!$line["last_updated"] ||
145 time() - strtotime($line["last_updated"]) > ($upd_intl * 60))) {
c5142cca 146
cbd8650d
AD
147// print "<!-- feed: ".$line["feed_url"]." -->";
148
1f2b01ed 149 update_rss_feed($link, $line["feed_url"], $line["id"], $force_daemon);
cbd8650d
AD
150
151 $upd_elapsed = time() - $upd_start;
152
153 if (MAX_UPDATE_TIME > 0 && $upd_elapsed > MAX_UPDATE_TIME) {
154 return;
155 }
d148926e 156 }
40d13c28
AD
157 }
158
25af8dad 159// db_query($link, "COMMIT");
b82af8c3 160
40d13c28
AD
161 }
162
9e997874 163 function check_feed_favicon($feed_url, $feed, $link) {
78800912
AD
164 $feed_url = str_replace("http://", "", $feed_url);
165 $feed_url = preg_replace("/\/.*$/", "", $feed_url);
166
167 $icon_url = "http://$feed_url/favicon.ico";
273a2f6b 168 $icon_file = ICONS_DIR . "/$feed.ico";
78800912
AD
169
170 if (!file_exists($icon_file)) {
e695fdc8 171
78800912
AD
172 error_reporting(0);
173 $r = fopen($icon_url, "r");
cce28758 174 error_reporting (DEFAULT_ERROR_LEVEL);
78800912
AD
175
176 if ($r) {
7d7cbaf5 177 $tmpfname = tempnam(TMP_DIRECTORY, "ttrssicon");
78800912
AD
178
179 $t = fopen($tmpfname, "w");
180
181 while (!feof($r)) {
182 $buf = fread($r, 16384);
183 fwrite($t, $buf);
184 }
185
186 fclose($r);
187 fclose($t);
188
e695fdc8
AD
189 error_reporting(0);
190 if (!rename($tmpfname, $icon_file)) {
191 unlink($tmpfname);
192 }
717f5e64
AD
193
194 chmod($icon_file, 0644);
195
cce28758 196 error_reporting (DEFAULT_ERROR_LEVEL);
78800912
AD
197
198 }
199 }
200 }
201
ddb68b81 202 function update_rss_feed($link, $feed_url, $feed, $ignore_daemon = false) {
40d13c28 203
4769ddaf 204 if (WEB_DEMO_MODE) return;
b0b4abcf 205
ddb68b81 206 if (DAEMON_REFRESH_ONLY && !$_GET["daemon"] && !$ignore_daemon) {
21cfcdf2
AD
207 return;
208 }
209
47c6c988 210 $result = db_query($link, "SELECT update_interval,auth_login,auth_pass
a88c1f36
AD
211 FROM ttrss_feeds WHERE id = '$feed'");
212
47c6c988
AD
213 $auth_login = db_fetch_result($result, 0, "auth_login");
214 $auth_pass = db_fetch_result($result, 0, "auth_pass");
215
a88c1f36
AD
216 $update_interval = db_fetch_result($result, 0, "update_interval");
217
218 if ($update_interval < 0) { return; }
219
ab3d0b99
AD
220 $feed = db_escape_string($feed);
221
47c6c988
AD
222 $fetch_url = $feed_url;
223
224 if ($auth_login && $auth_pass) {
225 $url_parts = array();
226 preg_match("/(^[^:]*):\/\/(.*)/", $fetch_url, $url_parts);
227
228 if ($url_parts[1] && $url_parts[2]) {
229 $fetch_url = $url_parts[1] . "://$auth_login:$auth_pass@" . $url_parts[2];
230 }
231
232 }
3ad5aa85 233 error_reporting(0);
47c6c988 234 $rss = fetch_rss($fetch_url);
ab3d0b99 235
cce28758 236 error_reporting (DEFAULT_ERROR_LEVEL);
76798ff3 237
b6eefba5 238 $feed = db_escape_string($feed);
dcee8f61 239
40d13c28 240 if ($rss) {
b82af8c3 241
dd8c76a9
AD
242 db_query($link, "BEGIN");
243
a88c1f36 244 $result = db_query($link, "SELECT title,icon_url,site_url,owner_uid
f324892e 245 FROM ttrss_feeds WHERE id = '$feed'");
331900c6 246
b6eefba5
AD
247 $registered_title = db_fetch_result($result, 0, "title");
248 $orig_icon_url = db_fetch_result($result, 0, "icon_url");
f324892e 249 $orig_site_url = db_fetch_result($result, 0, "site_url");
331900c6 250
7fed1940
AD
251 $owner_uid = db_fetch_result($result, 0, "owner_uid");
252
a2770077
AD
253 if (get_pref($link, 'ENABLE_FEED_ICONS', $owner_uid)) {
254 check_feed_favicon($feed_url, $feed, $link);
255 }
256
746b249f 257 if (!$registered_title || $registered_title == "[Unknown]") {
e1305a97 258 $feed_title = db_escape_string($rss->channel["title"]);
f324892e
AD
259 db_query($link, "UPDATE ttrss_feeds SET
260 title = '$feed_title' WHERE id = '$feed'");
261 }
262
147f7691 263 $site_url = $rss->channel["link"];
832b7bfc
AD
264 // weird, weird Magpie
265 if (!$site_url) $site_url = db_escape_string($rss->channel["link_"]);
147f7691
AD
266
267 if ($site_url && $orig_site_url != db_escape_string($site_url)) {
f324892e
AD
268 db_query($link, "UPDATE ttrss_feeds SET
269 site_url = '$site_url' WHERE id = '$feed'");
331900c6 270 }
40d13c28 271
b7f4bda2
AD
272// print "I: " . $rss->channel["image"]["url"];
273
274 $icon_url = $rss->image["url"];
275
147f7691 276 if ($icon_url && !$orig_icon_url != db_escape_string($icon_url)) {
b6eefba5
AD
277 $icon_url = db_escape_string($icon_url);
278 db_query($link, "UPDATE ttrss_feeds SET icon_url = '$icon_url' WHERE id = '$feed'");
b7f4bda2
AD
279 }
280
e6155a06
AD
281
282 $filters = array();
283
4b3dff6e 284 $result = db_query($link, "SELECT reg_exp,
db42b934
AD
285 ttrss_filter_types.name AS name,
286 ttrss_filter_actions.name AS action
287 FROM ttrss_filters,ttrss_filter_types,ttrss_filter_actions WHERE
288 owner_uid = $owner_uid AND
289 ttrss_filter_types.id = filter_type AND
290 ttrss_filter_actions.id = action_id AND
ead60402 291 (feed_id IS NULL OR feed_id = '$feed')");
e6155a06 292
b6eefba5 293 while ($line = db_fetch_assoc($result)) {
e6155a06 294 if (!$filters[$line["name"]]) $filters[$line["name"]] = array();
19c9cb11
AD
295
296 $filter["reg_exp"] = $line["reg_exp"];
297 $filter["action"] = $line["action"];
298
299 array_push($filters[$line["name"]], $filter);
e6155a06
AD
300 }
301
ddb68b81
AD
302 $iterator = $rss->items;
303
c22789da
AD
304 if (!$iterator || !is_array($iterator)) $iterator = $rss->entries;
305 if (!$iterator || !is_array($iterator)) $iterator = $rss;
306
307 if (!is_array($iterator)) {
9a7a7b41 308 db_query($link, "UPDATE ttrss_feeds
c808436c 309 SET last_error = 'CrazyBug 001: Can\'t find iterator :('
9a7a7b41 310 WHERE id = '$feed'");
c22789da
AD
311 return; // WTF?
312 }
ddb68b81
AD
313
314 foreach ($iterator as $item) {
40d13c28
AD
315
316 $entry_guid = $item["id"];
317
318 if (!$entry_guid) $entry_guid = $item["guid"];
319 if (!$entry_guid) $entry_guid = $item["link"];
466001c4
AD
320
321 if (!$entry_guid) continue;
a116f569 322
9c9c7e6b 323 $entry_timestamp = "";
b82af8c3 324
9c9c7e6b
AD
325 $rss_2_date = $item['pubdate'];
326 $rss_1_date = $item['dc']['date'];
327 $atom_date = $item['issued'];
59ba2c75 328 if (!$atom_date) $atom_date = $item['updated'];
b197f117 329
9c9c7e6b
AD
330 if ($atom_date != "") $entry_timestamp = parse_w3cdtf($atom_date);
331 if ($rss_1_date != "") $entry_timestamp = parse_w3cdtf($rss_1_date);
332 if ($rss_2_date != "") $entry_timestamp = strtotime($rss_2_date);
b82af8c3
AD
333
334 if ($entry_timestamp == "") {
335 $entry_timestamp = time();
336 $no_orig_date = 'true';
466001c4
AD
337 } else {
338 $no_orig_date = 'false';
b82af8c3 339 }
b197f117 340
466001c4 341 $entry_timestamp_fmt = strftime("%Y/%m/%d %H:%M:%S", $entry_timestamp);
71ad3959 342
40d13c28 343 $entry_title = $item["title"];
ddb68b81
AD
344
345 // strange Magpie workaround
346 $entry_link = $item["link_"];
347 if (!$entry_link) $entry_link = $item["link"];
71ad3959
AD
348
349 if (!$entry_title) continue;
350 if (!$entry_link) continue;
351
1696229f
AD
352 $entry_content = $item["content:escaped"];
353
354 if (!$entry_content) $entry_content = $item["content:encoded"];
40d13c28 355 if (!$entry_content) $entry_content = $item["content"];
372ced8b 356 if (!$entry_content) $entry_content = $item["summary"];
1696229f 357 if (!$entry_content) $entry_content = $item["description"];
a2015351 358
a116f569 359// if (!$entry_content) continue;
a2015351 360
8add756a
AD
361 // WTF
362 if (is_array($entry_content)) {
363 $entry_content = $entry_content["encoded"];
1696229f 364 if (!$entry_content) $entry_content = $entry_content["escaped"];
8add756a
AD
365 }
366
1696229f 367// print_r($item);
372ced8b
AD
368// print_r(htmlspecialchars($entry_content));
369// print "<br>";
1696229f 370
372ced8b 371 $entry_content_unescaped = $entry_content;
466001c4 372 $content_hash = "SHA1:" . sha1(strip_tags($entry_content));
cb0bd8bd 373
a1ea1e12
AD
374 $entry_comments = $item["comments"];
375
b6104dee
AD
376 $entry_author = db_escape_string($item['dc']['creator']);
377
b6eefba5 378 $entry_guid = db_escape_string($entry_guid);
2651fc4f 379
05732aa0
AD
380 $result = db_query($link, "SELECT id FROM ttrss_entries
381 WHERE guid = '$entry_guid'");
4c193675 382
b17fcb1a
AD
383 $entry_content = db_escape_string($entry_content);
384 $entry_title = db_escape_string($entry_title);
385 $entry_link = db_escape_string($entry_link);
386 $entry_comments = db_escape_string($entry_comments);
387
27f089dc 388 $num_comments = db_escape_string($item["slash"]["comments"]);
11b0dce2 389
e31073bd
AD
390 if (!$num_comments) $num_comments = 0;
391
4c193675
AD
392 if (db_num_rows($result) == 0) {
393
394 // base post entry does not exist, create it
395
4c193675
AD
396 $result = db_query($link,
397 "INSERT INTO ttrss_entries
398 (title,
399 guid,
400 link,
401 updated,
402 content,
403 content_hash,
404 no_orig_date,
405 date_entered,
11b0dce2 406 comments,
b6104dee
AD
407 num_comments,
408 author)
4c193675
AD
409 VALUES
410 ('$entry_title',
411 '$entry_guid',
412 '$entry_link',
413 '$entry_timestamp_fmt',
414 '$entry_content',
415 '$content_hash',
416 $no_orig_date,
417 NOW(),
11b0dce2 418 '$entry_comments',
b6104dee
AD
419 '$num_comments',
420 '$entry_author')");
8926aab8
AD
421 } else {
422 // we keep encountering the entry in feeds, so we need to
423 // update date_entered column so that we don't get horrible
424 // dupes when the entry gets purged and reinserted again e.g.
425 // in the case of SLOW SLOW OMG SLOW updating feeds
426
427 $base_entry_id = db_fetch_result($result, 0, "id");
428
429 db_query($link, "UPDATE ttrss_entries SET date_entered = NOW()
430 WHERE id = '$base_entry_id'");
4c193675
AD
431 }
432
433 // now it should exist, if not - bad luck then
434
6385315d
AD
435 $result = db_query($link, "SELECT
436 id,content_hash,no_orig_date,title,
8926aab8 437 substring(date_entered,1,19) as date_entered,
11b0dce2
AD
438 substring(updated,1,19) as updated,
439 num_comments
6385315d
AD
440 FROM
441 ttrss_entries
442 WHERE guid = '$entry_guid'");
4c193675
AD
443
444 if (db_num_rows($result) == 1) {
445
11b0dce2
AD
446 // this will be used below in update handler
447 $orig_content_hash = db_fetch_result($result, 0, "content_hash");
448 $orig_title = db_fetch_result($result, 0, "title");
449 $orig_num_comments = db_fetch_result($result, 0, "num_comments");
8926aab8
AD
450 $orig_date_entered = strtotime(db_fetch_result($result,
451 0, "date_entered"));
6385315d 452
11b0dce2 453 $ref_id = db_fetch_result($result, 0, "id");
4c193675 454
11b0dce2 455 // check for user post link to main table
4c193675 456
11b0dce2
AD
457 // do we allow duplicate posts with same GUID in different feeds?
458 if (get_pref($link, "ALLOW_DUPLICATE_POSTS", $owner_uid)) {
459 $dupcheck_qpart = "AND feed_id = '$feed'";
460 } else {
461 $dupcheck_qpart = "";
462 }
71604ca4 463
11b0dce2 464// error_reporting(0);
19c9cb11 465
11b0dce2
AD
466 $filter_name = get_filter_name($entry_title, $entry_content,
467 $entry_link, $filters);
19c9cb11 468
11b0dce2
AD
469 if ($filter_name == "filter") {
470 continue;
471 }
19c9cb11 472
11b0dce2 473// error_reporting (DEFAULT_ERROR_LEVEL);
3a933f22 474
11b0dce2
AD
475 $result = db_query($link,
476 "SELECT ref_id FROM ttrss_user_entries WHERE
477 ref_id = '$ref_id' AND owner_uid = '$owner_uid'
478 $dupcheck_qpart");
479
480 // okay it doesn't exist - create user entry
481 if (db_num_rows($result) == 0) {
482
483 if ($filter_name != 'catchup') {
484 $unread = 'true';
485 $last_read_qpart = 'NULL';
486 } else {
487 $unread = 'false';
488 $last_read_qpart = 'NOW()';
489 }
19c9cb11 490
11b0dce2
AD
491 $result = db_query($link,
492 "INSERT INTO ttrss_user_entries
493 (ref_id, owner_uid, feed_id, unread, last_read)
494 VALUES ('$ref_id', '$owner_uid', '$feed', $unread,
495 $last_read_qpart)");
496 }
497
6385315d
AD
498 $post_needs_update = false;
499
a2770077 500 if (get_pref($link, "UPDATE_POST_ON_CHECKSUM_CHANGE", $owner_uid) &&
6385315d
AD
501 ($content_hash != $orig_content_hash)) {
502 $post_needs_update = true;
503 }
504
505 if ($orig_title != $entry_title) {
506 $post_needs_update = true;
507 }
508
11b0dce2
AD
509 if ($orig_num_comments != $num_comments) {
510 $post_needs_update = true;
511 }
512
6385315d
AD
513// this doesn't seem to be very reliable
514//
515// if ($orig_timestamp != $entry_timestamp && !$orig_no_orig_date) {
516// $post_needs_update = true;
517// }
518
519 // if post needs update, update it and mark all user entries
1c73bc0c 520 // linking to this post as updated
6385315d
AD
521 if ($post_needs_update) {
522
523// print "<!-- post $orig_title needs update : $post_needs_update -->";
524
6385315d 525 db_query($link, "UPDATE ttrss_entries
11b0dce2
AD
526 SET title = '$entry_title', content = '$entry_content',
527 num_comments = '$num_comments'
6385315d
AD
528 WHERE id = '$ref_id'");
529
530 db_query($link, "UPDATE ttrss_user_entries
531 SET last_read = null WHERE ref_id = '$ref_id' AND unread = false");
532
533 }
4c193675
AD
534 }
535
eb36b4eb
AD
536 /* taaaags */
537 // <a href="http://technorati.com/tag/Xorg" rel="tag">Xorg</a>, //
538
05732aa0 539 $entry_tags = null;
eb36b4eb 540
372ced8b 541 preg_match_all("/<a.*?href=.http:\/\/.*?technorati.com\/tag\/([^\"\'>]+)/i",
ee2c3050
AD
542 $entry_content_unescaped, $entry_tags);
543
544// print "<br>$entry_title : $entry_content_unescaped<br>";
545// print_r($entry_tags);
372ced8b 546// print "<br>";
eb36b4eb
AD
547
548 $entry_tags = $entry_tags[1];
549
550 if (count($entry_tags) > 0) {
551
05732aa0
AD
552 $result = db_query($link, "SELECT id,int_id
553 FROM ttrss_entries,ttrss_user_entries
25da6909 554 WHERE guid = '$entry_guid'
05732aa0 555 AND feed_id = '$feed' AND ref_id = id
7fed1940 556 AND owner_uid = '$owner_uid'");
eb36b4eb 557
fe99ab12 558 if (db_num_rows($result) == 1) {
eb36b4eb 559
fe99ab12
AD
560 $entry_id = db_fetch_result($result, 0, "id");
561 $entry_int_id = db_fetch_result($result, 0, "int_id");
562
563 foreach ($entry_tags as $tag) {
564 $tag = db_escape_string(strtolower($tag));
31483fc1
AD
565
566 $tag = str_replace("+", " ", $tag);
fe99ab12
AD
567 $tag = str_replace("technorati tag: ", "", $tag);
568
569 $result = db_query($link, "SELECT id FROM ttrss_tags
570 WHERE tag_name = '$tag' AND post_int_id = '$entry_int_id' AND
571 owner_uid = '$owner_uid' LIMIT 1");
572
573 // print db_fetch_result($result, 0, "id");
574
575 if ($result && db_num_rows($result) == 0) {
576
577 // print "tagging $entry_id as $tag<br>";
578
579 db_query($link, "INSERT INTO ttrss_tags
580 (owner_uid,tag_name,post_int_id)
581 VALUES ('$owner_uid','$tag', '$entry_int_id')");
582 }
583 }
eb36b4eb 584 }
05732aa0 585 }
4c193675 586 }
40d13c28 587
ab3d0b99
AD
588 db_query($link, "UPDATE ttrss_feeds
589 SET last_updated = NOW(), last_error = '' WHERE id = '$feed'");
eb36b4eb 590
dd8c76a9
AD
591 db_query($link, "COMMIT");
592
ab3d0b99
AD
593 } else {
594 $error_msg = db_escape_string(magpie_error());
595 db_query($link,
aa5f9f5f
AD
596 "UPDATE ttrss_feeds SET last_error = '$error_msg',
597 last_updated = NOW() WHERE id = '$feed'");
40d13c28
AD
598 }
599
600 }
601
f175937c
AD
602 function print_select($id, $default, $values, $attributes = "") {
603 print "<select id=\"$id\" $attributes>";
a0d53889
AD
604 foreach ($values as $v) {
605 if ($v == $default)
606 $sel = " selected";
607 else
608 $sel = "";
609
610 print "<option$sel>$v</option>";
611 }
612 print "</select>";
613 }
40d13c28 614
19c9cb11 615 function get_filter_name($title, $content, $link, $filters) {
e6155a06
AD
616
617 if ($filters["title"]) {
19c9cb11
AD
618 foreach ($filters["title"] as $filter) {
619 $reg_exp = $filter["reg_exp"];
620 if (preg_match("/$reg_exp/i", $title)) {
621 return $filter["action"];
622 }
e6155a06
AD
623 }
624 }
625
626 if ($filters["content"]) {
19c9cb11
AD
627 foreach ($filters["content"] as $filter) {
628 $reg_exp = $filter["reg_exp"];
629 if (preg_match("/$reg_exp/i", $content)) {
630 return $filter["action"];
631 }
e6155a06
AD
632 }
633 }
634
635 if ($filters["both"]) {
636 foreach ($filters["both"] as $filter) {
19c9cb11
AD
637 $reg_exp = $filter["reg_exp"];
638 if (preg_match("/$reg_exp/i", $title) ||
639 preg_match("/$reg_exp/i", $content)) {
640 return $filter["action"];
641 }
e6155a06
AD
642 }
643 }
644
3a933f22 645 if ($filters["link"]) {
19c9cb11
AD
646 $reg_exp = $filter["reg_exp"];
647 foreach ($filters["link"] as $filter) {
648 $reg_exp = $filter["reg_exp"];
649 if (preg_match("/$reg_exp/i", $link)) {
650 return $filter["action"];
651 }
3a933f22
AD
652 }
653 }
654
e6155a06
AD
655 return false;
656 }
657
4668523d 658 function printFeedEntry($feed_id, $class, $feed_title, $unread, $icon_file, $link) {
254e0e4b
AD
659
660 if (file_exists($icon_file) && filesize($icon_file) > 0) {
023fe037 661 $feed_icon = "<img id=\"FIMG-$feed_id\" src=\"$icon_file\">";
254e0e4b 662 } else {
023fe037 663 $feed_icon = "<img id=\"FIMG-$feed_id\" src=\"images/blank_icon.gif\">";
254e0e4b
AD
664 }
665
8143ae1f 666 $feed = "<a href=\"javascript:viewfeed('$feed_id', 0);\">$feed_title</a>";
254e0e4b
AD
667
668 print "<li id=\"FEEDR-$feed_id\" class=\"$class\">";
b619ff15 669 if (get_pref($link, 'ENABLE_FEED_ICONS')) {
254e0e4b
AD
670 print "$feed_icon";
671 }
672
673 print "<span id=\"FEEDN-$feed_id\">$feed</span>";
674
675 if ($unread != 0) {
676 $fctr_class = "";
677 } else {
678 $fctr_class = "class=\"invisible\"";
679 }
680
681 print "<span $fctr_class id=\"FEEDCTR-$feed_id\">
682 (<span id=\"FEEDU-$feed_id\">$unread</span>)</span>";
683
684 print "</li>";
685
686 }
687
406d9489
AD
688 function getmicrotime() {
689 list($usec, $sec) = explode(" ",microtime());
690 return ((float)$usec + (float)$sec);
691 }
692
77e96719
AD
693 function print_radio($id, $default, $values, $attributes = "") {
694 foreach ($values as $v) {
695
696 if ($v == $default)
5da169d9 697 $sel = "checked";
77e96719 698 else
5da169d9
AD
699 $sel = "";
700
701 if ($v == "Yes") {
702 $sel .= " value=\"1\"";
703 } else {
704 $sel .= " value=\"0\"";
705 }
77e96719 706
69654950
AD
707 print "<input class=\"noborder\"
708 type=\"radio\" $sel $attributes name=\"$id\">&nbsp;$v&nbsp;";
77e96719
AD
709
710 }
711 }
712
ff485f1d
AD
713 function initialize_user_prefs($link, $uid) {
714
715 $uid = db_escape_string($uid);
716
717 db_query($link, "BEGIN");
718
719 $result = db_query($link, "SELECT pref_name,def_value FROM ttrss_prefs");
720
721 $u_result = db_query($link, "SELECT pref_name
722 FROM ttrss_user_prefs WHERE owner_uid = '$uid'");
723
724 $active_prefs = array();
725
726 while ($line = db_fetch_assoc($u_result)) {
727 array_push($active_prefs, $line["pref_name"]);
728 }
729
730 while ($line = db_fetch_assoc($result)) {
731 if (array_search($line["pref_name"], $active_prefs) === FALSE) {
732// print "adding " . $line["pref_name"] . "<br>";
733
734 db_query($link, "INSERT INTO ttrss_user_prefs
735 (owner_uid,pref_name,value) VALUES
736 ('$uid', '".$line["pref_name"]."','".$line["def_value"]."')");
737
738 }
739 }
740
741 db_query($link, "COMMIT");
742
743 }
c8437f35
AD
744
745 function authenticate_user($link, $login, $password) {
746
747 $pwd_hash = 'SHA1:' . sha1($password);
748
203b6d25 749 $result = db_query($link, "SELECT id,login,access_level FROM ttrss_users WHERE
7f16656e 750 login = '$login' AND pwd_hash = '$pwd_hash'");
c8437f35
AD
751
752 if (db_num_rows($result) == 1) {
753 $_SESSION["uid"] = db_fetch_result($result, 0, "id");
754 $_SESSION["name"] = db_fetch_result($result, 0, "login");
203b6d25 755 $_SESSION["access_level"] = db_fetch_result($result, 0, "access_level");
c8437f35 756
f6f32198
AD
757 db_query($link, "UPDATE ttrss_users SET last_login = NOW() WHERE id = " .
758 $_SESSION["uid"]);
759
503eb349
AD
760 $user_theme = get_user_theme_path($link);
761
762 $_SESSION["theme"] = $user_theme;
916f788a 763 $_SESSION["ip_address"] = $_SERVER["REMOTE_ADDR"];
503eb349 764
f557cd78
AD
765 initialize_user_prefs($link, $_SESSION["uid"]);
766
c8437f35
AD
767 return true;
768 }
ff485f1d 769
c8437f35
AD
770 return false;
771
772 }
773
e6cb77a0
AD
774 function make_password($length = 8) {
775
776 $password = "";
798f722b
AD
777 $possible = "0123456789abcdfghjkmnpqrstvwxyzABCDFGHJKMNPQRSTVWXYZ";
778
779 $i = 0;
e6cb77a0
AD
780
781 while ($i < $length) {
782 $char = substr($possible, mt_rand(0, strlen($possible)-1), 1);
783
784 if (!strstr($password, $char)) {
785 $password .= $char;
786 $i++;
787 }
788 }
789 return $password;
790 }
791
792 // this is called after user is created to initialize default feeds, labels
793 // or whatever else
794
795 // user preferences are checked on every login, not here
796
797 function initialize_user($link, $uid) {
798
799 db_query($link, "insert into ttrss_labels (owner_uid,sql_exp,description)
800 values ('$uid','unread = true', 'Unread articles')");
801
802 db_query($link, "insert into ttrss_labels (owner_uid,sql_exp,description)
803 values ('$uid','last_read is null and unread = false', 'Updated articles')");
804
805 db_query($link, "insert into ttrss_feeds (owner_uid,title,feed_url)
74bff337 806 values ('$uid', 'Tiny Tiny RSS: New Releases',
628fcd2c 807 'http://tt-rss.spb.ru/releases.rss')");
3b0feb9b
AD
808
809 }
e6cb77a0 810
b8aa49bc 811 function logout_user() {
5ccc1cf5
AD
812 session_destroy();
813 if (isset($_COOKIE[session_name()])) {
814 setcookie(session_name(), '', time()-42000, '/');
815 }
b8aa49bc
AD
816 }
817
75836f33 818 function get_script_urlpath() {
87a79fa4 819 return preg_replace('/\/[^\/]*$/', "", $_SERVER["REQUEST_URI"]);
75836f33
AD
820 }
821
822 function get_login_redirect() {
823 $server = $_SERVER["SERVER_NAME"];
824
825 if (ENABLE_LOGIN_SSL) {
826 $protocol = "https";
827 } else {
828 $protocol = "http";
829 }
830
831 $url_path = get_script_urlpath();
832
833 $redirect_uri = "$protocol://$server$url_path/login.php";
834
835 return $redirect_uri;
836 }
837
916f788a
AD
838 function validate_session($link) {
839 if (SESSION_CHECK_ADDRESS && !DATABASE_BACKED_SESSIONS && $_SESSION["uid"]) {
840 if ($_SESSION["ip_address"]) {
841 if ($_SESSION["ip_address"] != $_SERVER["REMOTE_ADDR"]) {
842 return false;
843 }
844 }
845 }
846 return true;
847 }
848
7ae65adf
AD
849 function basic_nosid_redirect_check() {
850 if (!SINGLE_USER_MODE) {
851 if (!$_COOKIE["ttrss_sid"]) {
852 $redirect_uri = get_login_redirect();
853 $return_to = preg_replace('/.*?\//', '', $_SERVER["REQUEST_URI"]);
854 header("Location: $redirect_uri?rt=$return_to");
855 exit;
856 }
857 }
858 }
859
b8aa49bc
AD
860 function login_sequence($link) {
861 if (!SINGLE_USER_MODE) {
75836f33 862
916f788a
AD
863 if (!validate_session($link)) {
864 logout_user();
865 $redirect_uri = get_login_redirect();
866 $return_to = preg_replace('/.*?\//', '', $_SERVER["REQUEST_URI"]);
867 header("Location: $redirect_uri?rt=$return_to");
868 exit;
869 }
870
b8aa49bc
AD
871 if (!USE_HTTP_AUTH) {
872 if (!$_SESSION["uid"]) {
75836f33 873 $redirect_uri = get_login_redirect();
e31dca14
AD
874 $return_to = preg_replace('/.*?\//', '', $_SERVER["REQUEST_URI"]);
875 header("Location: $redirect_uri?rt=$return_to");
b8aa49bc
AD
876 exit;
877 }
878 } else {
f557cd78
AD
879 if (!$_SESSION["uid"]) {
880 if (!$_SERVER["PHP_AUTH_USER"]) {
881
882 header('WWW-Authenticate: Basic realm="Tiny Tiny RSS"');
883 header('HTTP/1.0 401 Unauthorized');
884 exit;
885
886 } else {
887 $auth_result = authenticate_user($link,
888 $_SERVER["PHP_AUTH_USER"], $_SERVER["PHP_AUTH_PW"]);
889
890 if (!$auth_result) {
891 header('WWW-Authenticate: Basic realm="Tiny Tiny RSS"');
892 header('HTTP/1.0 401 Unauthorized');
893 exit;
894 }
895 }
896 }
b8aa49bc
AD
897 }
898 } else {
899 $_SESSION["uid"] = 1;
900 $_SESSION["name"] = "admin";
c7a03b7a 901 initialize_user_prefs($link, 1);
b8aa49bc
AD
902 }
903 }
3547842a
AD
904
905 function truncate_string($str, $max_len) {
12db369c
AD
906 if (mb_strlen($str, "utf-8") > $max_len - 3) {
907 return mb_substr($str, 0, $max_len, "utf-8") . "...";
3547842a
AD
908 } else {
909 return $str;
910 }
911 }
54a60e1a
AD
912
913 function get_user_theme_path($link) {
798f722b
AD
914 $result = db_query($link, "SELECT theme_path
915 FROM
916 ttrss_themes,ttrss_users
917 WHERE ttrss_themes.id = theme_id AND ttrss_users.id = " . $_SESSION["uid"]);
54a60e1a
AD
918 if (db_num_rows($result) != 0) {
919 return db_fetch_result($result, 0, "theme_path");
920 } else {
921 return null;
922 }
923 }
be773442
AD
924
925 function smart_date_time($timestamp) {
926 if (date("Y.m.d", $timestamp) == date("Y.m.d")) {
927 return date("G:i", $timestamp);
f26450f1 928 } else if (date("Y", $timestamp) == date("Y")) {
be773442
AD
929 return date("M d, G:i", $timestamp);
930 } else {
b02111c2 931 return date("Y/m/d G:i", $timestamp);
be773442
AD
932 }
933 }
934
935 function smart_date($timestamp) {
936 if (date("Y.m.d", $timestamp) == date("Y.m.d")) {
937 return "Today";
f26450f1 938 } else if (date("Y", $timestamp) == date("Y")) {
be773442
AD
939 return date("D m", $timestamp);
940 } else {
b02111c2 941 return date("Y/m/d", $timestamp);
be773442
AD
942 }
943 }
a654a595
AD
944
945 function sql_bool_to_string($s) {
946 if ($s == "t" || $s == "1") {
947 return "true";
948 } else {
949 return "false";
950 }
951 }
e3c99f3b
AD
952
953 function sql_bool_to_bool($s) {
954 if ($s == "t" || $s == "1") {
955 return true;
956 } else {
957 return false;
958 }
959 }
0ea4fb50 960
e3c99f3b 961
0ea4fb50
AD
962 function toggleEvenOdd($a) {
963 if ($a == "even")
964 return "odd";
965 else
966 return "even";
967 }
6043fb7e
AD
968
969 function sanity_check($link) {
9cbca41f 970
6043fb7e
AD
971 $error_code = 0;
972 $result = db_query($link, "SELECT schema_version FROM ttrss_version");
973 $schema_version = db_fetch_result($result, 0, "schema_version");
974
975 if ($schema_version != SCHEMA_VERSION) {
976 $error_code = 5;
977 }
978
6043fb7e 979 if ($error_code != 0) {
9cbca41f 980 print "<error error-code='$error_code'/>";
6043fb7e
AD
981 return false;
982 } else {
983 return true;
9cbca41f 984 }
6043fb7e
AD
985 }
986
27981ca3
AD
987 function file_is_locked($filename) {
988 error_reporting(0);
989 $fp = fopen($filename, "r");
990 error_reporting(DEFAULT_ERROR_LEVEL);
991 if ($fp) {
992 if (flock($fp, LOCK_EX | LOCK_NB)) {
993 flock($fp, LOCK_UN);
994 fclose($fp);
995 return false;
996 }
997 fclose($fp);
998 return true;
999 }
1000 return false;
1001 }
1002
fcb4c0c9
AD
1003 function make_lockfile($filename) {
1004 $fp = fopen($filename, "w");
1005
1006 if (flock($fp, LOCK_EX | LOCK_NB)) {
1007 return $fp;
1008 } else {
1009 return false;
1010 }
1011 }
1012
40d13c28 1013?>