2007-03-02 15:41:57 +01:00
|
|
|
#!/usr/bin/php
|
2006-08-19 09:04:45 +02:00
|
|
|
<?php
|
2005-12-03 15:25:40 +01:00
|
|
|
// this script is probably run not from your httpd-user, so cache
|
|
|
|
// directory defined in config.php won't be accessible
|
|
|
|
define('MAGPIE_CACHE_DIR', '/var/tmp/magpie-ttrss-cache-cli');
|
2007-08-29 03:01:06 +02:00
|
|
|
define('SIMPLEPIE_CACHE_DIR', '/var/tmp/simplepie-ttrss-cache-cli');
|
2007-11-21 08:20:54 +01:00
|
|
|
define('DEFAULT_ERROR_LEVEL', E_ERROR | E_WARNING | E_PARSE);
|
2006-02-11 14:52:17 +01:00
|
|
|
define('DISABLE_SESSIONS', true);
|
|
|
|
|
2007-11-21 08:20:54 +01:00
|
|
|
error_reporting(DEFAULT_ERROR_LEVEL);
|
|
|
|
|
2005-12-03 15:25:40 +01:00
|
|
|
require_once "sanity_check.php";
|
|
|
|
require_once "config.php";
|
|
|
|
require_once "db.php";
|
|
|
|
require_once "db-prefs.php";
|
|
|
|
require_once "functions.php";
|
2007-09-25 05:23:29 +02:00
|
|
|
|
|
|
|
$lock_filename = "update_feeds.lock";
|
|
|
|
|
|
|
|
$lock_handle = make_lockfile($lock_filename);
|
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
// Try to lock a file in order to avoid concurrent update.
|
2007-09-25 05:23:29 +02:00
|
|
|
if (!$lock_handle) {
|
|
|
|
die("error: Can't create lockfile ($lock_filename). ".
|
|
|
|
"Maybe another process is already running.\n");
|
|
|
|
}
|
2005-12-03 15:25:40 +01:00
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
// Create a database connection.
|
2005-12-03 15:25:40 +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;
|
|
|
|
}
|
|
|
|
|
2008-11-10 06:29:19 +01:00
|
|
|
init_connection($link);
|
2005-12-03 15:25:40 +01:00
|
|
|
|
2008-06-24 05:25:16 +02:00
|
|
|
// Purge all posts (random 30 feeds)
|
2009-01-20 13:35:59 +01:00
|
|
|
//global_purge_old_posts($link, true, 30);
|
2008-06-24 05:25:16 +02:00
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
// Update all feeds needing a update.
|
2008-11-05 06:58:49 +01:00
|
|
|
update_daemon_common($link);
|
2005-12-03 15:25:40 +01:00
|
|
|
|
|
|
|
db_close($link);
|
|
|
|
|
2008-01-17 06:33:52 +01:00
|
|
|
unlink(LOCK_DIRECTORY . "/$lock_filename");
|
2005-12-03 15:25:40 +01:00
|
|
|
?>
|