]> git.mxchange.org Git - friendica.git/blob - mod/ping.php
40ce5be0b80d415767f1076d93949a52aef86177
[friendica.git] / mod / ping.php
1 <?php
2 require_once("include/datetime.php");
3
4
5 function ping_init(&$a) {
6
7         if(! local_user())
8                 xml_status(0);
9
10         
11         $r = q("SELECT COUNT(*) AS `total` FROM `item` 
12                 WHERE `unseen` = 1 AND `visible` = 1 AND `deleted` = 0 AND `uid` = %d AND `wall` = 0 ",
13                 intval(local_user())
14         );
15         $network = $r[0]['total'];
16
17         $r = q("SELECT COUNT(*) AS `total` FROM `item` 
18                 WHERE `unseen` = 1 AND `visible` = 1 AND `deleted` = 0 AND `uid` = %d AND `wall` = 1 ",
19                 intval(local_user())
20         );
21         $home = $r[0]['total'];
22
23         $intros1 = q("SELECT COUNT(`intro`.`id`) AS `total`, `intro`.`id`, `intro`.`datetime`, 
24                 `fcontact`.`name`, `fcontact`.`url`, `fcontact`.`photo` 
25                 FROM `intro` LEFT JOIN `fcontact` ON `intro`.`fid` = `fcontact`.`id`
26                 WHERE `intro`.`uid` = %d  AND `intro`.`blocked` = 0 AND `intro`.`ignore` = 0 AND `intro`.`fid`!=0",
27                 intval(local_user())
28         );
29         $intros2 = q("SELECT COUNT(`intro`.`id`) AS `total`, `intro`.`id`, `intro`.`datetime`, 
30                 `contact`.`name`, `contact`.`url`, `contact`.`photo` 
31                 FROM `intro` LEFT JOIN `contact` ON `intro`.`contact-id` = `contact`.`id`
32                 WHERE `intro`.`uid` = %d  AND `intro`.`blocked` = 0 AND `intro`.`ignore` = 0 AND `intro`.`contact-id`!=0",
33                 intval(local_user())
34         );
35         
36         $intro = $intros1[0]['total'] + $intros2[0]['total'];
37         if ($intros1[0]['total']==0) $intros1=Array();
38         if ($intros2[0]['total']==0) $intros2=Array();
39         $intros = $intros1+$intros2;
40
41
42
43         $myurl = $a->get_baseurl() . '/profile/' . $a->user['nickname'] ;
44         $mails = q("SELECT *,  COUNT(*) AS `total` FROM `mail`
45                 WHERE `uid` = %d AND `seen` = 0 AND `from-url` != '%s' ",
46                 intval(local_user()),
47                 dbesc($myurl)
48         );
49         $mail = $mails[0]['total'];
50         
51         if ($a->config['register_policy'] == REGISTER_APPROVE && is_site_admin()){
52                 $regs = q("SELECT `contact`.`name`, `contact`.`url`, `contact`.`micro`, `register`.`created`, COUNT(*) as `total` FROM `contact` RIGHT JOIN `register` ON `register`.`uid`=`contact`.`uid` WHERE `contact`.`self`=1");
53                 $register = $regs[0]['total'];
54         } else {
55                 $register = "0";
56         }
57
58
59         $notsxml = '<note href="%s" name="%s" url="%s" photo="%s" date="%s">%s</note>';
60
61         
62         
63         header("Content-type: text/xml");
64         echo "<?xml version=\"1.0\" encoding=\"UTF-8\" ?>
65                 <result>
66                         <intro>$intro</intro>
67                         <mail>$mail</mail>
68                         <net>$network</net>
69                         <home>$home</home>";
70         if ($register!=0) echo "<register>$register</register>";
71         
72         echo '  <notif count="'.($mail+$intro+$register).'">';
73         if ($intro>0){
74                 foreach ($intros as $i) { 
75                         echo sprintf ( $notsxml, 
76                                 $a->get_baseurl().'/notifications/'.$i['id'], $i['name'], $i['url'], $i['photo'], relative_date($i['datetime']), t("{0} wants to be your friend")
77                         );
78                 };
79         }
80         if ($mail>0){
81                 foreach ($mails as $i) { 
82                         echo sprintf ( $notsxml,
83                                 $a->get_baseurl().'/message/'.$i['id'], $i['from-name'], $i['from-url'], $i['from-photo'], relative_date($i['created']), t("{0} sent you a message")
84                         );
85                 };
86         }
87         if ($register>0){
88                 foreach ($regs as $i) { 
89                         echo sprintf ( $notsxml,
90                                 $a->get_baseurl().'/admin/users/', $i['name'], $i['url'], $i['micro'], relative_date($i['created']), t("{0} requested registration")
91                         );
92                 };
93         }
94
95
96         echo "  </notif>
97                 </result>
98         ";
99
100         killme();
101 }
102