25 lines
820 B
PHP
25 lines
820 B
PHP
<?php
|
|
|
|
require 'common.php';
|
|
|
|
if (is_console()) {
|
|
|
|
$options = getopt('', array(
|
|
'limit::',
|
|
'call-interval::',
|
|
'update-interval::'
|
|
));
|
|
|
|
$limit = empty($options['limit']) ? LIMIT_ALL : (int)$options['limit'];
|
|
$update_interval = empty($options['update-interval']) ? null : (int)$options['update-interval'];
|
|
$call_interval = empty($options['call-interval']) ? null : (int)$options['call-interval'];
|
|
|
|
if ($update_interval !== null && $call_interval !== null && $limit === LIMIT_ALL && $update_interval >= $call_interval) {
|
|
|
|
$feeds_count = \PicoTools\singleton('db')->table('feeds')->count();
|
|
$limit = ceil($feeds_count / ($update_interval / $call_interval)); // compute new limit
|
|
}
|
|
|
|
Model\update_feeds($limit);
|
|
}
|