3 * @copyright Copyright (C) 2020, Friendica
5 * @license GNU AGPL version 3 or any later version
7 * This program is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU Affero General Public License as
9 * published by the Free Software Foundation, either version 3 of the
10 * License, or (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU Affero General Public License for more details.
17 * You should have received a copy of the GNU Affero General Public License
18 * along with this program. If not, see <https://www.gnu.org/licenses/>.
23 use Friendica\Content\Nav;
24 use Friendica\Content\Pager;
25 use Friendica\Content\Text\BBCode;
26 use Friendica\Core\ACL;
27 use Friendica\Core\Renderer;
28 use Friendica\Database\DBA;
30 use Friendica\Model\Contact;
31 use Friendica\Model\Mail;
32 use Friendica\Model\Notify\Type;
33 use Friendica\Module\Security\Login;
34 use Friendica\Util\DateTimeFormat;
35 use Friendica\Util\Strings;
36 use Friendica\Util\Temporal;
38 function message_init(App $a)
42 if ($a->argc > 1 && is_numeric($a->argv[1])) {
43 $tabs = render_messages(get_messages(local_user(), 0, 5), 'mail_list.tpl');
47 'label' => DI::l10n()->t('New Message'),
48 'url' => 'message/new',
49 'sel' => $a->argc > 1 && $a->argv[1] == 'new',
53 $tpl = Renderer::getMarkupTemplate('message_side.tpl');
54 DI::page()['aside'] = Renderer::replaceMacros($tpl, [
58 $base = DI::baseUrl();
60 $head_tpl = Renderer::getMarkupTemplate('message-head.tpl');
61 DI::page()['htmlhead'] .= Renderer::replaceMacros($head_tpl, [
62 '$baseurl' => DI::baseUrl()->get(true),
67 function message_post(App $a)
70 notice(DI::l10n()->t('Permission denied.'));
74 $replyto = !empty($_REQUEST['replyto']) ? Strings::escapeTags(trim($_REQUEST['replyto'])) : '';
75 $subject = !empty($_REQUEST['subject']) ? Strings::escapeTags(trim($_REQUEST['subject'])) : '';
76 $body = !empty($_REQUEST['body']) ? Strings::escapeHtml(trim($_REQUEST['body'])) : '';
77 $recipient = !empty($_REQUEST['messageto']) ? intval($_REQUEST['messageto']) : 0;
79 $ret = Mail::send($recipient, $body, $subject, $replyto);
84 notice(DI::l10n()->t('No recipient selected.'));
88 notice(DI::l10n()->t('Unable to locate contact information.'));
91 notice(DI::l10n()->t('Message could not be sent.'));
94 notice(DI::l10n()->t('Message collection failure.'));
98 // fake it to go back to the input form if no recipient listed
103 DI::baseUrl()->redirect(DI::args()->getCommand() . '/' . $ret);
107 function message_content(App $a)
110 Nav::setSelected('messages');
113 notice(DI::l10n()->t('Permission denied.'));
114 return Login::form();
117 $myprofile = DI::baseUrl() . '/profile/' . $a->user['nickname'];
119 $tpl = Renderer::getMarkupTemplate('mail_head.tpl');
120 if ($a->argc > 1 && $a->argv[1] == 'new') {
122 'label' => DI::l10n()->t('Discard'),
128 'label' => DI::l10n()->t('New Message'),
129 'url' => '/message/new',
134 $header = Renderer::replaceMacros($tpl, [
135 '$messages' => DI::l10n()->t('Messages'),
136 '$button' => $button,
139 if (($a->argc == 3) && ($a->argv[1] === 'drop' || $a->argv[1] === 'dropconv')) {
140 if (!intval($a->argv[2])) {
144 // Check if we should do HTML-based delete confirmation
145 if (!empty($_REQUEST['confirm'])) {
146 // <form> can't take arguments in its "action" parameter
147 // so add any arguments as hidden inputs
148 $query = explode_querystring(DI::args()->getQueryString());
150 foreach ($query['args'] as $arg) {
151 if (strpos($arg, 'confirm=') === false) {
152 $arg_parts = explode('=', $arg);
153 $inputs[] = ['name' => $arg_parts[0], 'value' => $arg_parts[1]];
157 //DI::page()['aside'] = '';
158 return Renderer::replaceMacros(Renderer::getMarkupTemplate('confirm.tpl'), [
160 '$message' => DI::l10n()->t('Do you really want to delete this message?'),
161 '$extra_inputs' => $inputs,
162 '$confirm' => DI::l10n()->t('Yes'),
163 '$confirm_url' => $query['base'],
164 '$confirm_name' => 'confirmed',
165 '$cancel' => DI::l10n()->t('Cancel'),
169 // Now check how the user responded to the confirmation query
170 if (!empty($_REQUEST['canceled'])) {
171 DI::baseUrl()->redirect('message');
175 if ($cmd === 'drop') {
176 $message = DBA::selectFirst('mail', ['convid'], ['id' => $a->argv[2], 'uid' => local_user()]);
177 if(!DBA::isResult($message)){
178 notice(DI::l10n()->t('Conversation not found.'));
179 DI::baseUrl()->redirect('message');
182 if (!DBA::delete('mail', ['id' => $a->argv[2], 'uid' => local_user()])) {
183 notice(DI::l10n()->t('Message was not deleted.'));
186 $conversation = DBA::selectFirst('mail', ['id'], ['convid' => $message['convid'], 'uid' => local_user()]);
187 if(!DBA::isResult($conversation)){
188 DI::baseUrl()->redirect('message');
191 DI::baseUrl()->redirect('message/' . $conversation['id'] );
193 $r = q("SELECT `parent-uri`,`convid` FROM `mail` WHERE `id` = %d AND `uid` = %d LIMIT 1",
197 if (DBA::isResult($r)) {
198 $parent = $r[0]['parent-uri'];
200 if (!DBA::delete('mail', ['parent-uri' => $parent, 'uid' => local_user()])) {
201 notice(DI::l10n()->t('Conversation was not removed.'));
204 DI::baseUrl()->redirect('message');
208 if (($a->argc > 1) && ($a->argv[1] === 'new')) {
211 $tpl = Renderer::getMarkupTemplate('msg-header.tpl');
212 DI::page()['htmlhead'] .= Renderer::replaceMacros($tpl, [
213 '$baseurl' => DI::baseUrl()->get(true),
214 '$nickname' => $a->user['nickname'],
215 '$linkurl' => DI::l10n()->t('Please enter a link URL:')
218 $preselect = isset($a->argv[2]) ? [$a->argv[2]] : [];
220 $prename = $preurl = $preid = '';
223 $r = q("SELECT `name`, `url`, `id` FROM `contact` WHERE `uid` = %d AND `id` = %d LIMIT 1",
224 intval(local_user()),
227 if (!DBA::isResult($r)) {
228 $r = q("SELECT `name`, `url`, `id` FROM `contact` WHERE `uid` = %d AND `nurl` = '%s' LIMIT 1",
229 intval(local_user()),
230 DBA::escape(Strings::normaliseLink(base64_decode($a->argv[2])))
234 if (!DBA::isResult($r)) {
235 $r = q("SELECT `name`, `url`, `id` FROM `contact` WHERE `uid` = %d AND `addr` = '%s' LIMIT 1",
236 intval(local_user()),
237 DBA::escape(base64_decode($a->argv[2]))
241 if (DBA::isResult($r)) {
242 $prename = $r[0]['name'];
243 $preid = $r[0]['id'];
244 $preselect = [$preid];
250 $prefill = $preselect ? $prename : '';
252 // the ugly select box
253 $select = ACL::getMessageContactSelectHTML('messageto', 'message-to-select', $preselect, 4, 10);
255 $tpl = Renderer::getMarkupTemplate('prv_message.tpl');
256 $o .= Renderer::replaceMacros($tpl, [
257 '$header' => DI::l10n()->t('Send Private Message'),
258 '$to' => DI::l10n()->t('To:'),
259 '$showinputs' => 'true',
260 '$prefill' => $prefill,
262 '$subject' => DI::l10n()->t('Subject:'),
263 '$subjtxt' => $_REQUEST['subject'] ?? '',
264 '$text' => $_REQUEST['body'] ?? '',
266 '$yourmessage'=> DI::l10n()->t('Your message:'),
267 '$select' => $select,
269 '$upload' => DI::l10n()->t('Upload photo'),
270 '$insert' => DI::l10n()->t('Insert web link'),
271 '$wait' => DI::l10n()->t('Please wait'),
272 '$submit' => DI::l10n()->t('Submit')
278 $_SESSION['return_path'] = DI::args()->getQueryString();
287 $r = q("SELECT count(*) AS `total`, ANY_VALUE(`created`) AS `created` FROM `mail`
288 WHERE `mail`.`uid` = %d GROUP BY `parent-uri` ORDER BY `created` DESC",
291 if (DBA::isResult($r)) {
292 $total = $r[0]['total'];
295 $pager = new Pager(DI::l10n(), DI::args()->getQueryString());
297 $r = get_messages(local_user(), $pager->getStart(), $pager->getItemsPerPage());
299 if (!DBA::isResult($r)) {
300 notice(DI::l10n()->t('No messages.'));
304 $o .= render_messages($r, 'mail_list.tpl');
306 $o .= $pager->renderFull($total);
311 if (($a->argc > 1) && (intval($a->argv[1]))) {
315 $message = DBA::fetchFirst("
316 SELECT `mail`.*, `contact`.`name`, `contact`.`url`, `contact`.`thumb`
318 LEFT JOIN `contact` ON `mail`.`contact-id` = `contact`.`id`
319 WHERE `mail`.`uid` = ? AND `mail`.`id` = ?
324 if (DBA::isResult($message)) {
325 $contact_id = $message['contact-id'];
329 $message['parent-uri']
332 if ($message['convid']) {
333 $sql_extra = "AND (`mail`.`parent-uri` = ? OR `mail`.`convid` = ?)";
334 $params[] = $message['convid'];
336 $sql_extra = "AND `mail`.`parent-uri` = ?";
338 $messages_stmt = DBA::p("
339 SELECT `mail`.*, `contact`.`name`, `contact`.`url`, `contact`.`thumb`
341 LEFT JOIN `contact` ON `mail`.`contact-id` = `contact`.`id`
342 WHERE `mail`.`uid` = ?
344 ORDER BY `mail`.`created` ASC",
348 $messages = DBA::toArray($messages_stmt);
350 DBA::update('mail', ['seen' => 1], ['parent-uri' => $message['parent-uri'], 'uid' => local_user()]);
351 DBA::update('notify', ['seen' => 1], ['type' => Type::MAIL, 'parent' => $message['id'], 'uid' => local_user()]);
356 if (!DBA::isResult($messages)) {
357 notice(DI::l10n()->t('Message not available.'));
361 $tpl = Renderer::getMarkupTemplate('msg-header.tpl');
362 DI::page()['htmlhead'] .= Renderer::replaceMacros($tpl, [
363 '$baseurl' => DI::baseUrl()->get(true),
364 '$nickname' => $a->user['nickname'],
365 '$linkurl' => DI::l10n()->t('Please enter a link URL:')
372 foreach ($messages as $message) {
373 if ($message['unknown']) {
377 if ($message['from-url'] == $myprofile) {
378 $from_url = $myprofile;
381 $from_url = Contact::magicLink($message['from-url']);
382 $sparkle = ' sparkle';
385 $extracted = item_extract_images($message['body']);
386 if ($extracted['images']) {
387 $message['body'] = item_redir_and_replace_images($extracted['body'], $extracted['images'], $message['contact-id']);
390 $from_name_e = $message['from-name'];
391 $subject_e = $message['title'];
392 $body_e = BBCode::convert($message['body']);
393 $to_name_e = $message['name'];
395 $contact = Contact::getByURL($message['from-url'], false, ['thumb', 'addr', 'id', 'avatar']);
396 $from_photo = Contact::getThumb($contact, $message['from-photo']);
399 'id' => $message['id'],
400 'from_name' => $from_name_e,
401 'from_url' => $from_url,
402 'from_addr' => $contact['addr'],
403 'sparkle' => $sparkle,
404 'from_photo' => $from_photo,
405 'subject' => $subject_e,
407 'delete' => DI::l10n()->t('Delete message'),
408 'to_name' => $to_name_e,
409 'date' => DateTimeFormat::local($message['created'], DI::l10n()->t('D, d M Y - g:i A')),
410 'ago' => Temporal::getRelativeDate($message['created']),
413 $seen = $message['seen'];
416 $select = $message['name'] . '<input type="hidden" name="messageto" value="' . $contact_id . '" />';
417 $parent = '<input type="hidden" name="replyto" value="' . $message['parent-uri'] . '" />';
419 $tpl = Renderer::getMarkupTemplate('mail_display.tpl');
420 $o = Renderer::replaceMacros($tpl, [
421 '$thread_id' => $a->argv[1],
422 '$thread_subject' => $message['title'],
423 '$thread_seen' => $seen,
424 '$delete' => DI::l10n()->t('Delete conversation'),
425 '$canreply' => (($unknown) ? false : '1'),
426 '$unknown_text' => DI::l10n()->t("No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."),
430 '$header' => DI::l10n()->t('Send Reply'),
431 '$to' => DI::l10n()->t('To:'),
433 '$subject' => DI::l10n()->t('Subject:'),
434 '$subjtxt' => $message['title'],
435 '$readonly' => ' readonly="readonly" style="background: #BBBBBB;" ',
436 '$yourmessage' => DI::l10n()->t('Your message:'),
438 '$select' => $select,
439 '$parent' => $parent,
440 '$upload' => DI::l10n()->t('Upload photo'),
441 '$insert' => DI::l10n()->t('Insert web link'),
442 '$submit' => DI::l10n()->t('Submit'),
443 '$wait' => DI::l10n()->t('Please wait')
456 function get_messages($uid, $start, $limit)
458 return DBA::toArray(DBA::p('SELECT
489 MAX(`created`) AS `mailcreated`,
490 MIN(`seen`) AS `mailseen`
493 GROUP BY `parent-uri`
494 ) m2 ON m.`parent-uri` = m2.`parent-uri` AND m.`id` = m2.`id`
495 LEFT JOIN `contact` c ON m.`contact-id` = c.`id`
497 ORDER BY m2.`mailcreated` DESC
499 , $uid, $uid, $start, $limit));
502 function render_messages(array $msg, $t)
506 $tpl = Renderer::getMarkupTemplate($t);
509 $myprofile = DI::baseUrl() . '/profile/' . $a->user['nickname'];
511 foreach ($msg as $rr) {
512 if ($rr['unknown']) {
513 $participants = DI::l10n()->t("Unknown sender - %s", $rr['from-name']);
514 } elseif (Strings::compareLink($rr['from-url'], $myprofile)) {
515 $participants = DI::l10n()->t("You and %s", $rr['name']);
517 $participants = DI::l10n()->t("%s and You", $rr['from-name']);
520 $body_e = $rr['body'];
521 $to_name_e = $rr['name'];
523 $contact = Contact::getByURL($rr['url'], false, ['thumb', 'addr', 'id', 'avatar']);
524 $from_photo = Contact::getThumb($contact, $rr['thumb'] ?: $rr['from-photo']);
526 $rslt .= Renderer::replaceMacros($tpl, [
528 '$from_name' => $participants,
529 '$from_url' => Contact::magicLink($rr['url']),
530 '$from_addr' => $contact['addr'] ?? '',
531 '$sparkle' => ' sparkle',
532 '$from_photo' => $from_photo,
533 '$subject' => $rr['title'],
534 '$delete' => DI::l10n()->t('Delete conversation'),
536 '$to_name' => $to_name_e,
537 '$date' => DateTimeFormat::local($rr['mailcreated'], DI::l10n()->t('D, d M Y - g:i A')),
538 '$ago' => Temporal::getRelativeDate($rr['mailcreated']),
539 '$seen' => $rr['mailseen'],
540 '$count' => DI::l10n()->tt('%d message', '%d messages', $rr['count']),