aboutsummaryrefslogtreecommitdiffstats
path: root/include/directory.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2013-10-28 00:11:44 -0700
committerfriendica <info@friendica.com>2013-10-28 00:11:44 -0700
commit1bf6591e1b98ef6704ee1bab72bad7dca7ab301f (patch)
tree9f97cc5fda66763025e2875cb148fc867b5b0fad /include/directory.php
parentd389ceed6cc44c54c971da4bb8538850a0fb0672 (diff)
downloadvolse-hubzilla-1bf6591e1b98ef6704ee1bab72bad7dca7ab301f.tar.gz
volse-hubzilla-1bf6591e1b98ef6704ee1bab72bad7dca7ab301f.tar.bz2
volse-hubzilla-1bf6591e1b98ef6704ee1bab72bad7dca7ab301f.zip
implement monthly directory pings
Diffstat (limited to 'include/directory.php')
-rw-r--r--include/directory.php16
1 files changed, 16 insertions, 0 deletions
diff --git a/include/directory.php b/include/directory.php
index 16f819805..491240a9d 100644
--- a/include/directory.php
+++ b/include/directory.php
@@ -31,6 +31,12 @@ function directory_run($argv, $argc){
if(($dirmode == DIRECTORY_MODE_PRIMARY) || ($dirmode == DIRECTORY_MODE_STANDALONE)) {
syncdirs($argv[1]);
+ q("update channel set channel_dirdate = '%s' where channel_id = %d limit 1",
+ dbesc(datetime_convert()),
+ intval($channel['channel_id'])
+ );
+
+
// Now update all the connections
proc_run('php','include/notifier.php','refresh_all',$channel['channel_id']);
return;
@@ -53,6 +59,10 @@ function directory_run($argv, $argc){
// re-queue if unsuccessful
if(! $z['success']) {
+
+ // FIXME - we aren't updating channel_dirdate if we have to queue
+ // the directory packet. That means we'll try again on the next poll run.
+
$hash = random_string();
q("insert into outq ( outq_hash, outq_account, outq_channel, outq_posturl, outq_async, outq_created, outq_updated, outq_notify, outq_msg )
values ( '%s', %d, %d, '%s', %d, '%s', '%s', '%s', '%s' )",
@@ -67,6 +77,12 @@ function directory_run($argv, $argc){
dbesc('')
);
}
+ else {
+ q("update channel set channel_dirdate = '%s' where channel_id = %d limit 1",
+ dbesc(datetime_convert()),
+ intval($channel['channel_id'])
+ );
+ }
// Now update all the connections