-
Notifications
You must be signed in to change notification settings - Fork 15
/
update-quiet.php
executable file
·56 lines (42 loc) · 1.27 KB
/
update-quiet.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<?php
/*
* This file is part of FEED ON FEEDS - http://feedonfeeds.com/
*
* update-quiet.php - updates all feeds without producing output
*
*
* Copyright (C) 2004-2007 Stephen Minutillo
* [email protected] - http://minutillo.com/steve/
*
* Distributed under the GPL - see LICENSE
*
*/
ob_start();
$fof_no_login = true;
$fof_user_id = 1;
include_once "fof-main.php";
set_time_limit(FOF_UPDATE_TIME_LIMIT);
$p = &FoF_Prefs::instance();
$fof_admin_prefs = $p->prefs;
fof_log("=== update started, timeout = $fof_admin_prefs[autotimeout], purge = $fof_admin_prefs[purge] ===", "update");
$result = fof_db_get_feeds_needing_attempt();
$feeds = array();
$now = time();
while (($feed = fof_db_get_row($result)) !== false) {
if (($now - $feed['feed_cache_attempt_date']) > ($fof_admin_prefs['autotimeout'] * 60)
&& ($now > $feed['feed_cache_next_attempt'])) {
$feeds[] = $feed;
} else {
fof_log("skipping $feed[feed_id] $feed[feed_url]", 'update');
}
}
$feeds = fof_multi_sort($feeds, 'feed_cache_attempt_date', false);
foreach ($feeds as $feed) {
fof_log("updating $feed[feed_id] $feed[feed_url]", 'update');
fof_update_feed($feed['feed_id']);
}
fof_log("optimizing database", "update");
fof_db_optimize();
fof_log("=== update complete ===", "update");
ob_end_clean();
?>