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