Friendica Communications Platform
(please note that this is a clone of the repository at github, issues are handled there)
https://friendi.ca
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
49 lines
1.3 KiB
49 lines
1.3 KiB
<?php |
|
|
|
|
|
|
|
function ping_init(&$a) { |
|
|
|
if(! local_user()) |
|
xml_status(0); |
|
|
|
$r = q("SELECT COUNT(*) AS `total` FROM `item` |
|
WHERE `unseen` = 1 AND `visible` = 1 AND `deleted` = 0 AND `uid` = %d AND `wall` = 0 ", |
|
intval(local_user()) |
|
); |
|
$network = $r[0]['total']; |
|
|
|
$r = q("SELECT COUNT(*) AS `total` FROM `item` |
|
WHERE `unseen` = 1 AND `visible` = 1 AND `deleted` = 0 AND `uid` = %d AND `wall` = 1 ", |
|
intval(local_user()) |
|
); |
|
$home = $r[0]['total']; |
|
|
|
$r = q("SELECT COUNT(*) AS `total` FROM `intro` |
|
WHERE `uid` = %d AND `blocked` = 0 AND `ignore` = 0 ", |
|
intval(local_user()) |
|
); |
|
$intro = $r[0]['total']; |
|
|
|
$myurl = $a->get_baseurl() . '/profile/' . $a->user['nickname'] ; |
|
$r = q("SELECT COUNT(*) AS `total` FROM `mail` |
|
WHERE `uid` = %d AND `seen` = 0 AND `from-url` != '%s' ", |
|
intval(local_user()), |
|
dbesc($myurl) |
|
); |
|
$mail = $r[0]['total']; |
|
|
|
if ($a->config['register_policy'] == REGISTER_APPROVE && is_site_admin()){ |
|
$r = q("SELECT COUNT(*) AS `total` FROM `register`"); |
|
$register = $r[0]['total']; |
|
} else { |
|
$register = "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><register>$register</register></result>\r\n"; |
|
|
|
killme(); |
|
} |
|
|
|
|