e4abc597f8e08cd016611133bf2f47c3e1d35407
[friendica-addons.git/.git] / mailstream / mailstream.php
1 <?php
2 /**
3  * Name: Mail Stream
4  * Description: Mail all items coming into your network feed to an email address
5  * Version: 1.1
6  * Author: Matthew Exon <http://mat.exon.name>
7  */
8
9 use Friendica\Content\Text\BBCode;
10 use Friendica\Core\Config;
11 use Friendica\Core\Hook;
12 use Friendica\Core\L10n;
13 use Friendica\Core\Logger;
14 use Friendica\Core\PConfig;
15 use Friendica\Core\Renderer;
16 use Friendica\Database\DBA;
17 use Friendica\Util\Network;
18 use Friendica\Model\Item;
19
20 function mailstream_install() {
21         Hook::register('addon_settings', 'addon/mailstream/mailstream.php', 'mailstream_addon_settings');
22         Hook::register('addon_settings_post', 'addon/mailstream/mailstream.php', 'mailstream_addon_settings_post');
23         Hook::register('post_local_end', 'addon/mailstream/mailstream.php', 'mailstream_post_hook');
24         Hook::register('post_remote_end', 'addon/mailstream/mailstream.php', 'mailstream_post_hook');
25         Hook::register('cron', 'addon/mailstream/mailstream.php', 'mailstream_cron');
26
27         if (Config::get('mailstream', 'dbversion') == '0.1') {
28                 q('ALTER TABLE `mailstream_item` DROP INDEX `uid`');
29                 q('ALTER TABLE `mailstream_item` DROP INDEX `contact-id`');
30                 q('ALTER TABLE `mailstream_item` DROP INDEX `plink`');
31                 q('ALTER TABLE `mailstream_item` CHANGE `plink` `uri` char(255) NOT NULL');
32                 Config::set('mailstream', 'dbversion', '0.2');
33         }
34         if (Config::get('mailstream', 'dbversion') == '0.2') {
35                 q('DELETE FROM `pconfig` WHERE `cat` = "mailstream" AND `k` = "delay"');
36                 Config::set('mailstream', 'dbversion', '0.3');
37         }
38         if (Config::get('mailstream', 'dbversion') == '0.3') {
39                 q('ALTER TABLE `mailstream_item` CHANGE `created` `created` timestamp NOT NULL DEFAULT now()');
40                 q('ALTER TABLE `mailstream_item` CHANGE `completed` `completed` timestamp NULL DEFAULT NULL');
41                 Config::set('mailstream', 'dbversion', '0.4');
42         }
43         if (Config::get('mailstream', 'dbversion') == '0.4') {
44                 q('ALTER TABLE `mailstream_item` CONVERT TO CHARACTER SET utf8 COLLATE utf8_bin');
45                 Config::set('mailstream', 'dbversion', '0.5');
46         }
47         if (Config::get('mailstream', 'dbversion') == '0.5') {
48                 Config::set('mailstream', 'dbversion', '1.0');
49         }
50
51         if (Config::get('retriever', 'dbversion') != '1.0') {
52                 $schema = file_get_contents(dirname(__file__).'/database.sql');
53                 $arr = explode(';', $schema);
54                 foreach ($arr as $a) {
55                         $r = q($a);
56                 }
57                 Config::set('mailstream', 'dbversion', '1.0');
58         }
59 }
60
61 function mailstream_uninstall() {
62         Hook::unregister('addon_settings', 'addon/mailstream/mailstream.php', 'mailstream_addon_settings');
63         Hook::unregister('addon_settings_post', 'addon/mailstream/mailstream.php', 'mailstream_addon_settings_post');
64         Hook::unregister('post_local', 'addon/mailstream/mailstream.php', 'mailstream_post_local_hook');
65         Hook::unregister('post_remote', 'addon/mailstream/mailstream.php', 'mailstream_post_remote_hook');
66         Hook::unregister('post_local_end', 'addon/mailstream/mailstream.php', 'mailstream_post_local_hook');
67         Hook::unregister('post_remote_end', 'addon/mailstream/mailstream.php', 'mailstream_post_remote_hook');
68         Hook::unregister('post_local_end', 'addon/mailstream/mailstream.php', 'mailstream_post_hook');
69         Hook::unregister('post_remote_end', 'addon/mailstream/mailstream.php', 'mailstream_post_hook');
70         Hook::unregister('cron', 'addon/mailstream/mailstream.php', 'mailstream_cron');
71         Hook::unregister('incoming_mail', 'addon/mailstream/mailstream.php', 'mailstream_incoming_mail');
72 }
73
74 function mailstream_module() {}
75
76 function mailstream_addon_admin(&$a,&$o) {
77         $frommail = Config::get('mailstream', 'frommail');
78         $template = Renderer::getMarkupTemplate('admin.tpl', 'addon/mailstream/');
79         $config = ['frommail',
80                         L10n::t('From Address'),
81                         $frommail,
82                         L10n::t('Email address that stream items will appear to be from.')];
83         $o .= Renderer::replaceMacros($template, [
84                                  '$frommail' => $config,
85                                  '$submit' => L10n::t('Save Settings')]);
86 }
87
88 function mailstream_addon_admin_post ($a) {
89         if (!empty($_POST['frommail'])) {
90                 Config::set('mailstream', 'frommail', $_POST['frommail']);
91         }
92 }
93
94 function mailstream_generate_id($a, $uri) {
95         // http://www.jwz.org/doc/mid.html
96         $host = $a->getHostName();
97         $resource = hash('md5', $uri);
98         $message_id = "<" . $resource . "@" . $host . ">";
99         Logger::log('mailstream: Generated message ID ' . $message_id . ' for URI ' . $uri, Logger::DEBUG);
100         return $message_id;
101 }
102
103 function mailstream_post_hook(&$a, &$item) {
104         if (!PConfig::get($item['uid'], 'mailstream', 'enabled')) {
105                 return;
106         }
107         if (!$item['uid']) {
108                 return;
109         }
110         if (!$item['contact-id']) {
111                 return;
112         }
113         if (!$item['uri']) {
114                 return;
115         }
116         if (PConfig::get($item['uid'], 'mailstream', 'nolikes')) {
117                 if ($item['verb'] == ACTIVITY_LIKE) {
118                         return;
119                 }
120         }
121
122         $message_id = mailstream_generate_id($a, $item['uri']);
123         q("INSERT INTO `mailstream_item` (`uid`, `contact-id`, `uri`, `message-id`) " .
124                 "VALUES (%d, '%s', '%s', '%s')", intval($item['uid']),
125                 intval($item['contact-id']), DBA::escape($item['uri']), DBA::escape($message_id));
126         $r = q('SELECT * FROM `mailstream_item` WHERE `uid` = %d AND `contact-id` = %d AND `uri` = "%s"', intval($item['uid']), intval($item['contact-id']), DBA::escape($item['uri']));
127         if (count($r) != 1) {
128                 Logger::log('mailstream_post_remote_hook: Unexpected number of items returned from mailstream_item', Logger::INFO);
129                 return;
130         }
131         $ms_item = $r[0];
132         Logger::log('mailstream_post_remote_hook: created mailstream_item '
133                 . $ms_item['id'] . ' for item ' . $item['uri'] . ' '
134                 . $item['uid'] . ' ' . $item['contact-id'], Logger::DATA);
135         $user = mailstream_get_user($item['uid']);
136         if (!$user) {
137                 Logger::log('mailstream_post_remote_hook: no user ' . $item['uid'], Logger::INFO);
138                 return;
139         }
140         mailstream_send($a, $ms_item['message-id'], $item, $user);
141 }
142
143 function mailstream_get_user($uid) {
144         $r = q('SELECT * FROM `user` WHERE `uid` = %d', intval($uid));
145         if (count($r) != 1) {
146                 Logger::log('mailstream_post_remote_hook: Unexpected number of users returned', Logger::INFO);
147                 return;
148         }
149         return $r[0];
150 }
151
152 function mailstream_do_images($a, &$item, &$attachments) {
153         if (!PConfig::get($item['uid'], 'mailstream', 'attachimg')) {
154                 return;
155         }
156         $attachments = [];
157         preg_match_all("/\[img\=([0-9]*)x([0-9]*)\](.*?)\[\/img\]/ism", $item["body"], $matches1);
158         preg_match_all("/\[img\](.*?)\[\/img\]/ism", $item["body"], $matches2);
159         foreach (array_merge($matches1[3], $matches2[1]) as $url) {
160                 $cookiejar = tempnam(get_temppath(), 'cookiejar-mailstream-');
161                 $curlResult = Network::fetchUrlFull($url, true, 0, '', $cookiejar);
162                 $attachments[$url] = [
163                         'data' => $curlResult->getBody(),
164                         'guid' => hash("crc32", $url),
165                         'filename' => basename($url),
166                         'type' => $curlResult->getContentType()
167                 ];
168
169                 if (strlen($attachments[$url]['data'])) {
170                         $item['body'] = str_replace($url, 'cid:' . $attachments[$url]['guid'], $item['body']);
171                         continue;
172                 }
173         }
174         return $attachments;
175 }
176
177 function mailstream_sender($item) {
178         $r = q('SELECT * FROM `contact` WHERE `id` = %d', $item['contact-id']);
179         if (DBA::isResult($r)) {
180                 $contact = $r[0];
181                 if ($contact['name'] != $item['author-name']) {
182                         return $contact['name'] . ' - ' . $item['author-name'];
183                 }
184         }
185         return $item['author-name'];
186 }
187
188 function mailstream_decode_subject($subject) {
189         $html = BBCode::convert($subject);
190         if (!$html) {
191                 return $subject;
192         }
193         $notags = strip_tags($html);
194         if (!$notags) {
195                 return $subject;
196         }
197         $noentity = html_entity_decode($notags);
198         if (!$noentity) {
199                 return $notags;
200         }
201         $nocodes = preg_replace_callback("/(&#[0-9]+;)/", function($m) { return mb_convert_encoding($m[1], "UTF-8", "HTML-ENTITIES"); }, $noentity);
202         if (!$nocodes) {
203                 return $noentity;
204         }
205         $trimmed = trim($nocodes);
206         if (!$trimmed) {
207                 return $nocodes;
208         }
209         return $trimmed;
210 }
211
212 function mailstream_subject($item) {
213         if ($item['title']) {
214                 return mailstream_decode_subject($item['title']);
215         }
216         $parent = $item['thr-parent'];
217         // Don't look more than 100 levels deep for a subject, in case of loops
218         for ($i = 0; ($i < 100) && $parent; $i++) {
219                 $parent_item = Item::selectFirst(['thr-parent', 'title'], ['uri' => $parent]);
220                 if (!DBA::isResult($parent_item)) {
221                         break;
222                 }
223                 if ($parent_item['thr-parent'] === $parent) {
224                         break;
225                 }
226                 if ($parent_item['title']) {
227                         return L10n::t('Re:') . ' ' . mailstream_decode_subject($parent_item['title']);
228                 }
229                 $parent = $parent_item['thr-parent'];
230         }
231         $r = q("SELECT * FROM `contact` WHERE `id` = %d AND `uid` = %d",
232                 intval($item['contact-id']), intval($item['uid']));
233         $contact = $r[0];
234         if ($contact['network'] === 'dfrn') {
235                 return L10n::t("Friendica post");
236         }
237         if ($contact['network'] === 'dspr') {
238                 return L10n::t("Diaspora post");
239         }
240         if ($contact['network'] === 'face') {
241                 $text = mailstream_decode_subject($item['body']);
242                 // For some reason these do show up in Facebook
243                 $text = preg_replace('/\xA0$/', '', $text);
244                 $subject = (strlen($text) > 150) ? (substr($text, 0, 140) . '...') : $text;
245                 return preg_replace('/\\s+/', ' ', $subject);
246         }
247         if ($contact['network'] === 'feed') {
248                 return L10n::t("Feed item");
249         }
250         if ($contact['network'] === 'mail') {
251                 return L10n::t("Email");
252         }
253         return L10n::t("Friendica Item");
254 }
255
256 function mailstream_send(\Friendica\App $a, $message_id, $item, $user) {
257         if (!$item['visible']) {
258                 return;
259         }
260         if (!$message_id) {
261                 return;
262         }
263         require_once(dirname(__file__).'/phpmailer/class.phpmailer.php');
264
265         $attachments = [];
266         mailstream_do_images($a, $item, $attachments);
267         $frommail = Config::get('mailstream', 'frommail');
268         if ($frommail == "") {
269                 $frommail = 'friendica@localhost.local';
270         }
271         $address = PConfig::get($item['uid'], 'mailstream', 'address');
272         if (!$address) {
273                 $address = $user['email'];
274         }
275         $mail = new PHPmailer;
276         try {
277                 $mail->XMailer = 'Friendica Mailstream Addon';
278                 $mail->SetFrom($frommail, mailstream_sender($item));
279                 $mail->AddAddress($address, $user['username']);
280                 $mail->MessageID = $message_id;
281                 $mail->Subject = mailstream_subject($item);
282                 if ($item['thr-parent'] != $item['uri']) {
283                         $mail->addCustomHeader('In-Reply-To: ' . mailstream_generate_id($a, $item['thr-parent']));
284                 }
285                 $mail->addCustomHeader('X-Friendica-Mailstream-URI: ' . $item['uri']);
286                 $mail->addCustomHeader('X-Friendica-Mailstream-Plink: ' . $item['plink']);
287                 $encoding = 'base64';
288                 foreach ($attachments as $url => $image) {
289                         $mail->AddStringEmbeddedImage($image['data'], $image['guid'], $image['filename'], $encoding, $image['type']);
290                 }
291                 $mail->IsHTML(true);
292                 $mail->CharSet = 'utf-8';
293                 $template = Renderer::getMarkupTemplate('mail.tpl', 'addon/mailstream/');
294                 $item['body'] = BBCode::convert($item['body']);
295                 $item['url'] = $a->getBaseURL() . '/display/' . $item['guid'];
296                 $mail->Body = Renderer::replaceMacros($template, [
297                                                  '$upstream' => L10n::t('Upstream'),
298                                                  '$local' => L10n::t('Local'),
299                                                  '$item' => $item]);
300                 mailstream_html_wrap($mail->Body);
301                 if (!$mail->Send()) {
302                         throw new Exception($mail->ErrorInfo);
303                 }
304                 Logger::log('mailstream_send sent message ' . $mail->MessageID . ' ' . $mail->Subject, Logger::DEBUG);
305         } catch (phpmailerException $e) {
306                 Logger::log('mailstream_send PHPMailer exception sending message ' . $message_id . ': ' . $e->errorMessage(), Logger::INFO);
307         } catch (Exception $e) {
308                 Logger::log('mailstream_send exception sending message ' . $message_id . ': ' . $e->getMessage(), Logger::INFO);
309         }
310         // In case of failure, still set the item to completed.  Otherwise
311         // we'll just try to send it over and over again and it'll fail
312         // every time.
313         q('UPDATE `mailstream_item` SET `completed` = now() WHERE `message-id` = "%s"', DBA::escape($message_id));
314 }
315
316 /**
317  * Email tends to break if you send excessively long lines.  To make
318  * bbcode's output suitable for transmission, we try to break things
319  * up so that lines are about 200 characters.
320  */
321 function mailstream_html_wrap(&$text)
322 {
323         $lines = str_split($text, 200);
324         for ($i = 0; $i < count($lines); $i++) {
325                 $lines[$i] = preg_replace('/ /', "\n", $lines[$i], 1);
326         }
327         $text = implode($lines);
328 }
329
330 function mailstream_cron($a, $b) {
331         // Only process items older than an hour in cron.  This is because
332         // we want to give mailstream_post_remote_hook a fair chance to
333         // send the email itself before cron jumps in.  Only if
334         // mailstream_post_remote_hook fails for some reason will this get
335         // used, and in that case it's worth holding off a bit anyway.
336         $ms_item_ids = q("SELECT `mailstream_item`.`message-id`, `mailstream_item`.`uri`, `item`.`id` FROM `mailstream_item` JOIN `item` ON (`mailstream_item`.`uid` = `item`.`uid` AND `mailstream_item`.`uri` = `item`.`uri` AND `mailstream_item`.`contact-id` = `item`.`contact-id`) WHERE `mailstream_item`.`completed` IS NULL AND `mailstream_item`.`created` < DATE_SUB(NOW(), INTERVAL 1 HOUR) AND `item`.`visible` = 1 ORDER BY `mailstream_item`.`created` LIMIT 100");
337         Logger::log('mailstream_cron processing ' . count($ms_item_ids) . ' items', Logger::DEBUG);
338         foreach ($ms_item_ids as $ms_item_id) {
339                 if (!$ms_item_id['message-id'] || !strlen($ms_item_id['message-id'])) {
340                         Logger::log('mailstream_cron: Item ' . $ms_item_id['id'] . ' URI ' . $ms_item_id['uri'] . ' has no message-id', Logger::INFO);
341                 }
342                 $item = Item::selectFirst([], ['id' => $ms_item_id['id']]);
343                 $users = q("SELECT * FROM `user` WHERE `uid` = %d", intval($item['uid']));
344                 $user = $users[0];
345                 if ($user && $item) {
346                         mailstream_send($a, $ms_item_id['message-id'], $item, $user);
347                 }
348                 else {
349                         Logger::log('mailstream_cron: Unable to find item ' . $ms_item_id['id'], Logger::INFO);
350                         q("UPDATE `mailstream_item` SET `completed` = now() WHERE `message-id` = %d", intval($ms_item['message-id']));
351                 }
352         }
353         mailstream_tidy();
354 }
355
356 function mailstream_addon_settings(&$a,&$s) {
357         $enabled = PConfig::get(local_user(), 'mailstream', 'enabled');
358         $address = PConfig::get(local_user(), 'mailstream', 'address');
359         $nolikes = PConfig::get(local_user(), 'mailstream', 'nolikes');
360         $attachimg= PConfig::get(local_user(), 'mailstream', 'attachimg');
361         $template = Renderer::getMarkupTemplate('settings.tpl', 'addon/mailstream/');
362         $s .= Renderer::replaceMacros($template, [
363                                  '$enabled' => [
364                                         'mailstream_enabled',
365                                         L10n::t('Enabled'),
366                                         $enabled],
367                                  '$address' => [
368                                         'mailstream_address',
369                                         L10n::t('Email Address'),
370                                         $address,
371                                         L10n::t("Leave blank to use your account email address")],
372                                  '$nolikes' => [
373                                         'mailstream_nolikes',
374                                         L10n::t('Exclude Likes'),
375                                         $nolikes,
376                                         L10n::t("Check this to omit mailing \"Like\" notifications")],
377                                  '$attachimg' => [
378                                         'mailstream_attachimg',
379                                         L10n::t('Attach Images'),
380                                         $attachimg,
381                                         L10n::t("Download images in posts and attach them to the email.  Useful for reading email while offline.")],
382                                  '$title' => L10n::t('Mail Stream Settings'),
383                                  '$submit' => L10n::t('Save Settings')]);
384 }
385
386 function mailstream_addon_settings_post($a,$post) {
387         if ($_POST['mailstream_address'] != "") {
388                 PConfig::set(local_user(), 'mailstream', 'address', $_POST['mailstream_address']);
389         }
390         else {
391                 PConfig::delete(local_user(), 'mailstream', 'address');
392         }
393         if ($_POST['mailstream_nolikes']) {
394                 PConfig::set(local_user(), 'mailstream', 'nolikes', $_POST['mailstream_enabled']);
395         }
396         else {
397                 PConfig::delete(local_user(), 'mailstream', 'nolikes');
398         }
399         if ($_POST['mailstream_enabled']) {
400                 PConfig::set(local_user(), 'mailstream', 'enabled', $_POST['mailstream_enabled']);
401         }
402         else {
403                 PConfig::delete(local_user(), 'mailstream', 'enabled');
404         }
405         if ($_POST['mailstream_attachimg']) {
406                 PConfig::set(local_user(), 'mailstream', 'attachimg', $_POST['mailstream_attachimg']);
407         }
408         else {
409                 PConfig::delete(local_user(), 'mailstream', 'attachimg');
410         }
411 }
412
413 function mailstream_tidy() {
414         $r = q("SELECT id FROM mailstream_item WHERE completed IS NOT NULL AND completed < DATE_SUB(NOW(), INTERVAL 1 YEAR)");
415         foreach ($r as $rr) {
416                 q('DELETE FROM mailstream_item WHERE id = %d', intval($rr['id']));
417         }
418         Logger::log('mailstream_tidy: deleted ' . count($r) . ' old items', Logger::DEBUG);
419 }