]> git.mxchange.org Git - friendica.git/blob - include/enotify.php
b87b159eb68ff040b9c324216eab3083c9df6310
[friendica.git] / include / enotify.php
1 <?php
2
3 require_once('include/email.php');
4
5 function notification($params) {
6
7         logger('notification: entry', LOGGER_DEBUG);
8
9         $a = get_app();
10
11         // from here on everything is in the recipients language
12
13         push_lang($params['language']);
14
15
16         $banner = t('Friendica Notification');
17         $product = FRIENDICA_PLATFORM;
18         $siteurl = $a->get_baseurl(true);
19         $thanks = t('Thank You,');
20         $sitename = get_config('config','sitename');
21         $site_admin = sprintf( t('%s Administrator'), $sitename);
22
23         $sender_name = $product;
24         $hostname = $a->get_hostname();
25         if(strpos($hostname,':'))
26                 $hostname = substr($hostname,0,strpos($hostname,':'));
27
28         $sender_email = t('noreply') . '@' . $hostname;
29         $additional_mail_header = "";
30
31         if(array_key_exists('item',$params)) {
32                 $title = $params['item']['title'];
33                 $body = $params['item']['body'];
34         }
35         else {
36                 $title = $body = '';
37         }
38
39         // e.g. "your post", "David's photo", etc.
40         $possess_desc = t('%s <!item_type!>');
41
42         if($params['type'] == NOTIFY_MAIL) {
43
44                 $subject =      sprintf( t('[Friendica:Notify] New mail received at %s'),$sitename);
45
46                 $preamble = sprintf( t('%1$s sent you a new private message at %2$s.'),$params['source_name'],$sitename);
47                 $epreamble = sprintf( t('%1$s sent you %2$s.'),'[url=' . $params['source_link'] . ']' . $params['source_name'] . '[/url]', '[url=$itemlink]' . t('a private message') . '[/url]');
48                 $sitelink = t('Please visit %s to view and/or reply to your private messages.');
49                 $tsitelink = sprintf( $sitelink, $siteurl . '/message/' . $params['item']['id'] );
50                 $hsitelink = sprintf( $sitelink, '<a href="' . $siteurl . '/message/' . $params['item']['id'] . '">' . $sitename . '</a>');
51                 $itemlink = $siteurl . '/message/' . $params['item']['id'];
52         }
53
54         if($params['type'] == NOTIFY_COMMENT) {
55 //              logger("notification: params = " . print_r($params, true), LOGGER_DEBUG);
56
57                 $parent_id = $params['parent'];
58
59                 // Check to see if there was already a tag notify or comment notify for this post.
60                 // If so don't create a second notification
61                 
62                 $p = null;
63                 $p = q("select id from notify where ( type = %d or type = %d ) and link = '%s' and uid = %d limit 1",
64                         intval(NOTIFY_TAGSELF),
65                         intval(NOTIFY_COMMENT),
66                         dbesc($params['link']),
67                         intval($params['uid'])
68                 );
69                 if($p and count($p)) {
70                         pop_lang();
71                         return;
72                 }
73         
74
75                 // if it's a post figure out who's post it is.
76
77                 $p = null;
78
79                 if($params['otype'] === 'item' && $parent_id) {
80                         $p = q("select * from item where id = %d and uid = %d limit 1",
81                                 intval($parent_id),
82                                 intval($params['uid'])
83                         );
84                 }
85
86                 $item_post_type = item_post_type($p[0]);
87                 //$possess_desc = str_replace('<!item_type!>',$possess_desc);
88
89                 // "a post"
90                 $dest_str = sprintf(t('%1$s commented on [url=%2$s]a %3$s[/url]'),
91                                                                 '[url=' . $params['source_link'] . ']' . $params['source_name'] . '[/url]',
92                                                                 $itemlink,
93                                                                 $item_post_type);
94
95                 // "George Bull's post"
96                 if($p)
97                         $dest_str = sprintf(t('%1$s commented on [url=%2$s]%3$s\'s %4$s[/url]'),
98                                                 '[url=' . $params['source_link'] . ']' . $params['source_name'] . '[/url]',
99                                                 $itemlink,
100                                                 $p[0]['author-name'],
101                                                 $item_post_type);
102                 
103                 // "your post"
104                 if($p[0]['owner-name'] == $p[0]['author-name'] && $p[0]['wall'])
105                         $dest_str = sprintf(t('%1$s commented on [url=%2$s]your %3$s[/url]'),
106                                                                 '[url=' . $params['source_link'] . ']' . $params['source_name'] . '[/url]',
107                                                                 $itemlink,
108                                                                 $item_post_type);
109
110                 // Some mail softwares relies on subject field for threading.
111                 // So, we cannot have different subjects for notifications of the same thread.
112                 // Before this we have the name of the replier on the subject rendering 
113                 // differents subjects for messages on the same thread.
114
115                 $subject = sprintf( t('[Friendica:Notify] Comment to conversation #%1$d by %2$s'), $parent_id, $params['source_name']);
116                 $preamble = sprintf( t('%s commented on an item/conversation you have been following.'), $params['source_name']); 
117                 $epreamble = $dest_str; 
118
119                 $sitelink = t('Please visit %s to view and/or reply to the conversation.');
120                 $tsitelink = sprintf( $sitelink, $siteurl );
121                 $hsitelink = sprintf( $sitelink, '<a href="' . $siteurl . '">' . $sitename . '</a>');
122                 $itemlink =  $params['link'];
123         }
124
125         if($params['type'] == NOTIFY_WALL) {
126                 $subject = sprintf( t('[Friendica:Notify] %s posted to your profile wall') , $params['source_name']);
127
128                 $preamble = sprintf( t('%1$s posted to your profile wall at %2$s') , $params['source_name'], $sitename);
129                 
130                 $epreamble = sprintf( t('%1$s posted to [url=%2$s]your wall[/url]') , 
131                                                                 '[url=' . $params['source_link'] . ']' . $params['source_name'] . '[/url]',
132                                                                 $params['link']); 
133                 
134                 $sitelink = t('Please visit %s to view and/or reply to the conversation.');
135                 $tsitelink = sprintf( $sitelink, $siteurl );
136                 $hsitelink = sprintf( $sitelink, '<a href="' . $siteurl . '">' . $sitename . '</a>');
137                 $itemlink =  $params['link'];
138         }
139
140         if($params['type'] == NOTIFY_TAGSELF) {
141                 $subject =      sprintf( t('[Friendica:Notify] %s tagged you') , $params['source_name']);
142                 $preamble = sprintf( t('%1$s tagged you at %2$s') , $params['source_name'], $sitename);
143                 $epreamble = sprintf( t('%1$s [url=%2$s]tagged you[/url].') , 
144                                                                 '[url=' . $params['source_link'] . ']' . $params['source_name'] . '[/url]',
145                                                                 $params['link']); 
146
147                 $sitelink = t('Please visit %s to view and/or reply to the conversation.');
148                 $tsitelink = sprintf( $sitelink, $siteurl );
149                 $hsitelink = sprintf( $sitelink, '<a href="' . $siteurl . '">' . $sitename . '</a>');
150                 $itemlink =  $params['link'];
151         }
152
153         if($params['type'] == NOTIFY_POKE) {
154
155                 $subject =      sprintf( t('[Friendica:Notify] %1$s poked you') , $params['source_name']);
156                 $preamble = sprintf( t('%1$s poked you at %2$s') , $params['source_name'], $sitename);
157                 $epreamble = sprintf( t('%1$s [url=%2$s]poked you[/url].') , 
158                                                                 '[url=' . $params['source_link'] . ']' . $params['source_name'] . '[/url]',
159                                                                 $params['link']); 
160
161                 $subject = str_replace('poked', t($params['activity']), $subject);
162                 $preamble = str_replace('poked', t($params['activity']), $preamble);
163                 $epreamble = str_replace('poked', t($params['activity']), $epreamble);
164
165                 $sitelink = t('Please visit %s to view and/or reply to the conversation.');
166                 $tsitelink = sprintf( $sitelink, $siteurl );
167                 $hsitelink = sprintf( $sitelink, '<a href="' . $siteurl . '">' . $sitename . '</a>');
168                 $itemlink =  $params['link'];
169         }
170
171         if($params['type'] == NOTIFY_TAGSHARE) {
172                 $subject =      sprintf( t('[Friendica:Notify] %s tagged your post') , $params['source_name']);
173                 $preamble = sprintf( t('%1$s tagged your post at %2$s') , $params['source_name'], $sitename);
174                 $epreamble = sprintf( t('%1$s tagged [url=%2$s]your post[/url]') ,
175                                                                 '[url=' . $params['source_link'] . ']' . $params['source_name'] . '[/url]',
176                                                                 $itemlink); 
177
178                 $sitelink = t('Please visit %s to view and/or reply to the conversation.');
179                 $tsitelink = sprintf( $sitelink, $siteurl );
180                 $hsitelink = sprintf( $sitelink, '<a href="' . $siteurl . '">' . $sitename . '</a>');
181                 $itemlink =  $params['link'];
182         }
183
184         if($params['type'] == NOTIFY_INTRO) {
185                 $subject = sprintf( t('[Friendica:Notify] Introduction received'));
186                 $preamble = sprintf( t('You\'ve received an introduction from \'%1$s\' at %2$s'), $params['source_name'], $sitename); 
187                 $epreamble = sprintf( t('You\'ve received [url=%1$s]an introduction[/url] from %2$s.'),
188                                                                 $itemlink,
189                                                                 '[url=' . $params['source_link'] . ']' . $params['source_name'] . '[/url]'); 
190                 $body = sprintf( t('You may visit their profile at %s'),$params['source_link']);
191
192                 $sitelink = t('Please visit %s to approve or reject the introduction.');
193                 $tsitelink = sprintf( $sitelink, $siteurl );
194                 $hsitelink = sprintf( $sitelink, '<a href="' . $siteurl . '">' . $sitename . '</a>');
195                 $itemlink =  $params['link'];
196         }
197
198         if($params['type'] == NOTIFY_SUGGEST) {
199                 $subject = sprintf( t('[Friendica:Notify] Friend suggestion received'));
200                 $preamble = sprintf( t('You\'ve received a friend suggestion from \'%1$s\' at %2$s'), $params['source_name'], $sitename); 
201                 $epreamble = sprintf( t('You\'ve received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s.'),
202                                                                         $itemlink,
203                                                                         '[url=' . $params['item']['url'] . ']' . $params['item']['name'] . '[/url]',
204                                                                         '[url=' . $params['source_link'] . ']' . $params['source_name'] . '[/url]'); 
205                                                                         
206                 $body = t('Name:') . ' ' . $params['item']['name'] . "\n";
207                 $body .= t('Photo:') . ' ' . $params['item']['photo'] . "\n";
208                 $body .= sprintf( t('You may visit their profile at %s'),$params['item']['url']);
209
210                 $sitelink = t('Please visit %s to approve or reject the suggestion.');
211                 $tsitelink = sprintf( $sitelink, $siteurl );
212                 $hsitelink = sprintf( $sitelink, '<a href="' . $siteurl . '">' . $sitename . '</a>');
213                 $itemlink =  $params['link'];
214         }
215
216         if($params['type'] == NOTIFY_CONFIRM) {
217
218         }
219
220         if($params['type'] == NOTIFY_SYSTEM) {
221                 
222         }
223
224         $h = array(
225                 'params'    => $params, 
226                 'subject'   => $subject,
227                 'preamble'  => $preamble, 
228                 'epreamble' => $epreamble, 
229                 'body'      => $body, 
230                 'sitelink'  => $sitelink,
231                 'tsitelink' => $tsitelink,
232                 'hsitelink' => $hsitelink,
233                 'itemlink'  => $itemlink
234         );
235                 
236         call_hooks('enotify',$h);
237
238         $subject   = $h['subject'];
239         $preamble  = $h['preamble'];
240         $epreamble = $h['epreamble'];
241         $body      = $h['body'];
242         $sitelink  = $h['sitelink'];
243         $tsitelink = $h['tsitelink'];
244         $hsitelink = $h['hsitelink'];
245         $itemlink  = $h['itemlink']; 
246
247
248         require_once('include/html2bbcode.php');        
249
250         do {
251                 $dups = false;
252                 $hash = random_string();
253         $r = q("SELECT `id` FROM `notify` WHERE `hash` = '%s' LIMIT 1",
254                         dbesc($hash));
255                 if(count($r))
256                         $dups = true;
257         } while($dups == true);
258
259
260         $datarray = array();
261         $datarray['hash']  = $hash;
262         $datarray['name']  = $params['source_name'];
263         $datarray['url']   = $params['source_link'];
264         $datarray['photo'] = $params['source_photo'];
265         $datarray['date']  = datetime_convert();
266         $datarray['uid']   = $params['uid'];
267         $datarray['link']  = $itemlink;
268         $datarray['parent'] = $parent_id;
269         $datarray['type']  = $params['type'];
270         $datarray['verb']  = $params['verb'];
271         $datarray['otype'] = $params['otype'];
272  
273         call_hooks('enotify_store', $datarray);
274
275         // create notification entry in DB
276
277         $r = q("insert into notify (hash,name,url,photo,date,uid,link,parent,type,verb,otype)
278                 values('%s','%s','%s','%s','%s',%d,'%s',%d,%d,'%s','%s')",
279                 dbesc($datarray['hash']),
280                 dbesc($datarray['name']),
281                 dbesc($datarray['url']),
282                 dbesc($datarray['photo']),
283                 dbesc($datarray['date']),
284                 intval($datarray['uid']),
285                 dbesc($datarray['link']),
286                 intval($datarray['parent']),
287                 intval($datarray['type']),
288                 dbesc($datarray['verb']),
289                 dbesc($datarray['otype'])
290         );
291
292         $r = q("select id from notify where hash = '%s' and uid = %d limit 1",
293                 dbesc($hash),
294                 intval($params['uid'])
295         );
296         if($r)
297                 $notify_id = $r[0]['id'];
298         else {
299                 pop_lang();
300                 return;
301         }
302
303         // we seem to have a lot of duplicate comment notifications due to race conditions, mostly from forums
304         // After we've stored everything, look again to see if there are any duplicates and if so remove them
305
306         $p = null;
307         $p = q("select id from notify where ( type = %d or type = %d ) and link = '%s' and uid = %d order by id",
308                 intval(NOTIFY_TAGSELF),
309                 intval(NOTIFY_COMMENT),
310                 dbesc($params['link']),
311                 intval($params['uid'])
312         );
313         if($p && (count($p) > 1)) {
314                 for ($d = 1; $d < count($p); $d ++) {
315                         q("delete from notify where id = %d limit 1",
316                                 intval($p[$d]['id'])
317                         );
318                 }
319
320                 // only continue on if we stored the first one
321
322                 if($notify_id != $p[0]['id']) {
323                         pop_lang();
324                         return;
325                 }
326         }
327
328
329
330
331
332
333
334
335         $itemlink = $a->get_baseurl() . '/notify/view/' . $notify_id;
336         $msg = replace_macros($epreamble,array('$itemlink' => $itemlink));
337         $r = q("update notify set msg = '%s' where id = %d and uid = %d limit 1",
338                 dbesc($msg),
339                 intval($notify_id),
340                 intval($params['uid'])
341         );
342                 
343
344         // send email notification if notification preferences permit
345
346         require_once('include/bbcode.php');
347         if((intval($params['notify_flags']) & intval($params['type'])) || $params['type'] == NOTIFY_SYSTEM) {
348
349                 logger('notification: sending notification email');
350
351                 $id_for_parent = "${params['parent']}@${hostname}";
352
353                 // Is this the first email notification for this parent item and user?
354                 
355                 $r = q("select `id` from `notify-threads` where `master-parent-item` = %d and `receiver-uid` = %d limit 1", 
356                         intval($params['parent']),
357                         intval($params['uid']) );
358
359                 // If so, create the record of it and use a message-id smtp header.
360
361                 if(!$r) {
362                         logger("notify_id:" . intval($notify_id). ", parent: " . intval($params['parent']) . "uid: " . 
363 intval($params['uid']), LOGGER_DEBUG);
364                         $r = q("insert into `notify-threads` (`notify-id`, `master-parent-item`, `receiver-uid`, `parent-item`)
365                                 values(%d,%d,%d,%d)",
366                                 intval($notify_id),
367                                 intval($params['parent']),
368                                 intval($params['uid']), 
369                                 0 );
370
371                         $additional_mail_header .= "Message-ID: <${id_for_parent}>\n";
372                         $log_msg = "include/enotify: No previous notification found for this parent:\n" . 
373                                         "  parent: ${params['parent']}\n" . "  uid   : ${params['uid']}\n";
374                         logger($log_msg, LOGGER_DEBUG);
375                 }
376
377                 // If not, just "follow" the thread.
378
379                 else {
380                         $additional_mail_header = "References: <${id_for_parent}>\nIn-Reply-To: <${id_for_parent}>\n";
381                         logger("include/enotify: There's already a notification for this parent:\n" . print_r($r, true), LOGGER_DEBUG);
382                 }
383
384
385
386                 $textversion = strip_tags(html_entity_decode(bbcode(stripslashes(str_replace(array("\\r\\n", "\\r", "\\n"), "\n",
387                         $body))),ENT_QUOTES,'UTF-8'));
388                 $htmlversion = html_entity_decode(bbcode(stripslashes(str_replace(array("\\r\\n", "\\r","\\n\\n" ,"\\n"), 
389                         "<br />\n",$body))));
390
391                 $datarray = array();
392                 $datarray['banner'] = $banner;
393                 $datarray['product'] = $product;
394                 $datarray['preamble'] = $preamble;
395                 $datarray['sitename'] = $sitename;
396                 $datarray['siteurl'] = $siteurl;
397                 $datarray['type'] = $params['type'];
398                 $datarray['parent'] = $params['parent'];
399                 $datarray['source_name'] = $params['source_name'];
400                 $datarray['source_link'] = $params['source_link'];
401                 $datarray['source_photo'] = $params['source_photo'];
402                 $datarray['uid'] = $params['uid'];
403                 $datarray['username'] = $params['to_name'];
404                 $datarray['hsitelink'] = $hsitelink;
405                 $datarray['tsitelink'] = $tsitelink;
406                 $datarray['hitemlink'] = '<a href="' . $itemlink . '">' . $itemlink . '</a>';
407                 $datarray['titemlink'] = $itemlink;
408                 $datarray['thanks'] = $thanks;
409                 $datarray['site_admin'] = $site_admin;
410                 $datarray['title'] = stripslashes($title);
411                 $datarray['htmlversion'] = $htmlversion;
412                 $datarray['textversion'] = $textversion;
413                 $datarray['subject'] = $subject;
414                 $datarray['headers'] = $additional_mail_header;
415
416                 call_hooks('enotify_mail', $datarray);
417
418                 // load the template for private message notifications
419                 $tpl = get_markup_template('email_notify_html.tpl');
420                 $email_html_body = replace_macros($tpl,array(
421                         '$banner'       => $datarray['banner'],
422                         '$product'      => $datarray['product'],
423                         '$preamble'     => $datarray['preamble'],
424                         '$sitename'     => $datarray['sitename'],
425                         '$siteurl'      => $datarray['siteurl'],
426                         '$source_name'  => $datarray['source_name'],
427                         '$source_link'  => $datarray['source_link'],
428                         '$source_photo' => $datarray['source_photo'],
429                         '$username'     => $datarray['to_name'],
430                         '$hsitelink'    => $datarray['hsitelink'],
431                         '$hitemlink'    => $datarray['hitemlink'],
432                         '$thanks'       => $datarray['thanks'],
433                         '$site_admin'   => $datarray['site_admin'],
434                         '$title'                => $datarray['title'],
435                         '$htmlversion'  => $datarray['htmlversion'],    
436                 ));
437                 
438                 // load the template for private message notifications
439                 $tpl = get_markup_template('email_notify_text.tpl');
440                 $email_text_body = replace_macros($tpl,array(
441                         '$banner'       => $datarray['banner'],
442                         '$product'      => $datarray['product'],
443                         '$preamble'     => $datarray['preamble'],
444                         '$sitename'     => $datarray['sitename'],
445                         '$siteurl'      => $datarray['siteurl'],
446                         '$source_name'  => $datarray['source_name'],
447                         '$source_link'  => $datarray['source_link'],
448                         '$source_photo' => $datarray['source_photo'],
449                         '$username'     => $datarray['to_name'],
450                         '$tsitelink'    => $datarray['tsitelink'],
451                         '$titemlink'    => $datarray['titemlink'],
452                         '$thanks'       => $datarray['thanks'],
453                         '$site_admin'   => $datarray['site_admin'],
454                         '$title'                => $datarray['title'],
455                         '$textversion'  => $datarray['textversion'],    
456                 ));
457
458 //              logger('text: ' . $email_text_body);
459
460                 // use the EmailNotification library to send the message
461
462                 enotify::send(array(
463                         'fromName' => $sender_name,
464                         'fromEmail' => $sender_email,
465                         'replyTo' => $sender_email,
466                         'toEmail' => $params['to_email'],
467                         'messageSubject' => $datarray['subject'],
468                         'htmlVersion' => $email_html_body,
469                         'textVersion' => $email_text_body,
470                         'additionalMailHeader' => $datarray['headers'],
471                 ));
472         }
473
474         pop_lang();
475
476 }
477
478 require_once('include/email.php');
479
480 class enotify {
481         /**
482          * Send a multipart/alternative message with Text and HTML versions
483          *
484          * @param fromName                      name of the sender
485          * @param fromEmail                     email fo the sender
486          * @param replyTo                       replyTo address to direct responses
487          * @param toEmail                       destination email address
488          * @param messageSubject        subject of the message
489          * @param htmlVersion           html version of the message
490          * @param textVersion           text only version of the message
491          * @param additionalMailHeader  additions to the smtp mail header
492          */
493         static public function send($params) {
494
495                 $fromName = email_header_encode(html_entity_decode($params['fromName'],ENT_QUOTES,'UTF-8'),'UTF-8'); 
496                 $messageSubject = email_header_encode(html_entity_decode($params['messageSubject'],ENT_QUOTES,'UTF-8'),'UTF-8');
497                 
498                 // generate a mime boundary
499                 $mimeBoundary   =rand(0,9)."-"
500                                 .rand(10000000000,9999999999)."-"
501                                 .rand(10000000000,9999999999)."=:"
502                                 .rand(10000,99999);
503
504                 // generate a multipart/alternative message header
505                 $messageHeader =
506                         $params['additionalMailHeader'] .
507                         "From: $fromName <{$params['fromEmail']}>\n" . 
508                         "Reply-To: $fromName <{$params['replyTo']}>\n" .
509                         "MIME-Version: 1.0\n" .
510                         "Content-Type: multipart/alternative; boundary=\"{$mimeBoundary}\"";
511
512                 // assemble the final multipart message body with the text and html types included
513                 $textBody       =       chunk_split(base64_encode($params['textVersion']));
514                 $htmlBody       =       chunk_split(base64_encode($params['htmlVersion']));
515                 $multipartMessageBody =
516                         "--" . $mimeBoundary . "\n" .                                   // plain text section
517                         "Content-Type: text/plain; charset=UTF-8\n" .
518                         "Content-Transfer-Encoding: base64\n\n" .
519                         $textBody . "\n" .
520                         "--" . $mimeBoundary . "\n" .                                   // text/html section
521                         "Content-Type: text/html; charset=UTF-8\n" .
522                         "Content-Transfer-Encoding: base64\n\n" .
523                         $htmlBody . "\n" .
524                         "--" . $mimeBoundary . "--\n";                                  // message ending
525
526                 // send the message
527                 $res = mail(
528                         $params['toEmail'],                                                                             // send to address
529                         $messageSubject,                                                                // subject
530                         $multipartMessageBody,                                                  // message body
531                         $messageHeader                                                                  // message headers
532                 );
533                 logger("notification: enotify::send header " . 'To: ' . $params['toEmail'] . "\n" . $messageHeader, LOGGER_DEBUG);
534                 logger("notification: enotify::send returns " . $res, LOGGER_DEBUG);
535         }
536 }
537 ?>