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