]> git.mxchange.org Git - friendica.git/blob - include/enotify.php
Merge branch 'pull'
[friendica.git] / include / enotify.php
1 <?php
2
3 function notification($params) {
4
5         logger('notification: entry', LOGGER_DEBUG);
6
7         $a = get_app();
8         $banner = t('Friendica Notification');
9         $product = FRIENDICA_PLATFORM;
10         $siteurl = z_path();
11         $thanks = t('Thank You,');
12         $sitename = get_config('config','sitename');
13         $site_admin = sprintf( t('%s Administrator'), $sitename);
14
15         $sender_name = $product;
16         $sender_email = t('noreply') . '@' . $a->get_hostname();
17
18         if(array_key_exists('item',$params)) {
19                 $title = $params['item']['title'];
20                 $body = $params['item']['body'];
21         }
22         else {
23                 $title = $body = '';
24         }
25
26         if($params['type'] == NOTIFY_MAIL) {
27
28                 $subject =      sprintf( t('New mail received at %s'),$sitename);
29
30                 $preamble = sprintf( t('%s sent you a new private message at %s.'),$params['source_name'],$sitename);
31                 $epreamble = sprintf( t('%s sent you %s.'),'[url=' . $params['source_link'] . ']' . $params['source_name'] . '[/url]', '[url=' . $siteurl . '/message]' . t('a private message') . '[/url]');
32                 $sitelink = t('Please visit %s to view and/or reply to your private messages.');
33                 $tsitelink = sprintf( $sitelink, $siteurl . '/message' );
34                 $hsitelink = sprintf( $sitelink, '<a href="' . $siteurl . '/message">' . $sitename . '</a>');
35                 $itemlink = $siteurl . '/message';
36         }
37
38         if($params['type'] == NOTIFY_COMMENT) {
39
40                 $subject = sprintf( t('%s commented on an item at %s'), $params['source_name'], $sitename);
41                 $preamble = sprintf( t('%s commented on an item/conversation you have been following.'), $params['source_name']); 
42                 $epreamble = sprintf( t('%s commented on %s you have been following.'), '[url=' . $params['source_link'] . ']' . $params['source_name'] . '[/url]', '[url=' . $params['link'] . ']' . t('an item/conversation') . '[/url]'); 
43
44                 $sitelink = t('Please visit %s to view and/or reply to the conversation.');
45                 $tsitelink = sprintf( $sitelink, $siteurl );
46                 $hsitelink = sprintf( $sitelink, '<a href="' . $siteurl . '">' . $sitename . '</a>');
47                 $itemlink =  $params['link'];
48         }
49
50         if($params['type'] == NOTIFY_WALL) {
51                 $preamble = $subject =  sprintf( t('%s posted to your profile wall at %s') , $params['source_name'], $sitename);
52                 $epreamble = sprintf( t('%s posted to %s') , '[url=' . $params['source_link'] . ']' . $params['source_name'] . '[/url]', '[url=' . $params['link'] . ']' . t('your profile wall.') . '[/url]'); 
53                 
54                 $sitelink = t('Please visit %s to view and/or reply to the conversation.');
55                 $tsitelink = sprintf( $sitelink, $siteurl );
56                 $hsitelink = sprintf( $sitelink, '<a href="' . $siteurl . '">' . $sitename . '</a>');
57                 $itemlink =  $params['link'];
58         }
59
60         if($params['type'] == NOTIFY_TAGSELF) {
61                 $preamble = $subject =  sprintf( t('%s tagged you at %s') , $params['source_name'], $sitename);
62                 $epreamble = sprintf( t('%s %s.') , '[url=' . $params['source_link'] . ']' . $params['source_name'] . '[/url]', '[url=' . $params['link'] . ']' . t('tagged you') . '[/url]'); 
63
64                 $sitelink = t('Please visit %s to view and/or reply to the conversation.');
65                 $tsitelink = sprintf( $sitelink, $siteurl );
66                 $hsitelink = sprintf( $sitelink, '<a href="' . $siteurl . '">' . $sitename . '</a>');
67                 $itemlink =  $params['link'];
68         }
69
70         if($params['type'] == NOTIFY_TAGSHARE) {
71                 $preamble = $subject =  sprintf( t('%s tagged your post at %s') , $params['source_name'], $sitename);
72                 $epreamble = sprintf( t('%s tagged %s') , '[url=' . $params['source_link'] . ']' . $params['source_name'] . '[/url]', '[url=' . $params['link'] . ']' . t('your post') . '[/url]' ); 
73
74                 $sitelink = t('Please visit %s to view and/or reply to the conversation.');
75                 $tsitelink = sprintf( $sitelink, $siteurl );
76                 $hsitelink = sprintf( $sitelink, '<a href="' . $siteurl . '">' . $sitename . '</a>');
77                 $itemlink =  $params['link'];
78         }
79
80         if($params['type'] == NOTIFY_INTRO) {
81                 $subject = sprintf( t('Introduction received at %s'), $sitename);
82                 $preamble = sprintf( t('You\'ve received an introduction from \'%s\' at %s'), $params['source_name'], $sitename); 
83                 $epreamble = sprintf( t('You\'ve received %s from %s.'), '[url=' . $params['link'] . ']' . t('an introduction') . '[/url]' , '[url=' . $params['source_link'] . ']' . $params['source_name'] . '[/url]'); 
84                 $body = sprintf( t('You may visit their profile at %s'),$params['source_link']);
85
86                 $sitelink = t('Please visit %s to approve or reject the introduction.');
87                 $tsitelink = sprintf( $sitelink, $siteurl );
88                 $hsitelink = sprintf( $sitelink, '<a href="' . $siteurl . '">' . $sitename . '</a>');
89                 $itemlink =  $params['link'];
90         }
91
92         if($params['type'] == NOTIFY_SUGGEST) {
93                 $subject = sprintf( t('Friend suggestion received at %s'), $sitename);
94                 $preamble = sprintf( t('You\'ve received a friend suggestion from \'%s\' at %s'), $params['source_name'], $sitename); 
95                 $epreamble = sprintf( t('You\'ve received %s for %s from %s.'),
96                         '[url=' . $params['link'] . ']' . t('a friend suggestion') . '[/url]',
97                         '[url=' . $params['item']['url'] . ']' . $params['item']['name'] . '[/url]', 
98                         '[url=' . $params['source_link'] . ']' . $params['source_name'] . '[/url]'); 
99                 $body = t('Name:') . ' ' . $params['item']['name'] . "\n";
100                 $body .= t('Photo:') . ' ' . $params['item']['photo'] . "\n";
101                 $body .= sprintf( t('You may visit their profile at %s'),$params['item']['url']);
102
103                 $sitelink = t('Please visit %s to approve or reject the suggestion.');
104                 $tsitelink = sprintf( $sitelink, $siteurl );
105                 $hsitelink = sprintf( $sitelink, '<a href="' . $siteurl . '">' . $sitename . '</a>');
106                 $itemlink =  $params['link'];
107         }
108
109         if($params['type'] == NOTIFY_CONFIRM) {
110
111         }
112
113         // from here on everything is in the recipients language
114
115         push_lang($params['language']);
116
117         require_once('include/html2bbcode.php');        
118
119         // create notification entry in DB
120
121         $r = q("insert into notify (name,url,photo,date,msg,uid,link,type,verb,otype)
122                 values('%s','%s','%s','%s','%s',%d,'%s',%d,'%s','%s')",
123                 dbesc($params['source_name']),
124                 dbesc($params['source_link']),
125                 dbesc($params['source_photo']),
126                 dbesc(datetime_convert()),
127                 dbesc($epreamble),
128                 intval($params['uid']),
129                 dbesc($itemlink),
130                 intval($params['type']),
131                 dbesc($params['verb']),
132                 dbesc($params['otype'])
133         );
134
135         // send email notification if notification preferences permit
136
137         require_once('bbcode.php');
138         if(intval($params['notify_flags']) & intval($params['type'])) {
139
140                 logger('notification: sending notification email');
141
142
143                 $textversion = strip_tags(html_entity_decode(bbcode(stripslashes(str_replace(array("\\r\\n", "\\r", "\\n"), "\n",
144                         $body))),ENT_QUOTES,'UTF-8'));
145                 $htmlversion = html_entity_decode(bbcode(stripslashes(str_replace(array("\\r\\n", "\\r","\\n\\n" ,"\\n"), 
146                         "<br />\n",$body))));
147
148                 // load the template for private message notifications
149                 $tpl = get_markup_template('email_notify_html.tpl');
150                 $email_html_body = replace_macros($tpl,array(
151                         '$banner'       => $banner,
152                         '$product'      => $product,
153                         '$preamble'     => $preamble,
154                         '$sitename'     => $sitename,
155                         '$siteurl'      => $siteurl,
156                         '$source_name'  => $params['source_name'],
157                         '$source_link'  => $params['source_link'],
158                         '$source_photo' => $params['source_photo'],
159                         '$username'     => $params['to_name'],
160                         '$hsitelink'    => $hsitelink,
161                         '$itemlink'     => '<a href="' . $itemlink . '">' . $itemlink . '</a>',
162                         '$thanks'       => $thanks,
163                         '$site_admin'   => $site_admin,
164                         '$title'                => stripslashes($title),
165                         '$htmlversion'  => $htmlversion,        
166                 ));
167                 
168                 // load the template for private message notifications
169                 $tpl = get_markup_template('email_notify_text.tpl');
170                 $email_text_body = replace_macros($tpl,array(
171                         '$banner'       => $banner,
172                         '$product'      => $product,
173                         '$preamble'     => $preamble,
174                         '$sitename'     => $sitename,
175                         '$siteurl'      => $siteurl,
176                         '$source_name'  => $params['source_name'],
177                         '$source_link'  => $params['source_link'],
178                         '$source_photo' => $params['source_photo'],
179                         '$username'     => $params['to_name'],
180                         '$tsitelink'    => $tsitelink,
181                         '$itemlink'     => $itemlink,
182                         '$thanks'       => $thanks,
183                         '$site_admin'   => $site_admin,
184                         '$title'                => stripslashes($title),
185                         '$textversion'  => $textversion,        
186                 ));
187
188 //              logger('text: ' . $email_text_body);
189
190                 // use the EmailNotification library to send the message
191
192                 enotify::send(array(
193                         'fromName' => $sender_name,
194                         'fromEmail' => $sender_email,
195                         'replyTo' => $sender_email,
196                         'toEmail' => $params['to_email'],
197                         'messageSubject' => $subject,
198                         'htmlVersion' => $email_html_body,
199                         'textVersion' => $email_text_body
200                 ));
201         }
202
203         pop_lang();
204
205 }
206
207 require_once('include/email.php');
208
209 class enotify {
210         /**
211          * Send a multipart/alternative message with Text and HTML versions
212          *
213          * @param fromName                      name of the sender
214          * @param fromEmail                     email fo the sender
215          * @param replyTo                       replyTo address to direct responses
216          * @param toEmail                       destination email address
217          * @param messageSubject        subject of the message
218          * @param htmlVersion           html version of the message
219          * @param textVersion           text only version of the message
220          */
221         static public function send($params) {
222
223                 $fromName = email_header_encode($params['fromName'],'UTF-8'); 
224                 $messageSubject = email_header_encode($params['messageSubject'],'UTF-8');
225                 
226                 // generate a mime boundary
227                 $mimeBoundary   =rand(0,9)."-"
228                                 .rand(10000000000,9999999999)."-"
229                                 .rand(10000000000,9999999999)."=:"
230                                 .rand(10000,99999);
231
232                 // generate a multipart/alternative message header
233                 $messageHeader =
234                         "From: {$params['fromName']} <{$params['fromEmail']}>\n" . 
235                         "Reply-To: {$params['fromName']} <{$params['replyTo']}>\n" .
236                         "MIME-Version: 1.0\n" .
237                         "Content-Type: multipart/alternative; boundary=\"{$mimeBoundary}\"";
238
239                 // assemble the final multipart message body with the text and html types included
240                 $textBody       =       chunk_split(base64_encode($params['textVersion']));
241                 $htmlBody       =       chunk_split(base64_encode($params['htmlVersion']));
242                 $multipartMessageBody =
243                         "--" . $mimeBoundary . "\n" .                                   // plain text section
244                         "Content-Type: text/plain; charset=UTF-8\n" .
245                         "Content-Transfer-Encoding: base64\n\n" .
246                         $textBody . "\n" .
247                         "--" . $mimeBoundary . "\n" .                                   // text/html section
248                         "Content-Type: text/html; charset=UTF-8\n" .
249                         "Content-Transfer-Encoding: base64\n\n" .
250                         $htmlBody . "\n" .
251                         "--" . $mimeBoundary . "--\n";                                  // message ending
252
253                 // send the message
254                 $res = mail(
255                         $params['toEmail'],                                                                             // send to address
256                         $params['messageSubject'],                                                              // subject
257                         $multipartMessageBody,                                                  // message body
258                         $messageHeader                                                                  // message headers
259                 );
260                 logger("notification: enotify::send returns " . $res, LOGGER_DEBUG);
261         }
262 }
263 ?>