]> git.mxchange.org Git - friendica.git/blob - include/notifier.php
photos were not working in private mail
[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['type'] === 'remote' && (! $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                                 $contact = get_item_contact($item,$contacts);
293                                 if(! $contact)
294                                         continue;
295
296                                 $atom .= atom_entry($item,'text',$contact,$owner,true);
297
298                                 if(($top_level) && ($notify_hub) && ($item['author-link'] === $item['owner-link']) && (! $expire)) 
299                                         $slaps[] = atom_entry($item,'html',$contact,$owner,true);
300                         }
301                 }
302         }
303         $atom .= '</feed>' . "\r\n";
304
305         logger('notifier: ' . $atom, LOGGER_DATA);
306
307         logger('notifier: slaps: ' . print_r($slaps,true), LOGGER_DATA);
308
309         // If this is a public message and pubmail is set on the parent, include all your email contacts
310
311         $mail_disabled = ((function_exists('imap_open') && (! get_config('system','imap_disabled'))) ? 0 : 1);
312
313         if(! $mail_disabled) {
314                 if((! strlen($parent_item['allow_cid'])) && (! strlen($parent_item['allow_gid'])) 
315                         && (! strlen($parent_item['deny_cid'])) && (! strlen($parent_item['deny_gid'])) 
316                         && (intval($parent_item['pubmail']))) {
317                         $r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `network` = '%s'",
318                                 intval($uid),
319                                 dbesc(NETWORK_MAIL)
320                         );
321                         if(count($r)) {
322                                 foreach($r as $rr)
323                                         $recipients[] = $rr['id'];
324                         }
325                 }
326         }
327
328         if($followup)
329                 $recip_str = $parent['contact-id'];
330         else
331                 $recip_str = implode(', ', $recipients);
332
333         $r = q("SELECT * FROM `contact` WHERE `id` IN ( %s ) AND `blocked` = 0 AND `pending` = 0 ",
334                 dbesc($recip_str)
335         );
336
337         // delivery loop
338
339         require_once('include/salmon.php');
340
341         if(count($r)) {
342                 foreach($r as $contact) {
343                         if($contact['self'])
344                                 continue;
345
346                         $deliver_status = 0;
347
348                         switch($contact['network']) {
349                                 case 'dfrn':
350                                         logger('notifier: dfrndelivery: ' . $contact['name']);
351                                         $deliver_status = dfrn_deliver($owner,$contact,$atom);
352
353                                         logger('notifier: dfrn_delivery returns ' . $deliver_status);
354         
355                                         if($deliver_status == (-1)) {
356                                                 logger('notifier: delivery failed: queuing message');
357                                                 // queue message for redelivery
358                                                 q("INSERT INTO `queue` ( `cid`, `created`, `last`, `content`)
359                                                         VALUES ( %d, '%s', '%s', '%s') ",
360                                                         intval($contact['id']),
361                                                         dbesc(datetime_convert()),
362                                                         dbesc(datetime_convert()),
363                                                         dbesc($atom)
364                                                 );
365                                         }
366                                         break;
367                                 case 'stat':
368                                         if($owner['prvnets'])
369                                                 break;
370                                         if($followup && $contact['notify']) {
371                                                 logger('notifier: slapdelivery: ' . $contact['name']);
372                                                 $deliver_status = slapper($owner,$contact['notify'],$slap);
373
374                                                 if($deliver_status == (-1)) {
375                                                         // queue message for redelivery
376                                                         q("INSERT INTO `queue` ( `cid`, `created`, `last`, `content`)
377                                                                 VALUES ( %d, '%s', '%s', '%s') ",
378                                                                 intval($contact['id']),
379                                                                 dbesc(datetime_convert()),
380                                                                 dbesc(datetime_convert()),
381                                                                 dbesc($slap)
382                                                         );
383
384                                                 }
385         
386
387                                         }
388                                         else {
389
390                                                 // only send salmon if public - e.g. if it's ok to notify
391                                                 // a public hub, it's ok to send a salmon
392
393                                                 if((count($slaps)) && ($notify_hub) && (! $expire)) {
394                                                         logger('notifier: slapdelivery: ' . $contact['name']);
395                                                         foreach($slaps as $slappy) {
396                                                                 if($contact['notify']) {
397                                                                         $deliver_status = slapper($owner,$contact['notify'],$slappy);
398                                                                         if($deliver_status == (-1)) {
399                                                                                 // queue message for redelivery
400                                                                                 q("INSERT INTO `queue` ( `cid`, `created`, `last`, `content`)
401                                                                                         VALUES ( %d, '%s', '%s', '%s') ",
402                                                                                         intval($contact['id']),
403                                                                                         dbesc(datetime_convert()),
404                                                                                         dbesc(datetime_convert()),
405                                                                                         dbesc($slappy)
406                                                                                 );                                                              
407                                                                         }
408                                                                 }
409                                                         }
410                                                 }
411                                         }
412                                         break;
413
414                                 case 'mail':
415                                                 
416                                         // WARNING: does not currently convert to RFC2047 header encodings, etc.
417
418                                         $addr = $contact['addr'];
419                                         if(! strlen($addr))
420                                                 break;
421
422                                         if($cmd === 'wall-new' || $cmd === 'comment-new') {
423
424                                                 $it = null;
425                                                 if($cmd === 'wall-new') 
426                                                         $it = $items[0];
427                                                 else {
428                                                         $r = q("SELECT * FROM `item` WHERE `id` = %d AND `uid` = %d LIMIT 1", 
429                                                                 intval($argv[2]),
430                                                                 intval($uid)
431                                                         );
432                                                         if(count($r))
433                                                                 $it = $r[0];
434                                                 }
435                                                 if(! $it)
436                                                         break;
437                                                 
438
439
440                                                 $local_user = q("SELECT * FROM `user` WHERE `uid` = %d LIMIT 1",
441                                                         intval($uid)
442                                                 );
443                                                 if(! count($local_user))
444                                                         break;
445                                                 
446                                                 $reply_to = '';
447                                                 $r1 = q("SELECT * FROM `mailacct` WHERE `uid` = %d LIMIT 1",
448                                                         intval($uid)
449                                                 );
450                                                 if($r1 && $r1[0]['reply_to'])
451                                                         $reply_to = $r1[0]['reply_to'];
452         
453                                                 $subject  = (($it['title']) ? $it['title'] : t("\x28no subject\x29")) ;
454                                                 $headers  = 'From: ' . $local_user[0]['username'] . ' <' . $local_user[0]['email'] . '>' . "\n";
455
456                                                 if($reply_to)
457                                                         $headers .= 'Reply-to: ' . $reply_to . "\n";
458
459                                                 $headers .= 'Message-id: <' . $it['uri'] . '>' . "\n";
460
461                                                 if($it['uri'] !== $it['parent-uri']) {
462                                                         $header .= 'References: <' . $it['parent-uri'] . '>' . "\n";
463                                                         if(! strlen($it['title'])) {
464                                                                 $r = q("SELECT `title` FROM `item` WHERE `parent-uri` = '%s' LIMIT 1",
465                                                                         dbesc($it['parent-uri'])
466                                                                 );
467                                                                 if(count($r)) {
468                                                                         $subtitle = $r[0]['title'];
469                                                                         if($subtitle) {
470                                                                                 if(strncasecmp($subtitle,'RE:',3))
471                                                                                         $subject = $subtitle;
472                                                                                 else
473                                                                                         $subject = 'Re: ' . $subtitle;
474                                                                         }
475                                                                 }
476                                                         }
477                                                 }
478
479                                                 $headers .= 'MIME-Version: 1.0' . "\n";
480                                                 $headers .= 'Content-Type: text/html; charset=UTF-8' . "\n";
481                                                 $headers .= 'Content-Transfer-Encoding: 8bit' . "\n\n";
482                                                 $html    = prepare_body($it);
483                                                 $message = '<html><body>' . $html . '</body></html>';
484                                                 logger('notifier: email delivery to ' . $addr);
485                                                 mail($addr, $subject, $message, $headers);
486                                         }
487                                         break;
488                                 case 'feed':
489                                 case 'face':
490                                 case 'dspr':
491                                 default:
492                                         break;
493                         }
494                 }
495         }
496                 
497         // send additional slaps to mentioned remote tags (@foo@example.com)
498
499         if($slap && count($url_recipients) && $followup && $notify_hub && (! $expire)) {
500                 foreach($url_recipients as $url) {
501                         if($url) {
502                                 logger('notifier: urldelivery: ' . $url);
503                                 $deliver_status = slapper($owner,$url,$slap);
504                                 // TODO: redeliver/queue these items on failure, though there is no contact record
505                         }
506                 }
507         }
508
509         if((strlen($hub)) && ($notify_hub)) {
510                 $hubs = explode(',', $hub);
511                 if(count($hubs)) {
512                         foreach($hubs as $h) {
513                                 $h = trim($h);
514                                 if(! strlen($h))
515                                         continue;
516                                 $params = 'hub.mode=publish&hub.url=' . urlencode($a->get_baseurl() . '/dfrn_poll/' . $owner['nickname'] );
517                                 post_url($h,$params);
518                                 logger('pubsub: publish: ' . $h . ' ' . $params . ' returned ' . $a->get_curl_code());
519                                 if(count($hubs) > 1)
520                                         sleep(7);                               // try and avoid multiple hubs responding at precisely the same time
521                         }
522                 }
523         }
524
525         if($notify_hub) {
526
527                 /**
528                  *
529                  * If you have less than 150 dfrn friends and it's a public message,
530                  * we'll just go ahead and push them out securely with dfrn/rino.
531                  * If you've got more than that, you'll have to rely on PuSH delivery.
532                  *
533                  */
534
535                 $max_allowed = ((get_config('system','maxpubdeliver') === false) ? 150 : intval(get_config('system','maxpubdeliver')));
536                                 
537                 /**
538                  *
539                  * Only get the bare essentials and go back for the full record. 
540                  * If you've got a lot of friends and we grab all the details at once it could exhaust memory. 
541                  *
542                  */
543
544                 $r = q("SELECT `id`, `name` FROM `contact` 
545                         WHERE `network` = 'dfrn' AND `uid` = %d AND `blocked` = 0 AND `pending` = 0
546                         AND `rel` != %d ",
547                         intval($owner['uid']),
548                         intval(REL_FAN)
549                 );
550
551                 if((count($r)) && (($max_allowed == 0) || (count($r) < $max_allowed))) {
552
553                         logger('pubdeliver: ' . print_r($r,true));
554
555                         foreach($r as $rr) {
556
557                                 /* Don't deliver to folks who have already been delivered to */
558
559                                 if(! in_array($rr['id'], $conversants)) {
560                                         $n = q("SELECT * FROM `contact` WHERE `id` = %d LIMIT 1",
561                                                         intval($rr['id'])
562                                         );
563
564                                         if(count($n)) {
565                                         
566                                                 logger('notifier: dfrnpubdelivery: ' . $n[0]['name']);
567                                                 $deliver_status = dfrn_deliver($owner,$n[0],$atom);
568                                         }
569                                 }
570                                 else
571                                         logger('notifier: dfrnpubdelivery: ignoring ' . $rr['name']);
572                         }
573                 }
574         }
575
576         return;
577 }
578
579 if (array_search(__file__,get_included_files())===0){
580   echo "run!";
581   notifier_run($argv,$argc);
582   killme();
583 }