aboutsummaryrefslogtreecommitdiffstats
path: root/include/hubloc.php
diff options
context:
space:
mode:
authorredmatrix <redmatrix@redmatrix.me>2015-09-13 22:48:18 -0700
committerredmatrix <redmatrix@redmatrix.me>2015-09-13 22:48:18 -0700
commitfd708b28b8b985c8cdab096401b23bb42d1c0056 (patch)
tree28bca830a3fbaa14d7cc4989992e274b1f87caca /include/hubloc.php
parent03e3281beb4395c21b48ceeed548e8fafaef5f70 (diff)
downloadvolse-hubzilla-fd708b28b8b985c8cdab096401b23bb42d1c0056.tar.gz
volse-hubzilla-fd708b28b8b985c8cdab096401b23bb42d1c0056.tar.bz2
volse-hubzilla-fd708b28b8b985c8cdab096401b23bb42d1c0056.zip
ping site function (taken from admin/hubloc)
Diffstat (limited to 'include/hubloc.php')
-rw-r--r--include/hubloc.php27
1 files changed, 26 insertions, 1 deletions
diff --git a/include/hubloc.php b/include/hubloc.php
index 396f4ddfa..8bd6d8d68 100644
--- a/include/hubloc.php
+++ b/include/hubloc.php
@@ -275,4 +275,29 @@ function xchan_fetch($arr) {
$ret[str_replace('xchan_','',$k)] = $v;
}
return $ret;
-} \ No newline at end of file
+}
+
+
+
+function ping_site($url) {
+
+ $ret = array('success' => false);
+
+ $sys = get_sys_channel();
+
+ $m = zot_build_packet($sys,'ping');
+ $r = zot_zot($url . '/post',$m);
+ if(! $r['success']) {
+ $ret['message'] = 'no answer from ' . $url;
+ return $ret;
+ }
+ $packet_result = $r['body'];
+ if(! $packet_result['success']) {
+ $ret['message'] = 'packet failure from ' . $url;
+ return $ret;
+ }
+
+ $ret['success'] = true;
+ return $ret;
+
+}