aboutsummaryrefslogtreecommitdiff
path: root/app/actualize_script.php
diff options
context:
space:
mode:
Diffstat (limited to 'app/actualize_script.php')
-rwxr-xr-xapp/actualize_script.php84
1 files changed, 58 insertions, 26 deletions
diff --git a/app/actualize_script.php b/app/actualize_script.php
index 4c306b8da..fc4f9bfbb 100755
--- a/app/actualize_script.php
+++ b/app/actualize_script.php
@@ -7,48 +7,80 @@ ob_implicit_flush(false);
ob_start();
echo 'Results: ', "\n"; //Buffered
-Minz_Configuration::init();
+if (defined('STDOUT')) {
+ $begin_date = date_create('now');
+ fwrite(STDOUT, 'Starting feed actualization at ' . $begin_date->format('c') . "\n"); //Unbuffered
+}
+
+
+// Set the header params ($_GET) to call the FRSS application.
+$_GET['c'] = 'feed';
+$_GET['a'] = 'actualize';
+$_GET['ajax'] = 1;
+$_GET['force'] = true;
+$_SERVER['HTTP_HOST'] = '';
+
+
+$log_file = join_path(USERS_PATH, '_', 'log.txt');
+
+
+$app = new FreshRSS();
+
+$system_conf = Minz_Configuration::get('system');
+$system_conf->auth_type = 'none'; // avoid necessity to be logged in (not saved!)
+// Create the list of users to actualize.
+// Users are processed in a random order but always start with admin
$users = listUsers();
-shuffle($users); //Process users in random order
-array_unshift($users, Minz_Configuration::defaultUser()); //But always start with admin
-$users = array_unique($users);
+shuffle($users);
+if ($system_conf->default_user !== ''){
+ array_unshift($users, $system_conf->default_user);
+ $users = array_unique($users);
+}
+
-foreach ($users as $myUser) {
- syslog(LOG_INFO, 'FreshRSS actualize ' . $myUser);
+$limits = $system_conf->limits;
+$min_last_activity = time() - $limits['max_inactivity'];
+foreach ($users as $user) {
+ if (($user !== $system_conf->default_user) &&
+ (FreshRSS_UserDAO::mtime($user) < $min_last_activity)) {
+ Minz_Log::notice('FreshRSS skip inactive user ' . $user, $log_file);
+ if (defined('STDOUT')) {
+ fwrite(STDOUT, 'FreshRSS skip inactive user ' . $user . "\n"); //Unbuffered
+ }
+ continue;
+ }
+ Minz_Log::notice('FreshRSS actualize ' . $user, $log_file);
if (defined('STDOUT')) {
- fwrite(STDOUT, 'Actualize ' . $myUser . "...\n"); //Unbuffered
+ fwrite(STDOUT, 'Actualize ' . $user . "...\n"); //Unbuffered
}
- echo $myUser, ' '; //Buffered
+ echo $user, ' '; //Buffered
- $_GET['c'] = 'feed';
- $_GET['a'] = 'actualize';
- $_GET['ajax'] = 1;
- $_GET['force'] = true;
- $_SERVER['HTTP_HOST'] = '';
- $freshRSS = new FreshRSS();
+ Minz_Session::_param('currentUser', $user);
+ new Minz_ModelPdo($user); //TODO: FIXME: Quick-fix while waiting for a better FreshRSS() constructor/init
+ FreshRSS_Auth::giveAccess();
+ $app->init();
+ $app->run();
- Minz_Configuration::_authType('none');
-
- Minz_Session::init('FreshRSS');
- Minz_Session::_param('currentUser', $myUser);
-
- $freshRSS->init();
- $freshRSS->run();
if (!invalidateHttpCache()) {
- syslog(LOG_NOTICE, 'FreshRSS write access problem in ' . LOG_PATH . '/*.log!');
+ Minz_Log::notice('FreshRSS write access problem in ' . join_path(USERS_PATH, $user, 'log.txt'),
+ $log_file);
if (defined('STDERR')) {
- fwrite(STDERR, 'Write access problem in ' . LOG_PATH . '/*.log!' . "\n");
+ fwrite(STDERR, 'Write access problem in ' . join_path(USERS_PATH, $user, 'log.txt') . "\n");
}
}
- Minz_Session::unset_session(true);
- Minz_ModelPdo::clean();
}
-syslog(LOG_INFO, 'FreshRSS actualize done.');
+
+
+Minz_Log::notice('FreshRSS actualize done.', $log_file);
if (defined('STDOUT')) {
fwrite(STDOUT, 'Done.' . "\n");
+ $end_date = date_create('now');
+ $duration = date_diff($end_date, $begin_date);
+ fwrite(STDOUT, 'Ending feed actualization at ' . $end_date->format('c') . "\n"); //Unbuffered
+ fwrite(STDOUT, 'Feed actualizations took ' . $duration->format('%a day(s), %h hour(s), %i minute(s) and %s seconds') . ' for ' . count($users) . " users\n"); //Unbuffered
}
echo 'End.', "\n";
ob_end_flush();