]> git.mxchange.org Git - friendica.git/blob - mod/ping.php
Only some code beautification.
[friendica.git] / mod / ping.php
1 <?php
2 require_once("include/datetime.php");
3
4
5 function ping_init(&$a) {
6
7         header("Content-type: text/xml");
8
9         echo "<?xml version=\"1.0\" encoding=\"UTF-8\" ?>
10                 <result>";
11
12         $xmlhead="<"."?xml version='1.0' encoding='UTF-8' ?".">";
13
14         if(local_user()){
15
16                 // Different login session than the page that is calling us. 
17
18                 if(intval($_GET['uid']) && intval($_GET['uid']) != local_user()) {
19                         echo '<invalid>1</invalid></result>';
20                         killme();
21                 }
22
23                 $firehose = intval(get_pconfig(local_user(),'system','notify_full'));
24
25                 $t = q("select count(*) as total from notify where uid = %d and seen = 0",
26                         intval(local_user())
27                 );
28                 if($t && intval($t[0]['total']) > 49) {
29                         $z = q("select * from notify where uid = %d
30                                 and seen = 0 order by date desc limit 0, 50",
31                                 intval(local_user())
32                         );
33                         $sysnotify = $t[0]['total'];
34                 }
35                 else {
36                         $z1 = q("select * from notify where uid = %d
37                                 and seen = 0 order by date desc limit 0, 50",
38                                 intval(local_user())
39                         );
40
41                         $z2 = q("select * from notify where uid = %d
42                                 and seen = 1 order by date desc limit 0, %d",
43                                 intval(local_user()),
44                                 intval(50 - intval($t[0]['total']))
45                         );
46                         $z = array_merge($z1,$z2);
47                         $sysnotify = 0; // we will update this in a moment
48                 }
49
50
51
52                 $tags = array();
53                 $comments = array();
54                 $likes = array();
55                 $dislikes = array();
56                 $friends = array();
57                 $posts = array();
58
59                 $home = 0;
60                 $network = 0;
61
62                 $r = q("SELECT `item`.`id`,`item`.`parent`, `item`.`verb`, `item`.`wall`, `item`.`author-name`, 
63                                 `item`.`contact-id`, `item`.`author-link`, `item`.`author-avatar`, `item`.`created`, `item`.`object`, 
64                                 `pitem`.`author-name` as `pname`, `pitem`.`author-link` as `plink` 
65                                 FROM `item` INNER JOIN `item` as `pitem` ON  `pitem`.`id`=`item`.`parent`
66                                 WHERE `item`.`unseen` = 1 AND `item`.`visible` = 1 AND 
67                                  `item`.`deleted` = 0 AND `item`.`uid` = %d AND `pitem`.`parent` != 0
68                                 ORDER BY `item`.`created` DESC",
69                         intval(local_user())
70                 );
71
72                 if(count($r)) {
73
74                         $arr = array('items' => $r);
75                         call_hooks('network_ping', $arr);
76
77                         foreach ($r as $it) {
78
79                                 if($it['wall'])
80                                         $home ++;
81                                 else
82                                         $network ++;
83
84                                 switch($it['verb']){
85                                         case ACTIVITY_TAG:
86                                                 $obj = parse_xml_string($xmlhead.$it['object']);
87                                                 $it['tname'] = $obj->content;
88                                                 $tags[] = $it;
89                                                 break;
90                                         case ACTIVITY_LIKE:
91                                                 $likes[] = $it;
92                                                 break;
93                                         case ACTIVITY_DISLIKE:
94                                                 $dislikes[] = $it;
95                                                 break;
96                                         case ACTIVITY_FRIEND:
97                                                 $obj = parse_xml_string($xmlhead.$it['object']);
98                                                 $it['fname'] = $obj->title;
99                                                 $friends[] = $it;
100                                                 break;
101                                         default:
102                                                 if ($it['parent']!=$it['id']) {
103                                                         $comments[] = $it;
104                                                 } else {
105                                                         if(! $it['wall'])
106                                                                 $posts[] = $it;
107                                                 }
108                                 }
109                         }
110                 }
111
112                 $intros1 = q("SELECT  `intro`.`id`, `intro`.`datetime`, 
113                         `fcontact`.`name`, `fcontact`.`url`, `fcontact`.`photo` 
114                         FROM `intro` LEFT JOIN `fcontact` ON `intro`.`fid` = `fcontact`.`id`
115                         WHERE `intro`.`uid` = %d  AND `intro`.`blocked` = 0 AND `intro`.`ignore` = 0 AND `intro`.`fid`!=0",
116                         intval(local_user())
117                 );
118                 $intros2 = q("SELECT `intro`.`id`, `intro`.`datetime`, 
119                         `contact`.`name`, `contact`.`url`, `contact`.`photo` 
120                         FROM `intro` LEFT JOIN `contact` ON `intro`.`contact-id` = `contact`.`id`
121                         WHERE `intro`.`uid` = %d  AND `intro`.`blocked` = 0 AND `intro`.`ignore` = 0 AND `intro`.`contact-id`!=0",
122                         intval(local_user())
123                 );
124
125                 $intro = count($intros1) + count($intros2);
126                 $intros = $intros1+$intros2;
127
128
129
130                 $myurl = $a->get_baseurl() . '/profile/' . $a->user['nickname'] ;
131                 $mails = q("SELECT *,  COUNT(*) AS `total` FROM `mail`
132                         WHERE `uid` = %d AND `seen` = 0 AND `from-url` != '%s' ",
133                         intval(local_user()),
134                         dbesc($myurl)
135                 );
136                 if($mails)
137                         $mail = $mails[0]['total'];
138
139                 if ($a->config['register_policy'] == REGISTER_APPROVE && is_site_admin()){
140                         $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");
141                         if($regs)
142                                 $register = $regs[0]['total'];
143                 } else {
144                         $register = "0";
145                 }
146
147                 $all_events = 0;
148                 $all_events_today = 0;
149                 $events = 0;
150                 $events_today = 0;
151                 $birthdays = 0;
152                 $birthdays_today = 0;
153
154
155                 $ev = q("SELECT count(`event`.`id`) as total, type, start, adjust FROM `event`
156                         WHERE `event`.`uid` = %d AND `start` < '%s' AND `finish` > '%s' and `ignore` = 0
157                         ORDER BY `start` ASC ",
158                         intval(local_user()),
159                         dbesc(datetime_convert('UTC','UTC','now + 7 days')),
160                         dbesc(datetime_convert('UTC','UTC','now'))
161                 );
162
163                 if($ev && count($ev)) {
164                         $all_events = intval($ev[0]['total']);
165
166                         if($all_events) {
167                                 $str_now = datetime_convert('UTC',$a->timezone,'now','Y-m-d');
168                                 foreach($ev as $x) {
169                                         $bd = false;
170                                         if($x['type'] === 'birthday') {
171                                                 $birthdays ++;
172                                                 $bd = true;
173                                         }
174                                         else {
175                                                 $events ++;
176                                         }
177                                         if(datetime_convert('UTC',((intval($x['adjust'])) ? $a->timezone : 'UTC'), $x['start'],'Y-m-d') === $str_now) {
178                                                 $all_events_today ++;
179                                                 if($bd)
180                                                         $birthdays_today ++;
181                                                 else
182                                                         $events_today ++;
183                                         }
184                                 }
185                         }
186                 }
187
188
189
190                 function xmlize($href, $name, $url, $photo, $date, $seen, $message){
191                         $data = array('href' => &$href, 'name' => &$name, 'url'=>&$url, 'photo'=>&$photo, 'date'=>&$date, 'seen'=>&$seen, 'messsage'=>&$message);
192                         call_hooks('ping_xmlize', $data);
193                         $notsxml = '<note href="%s" name="%s" url="%s" photo="%s" date="%s" seen="%s" >%s</note>';
194                         return sprintf ( $notsxml,
195                                 xmlify($href), xmlify($name), xmlify($url), xmlify($photo), xmlify($date), xmlify($seen), xmlify($message)
196                         );
197                 }
198
199                 echo "<intro>$intro</intro>
200                                 <mail>$mail</mail>
201                                 <net>$network</net>
202                                 <home>$home</home>\r\n";
203                 if ($register!=0) echo "<register>$register</register>";
204
205                 echo "<all-events>$all_events</all-events>
206                         <all-events-today>$all_events_today</all-events-today>
207                         <events>$events</events>
208                         <events-today>$events_today</events-today>
209                         <birthdays>$birthdays</birthdays>
210                         <birthdays-today>$birthdays_today</birthdays-today>\r\n";
211
212                 $tot = $mail+$intro+$register+count($comments)+count($likes)+count($dislikes)+count($friends)+count($posts)+count($tags);
213
214                 require_once('include/bbcode.php');
215
216                 if($firehose) {
217                         echo '  <notif count="'.$tot.'">';
218                 }
219                 else {
220                         if(count($z) && (! $sysnotify)) {
221                                 foreach($z as $zz) {
222                                         if($zz['seen'] == 0)
223                                                 $sysnotify ++;
224                                 }
225                         }
226
227                         echo '  <notif count="'. $sysnotify .'">';
228                         if(count($z)) {
229                                 foreach($z as $zz) {
230                                         echo xmlize($a->get_baseurl() . '/notify/view/' . $zz['id'], $zz['name'],$zz['url'],$zz['photo'],relative_date($zz['date']), ($zz['seen'] ? 'notify-seen' : 'notify-unseen'), ($zz['seen'] ? '' : '&rarr; ') .strip_tags(bbcode($zz['msg'])));
231                                 }
232                         }
233                 }
234
235                 if($firehose) {
236                         if ($intro>0){
237                                 foreach ($intros as $i) {
238                                         echo xmlize( $a->get_baseurl().'/notifications/intros/'.$i['id'], $i['name'], $i['url'], $i['photo'], relative_date($i['datetime']), 'notify-unseen',t("{0} wants to be your friend") );
239                                 };
240                         }
241                         if ($mail>0){
242                                 foreach ($mails as $i) { 
243                                         echo xmlize( $a->get_baseurl().'/message/'.$i['id'], $i['from-name'], $i['from-url'], $i['from-photo'], relative_date($i['created']), 'notify-unseen',t("{0} sent you a message") );
244                                 };
245                         }
246                         if ($register>0){
247                                 foreach ($regs as $i) { 
248                                         echo xmlize( $a->get_baseurl().'/admin/users/', $i['name'], $i['url'], $i['micro'], relative_date($i['created']), 'notify-unseen',t("{0} requested registration") );
249                                 };
250                         }
251
252                         if (count($comments)){
253                                 foreach ($comments as $i) {
254                                         echo xmlize( $a->get_baseurl().'/display/'.$a->user['nickname']."/".$i['parent'], $i['author-name'], $i['author-link'], $i['author-avatar'], relative_date($i['created']), 'notify-unseen',sprintf( t("{0} commented %s's post"), $i['pname'] ) );
255                                 };
256                         }
257                         if (count($likes)){
258                                 foreach ($likes as $i) {
259                                         echo xmlize( $a->get_baseurl().'/display/'.$a->user['nickname']."/".$i['parent'], $i['author-name'], $i['author-link'], $i['author-avatar'], relative_date($i['created']), 'notify-unseen',sprintf( t("{0} liked %s's post"), $i['pname'] ) );
260                                 };
261                         }
262                         if (count($dislikes)){
263                                 foreach ($dislikes as $i) {
264                                         echo xmlize( $a->get_baseurl().'/display/'.$a->user['nickname']."/".$i['parent'], $i['author-name'], $i['author-link'], $i['author-avatar'], relative_date($i['created']), 'notify-unseen',sprintf( t("{0} disliked %s's post"), $i['pname'] ) );
265                                 };
266                         }
267                         if (count($friends)){
268                                 foreach ($friends as $i) {
269                                         echo xmlize($a->get_baseurl().'/display/'.$a->user['nickname']."/".$i['parent'],$i['author-name'],$i['author-link'], $i['author-avatar'], relative_date($i['created']), 'notify-unseen',sprintf( t("{0} is now friends with %s"), $i['fname'] ) );
270                                 };
271                         }
272                         if (count($posts)){
273                                 foreach ($posts as $i) {
274                                         echo xmlize( $a->get_baseurl().'/display/'.$a->user['nickname']."/".$i['parent'], $i['author-name'], $i['author-link'], $i['author-avatar'], relative_date($i['created']), 'notify-unseen',sprintf( t("{0} posted") ) );
275                                 };
276                         }
277                         if (count($tags)){
278                                 foreach ($tags as $i) {
279                                         echo xmlize( $a->get_baseurl().'/display/'.$a->user['nickname']."/".$i['parent'], $i['author-name'], $i['author-link'], $i['author-avatar'], relative_date($i['created']), 'notify-unseen',sprintf( t("{0} tagged %s's post with #%s"), $i['pname'], $i['tname'] ) );
280                                 };
281                         }
282
283                         if (count($cit)){
284                                 foreach ($cit as $i) {
285                                         echo xmlize( $a->get_baseurl().'/display/'.$a->user['nickname']."/".$i['parent'], $i['author-name'], $i['author-link'], $i['author-avatar'], relative_date($i['created']), 'notify-unseen',t("{0} mentioned you in a post") );
286                                 };
287                         }
288                 }
289
290                 echo "  </notif>";
291         }
292         echo " <sysmsgs>";
293
294         if(x($_SESSION,'sysmsg')){
295                 foreach ($_SESSION['sysmsg'] as $m){
296                         echo "<notice>".xmlify($m)."</notice>";
297                 }
298                 unset($_SESSION['sysmsg']);
299         }
300         if(x($_SESSION,'sysmsg_info')){
301                 foreach ($_SESSION['sysmsg_info'] as $m){
302                         echo "<info>".xmlify($m)."</info>";
303                 }
304                 unset($_SESSION['sysmsg_info']);
305         }
306         
307         echo " </sysmsgs>";
308         echo"</result>
309         ";
310
311         killme();
312 }
313