miniflux-legacy/cronjob.php

31 lines
988 B
PHP
Raw Normal View History

2013-02-18 03:48:21 +01:00
<?php
2013-05-21 12:25:13 +02:00
2014-02-08 20:13:14 +01:00
require __DIR__.'/common.php';
2013-02-18 03:48:21 +01:00
2013-05-22 13:13:56 +02:00
if (php_sapi_name() === 'cli') {
2013-05-21 12:25:13 +02:00
2013-05-18 20:35:16 +02:00
$options = getopt('', array(
'limit::',
'call-interval::',
'update-interval::'
));
2013-05-22 13:13:56 +02:00
}
else {
2013-05-18 20:35:16 +02:00
2013-05-22 13:13:56 +02:00
$options = $_GET;
}
2013-05-18 20:35:16 +02:00
$limit = ! empty($options['limit']) && ctype_digit($options['limit']) ? (int) $options['limit'] : Model\Feed\LIMIT_ALL;
2013-05-22 13:13:56 +02:00
$update_interval = ! empty($options['update-interval']) && ctype_digit($options['update-interval']) ? (int) $options['update-interval'] : null;
$call_interval = ! empty($options['call-interval']) && ctype_digit($options['call-interval']) ? (int) $options['call-interval'] : null;
if ($update_interval !== null && $call_interval !== null && $limit === Model\Feed\LIMIT_ALL && $update_interval >= $call_interval) {
2013-05-21 12:25:13 +02:00
2014-02-08 20:13:14 +01:00
$feeds_count = PicoDb\Database::get('db')->table('feeds')->count();
2013-05-22 13:13:56 +02:00
$limit = ceil($feeds_count / ($update_interval / $call_interval));
2013-05-18 20:35:16 +02:00
}
Model\Feed\refresh_all($limit);
2013-12-23 04:19:27 +01:00
Model\Item\autoflush();
Model\Config\write_debug();