aboutsummaryrefslogtreecommitdiffstats
path: root/include/poller.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2013-01-29 19:28:19 -0800
committerfriendica <info@friendica.com>2013-01-29 19:28:19 -0800
commite270bd3874bb4526138cc06cd26e2a1153778894 (patch)
tree3f58cbb7fd464421423fb250423d4781c80f036b /include/poller.php
parentfb9ccf5d1b39fc060c5752d28f89daf2378610d3 (diff)
downloadvolse-hubzilla-e270bd3874bb4526138cc06cd26e2a1153778894.tar.gz
volse-hubzilla-e270bd3874bb4526138cc06cd26e2a1153778894.tar.bz2
volse-hubzilla-e270bd3874bb4526138cc06cd26e2a1153778894.zip
mark for death implemented
Diffstat (limited to 'include/poller.php')
-rw-r--r--include/poller.php45
1 files changed, 43 insertions, 2 deletions
diff --git a/include/poller.php b/include/poller.php
index 00e336453..ef4b93fe7 100644
--- a/include/poller.php
+++ b/include/poller.php
@@ -124,9 +124,50 @@ function poller_run($argv, $argc){
$update = false;
$t = $contact['abook_updated'];
+ $c = $contact['abook_connected'];
- if(datetime_convert('UTC','UTC', 'now') > datetime_convert('UTC','UTC', $t . " + 1 day"))
- $update = true;
+
+ if($c == $t) {
+ if(datetime_convert('UTC','UTC', 'now') > datetime_convert('UTC','UTC', $t . " + 1 day"))
+ $update = true;
+ }
+ else {
+ // if we've never connected with them, start the mark for death countdown from now
+
+ if($c === '0000-00-00 00:00:00') {
+ $r = q("update abook set abook_connected = '%s' where abook_id = %d limit 1",
+ dbesc(datetime_convert()),
+ intval($abook['abook_id'])
+ );
+ $c = datetime_convert();
+ $update = true;
+ }
+
+ // He's dead, Jim
+
+ if(datetime_convert('UTC','UTC', 'now') > datetime_convert('UTC','UTC', $c . " + 30 day")) {
+ $r = q("update abook set abook_flags = (abook_flags & %d) where abook_id = %d limit 1",
+ intval(ABOOK_FLAG_ARCHIVED),
+ intval($contact['abook_id'])
+ );
+ $update = false;
+ continue;
+ }
+
+ // might be dead, so maybe don't poll quite so often
+
+ // recently deceased, so keep up the regular schedule for 3 days
+
+ if((datetime_convert('UTC','UTC', 'now') > datetime_convert('UTC','UTC', $c . " + 3 day"))
+ && (datetime_convert('UTC','UTC', 'now') > datetime_convert('UTC','UTC', $t . " + 1 day")))
+ $update = true;
+
+ // After that back off and put them on a morphine drip
+
+ if(datetime_convert('UTC','UTC', 'now') > datetime_convert('UTC','UTC', $t . " + 2 day")) {
+ $update = true;
+ }
+ }
if((! $update) && (! $force))
continue;