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