]> git.wh0rd.org - tt-rss.git/blob - update_daemon_loop.php
bump simplepie to 1.1.3
[tt-rss.git] / update_daemon_loop.php
1 #!/usr/bin/php
2 <?php
3 // this daemon runs in the background and updates all feeds
4 // continuously
5
6 if ($argv[1] != "SRV_RUN_OK") {
7 die("This script should be run by update_daemon.php\n");
8 }
9
10 // define('DEFAULT_ERROR_LEVEL', E_ALL);
11 define('DEFAULT_ERROR_LEVEL', E_ERROR | E_WARNING | E_PARSE);
12
13 declare(ticks = 1);
14
15 define('MAGPIE_CACHE_DIR', '/var/tmp/magpie-ttrss-cache-daemon');
16 define('SIMPLEPIE_CACHE_DIR', '/var/tmp/simplepie-ttrss-cache-daemon');
17 define('DISABLE_SESSIONS', true);
18
19 require_once "version.php";
20
21 if (strpos(VERSION, ".99") !== false) {
22 define('DAEMON_EXTENDED_DEBUG', true);
23 }
24
25 define('PURGE_INTERVAL', 3600); // seconds
26
27 require_once "sanity_check.php";
28 require_once "config.php";
29
30 if (!ENABLE_UPDATE_DAEMON) {
31 die("Please enable option ENABLE_UPDATE_DAEMON in config.php\n");
32 }
33
34 require_once "db.php";
35 require_once "db-prefs.php";
36 require_once "functions.php";
37 require_once "magpierss/rss_fetch.inc";
38
39 error_reporting(DEFAULT_ERROR_LEVEL);
40
41 function sigalrm_handler() {
42 die("received SIGALRM, hang in feed update?\n");
43 }
44
45 pcntl_signal(SIGALRM, sigalrm_handler);
46
47 $link = db_connect(DB_HOST, DB_USER, DB_PASS, DB_NAME);
48
49 if (!$link) {
50 if (DB_TYPE == "mysql") {
51 print mysql_error();
52 }
53 // PG seems to display its own errors just fine by default.
54 return;
55 }
56
57 init_connection($link);
58
59 $last_purge = 0;
60
61 if (!make_stampfile('update_daemon.stamp')) {
62 print "error: unable to create stampfile";
63 die;
64 }
65
66 if (time() - $last_purge > PURGE_INTERVAL) {
67 _debug("Purging old posts (random 30 feeds)...");
68 global_purge_old_posts($link, true, 30);
69 $last_purge = time();
70 }
71
72 // FIXME: get all scheduled updates w/forced refetch
73 // Stub, until I figure out if it is really needed.
74
75 # $result = db_query($link, "SELECT * FROM ttrss_scheduled_updates ORDER BY id");
76 # while ($line = db_fetch_assoc($result)) {
77 # print "Scheduled feed update: " . $line["feed_id"] . ", UID: " .
78 # $line["owner_uid"] . "\n";
79 # }
80
81 // Process all other feeds using last_updated and interval parameters
82
83 // $random_qpart = sql_random_function();
84
85 /*
86 ttrss_entries.date_entered < NOW() - INTERVAL '$purge_interval days'");
87 }
88
89 $rows = pg_affected_rows($result);
90
91 } else {
92
93 $result = db_query($link, "DELETE FROM ttrss_user_entries
94 USING ttrss_user_entries, ttrss_entries
95 WHERE ttrss_entries.id = ref_id AND
96 marked = false AND
97 feed_id = '$feed_id' AND
98 ttrss_entries.date_entered < DATE_SUB(NOW(), INTERVAL $purge_interval DAY)"); */
99
100 // Call to the feed batch update function
101 update_daemon_common($link);
102
103 db_close($link);
104
105 ?>