]> git.mxchange.org Git - friendica.git/blob - mod/message.php
Rewrite Proxy module
[friendica.git] / mod / message.php
1 <?php
2 /**
3  * @file mod/message.php
4  */
5
6 use Friendica\App;
7 use Friendica\Content\Nav;
8 use Friendica\Content\Pager;
9 use Friendica\Content\Smilies;
10 use Friendica\Content\Text\BBCode;
11 use Friendica\Core\ACL;
12 use Friendica\Core\L10n;
13 use Friendica\Core\Renderer;
14 use Friendica\Core\System;
15 use Friendica\Database\DBA;
16 use Friendica\Model\Contact;
17 use Friendica\Model\Mail;
18 use Friendica\Module\Login;
19 use Friendica\Util\DateTimeFormat;
20 use Friendica\Util\Proxy as ProxyUtils;
21 use Friendica\Util\Strings;
22 use Friendica\Util\Temporal;
23
24 function message_init(App $a)
25 {
26         $tabs = '';
27
28         if ($a->argc > 1 && is_numeric($a->argv[1])) {
29                 $tabs = render_messages(get_messages(local_user(), 0, 5), 'mail_list.tpl');
30         }
31
32         $new = [
33                 'label' => L10n::t('New Message'),
34                 'url' => 'message/new',
35                 'sel' => $a->argc > 1 && $a->argv[1] == 'new',
36                 'accesskey' => 'm',
37         ];
38
39         $tpl = Renderer::getMarkupTemplate('message_side.tpl');
40         $a->page['aside'] = Renderer::replaceMacros($tpl, [
41                 '$tabs' => $tabs,
42                 '$new' => $new,
43         ]);
44         $base = System::baseUrl();
45
46         $head_tpl = Renderer::getMarkupTemplate('message-head.tpl');
47         $a->page['htmlhead'] .= Renderer::replaceMacros($head_tpl, [
48                 '$baseurl' => System::baseUrl(true),
49                 '$base' => $base
50         ]);
51 }
52
53 function message_post(App $a)
54 {
55         if (!local_user()) {
56                 notice(L10n::t('Permission denied.') . EOL);
57                 return;
58         }
59
60         $replyto   = !empty($_REQUEST['replyto'])   ? Strings::escapeTags(trim($_REQUEST['replyto'])) : '';
61         $subject   = !empty($_REQUEST['subject'])   ? Strings::escapeTags(trim($_REQUEST['subject'])) : '';
62         $body      = !empty($_REQUEST['body'])      ? Strings::escapeHtml(trim($_REQUEST['body']))    : '';
63         $recipient = !empty($_REQUEST['messageto']) ? intval($_REQUEST['messageto'])                  : 0;
64
65         $ret = Mail::send($recipient, $body, $subject, $replyto);
66         $norecip = false;
67
68         switch ($ret) {
69                 case -1:
70                         notice(L10n::t('No recipient selected.') . EOL);
71                         $norecip = true;
72                         break;
73                 case -2:
74                         notice(L10n::t('Unable to locate contact information.') . EOL);
75                         break;
76                 case -3:
77                         notice(L10n::t('Message could not be sent.') . EOL);
78                         break;
79                 case -4:
80                         notice(L10n::t('Message collection failure.') . EOL);
81                         break;
82                 default:
83                         info(L10n::t('Message sent.') . EOL);
84         }
85
86         // fake it to go back to the input form if no recipient listed
87         if ($norecip) {
88                 $a->argc = 2;
89                 $a->argv[1] = 'new';
90         } else {
91                 $a->internalRedirect($a->cmd . '/' . $ret);
92         }
93 }
94
95 function message_content(App $a)
96 {
97         $o = '';
98         Nav::setSelected('messages');
99
100         if (!local_user()) {
101                 notice(L10n::t('Permission denied.') . EOL);
102                 return Login::form();
103         }
104
105         $myprofile = System::baseUrl() . '/profile/' . $a->user['nickname'];
106
107         $tpl = Renderer::getMarkupTemplate('mail_head.tpl');
108         if ($a->argc > 1 && $a->argv[1] == 'new') {
109                 $button = [
110                         'label' => L10n::t('Discard'),
111                         'url' => '/message',
112                         'sel' => 'close',
113                 ];
114         } else {
115                 $button = [
116                         'label' => L10n::t('New Message'),
117                         'url' => '/message/new',
118                         'sel' => 'new',
119                         'accesskey' => 'm',
120                 ];
121         }
122         $header = Renderer::replaceMacros($tpl, [
123                 '$messages' => L10n::t('Messages'),
124                 '$button' => $button,
125         ]);
126
127         if (($a->argc == 3) && ($a->argv[1] === 'drop' || $a->argv[1] === 'dropconv')) {
128                 if (!intval($a->argv[2])) {
129                         return;
130                 }
131
132                 // Check if we should do HTML-based delete confirmation
133                 if (!empty($_REQUEST['confirm'])) {
134                         // <form> can't take arguments in its "action" parameter
135                         // so add any arguments as hidden inputs
136                         $query = explode_querystring($a->query_string);
137                         $inputs = [];
138                         foreach ($query['args'] as $arg) {
139                                 if (strpos($arg, 'confirm=') === false) {
140                                         $arg_parts = explode('=', $arg);
141                                         $inputs[] = ['name' => $arg_parts[0], 'value' => $arg_parts[1]];
142                                 }
143                         }
144
145                         //$a->page['aside'] = '';
146                         return Renderer::replaceMacros(Renderer::getMarkupTemplate('confirm.tpl'), [
147                                 '$method' => 'get',
148                                 '$message' => L10n::t('Do you really want to delete this message?'),
149                                 '$extra_inputs' => $inputs,
150                                 '$confirm' => L10n::t('Yes'),
151                                 '$confirm_url' => $query['base'],
152                                 '$confirm_name' => 'confirmed',
153                                 '$cancel' => L10n::t('Cancel'),
154                         ]);
155                 }
156
157                 // Now check how the user responded to the confirmation query
158                 if (!empty($_REQUEST['canceled'])) {
159                         $a->internalRedirect('message');
160                 }
161
162                 $cmd = $a->argv[1];
163                 if ($cmd === 'drop') {
164                         $message = DBA::selectFirst('mail', ['convid'], ['id' => $a->argv[2], 'uid' => local_user()]);
165                         if(!DBA::isResult($message)){
166                                 info(L10n::t('Conversation not found.') . EOL);
167                                 $a->internalRedirect('message');
168                         }
169
170                         if (DBA::delete('mail', ['id' => $a->argv[2], 'uid' => local_user()])) {
171                                 info(L10n::t('Message deleted.') . EOL);
172                         }
173
174                         $conversation = DBA::selectFirst('mail', ['id'], ['convid' => $message['convid'], 'uid' => local_user()]);
175                         if(!DBA::isResult($conversation)){
176                                 info(L10n::t('Conversation removed.') . EOL);
177                                 $a->internalRedirect('message');
178                         }
179
180                         $a->internalRedirect('message/' . $conversation['id'] );
181                 } else {
182                         $r = q("SELECT `parent-uri`,`convid` FROM `mail` WHERE `id` = %d AND `uid` = %d LIMIT 1",
183                                 intval($a->argv[2]),
184                                 intval(local_user())
185                         );
186                         if (DBA::isResult($r)) {
187                                 $parent = $r[0]['parent-uri'];
188                                 $convid = $r[0]['convid'];
189
190                                 if (DBA::delete('mail', ['parent-uri' => $parent, 'uid' => local_user()])) {
191                                         info(L10n::t('Conversation removed.') . EOL);
192                                 }
193                         }
194                         $a->internalRedirect('message');
195                 }
196         }
197
198         if (($a->argc > 1) && ($a->argv[1] === 'new')) {
199                 $o .= $header;
200
201                 $tpl = Renderer::getMarkupTemplate('msg-header.tpl');
202                 $a->page['htmlhead'] .= Renderer::replaceMacros($tpl, [
203                         '$baseurl' => System::baseUrl(true),
204                         '$nickname' => $a->user['nickname'],
205                         '$linkurl' => L10n::t('Please enter a link URL:')
206                 ]);
207
208                 $preselect = isset($a->argv[2]) ? [$a->argv[2]] : [];
209
210                 $prename = $preurl = $preid = '';
211
212                 if ($preselect) {
213                         $r = q("SELECT `name`, `url`, `id` FROM `contact` WHERE `uid` = %d AND `id` = %d LIMIT 1",
214                                 intval(local_user()),
215                                 intval($a->argv[2])
216                         );
217                         if (!DBA::isResult($r)) {
218                                 $r = q("SELECT `name`, `url`, `id` FROM `contact` WHERE `uid` = %d AND `nurl` = '%s' LIMIT 1",
219                                         intval(local_user()),
220                                         DBA::escape(Strings::normaliseLink(base64_decode($a->argv[2])))
221                                 );
222                         }
223
224                         if (!DBA::isResult($r)) {
225                                 $r = q("SELECT `name`, `url`, `id` FROM `contact` WHERE `uid` = %d AND `addr` = '%s' LIMIT 1",
226                                         intval(local_user()),
227                                         DBA::escape(base64_decode($a->argv[2]))
228                                 );
229                         }
230
231                         if (DBA::isResult($r)) {
232                                 $prename = $r[0]['name'];
233                                 $preurl = $r[0]['url'];
234                                 $preid = $r[0]['id'];
235                                 $preselect = [$preid];
236                         } else {
237                                 $preselect = [];
238                         }
239                 }
240
241                 $prefill = $preselect ? $prename : '';
242
243                 // the ugly select box
244                 $select = ACL::getMessageContactSelectHTML('messageto', 'message-to-select', $preselect, 4, 10);
245
246                 $tpl = Renderer::getMarkupTemplate('prv_message.tpl');
247                 $o .= Renderer::replaceMacros($tpl, [
248                         '$header'     => L10n::t('Send Private Message'),
249                         '$to'         => L10n::t('To:'),
250                         '$showinputs' => 'true',
251                         '$prefill'    => $prefill,
252                         '$preid'      => $preid,
253                         '$subject'    => L10n::t('Subject:'),
254                         '$subjtxt'    => defaults($_REQUEST, 'subject', ''),
255                         '$text'       => defaults($_REQUEST, 'body', ''),
256                         '$readonly'   => '',
257                         '$yourmessage'=> L10n::t('Your message:'),
258                         '$select'     => $select,
259                         '$parent'     => '',
260                         '$upload'     => L10n::t('Upload photo'),
261                         '$insert'     => L10n::t('Insert web link'),
262                         '$wait'       => L10n::t('Please wait'),
263                         '$submit'     => L10n::t('Submit')
264                 ]);
265                 return $o;
266         }
267
268
269         $_SESSION['return_path'] = $a->query_string;
270
271         if ($a->argc == 1) {
272
273                 // List messages
274
275                 $o .= $header;
276
277                 $total = 0;
278                 $r = q("SELECT count(*) AS `total`, ANY_VALUE(`created`) AS `created` FROM `mail`
279                         WHERE `mail`.`uid` = %d GROUP BY `parent-uri` ORDER BY `created` DESC",
280                         intval(local_user())
281                 );
282                 if (DBA::isResult($r)) {
283                         $total = $r[0]['total'];
284                 }
285
286                 $pager = new Pager($a->query_string);
287
288                 $r = get_messages(local_user(), $pager->getStart(), $pager->getItemsPerPage());
289
290                 if (!DBA::isResult($r)) {
291                         info(L10n::t('No messages.') . EOL);
292                         return $o;
293                 }
294
295                 $o .= render_messages($r, 'mail_list.tpl');
296
297                 $o .= $pager->renderFull($total);
298
299                 return $o;
300         }
301
302         if (($a->argc > 1) && (intval($a->argv[1]))) {
303
304                 $o .= $header;
305
306                 $message = DBA::fetchFirst("
307                         SELECT `mail`.*, `contact`.`name`, `contact`.`url`, `contact`.`thumb`
308                         FROM `mail`
309                         LEFT JOIN `contact` ON `mail`.`contact-id` = `contact`.`id`
310                         WHERE `mail`.`uid` = ? AND `mail`.`id` = ?
311                         LIMIT 1",
312                         local_user(),
313                         $a->argv[1]
314                 );
315                 if (DBA::isResult($message)) {
316                         $contact_id = $message['contact-id'];
317
318                         $params = [
319                                 local_user(),
320                                 $message['parent-uri']
321                         ];
322
323                         if ($message['convid']) {
324                                 $sql_extra = "AND (`mail`.`parent-uri` = ? OR `mail`.`convid` = ?)";
325                                 $params[] = $message['convid'];
326                         } else {
327                                 $sql_extra = "AND `mail`.`parent-uri` = ?";
328                         }
329                         $messages_stmt = DBA::p("
330                                 SELECT `mail`.*, `contact`.`name`, `contact`.`url`, `contact`.`thumb`
331                                 FROM `mail`
332                                 LEFT JOIN `contact` ON `mail`.`contact-id` = `contact`.`id`
333                                 WHERE `mail`.`uid` = ?
334                                 $sql_extra
335                                 ORDER BY `mail`.`created` ASC",
336                                 ...$params
337                         );
338
339                         $messages = DBA::toArray($messages_stmt);
340
341                         DBA::update('mail', ['seen' => 1], ['parent-uri' => $message['parent-uri'], 'uid' => local_user()]);
342
343                         if ($message['convid']) {
344                                 // Clear Diaspora private message notifications
345                                 DBA::update('notify', ['seen' => 1], ['type' => NOTIFY_MAIL, 'parent' => $message['convid'], 'uid' => local_user()]);
346                         }
347                         // Clear DFRN private message notifications
348                         DBA::update('notify', ['seen' => 1], ['type' => NOTIFY_MAIL, 'parent' => $message['parent-uri'], 'uid' => local_user()]);
349                 } else {
350                         $messages = false;
351                 }
352
353                 if (!DBA::isResult($messages)) {
354                         notice(L10n::t('Message not available.') . EOL);
355                         return $o;
356                 }
357
358                 $tpl = Renderer::getMarkupTemplate('msg-header.tpl');
359                 $a->page['htmlhead'] .= Renderer::replaceMacros($tpl, [
360                         '$baseurl' => System::baseUrl(true),
361                         '$nickname' => $a->user['nickname'],
362                         '$linkurl' => L10n::t('Please enter a link URL:')
363                 ]);
364
365                 $mails = [];
366                 $seen = 0;
367                 $unknown = false;
368
369                 foreach ($messages as $message) {
370                         if ($message['unknown']) {
371                                 $unknown = true;
372                         }
373
374                         if ($message['from-url'] == $myprofile) {
375                                 $from_url = $myprofile;
376                                 $sparkle = '';
377                         } else {
378                                 $from_url = Contact::magicLink($message['from-url']);
379                                 $sparkle = ' sparkle';
380                         }
381
382                         $extracted = item_extract_images($message['body']);
383                         if ($extracted['images']) {
384                                 $message['body'] = item_redir_and_replace_images($extracted['body'], $extracted['images'], $message['contact-id']);
385                         }
386
387                         $from_name_e = $message['from-name'];
388                         $subject_e = $message['title'];
389                         $body_e = Smilies::replace(BBCode::convert($message['body']));
390                         $to_name_e = $message['name'];
391
392                         $contact = Contact::getDetailsByURL($message['from-url']);
393                         if (isset($contact["thumb"])) {
394                                 $from_photo = $contact["thumb"];
395                         } else {
396                                 $from_photo = $message['from-photo'];
397                         }
398
399                         $mails[] = [
400                                 'id' => $message['id'],
401                                 'from_name' => $from_name_e,
402                                 'from_url' => $from_url,
403                                 'from_addr' => $contact['addr'],
404                                 'sparkle' => $sparkle,
405                                 'from_photo' => ProxyUtils::proxifyUrl($from_photo, false, ProxyUtils::SIZE_THUMB),
406                                 'subject' => $subject_e,
407                                 'body' => $body_e,
408                                 'delete' => L10n::t('Delete message'),
409                                 'to_name' => $to_name_e,
410                                 'date' => DateTimeFormat::local($message['created'], L10n::t('D, d M Y - g:i A')),
411                                 'ago' => Temporal::getRelativeDate($message['created']),
412                         ];
413
414                         $seen = $message['seen'];
415                 }
416
417                 $select = $message['name'] . '<input type="hidden" name="messageto" value="' . $contact_id . '" />';
418                 $parent = '<input type="hidden" name="replyto" value="' . $message['parent-uri'] . '" />';
419
420                 $tpl = Renderer::getMarkupTemplate('mail_display.tpl');
421                 $o = Renderer::replaceMacros($tpl, [
422                         '$thread_id' => $a->argv[1],
423                         '$thread_subject' => $message['title'],
424                         '$thread_seen' => $seen,
425                         '$delete' => L10n::t('Delete conversation'),
426                         '$canreply' => (($unknown) ? false : '1'),
427                         '$unknown_text' => L10n::t("No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."),
428                         '$mails' => $mails,
429
430                         // reply
431                         '$header' => L10n::t('Send Reply'),
432                         '$to' => L10n::t('To:'),
433                         '$showinputs' => '',
434                         '$subject' => L10n::t('Subject:'),
435                         '$subjtxt' => $message['title'],
436                         '$readonly' => ' readonly="readonly" style="background: #BBBBBB;" ',
437                         '$yourmessage' => L10n::t('Your message:'),
438                         '$text' => '',
439                         '$select' => $select,
440                         '$parent' => $parent,
441                         '$upload' => L10n::t('Upload photo'),
442                         '$insert' => L10n::t('Insert web link'),
443                         '$submit' => L10n::t('Submit'),
444                         '$wait' => L10n::t('Please wait')
445                 ]);
446
447                 return $o;
448         }
449 }
450
451 /**
452  * @param int $uid
453  * @param int $start
454  * @param int $limit
455  * @return array
456  */
457 function get_messages($uid, $start, $limit)
458 {
459         return DBA::toArray(DBA::p('SELECT
460                         m.`id`,
461                         m.`uid`,
462                         m.`guid`,
463                         m.`from-name`,
464                         m.`from-photo`,
465                         m.`from-url`,
466                         m.`contact-id`,
467                         m.`convid`,
468                         m.`title`,
469                         m.`body`,
470                         m.`seen`,
471                         m.`reply`,
472                         m.`replied`,
473                         m.`unknown`,
474                         m.`uri`,
475                         m.`parent-uri`,
476                         m.`created`,
477                         c.`name`,
478                         c.`url`,
479                         c.`thumb`,
480                         c.`network`,
481                 m2.`count`,
482                 m2.`mailcreated`,
483                 m2.`mailseen`
484         FROM `mail` m
485         JOIN (
486                 SELECT
487                         `parent-uri`,
488                     MIN(`id`)      AS `id`,
489                     COUNT(*)       AS `count`,
490                     MAX(`created`) AS `mailcreated`,
491                     MIN(`seen`)    AS `mailseen`
492                 FROM `mail`
493                 WHERE `uid` = ?
494                 GROUP BY `parent-uri`
495         ) m2 ON m.`parent-uri` = m2.`parent-uri` AND m.`id` = m2.`id`
496                 LEFT JOIN `contact` c ON m.`contact-id` = c.`id`
497                 WHERE m.`uid` = ?
498                 ORDER BY m2.`mailcreated` DESC
499                 LIMIT ?, ?'
500                 , $uid, $uid, $start, $limit));
501 }
502
503 function render_messages(array $msg, $t)
504 {
505         $a = \get_app();
506
507         $tpl = Renderer::getMarkupTemplate($t);
508         $rslt = '';
509
510         $myprofile = System::baseUrl() . '/profile/' . $a->user['nickname'];
511
512         foreach ($msg as $rr) {
513                 if ($rr['unknown']) {
514                         $participants = L10n::t("Unknown sender - %s", $rr['from-name']);
515                 } elseif (Strings::compareLink($rr['from-url'], $myprofile)) {
516                         $participants = L10n::t("You and %s", $rr['name']);
517                 } else {
518                         $participants = L10n::t("%s and You", $rr['from-name']);
519                 }
520
521                 $body_e = $rr['body'];
522                 $to_name_e = $rr['name'];
523
524                 $contact = Contact::getDetailsByURL($rr['url']);
525                 if (isset($contact["thumb"])) {
526                         $from_photo = $contact["thumb"];
527                 } else {
528                         $from_photo = (($rr['thumb']) ? $rr['thumb'] : $rr['from-photo']);
529                 }
530
531                 $rslt .= Renderer::replaceMacros($tpl, [
532                         '$id' => $rr['id'],
533                         '$from_name' => $participants,
534                         '$from_url' => Contact::magicLink($rr['url']),
535                         '$from_addr' => defaults($contact, 'addr', ''),
536                         '$sparkle' => ' sparkle',
537                         '$from_photo' => ProxyUtils::proxifyUrl($from_photo, false, ProxyUtils::SIZE_THUMB),
538                         '$subject' => $rr['title'],
539                         '$delete' => L10n::t('Delete conversation'),
540                         '$body' => $body_e,
541                         '$to_name' => $to_name_e,
542                         '$date' => DateTimeFormat::local($rr['mailcreated'], L10n::t('D, d M Y - g:i A')),
543                         '$ago' => Temporal::getRelativeDate($rr['mailcreated']),
544                         '$seen' => $rr['mailseen'],
545                         '$count' => L10n::tt('%d message', '%d messages', $rr['count']),
546                 ]);
547         }
548
549         return $rslt;
550 }