diff options
author | Friendika <info@friendika.com> | 2010-12-21 14:51:26 -0800 |
---|---|---|
committer | Friendika <info@friendika.com> | 2010-12-21 14:51:26 -0800 |
commit | 5b1fde8b0f4c658b3560ad4b0d29d176c42baf87 (patch) | |
tree | b72a2250f69a3f10b5076c91fa12e21e6946738a /include | |
parent | ddec422de6707809aceb541e1191073b43aec18a (diff) | |
download | volse-hubzilla-5b1fde8b0f4c658b3560ad4b0d29d176c42baf87.tar.gz volse-hubzilla-5b1fde8b0f4c658b3560ad4b0d29d176c42baf87.tar.bz2 volse-hubzilla-5b1fde8b0f4c658b3560ad4b0d29d176c42baf87.zip |
allow configurable poll interval override when hub is used
Diffstat (limited to 'include')
-rw-r--r-- | include/poller.php | 27 |
1 files changed, 21 insertions, 6 deletions
diff --git a/include/poller.php b/include/poller.php index ec1fef7a8..dda0cb0ce 100644 --- a/include/poller.php +++ b/include/poller.php @@ -43,16 +43,30 @@ if($contact['priority'] || $contact['subhub']) { - $update = false; + $hub_update = true; + $update = false; + + $t = $contact['last-update']; // We should be getting everything via a hub. But just to be sure, let's check once a day. + // (You can make this more or less frequent if desired by setting 'pushpoll_frequency' appropriately) // This also lets us update our subscription to the hub, and add or replace hubs in case it - // changed. + // changed. We will only update hubs once a day, regardless of 'pushpoll_frequency'. - if($contact['subhub']) - $contact['priority'] = 3; - $t = $contact['last-update']; + if($contact['subhub']) { + $interval = get_config('system','pushpoll_frequency'); + $contact['priority'] = (($interval !== false) ? intval($interval) : 3); + $hub_update = false; + + if(datetime_convert('UTC','UTC', 'now') > datetime_convert('UTC','UTC', $t . " + 1 day")) + $hub_update = true; + } + + + /** + * Based on $contact['priority'], should we poll this site now? Or later? + */ switch ($contact['priority']) { case 5: @@ -218,7 +232,8 @@ consume_feed($xml,$importer,$contact,$hub); - if((strlen($hub)) && (($contact['rel'] == REL_BUD) || (($contact['network'] === 'stat') && (! $contact['readonly'])))) { + if((strlen($hub)) && ($hub_update) + && (($contact['rel'] == REL_BUD) || (($contact['network'] === 'stat') && (! $contact['readonly'])))) { logger('poller: subscribing to hub(s) : ' . $hub . ' contact name : ' . $contact['name'] . ' local user : ' . $importer['name']); $hubs = explode(',', $hub); if(count($hubs)) { |