2006-02-11 14:52:17 +01:00
|
|
|
#!/usr/bin/php4
|
|
|
|
<?
|
|
|
|
// this daemon runs in the background and updates all feeds
|
|
|
|
// continuously
|
|
|
|
|
2006-02-12 08:21:43 +01:00
|
|
|
declare(ticks = 1);
|
2006-02-11 14:52:17 +01:00
|
|
|
|
|
|
|
define('MAGPIE_CACHE_DIR', '/var/tmp/magpie-ttrss-cache-daemon');
|
|
|
|
define('DISABLE_SESSIONS', true);
|
|
|
|
|
|
|
|
require_once "sanity_check.php";
|
|
|
|
require_once "config.php";
|
2006-02-12 08:50:35 +01:00
|
|
|
|
|
|
|
if (!ENABLE_UPDATE_DAEMON) {
|
|
|
|
die("Please enable option ENABLE_UPDATE_DAEMON in config.php");
|
|
|
|
}
|
|
|
|
|
2006-02-11 14:52:17 +01:00
|
|
|
require_once "db.php";
|
|
|
|
require_once "db-prefs.php";
|
|
|
|
require_once "functions.php";
|
|
|
|
require_once "magpierss/rss_fetch.inc";
|
|
|
|
|
2006-02-12 08:21:43 +01:00
|
|
|
function sigint_handler() {
|
|
|
|
unlink("update_daemon.lock");
|
|
|
|
die("Received SIGINT. Exiting.\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
pcntl_signal(SIGINT, sigint_handler);
|
|
|
|
|
|
|
|
$lock_handle = make_lockfile("update_daemon.lock");
|
|
|
|
|
|
|
|
if (!$lock_handle) {
|
|
|
|
die("error: Can't create lockfile ($lock_filename). ".
|
|
|
|
"Maybe another daemon is already running.");
|
|
|
|
}
|
|
|
|
|
2006-02-11 14:52:17 +01:00
|
|
|
$link = db_connect(DB_HOST, DB_USER, DB_PASS, DB_NAME);
|
|
|
|
|
|
|
|
if (!$link) {
|
|
|
|
if (DB_TYPE == "mysql") {
|
|
|
|
print mysql_error();
|
|
|
|
}
|
|
|
|
// PG seems to display its own errors just fine by default.
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (DB_TYPE == "pgsql") {
|
|
|
|
pg_query("set client_encoding = 'utf-8'");
|
|
|
|
}
|
|
|
|
|
2006-02-11 15:13:23 +01:00
|
|
|
while (true) {
|
|
|
|
|
2006-02-12 06:06:04 +01:00
|
|
|
// FIXME: get all scheduled updates w/forced refetch
|
2006-02-12 08:21:43 +01:00
|
|
|
// Stub, until I figure out if it is really needed.
|
2006-02-11 15:13:23 +01:00
|
|
|
|
2006-02-12 06:06:04 +01:00
|
|
|
# $result = db_query($link, "SELECT * FROM ttrss_scheduled_updates ORDER BY id");
|
|
|
|
# while ($line = db_fetch_assoc($result)) {
|
|
|
|
# print "Scheduled feed update: " . $line["feed_id"] . ", UID: " .
|
|
|
|
# $line["owner_uid"] . "\n";
|
|
|
|
# }
|
2006-02-11 15:13:23 +01:00
|
|
|
|
|
|
|
// Process all other feeds using last_updated and interval parameters
|
|
|
|
|
|
|
|
$result = db_query($link, "SELECT feed_url,id,owner_uid,
|
|
|
|
SUBSTRING(last_updated,1,19) AS last_updated,
|
|
|
|
update_interval FROM ttrss_feeds ORDER BY last_updated DESC");
|
|
|
|
|
|
|
|
while ($line = db_fetch_assoc($result)) {
|
|
|
|
|
|
|
|
$upd_intl = $line["update_interval"];
|
|
|
|
$user_id = $line["owner_uid"];
|
|
|
|
|
|
|
|
if (!$upd_intl || $upd_intl == 0) {
|
|
|
|
$upd_intl = get_pref($link, 'DEFAULT_UPDATE_INTERVAL', $user_id);
|
|
|
|
}
|
2006-02-12 06:34:27 +01:00
|
|
|
|
|
|
|
if ($upd_intl < 0) {
|
2006-02-12 08:51:17 +01:00
|
|
|
# print "Updates disabled.\n";
|
2006-02-12 06:34:27 +01:00
|
|
|
continue;
|
|
|
|
}
|
2006-02-11 15:13:23 +01:00
|
|
|
|
2006-02-12 08:51:17 +01:00
|
|
|
print "Feed: " . $line["feed_url"] . ": ";
|
|
|
|
|
2006-02-12 09:04:27 +01:00
|
|
|
printf("(%d/%d, %d) ", time() - strtotime($line["last_updated"]),
|
|
|
|
$upd_intl*60, $owner_uid);
|
2006-02-11 15:13:23 +01:00
|
|
|
|
|
|
|
if (!$line["last_updated"] ||
|
|
|
|
time() - strtotime($line["last_updated"]) > ($upd_intl * 60)) {
|
|
|
|
|
2006-02-12 08:21:43 +01:00
|
|
|
print "Updating...\n";
|
|
|
|
update_rss_feed($link, $line["feed_url"], $line["id"], true);
|
2006-02-12 09:06:09 +01:00
|
|
|
sleep(3); // prevent flood (FIXME make this an option?)
|
2006-02-12 08:21:43 +01:00
|
|
|
} else {
|
|
|
|
print "Update not needed.\n";
|
2006-02-11 15:13:23 +01:00
|
|
|
}
|
2006-02-11 14:52:17 +01:00
|
|
|
}
|
|
|
|
|
2006-02-12 09:04:27 +01:00
|
|
|
print "Sleeping for " . DAEMON_SLEEP_INTERVAL . " seconds...\n";
|
2006-02-11 15:13:23 +01:00
|
|
|
|
2006-02-12 09:04:27 +01:00
|
|
|
sleep(DAEMON_SLEEP_INTERVAL);
|
2006-02-11 14:52:17 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
db_close($link);
|
|
|
|
|
|
|
|
?>
|