]> git.mxchange.org Git - friendica.git/blob - include/notifier.php
diaspora follow from friendika
[friendica.git] / include / notifier.php
1 <?php
2 require_once("boot.php");
3
4 function notifier_run($argv, $argc){
5         global $a, $db;
6
7         if(is_null($a)){
8                 $a = new App;
9         }
10   
11         if(is_null($db)) {
12                 @include(".htconfig.php");
13                 require_once("dba.php");
14                 $db = new dba($db_host, $db_user, $db_pass, $db_data);
15                         unset($db_host, $db_user, $db_pass, $db_data);
16         }
17
18         require_once("session.php");
19         require_once("datetime.php");
20         require_once('include/items.php');
21         require_once('include/bbcode.php');
22
23         load_config('config');
24         load_config('system');
25
26         load_hooks();
27
28         if($argc < 3)
29                 return;
30
31         $a->set_baseurl(get_config('system','url'));
32
33         logger('notifier: invoked: ' . print_r($argv,true));
34
35         $cmd = $argv[1];
36
37         switch($cmd) {
38
39                 case 'mail':
40                 default:
41                         $item_id = intval($argv[2]);
42                         if(! $item_id){
43                                 return;
44                         }
45                         break;
46         }
47
48         $expire = false;
49         $top_level = false;
50         $recipients = array();
51         $url_recipients = array();
52
53         if($cmd === 'mail') {
54
55                 $message = q("SELECT * FROM `mail` WHERE `id` = %d LIMIT 1",
56                                 intval($item_id)
57                 );
58                 if(! count($message)){
59                         return;
60                 }
61                 $uid = $message[0]['uid'];
62                 $recipients[] = $message[0]['contact-id'];
63                 $item = $message[0];
64
65         }
66         elseif($cmd === 'expire') {
67                 $expire = true;
68                 $items = q("SELECT * FROM `item` WHERE `uid` = %d AND `wall` = 1 
69                         AND `deleted` = 1 AND `changed` > UTC_TIMESTAMP - INTERVAL 10 MINUTE",
70                         intval($item_id)
71                 );
72                 $uid = $item_id;
73                 $item_id = 0;
74                 if(! count($items))
75                         return;
76         }
77         elseif($cmd === 'suggest') {
78                 $suggest = q("SELECT * FROM `fsuggest` WHERE `id` = %d LIMIT 1",
79                         intval($item_id)
80                 );
81                 if(! count($suggest))
82                         return;
83                 $uid = $suggest[0]['uid'];
84                 $recipients[] = $suggest[0]['cid'];
85                 $item = $suggest[0];
86         }
87         else {
88
89                 // find ancestors
90                 $r = q("SELECT * FROM `item` WHERE `id` = %d LIMIT 1",
91                         intval($item_id)
92                 );
93
94                 if((! count($r)) || (! intval($r[0]['parent']))) {
95                         return;
96                 }
97
98                 $parent_item = $r[0];
99                 $parent_id = intval($r[0]['parent']);
100                 $uid = $r[0]['uid'];
101                 $updated = $r[0]['edited'];
102
103                 $items = q("SELECT * FROM `item` WHERE `parent` = %d ORDER BY `id` ASC",
104                         intval($parent_id)
105                 );
106
107                 if(! count($items)) {
108                         return;
109                 }
110
111                 // avoid race condition with deleting entries
112
113                 if($items[0]['deleted']) {
114                         foreach($items as $item)
115                                 $item['deleted'] = 1;
116                 }
117
118                 if(count($items) == 1 && $items[0]['uri'] === $items[0]['parent-uri'])
119                         $top_level = true;
120         }
121
122         $r = q("SELECT `contact`.*, `user`.`timezone`, `user`.`nickname`, `user`.`sprvkey`, `user`.`spubkey`, 
123                 `user`.`page-flags`, `user`.`prvnets`
124                 FROM `contact` LEFT JOIN `user` ON `user`.`uid` = `contact`.`uid` 
125                 WHERE `contact`.`uid` = %d AND `contact`.`self` = 1 LIMIT 1",
126                 intval($uid)
127         );
128
129         if(! count($r))
130                 return;
131
132         $owner = $r[0];
133
134         $hub = get_config('system','huburl');
135
136         // If this is a public conversation, notify the feed hub
137         $notify_hub = true;
138
139         // fill this in with a single salmon slap if applicable
140         $slap = '';
141
142         if($cmd != 'mail' && $cmd != 'suggest') {
143
144                 require_once('include/group.php');
145
146                 $parent = $items[0];
147
148                 if($parent['wall'] == 0 && (! $expire)) {
149                         // local followup to remote post
150                         $followup = true;
151                         $notify_hub = false; // not public
152                         $conversant_str = dbesc($parent['contact-id']);
153                 }
154                 else {
155                         $followup = false;
156
157                         if((strlen($parent['allow_cid'])) 
158                                 || (strlen($parent['allow_gid'])) 
159                                 || (strlen($parent['deny_cid'])) 
160                                 || (strlen($parent['deny_gid']))) {
161                                 $notify_hub = false; // private recipients, not public
162                         }
163
164                         $allow_people = expand_acl($parent['allow_cid']);
165                         $allow_groups = expand_groups(expand_acl($parent['allow_gid']));
166                         $deny_people  = expand_acl($parent['deny_cid']);
167                         $deny_groups  = expand_groups(expand_acl($parent['deny_gid']));
168
169                         $conversants = array();
170
171                         foreach($items as $item) {
172                                 $recipients[] = $item['contact-id'];
173                                 $conversants[] = $item['contact-id'];
174                                 // pull out additional tagged people to notify (if public message)
175                                 if($notify_hub && strlen($item['inform'])) {
176                                         $people = explode(',',$item['inform']);
177                                         foreach($people as $person) {
178                                                 if(substr($person,0,4) === 'cid:') {
179                                                         $recipients[] = intval(substr($person,4));
180                                                         $conversants[] = intval(substr($person,4));
181                                                 }
182                                                 else {
183                                                         $url_recipients[] = substr($person,4);
184                                                 }
185                                         }
186                                 }
187                         }
188
189                         logger('notifier: url_recipients' . print_r($url_recipients,true));
190
191                         $conversants = array_unique($conversants);
192
193
194                         $recipients = array_unique(array_merge($recipients,$allow_people,$allow_groups));
195                         $deny = array_unique(array_merge($deny_people,$deny_groups));
196                         $recipients = array_diff($recipients,$deny);
197
198                         $conversant_str = dbesc(implode(', ',$conversants));
199                 }
200
201                 $r = q("SELECT * FROM `contact` WHERE `id` IN ( $conversant_str ) AND `blocked` = 0 AND `pending` = 0");
202
203
204                 if(count($r))
205                         $contacts = $r;
206         }
207
208         $feed_template = get_markup_template('atom_feed.tpl');
209         $mail_template = get_markup_template('atom_mail.tpl');
210
211         $atom = '';
212         $slaps = array();
213
214         $hubxml = feed_hublinks();
215
216         $birthday = feed_birthday($owner['uid'],$owner['timezone']);
217
218         if(strlen($birthday))
219                 $birthday = '<dfrn:birthday>' . xmlify($birthday) . '</dfrn:birthday>';
220
221         $atom .= replace_macros($feed_template, array(
222                         '$version'      => xmlify(FRIENDIKA_VERSION),
223                         '$feed_id'      => xmlify($a->get_baseurl() . '/profile/' . $owner['nickname'] ),
224                         '$feed_title'   => xmlify($owner['name']),
225                         '$feed_updated' => xmlify(datetime_convert('UTC', 'UTC', $updated . '+00:00' , ATOM_TIME)) ,
226                         '$hub'          => $hubxml,
227                         '$salmon'       => '',  // private feed, we don't use salmon here
228                         '$name'         => xmlify($owner['name']),
229                         '$profile_page' => xmlify($owner['url']),
230                         '$photo'        => xmlify($owner['photo']),
231                         '$thumb'        => xmlify($owner['thumb']),
232                         '$picdate'      => xmlify(datetime_convert('UTC','UTC',$owner['avatar-date'] . '+00:00' , ATOM_TIME)) ,
233                         '$uridate'      => xmlify(datetime_convert('UTC','UTC',$owner['uri-date']    . '+00:00' , ATOM_TIME)) ,
234                         '$namdate'      => xmlify(datetime_convert('UTC','UTC',$owner['name-date']   . '+00:00' , ATOM_TIME)) ,
235                         '$birthday'     => $birthday
236         ));
237
238         if($cmd === 'mail') {
239                 $notify_hub = false;  // mail is  not public
240
241                 $body = fix_private_photos($item['body'],$owner['uid']);
242
243                 $atom .= replace_macros($mail_template, array(
244                         '$name'         => xmlify($owner['name']),
245                         '$profile_page' => xmlify($owner['url']),
246                         '$thumb'        => xmlify($owner['thumb']),
247                         '$item_id'      => xmlify($item['uri']),
248                         '$subject'      => xmlify($item['title']),
249                         '$created'      => xmlify(datetime_convert('UTC', 'UTC', $item['created'] . '+00:00' , ATOM_TIME)),
250                         '$content'      => xmlify($body),
251                         '$parent_id'    => xmlify($item['parent-uri'])
252                 ));
253         }
254         elseif($cmd === 'suggest') {
255                 $notify_hub = false;  // suggestions are not public
256
257                 $sugg_template = get_markup_template('atom_suggest.tpl');
258
259                 $atom .= replace_macros($sugg_template, array(
260                         '$name'         => xmlify($item['name']),
261                         '$url'          => xmlify($item['url']),
262                         '$photo'        => xmlify($item['photo']),
263                         '$request'      => xmlify($item['request']),
264                         '$note'         => xmlify($item['note'])
265                 ));
266
267                 // We don't need this any more
268
269                 q("DELETE FROM `fsuggest` WHERE `id` = %d LIMIT 1",
270                         intval($item['id'])
271                 );
272
273         }
274         else {
275                 if($followup) {
276                         foreach($items as $item) {  // there is only one item
277                                 if(! $item['parent'])
278                                         continue;
279                                 if($item['id'] == $item_id) {
280                                         logger('notifier: followup: item: ' . print_r($item,true), LOGGER_DATA);
281                                         $slap  = atom_entry($item,'html',$owner,$owner,false);
282                                         $atom .= atom_entry($item,'text',$owner,$owner,false);
283                                 }
284                         }
285                 }
286                 else {
287                         foreach($items as $item) {
288
289                                 if(! $item['parent'])
290                                         continue;
291
292                                 // private emails may be in included in public conversations. Filter them.
293
294                                 if(($notify_hub) && $item['private'])
295                                         continue;
296
297                                 $contact = get_item_contact($item,$contacts);
298                                 if(! $contact)
299                                         continue;
300
301                                 $atom .= atom_entry($item,'text',$contact,$owner,true);
302
303                                 if(($top_level) && ($notify_hub) && ($item['author-link'] === $item['owner-link']) && (! $expire)) 
304                                         $slaps[] = atom_entry($item,'html',$contact,$owner,true);
305                         }
306                 }
307         }
308         $atom .= '</feed>' . "\r\n";
309
310         logger('notifier: ' . $atom, LOGGER_DATA);
311
312         logger('notifier: slaps: ' . print_r($slaps,true), LOGGER_DATA);
313
314         // If this is a public message and pubmail is set on the parent, include all your email contacts
315
316         $mail_disabled = ((function_exists('imap_open') && (! get_config('system','imap_disabled'))) ? 0 : 1);
317
318         if(! $mail_disabled) {
319                 if((! strlen($parent_item['allow_cid'])) && (! strlen($parent_item['allow_gid'])) 
320                         && (! strlen($parent_item['deny_cid'])) && (! strlen($parent_item['deny_gid'])) 
321                         && (intval($parent_item['pubmail']))) {
322                         $r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `network` = '%s'",
323                                 intval($uid),
324                                 dbesc(NETWORK_MAIL)
325                         );
326                         if(count($r)) {
327                                 foreach($r as $rr)
328                                         $recipients[] = $rr['id'];
329                         }
330                 }
331         }
332
333         if($followup)
334                 $recip_str = $parent['contact-id'];
335         else
336                 $recip_str = implode(', ', $recipients);
337
338         $r = q("SELECT * FROM `contact` WHERE `id` IN ( %s ) AND `blocked` = 0 AND `pending` = 0 ",
339                 dbesc($recip_str)
340         );
341
342         // delivery loop
343
344         require_once('include/salmon.php');
345
346         if(count($r)) {
347                 foreach($r as $contact) {
348                         if($contact['self'])
349                                 continue;
350
351                         $deliver_status = 0;
352
353                         switch($contact['network']) {
354                                 case 'dfrn':
355                                         logger('notifier: dfrndelivery: ' . $contact['name']);
356                                         $deliver_status = dfrn_deliver($owner,$contact,$atom);
357
358                                         logger('notifier: dfrn_delivery returns ' . $deliver_status);
359         
360                                         if($deliver_status == (-1)) {
361                                                 logger('notifier: delivery failed: queuing message');
362                                                 // queue message for redelivery
363                                                 q("INSERT INTO `queue` ( `cid`, `created`, `last`, `content`)
364                                                         VALUES ( %d, '%s', '%s', '%s') ",
365                                                         intval($contact['id']),
366                                                         dbesc(datetime_convert()),
367                                                         dbesc(datetime_convert()),
368                                                         dbesc($atom)
369                                                 );
370                                         }
371                                         break;
372                                 case 'stat':
373
374                                         // Do not send to otatus if we are not configured to send to public networks
375                                         if($owner['prvnets'])
376                                                 break;
377                                         if(get_config('system','ostatus_disabled') || get_config('system','dfrn_only'))
378                                                 break;
379
380                                         if($followup && $contact['notify']) {
381                                                 logger('notifier: slapdelivery: ' . $contact['name']);
382                                                 $deliver_status = slapper($owner,$contact['notify'],$slap);
383
384                                                 if($deliver_status == (-1)) {
385                                                         // queue message for redelivery
386                                                         q("INSERT INTO `queue` ( `cid`, `created`, `last`, `content`)
387                                                                 VALUES ( %d, '%s', '%s', '%s') ",
388                                                                 intval($contact['id']),
389                                                                 dbesc(datetime_convert()),
390                                                                 dbesc(datetime_convert()),
391                                                                 dbesc($slap)
392                                                         );
393
394                                                 }
395                                         }
396                                         else {
397
398                                                 // only send salmon if public - e.g. if it's ok to notify
399                                                 // a public hub, it's ok to send a salmon
400
401                                                 if((count($slaps)) && ($notify_hub) && (! $expire)) {
402                                                         logger('notifier: slapdelivery: ' . $contact['name']);
403                                                         foreach($slaps as $slappy) {
404                                                                 if($contact['notify']) {
405                                                                         $deliver_status = slapper($owner,$contact['notify'],$slappy);
406                                                                         if($deliver_status == (-1)) {
407                                                                                 // queue message for redelivery
408                                                                                 q("INSERT INTO `queue` ( `cid`, `created`, `last`, `content`)
409                                                                                         VALUES ( %d, '%s', '%s', '%s') ",
410                                                                                         intval($contact['id']),
411                                                                                         dbesc(datetime_convert()),
412                                                                                         dbesc(datetime_convert()),
413                                                                                         dbesc($slappy)
414                                                                                 );                                                              
415                                                                         }
416                                                                 }
417                                                         }
418                                                 }
419                                         }
420                                         break;
421
422                                 case 'mail':
423                                                 
424                                         if(get_config('system','dfrn_only'))
425                                                 break;
426
427                                         // WARNING: does not currently convert to RFC2047 header encodings, etc.
428
429                                         $addr = $contact['addr'];
430                                         if(! strlen($addr))
431                                                 break;
432
433                                         if($cmd === 'wall-new' || $cmd === 'comment-new') {
434
435                                                 $it = null;
436                                                 if($cmd === 'wall-new') 
437                                                         $it = $items[0];
438                                                 else {
439                                                         $r = q("SELECT * FROM `item` WHERE `id` = %d AND `uid` = %d LIMIT 1", 
440                                                                 intval($argv[2]),
441                                                                 intval($uid)
442                                                         );
443                                                         if(count($r))
444                                                                 $it = $r[0];
445                                                 }
446                                                 if(! $it)
447                                                         break;
448                                                 
449
450
451                                                 $local_user = q("SELECT * FROM `user` WHERE `uid` = %d LIMIT 1",
452                                                         intval($uid)
453                                                 );
454                                                 if(! count($local_user))
455                                                         break;
456                                                 
457                                                 $reply_to = '';
458                                                 $r1 = q("SELECT * FROM `mailacct` WHERE `uid` = %d LIMIT 1",
459                                                         intval($uid)
460                                                 );
461                                                 if($r1 && $r1[0]['reply_to'])
462                                                         $reply_to = $r1[0]['reply_to'];
463         
464                                                 $subject  = (($it['title']) ? $it['title'] : t("\x28no subject\x29")) ;
465                                                 $headers  = 'From: ' . $local_user[0]['username'] . ' <' . $local_user[0]['email'] . '>' . "\n";
466
467                                                 if($reply_to)
468                                                         $headers .= 'Reply-to: ' . $reply_to . "\n";
469
470                                                 $headers .= 'Message-id: <' . $it['uri'] . '>' . "\n";
471
472                                                 if($it['uri'] !== $it['parent-uri']) {
473                                                         $header .= 'References: <' . $it['parent-uri'] . '>' . "\n";
474                                                         if(! strlen($it['title'])) {
475                                                                 $r = q("SELECT `title` FROM `item` WHERE `parent-uri` = '%s' LIMIT 1",
476                                                                         dbesc($it['parent-uri'])
477                                                                 );
478                                                                 if(count($r)) {
479                                                                         $subtitle = $r[0]['title'];
480                                                                         if($subtitle) {
481                                                                                 if(strncasecmp($subtitle,'RE:',3))
482                                                                                         $subject = $subtitle;
483                                                                                 else
484                                                                                         $subject = 'Re: ' . $subtitle;
485                                                                         }
486                                                                 }
487                                                         }
488                                                 }
489
490                                                 $headers .= 'MIME-Version: 1.0' . "\n";
491                                                 $headers .= 'Content-Type: text/html; charset=UTF-8' . "\n";
492                                                 $headers .= 'Content-Transfer-Encoding: 8bit' . "\n\n";
493                                                 $html    = prepare_body($it);
494                                                 $message = '<html><body>' . $html . '</body></html>';
495                                                 logger('notifier: email delivery to ' . $addr);
496                                                 mail($addr, $subject, $message, $headers);
497                                         }
498                                         break;
499                                 case 'feed':
500                                 case 'face':
501                                 case 'dspr':
502                                         if(get_config('system','dfrn_only'))
503                                                 break;
504                                 default:
505                                         break;
506                         }
507                 }
508         }
509                 
510         // send additional slaps to mentioned remote tags (@foo@example.com)
511
512         if($slap && count($url_recipients) && ($followup || $top_level) && $notify_hub && (! $expire)) {
513                 if(! get_config('system','dfrn_only')) {
514                         foreach($url_recipients as $url) {
515                                 if($url) {
516                                         logger('notifier: urldelivery: ' . $url);
517                                         $deliver_status = slapper($owner,$url,$slap);
518                                         // TODO: redeliver/queue these items on failure, though there is no contact record
519                                 }
520                         }
521                 }
522         }
523
524         if((strlen($hub)) && ($notify_hub)) {
525                 $hubs = explode(',', $hub);
526                 if(count($hubs)) {
527                         foreach($hubs as $h) {
528                                 $h = trim($h);
529                                 if(! strlen($h))
530                                         continue;
531                                 $params = 'hub.mode=publish&hub.url=' . urlencode($a->get_baseurl() . '/dfrn_poll/' . $owner['nickname'] );
532                                 post_url($h,$params);
533                                 logger('pubsub: publish: ' . $h . ' ' . $params . ' returned ' . $a->get_curl_code());
534                                 if(count($hubs) > 1)
535                                         sleep(7);                               // try and avoid multiple hubs responding at precisely the same time
536                         }
537                 }
538         }
539
540         if($notify_hub) {
541
542                 /**
543                  *
544                  * If you have less than 150 dfrn friends and it's a public message,
545                  * we'll just go ahead and push them out securely with dfrn/rino.
546                  * If you've got more than that, you'll have to rely on PuSH delivery.
547                  *
548                  */
549
550                 $max_allowed = ((get_config('system','maxpubdeliver') === false) ? 150 : intval(get_config('system','maxpubdeliver')));
551                                 
552                 /**
553                  *
554                  * Only get the bare essentials and go back for the full record. 
555                  * If you've got a lot of friends and we grab all the details at once it could exhaust memory. 
556                  *
557                  */
558
559                 $r = q("SELECT `id`, `name` FROM `contact` 
560                         WHERE `network` = 'dfrn' AND `uid` = %d AND `blocked` = 0 AND `pending` = 0
561                         AND `rel` != %d ",
562                         intval($owner['uid']),
563                         intval(CONTACT_IS_SHARING)
564                 );
565
566                 if((count($r)) && (($max_allowed == 0) || (count($r) < $max_allowed))) {
567
568                         logger('pubdeliver: ' . print_r($r,true));
569
570                         foreach($r as $rr) {
571
572                                 /* Don't deliver to folks who have already been delivered to */
573
574                                 if(! in_array($rr['id'], $conversants)) {
575                                         $n = q("SELECT * FROM `contact` WHERE `id` = %d LIMIT 1",
576                                                         intval($rr['id'])
577                                         );
578
579                                         if(count($n)) {
580                                         
581                                                 logger('notifier: dfrnpubdelivery: ' . $n[0]['name']);
582                                                 $deliver_status = dfrn_deliver($owner,$n[0],$atom);
583                                         }
584                                 }
585                                 else
586                                         logger('notifier: dfrnpubdelivery: ignoring ' . $rr['name']);
587                         }
588                 }
589         }
590
591         return;
592 }
593
594 if (array_search(__file__,get_included_files())===0){
595   notifier_run($argv,$argc);
596   killme();
597 }