]> git.wh0rd.org - tt-rss.git/blame - functions.php
http user auth, password changer in preferences
[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
1c7f75ed
AD
7// $_SESSION["uid"] = PLACEHOLDER_UID; // FIXME: placeholder
8// $_SESSION["name"] = PLACEHOLDER_NAME;
06da450f 9
a3ee2a38
AD
10 define('MAGPIE_OUTPUT_ENCODING', 'UTF-8');
11
b6eefba5 12 function purge_old_posts($link) {
5d73494a 13
f1a80dae
AD
14 $user_id = $_SESSION["uid"];
15
16 $result = db_query($link, "SELECT id,purge_interval FROM ttrss_feeds
17 WHERE owner_uid = '$user_id'");
5d73494a
AD
18
19 while ($line = db_fetch_assoc($result)) {
20
21 $feed_id = $line["id"];
22 $purge_interval = $line["purge_interval"];
23
b619ff15 24 if ($purge_interval == 0) $purge_interval = get_pref($link, 'PURGE_OLD_DAYS');
5d73494a 25
140aae81 26 if ($purge_interval > 0) {
5d73494a
AD
27
28 if (DB_TYPE == "pgsql") {
29 db_query($link, "DELETE FROM ttrss_entries WHERE
30 marked = false AND feed_id = '$feed_id' AND
31 date_entered < NOW() - INTERVAL '$purge_interval days'");
32 } else {
33 db_query($link, "DELETE FROM ttrss_entries WHERE
9e0f3ab1 34 marked = false AND feed_id = '$feed_id' AND
5d73494a
AD
35 date_entered < DATE_SUB(NOW(), INTERVAL $purge_interval DAY)");
36 }
37 }
38 }
c3a8d71a
AD
39 }
40
9c9c7e6b 41 function update_all_feeds($link, $fetch) {
40d13c28 42
4769ddaf 43 if (WEB_DEMO_MODE) return;
b0b4abcf 44
b619ff15 45 if (get_pref($link, 'DAEMON_REFRESH_ONLY')) {
c5142cca
AD
46 if (!$_GET["daemon"]) {
47 return;
48 }
c70d731e
AD
49 }
50
b6eefba5 51 db_query($link, "BEGIN");
b82af8c3 52
f1a80dae
AD
53 $user_id = $_SESSION["uid"];
54
d148926e
AD
55 $result = db_query($link, "SELECT feed_url,id,
56 substring(last_updated,1,19) as last_updated,
f1a80dae 57 update_interval FROM ttrss_feeds WHERE owner_uid = '$user_id'");
40d13c28 58
b6eefba5 59 while ($line = db_fetch_assoc($result)) {
d148926e
AD
60 $upd_intl = $line["update_interval"];
61
b619ff15
AD
62 if (!$upd_intl || $upd_intl == 0) {
63 $upd_intl = get_pref($link, 'DEFAULT_UPDATE_INTERVAL');
64 }
d148926e
AD
65
66 if (!$line["last_updated"] ||
67 time() - strtotime($line["last_updated"]) > ($upd_intl * 60)) {
c5142cca 68
8143ae1f 69 update_rss_feed($link, $line["feed_url"], $line["id"]);
d148926e 70 }
40d13c28
AD
71 }
72
b6eefba5 73 purge_old_posts($link);
c3a8d71a 74
b6eefba5 75 db_query($link, "COMMIT");
b82af8c3 76
40d13c28
AD
77 }
78
9e997874 79 function check_feed_favicon($feed_url, $feed, $link) {
78800912
AD
80 $feed_url = str_replace("http://", "", $feed_url);
81 $feed_url = preg_replace("/\/.*$/", "", $feed_url);
82
83 $icon_url = "http://$feed_url/favicon.ico";
b619ff15 84 $icon_file = get_pref($link, 'ICONS_DIR') . "/$feed.ico";
78800912
AD
85
86 if (!file_exists($icon_file)) {
e695fdc8 87
78800912
AD
88 error_reporting(0);
89 $r = fopen($icon_url, "r");
90 error_reporting (E_ERROR | E_WARNING | E_PARSE);
91
92 if ($r) {
93 $tmpfname = tempnam("/tmp", "ttrssicon");
94
95 $t = fopen($tmpfname, "w");
96
97 while (!feof($r)) {
98 $buf = fread($r, 16384);
99 fwrite($t, $buf);
100 }
101
102 fclose($r);
103 fclose($t);
104
e695fdc8
AD
105 error_reporting(0);
106 if (!rename($tmpfname, $icon_file)) {
107 unlink($tmpfname);
108 }
109 error_reporting (E_ERROR | E_WARNING | E_PARSE);
78800912
AD
110
111 }
112 }
113 }
114
40d13c28
AD
115 function update_rss_feed($link, $feed_url, $feed) {
116
4769ddaf 117 if (WEB_DEMO_MODE) return;
b0b4abcf 118
ab3d0b99
AD
119 $feed = db_escape_string($feed);
120
3ad5aa85 121 error_reporting(0);
40d13c28 122 $rss = fetch_rss($feed_url);
ab3d0b99 123
3ad5aa85 124 error_reporting (E_ERROR | E_WARNING | E_PARSE);
76798ff3 125
b6eefba5 126 db_query($link, "BEGIN");
b7f4bda2 127
b6eefba5 128 $feed = db_escape_string($feed);
dcee8f61 129
40d13c28 130 if ($rss) {
b82af8c3 131
b619ff15 132 if (get_pref($link, 'ENABLE_FEED_ICONS')) {
9e997874 133 check_feed_favicon($feed_url, $feed, $link);
78800912
AD
134 }
135
b6eefba5 136 $result = db_query($link, "SELECT title,icon_url FROM ttrss_feeds WHERE id = '$feed'");
331900c6 137
b6eefba5
AD
138 $registered_title = db_fetch_result($result, 0, "title");
139 $orig_icon_url = db_fetch_result($result, 0, "icon_url");
331900c6
AD
140
141 if (!$registered_title) {
e1305a97 142 $feed_title = db_escape_string($rss->channel["title"]);
b6eefba5 143 db_query($link, "UPDATE ttrss_feeds SET title = '$feed_title' WHERE id = '$feed'");
331900c6 144 }
40d13c28 145
b7f4bda2
AD
146// print "I: " . $rss->channel["image"]["url"];
147
148 $icon_url = $rss->image["url"];
149
150 if ($icon_url && !$orig_icon_url) {
b6eefba5
AD
151 $icon_url = db_escape_string($icon_url);
152 db_query($link, "UPDATE ttrss_feeds SET icon_url = '$icon_url' WHERE id = '$feed'");
b7f4bda2
AD
153 }
154
e6155a06
AD
155
156 $filters = array();
157
4b3dff6e 158 $result = db_query($link, "SELECT reg_exp,
e6155a06
AD
159 (SELECT name FROM ttrss_filter_types
160 WHERE id = filter_type) as name
06da450f 161 FROM ttrss_filters WHERE owner_uid = ".$_SESSION["uid"]);
e6155a06 162
b6eefba5 163 while ($line = db_fetch_assoc($result)) {
e6155a06 164 if (!$filters[$line["name"]]) $filters[$line["name"]] = array();
4b3dff6e 165 array_push($filters[$line["name"]], $line["reg_exp"]);
e6155a06
AD
166 }
167
40d13c28
AD
168 foreach ($rss->items as $item) {
169
170 $entry_guid = $item["id"];
171
172 if (!$entry_guid) $entry_guid = $item["guid"];
173 if (!$entry_guid) $entry_guid = $item["link"];
466001c4
AD
174
175 if (!$entry_guid) continue;
a116f569 176
9c9c7e6b 177 $entry_timestamp = "";
b82af8c3 178
9c9c7e6b
AD
179 $rss_2_date = $item['pubdate'];
180 $rss_1_date = $item['dc']['date'];
181 $atom_date = $item['issued'];
b197f117 182
9c9c7e6b
AD
183 if ($atom_date != "") $entry_timestamp = parse_w3cdtf($atom_date);
184 if ($rss_1_date != "") $entry_timestamp = parse_w3cdtf($rss_1_date);
185 if ($rss_2_date != "") $entry_timestamp = strtotime($rss_2_date);
b82af8c3
AD
186
187 if ($entry_timestamp == "") {
188 $entry_timestamp = time();
189 $no_orig_date = 'true';
466001c4
AD
190 } else {
191 $no_orig_date = 'false';
b82af8c3 192 }
b197f117 193
466001c4 194 $entry_timestamp_fmt = strftime("%Y/%m/%d %H:%M:%S", $entry_timestamp);
71ad3959 195
40d13c28
AD
196 $entry_title = $item["title"];
197 $entry_link = $item["link"];
71ad3959
AD
198
199 if (!$entry_title) continue;
200 if (!$entry_link) continue;
201
1696229f
AD
202 $entry_content = $item["content:escaped"];
203
204 if (!$entry_content) $entry_content = $item["content:encoded"];
40d13c28 205 if (!$entry_content) $entry_content = $item["content"];
1696229f 206 if (!$entry_content) $entry_content = $item["description"];
a2015351 207
a116f569 208// if (!$entry_content) continue;
a2015351 209
8add756a
AD
210 // WTF
211 if (is_array($entry_content)) {
212 $entry_content = $entry_content["encoded"];
1696229f 213 if (!$entry_content) $entry_content = $entry_content["escaped"];
8add756a
AD
214 }
215
1696229f
AD
216// print_r($item);
217// print_r($entry_content);
218
466001c4 219 $content_hash = "SHA1:" . sha1(strip_tags($entry_content));
cb0bd8bd 220
a1ea1e12
AD
221 $entry_comments = $item["comments"];
222
b6eefba5 223 $entry_guid = db_escape_string($entry_guid);
2651fc4f 224
b6eefba5 225 $result = db_query($link, "
40d13c28 226 SELECT
ecb14114
AD
227 id,last_read,no_orig_date,title,feed_id,content_hash,
228 substring(updated,1,19) as updated
40d13c28
AD
229 FROM
230 ttrss_entries
231 WHERE
06da450f 232 guid = '$entry_guid' AND owner_uid = " . $_SESSION["uid"]);
466001c4 233
1696229f
AD
234// print db_num_rows($result) . "$entry_guid<br/>";
235
b6eefba5 236 if (db_num_rows($result) == 0) {
466001c4 237
e6155a06
AD
238 error_reporting(0);
239 if (is_filtered($entry_title, $entry_content, $filters)) {
240 continue;
241 }
242 error_reporting (E_ERROR | E_WARNING | E_PARSE);
243
b6eefba5
AD
244 //$entry_guid = db_escape_string($entry_guid);
245 $entry_content = db_escape_string($entry_content);
246 $entry_title = db_escape_string($entry_title);
247 $entry_link = db_escape_string($entry_link);
248 $entry_comments = db_escape_string($entry_comments);
466001c4
AD
249
250 $query = "INSERT
251 INTO ttrss_entries
252 (title,
253 guid,
254 link,
255 updated,
256 content,
257 content_hash,
258 feed_id,
deaaa02c 259 comments,
3b063a95 260 no_orig_date,
06da450f
AD
261 date_entered,
262 owner_uid)
40d13c28 263 VALUES
466001c4
AD
264 ('$entry_title',
265 '$entry_guid',
266 '$entry_link',
267 '$entry_timestamp_fmt',
268 '$entry_content',
269 '$content_hash',
270 '$feed',
a1ea1e12 271 '$entry_comments',
3b063a95 272 $no_orig_date,
06da450f 273 NOW(),".$_SESSION["uid"].")";
466001c4 274
b6eefba5 275 $result = db_query($link, $query);
76798ff3 276
40d13c28 277 } else {
466001c4 278
b6eefba5
AD
279 $orig_entry_id = db_fetch_result($result, 0, "id");
280 $orig_feed_id = db_fetch_result($result, 0, "feed_id");
466001c4 281
ecb14114
AD
282// print "OED: $orig_entry_id; OID: $orig_feed_id ; FID: $feed<br>";
283
466001c4 284 if ($orig_feed_id != $feed) {
ecb14114 285// print "<p>GUID $entry_guid: update from different feed ($orig_feed_id, $feed): $entry_guid [$entry_title]";
466001c4
AD
286 continue;
287 }
ad3024fc
AD
288
289 $entry_is_modified = false;
466001c4 290
ecb14114
AD
291 $orig_timestamp = strtotime(db_fetch_result($result, 0, "updated"));
292
b6eefba5
AD
293 $orig_content_hash = db_fetch_result($result, 0, "content_hash");
294 $orig_last_read = db_fetch_result($result, 0, "last_read");
295 $orig_no_orig_date = db_fetch_result($result, 0, "no_orig_date");
296 $orig_title = db_fetch_result($result, 0, "title");
cac95b8d 297
2d84262b
AD
298 $last_read_qpart = "";
299
ad3024fc 300 if ($orig_content_hash != $content_hash) {
ecb14114
AD
301// print "$orig_content_hash :: $content_hash<br>";
302
b619ff15 303 if (get_pref($link, 'UPDATE_POST_ON_CHECKSUM_CHANGE')) {
ad3024fc
AD
304 $last_read_qpart = 'last_read = null,';
305 }
306 $entry_is_modified = true;
307 }
308
309 if ($orig_title != $entry_title) {
310 $entry_is_modified = true;
311 }
312
313 if ($orig_timestamp != $entry_timestamp && !$orig_no_orig_date) {
314 $entry_is_modified = true;
cac95b8d
AD
315 }
316
ad3024fc 317 if ($entry_is_modified) {
a2015351 318
ecb14114
AD
319// print "$entry_guid Modified!<br>";
320
b6eefba5
AD
321 $entry_comments = db_escape_string($entry_comments);
322 $entry_content = db_escape_string($entry_content);
323 $entry_title = db_escape_string($entry_title);
324 $entry_link = db_escape_string($entry_link);
a2015351 325
ad3024fc
AD
326 $query = "UPDATE ttrss_entries
327 SET
328 $last_read_qpart
329 title = '$entry_title',
330 link = '$entry_link',
331 updated = '$entry_timestamp_fmt',
332 content = '$entry_content',
333 comments = '$entry_comments',
334 content_hash = '$content_hash'
335 WHERE
336 id = '$orig_entry_id'";
337
b6eefba5 338 $result = db_query($link, $query);
ad3024fc 339 }
466001c4 340 }
40d13c28 341
eb36b4eb
AD
342 /* taaaags */
343 // <a href="http://technorati.com/tag/Xorg" rel="tag">Xorg</a>, //
344
345 $entry_tags = null;
346
347 preg_match_all("/<a.*?rel=.tag.*?>([^>]+)<\/a>/i", $entry_content,
348 $entry_tags);
349
350 $entry_tags = $entry_tags[1];
351
352 if (count($entry_tags) > 0) {
353
354 $result = db_query($link, "SELECT id FROM ttrss_entries
355 WHERE guid = '$entry_guid'");
356
357 if (!$result || db_num_rows($result) != 1) {
358 return;
359 }
360
361 $entry_id = db_fetch_result($result, 0, "id");
362
363 foreach ($entry_tags as $tag) {
364 $tag = db_escape_string(strtolower($tag));
365
366 $result = db_query($link, "SELECT id FROM ttrss_tags
06da450f 367 WHERE tag_name = '$tag' AND post_id = '$entry_id' AND owner_uid = ".$_SESSION["uid"]." LIMIT 1");
eb36b4eb
AD
368
369 if ($result && db_num_rows($result) == 0) {
370
371// print "tagging $entry_id as $tag<br>";
372
06da450f
AD
373 db_query($link, "INSERT INTO ttrss_tags (owner_uid,tag_name,post_id)
374 VALUES ('".$_SESSION["uid"]."','$tag', '$entry_id')");
eb36b4eb
AD
375 }
376 }
377 }
76798ff3 378 }
40d13c28 379
ab3d0b99
AD
380 db_query($link, "UPDATE ttrss_feeds
381 SET last_updated = NOW(), last_error = '' WHERE id = '$feed'");
eb36b4eb 382
ab3d0b99
AD
383 } else {
384 $error_msg = db_escape_string(magpie_error());
385 db_query($link,
aa5f9f5f
AD
386 "UPDATE ttrss_feeds SET last_error = '$error_msg',
387 last_updated = NOW() WHERE id = '$feed'");
40d13c28
AD
388 }
389
b6eefba5 390 db_query($link, "COMMIT");
f48ba3c9 391
40d13c28
AD
392 }
393
f175937c
AD
394 function print_select($id, $default, $values, $attributes = "") {
395 print "<select id=\"$id\" $attributes>";
a0d53889
AD
396 foreach ($values as $v) {
397 if ($v == $default)
398 $sel = " selected";
399 else
400 $sel = "";
401
402 print "<option$sel>$v</option>";
403 }
404 print "</select>";
405 }
40d13c28 406
e6155a06
AD
407 function is_filtered($title, $content, $filters) {
408
409 if ($filters["title"]) {
410 foreach ($filters["title"] as $title_filter) {
411 if (preg_match("/$title_filter/i", $title))
412 return true;
413 }
414 }
415
416 if ($filters["content"]) {
417 foreach ($filters["content"] as $content_filter) {
418 if (preg_match("/$content_filter/i", $content))
419 return true;
420 }
421 }
422
423 if ($filters["both"]) {
424 foreach ($filters["both"] as $filter) {
425 if (preg_match("/$filter/i", $title) || preg_match("/$filter/i", $content))
426 return true;
427 }
428 }
429
430 return false;
431 }
432
4668523d 433 function printFeedEntry($feed_id, $class, $feed_title, $unread, $icon_file, $link) {
254e0e4b
AD
434
435 if (file_exists($icon_file) && filesize($icon_file) > 0) {
436 $feed_icon = "<img src=\"$icon_file\">";
437 } else {
438 $feed_icon = "<img src=\"images/blank_icon.gif\">";
439 }
440
8143ae1f 441 $feed = "<a href=\"javascript:viewfeed('$feed_id', 0);\">$feed_title</a>";
254e0e4b
AD
442
443 print "<li id=\"FEEDR-$feed_id\" class=\"$class\">";
b619ff15 444 if (get_pref($link, 'ENABLE_FEED_ICONS')) {
254e0e4b
AD
445 print "$feed_icon";
446 }
447
448 print "<span id=\"FEEDN-$feed_id\">$feed</span>";
449
450 if ($unread != 0) {
451 $fctr_class = "";
452 } else {
453 $fctr_class = "class=\"invisible\"";
454 }
455
456 print "<span $fctr_class id=\"FEEDCTR-$feed_id\">
457 (<span id=\"FEEDU-$feed_id\">$unread</span>)</span>";
458
459 print "</li>";
460
461 }
462
406d9489
AD
463 function getmicrotime() {
464 list($usec, $sec) = explode(" ",microtime());
465 return ((float)$usec + (float)$sec);
466 }
467
77e96719
AD
468 function print_radio($id, $default, $values, $attributes = "") {
469 foreach ($values as $v) {
470
471 if ($v == $default)
5da169d9 472 $sel = "checked";
77e96719 473 else
5da169d9
AD
474 $sel = "";
475
476 if ($v == "Yes") {
477 $sel .= " value=\"1\"";
478 } else {
479 $sel .= " value=\"0\"";
480 }
77e96719
AD
481
482 print "<input type=\"radio\" $sel $attributes name=\"$id\">&nbsp;$v&nbsp;";
483
484 }
485 }
486
ff485f1d
AD
487 function initialize_user_prefs($link, $uid) {
488
489 $uid = db_escape_string($uid);
490
491 db_query($link, "BEGIN");
492
493 $result = db_query($link, "SELECT pref_name,def_value FROM ttrss_prefs");
494
495 $u_result = db_query($link, "SELECT pref_name
496 FROM ttrss_user_prefs WHERE owner_uid = '$uid'");
497
498 $active_prefs = array();
499
500 while ($line = db_fetch_assoc($u_result)) {
501 array_push($active_prefs, $line["pref_name"]);
502 }
503
504 while ($line = db_fetch_assoc($result)) {
505 if (array_search($line["pref_name"], $active_prefs) === FALSE) {
506// print "adding " . $line["pref_name"] . "<br>";
507
508 db_query($link, "INSERT INTO ttrss_user_prefs
509 (owner_uid,pref_name,value) VALUES
510 ('$uid', '".$line["pref_name"]."','".$line["def_value"]."')");
511
512 }
513 }
514
515 db_query($link, "COMMIT");
516
517 }
518
1c7f75ed
AD
519 function authenticate_user($link) {
520
521 if (!$_SERVER['PHP_AUTH_USER']) {
522
523 header('WWW-Authenticate: Basic realm="Tiny Tiny RSS"');
524 header('HTTP/1.0 401 Unauthorized');
525 print "<h1>401 Unathorized</h1>";
526 exit;
527
528 } else {
529
530 $login = db_escape_string($_SERVER['PHP_AUTH_USER']);
531 $password = db_escape_string($_SERVER['PHP_AUTH_PW']);
532 $pwd_hash = 'SHA1:' . sha1($password);
533
534 $result = db_query($link, "SELECT id,login FROM ttrss_users WHERE
535 login = '$login' AND (pwd_hash = '$password' OR pwd_hash = '$pwd_hash')");
536
537 if (db_num_rows($result) == 1) {
538 $_SESSION["uid"] = db_fetch_result($result, 0, "id");
539 $_SESSION["name"] = db_fetch_result($result, 0, "login");
540 }
541 }
542 }
543
40d13c28 544?>