aboutsummaryrefslogtreecommitdiffstats
path: root/mod/ping.php
diff options
context:
space:
mode:
Diffstat (limited to 'mod/ping.php')
-rw-r--r--mod/ping.php36
1 files changed, 36 insertions, 0 deletions
diff --git a/mod/ping.php b/mod/ping.php
new file mode 100644
index 000000000..bc160ade7
--- /dev/null
+++ b/mod/ping.php
@@ -0,0 +1,36 @@
+<?php
+
+
+
+function ping_init(&$a) {
+
+ if(! local_user())
+ xml_status(0);
+
+ $r = q("SELECT COUNT(*) AS `total` FROM `item`
+ WHERE `unseen` = 1 AND `uid` = %d",
+ intval($_SESSION['uid'])
+ );
+ $network = $r[0]['total'];
+
+ $r = q("SELECT COUNT(*) AS `total` FROM `item`
+ WHERE `unseen` = 1 AND `uid` = %d AND `type` != 'remote' ",
+ intval($_SESSION['uid'])
+ );
+ $home = $r[0]['total'];
+
+ $r = q("SELECT COUNT(*) AS `total` FROM `intro`
+ WHERE `uid` = %d AND `blocked` = 0 AND `ignore` = 0 ",
+ intval($_SESSION['uid'])
+ );
+ $intro = $r[0]['total'];
+
+ // TODO
+ $mail = 0;
+
+ header("Content-type: text/xml");
+ echo "<?xml version=\"1.0\" encoding=\"UTF-8\" ?>\r\n<result><intro>$intro</intro><mail>$mail</mail><net>$network</net><home>$home</home></result>\r\n";
+
+ killme();
+}
+