3 * @file mod/message.php
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;
24 function message_init(App $a)
28 if ($a->argc > 1 && is_numeric($a->argv[1])) {
29 $tabs = render_messages(get_messages(local_user(), 0, 5), 'mail_list.tpl');
33 'label' => L10n::t('New Message'),
34 'url' => 'message/new',
35 'sel' => $a->argc > 1 && $a->argv[1] == 'new',
39 $tpl = Renderer::getMarkupTemplate('message_side.tpl');
40 $a->page['aside'] = Renderer::replaceMacros($tpl, [
44 $base = System::baseUrl();
46 $head_tpl = Renderer::getMarkupTemplate('message-head.tpl');
47 $a->page['htmlhead'] .= Renderer::replaceMacros($head_tpl, [
48 '$baseurl' => System::baseUrl(true),
53 function message_post(App $a)
56 notice(L10n::t('Permission denied.') . EOL);
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;
65 $ret = Mail::send($recipient, $body, $subject, $replyto);
70 notice(L10n::t('No recipient selected.') . EOL);
74 notice(L10n::t('Unable to locate contact information.') . EOL);
77 notice(L10n::t('Message could not be sent.') . EOL);
80 notice(L10n::t('Message collection failure.') . EOL);
83 info(L10n::t('Message sent.') . EOL);
86 // fake it to go back to the input form if no recipient listed
91 $a->internalRedirect($a->cmd . '/' . $ret);
95 function message_content(App $a)
98 Nav::setSelected('messages');
101 notice(L10n::t('Permission denied.') . EOL);
102 return Login::form();
105 $myprofile = System::baseUrl() . '/profile/' . $a->user['nickname'];
107 $tpl = Renderer::getMarkupTemplate('mail_head.tpl');
108 if ($a->argc > 1 && $a->argv[1] == 'new') {
110 'label' => L10n::t('Discard'),
116 'label' => L10n::t('New Message'),
117 'url' => '/message/new',
122 $header = Renderer::replaceMacros($tpl, [
123 '$messages' => L10n::t('Messages'),
124 '$button' => $button,
127 if (($a->argc == 3) && ($a->argv[1] === 'drop' || $a->argv[1] === 'dropconv')) {
128 if (!intval($a->argv[2])) {
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);
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]];
145 //$a->page['aside'] = '';
146 return Renderer::replaceMacros(Renderer::getMarkupTemplate('confirm.tpl'), [
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'),
157 // Now check how the user responded to the confirmation query
158 if (!empty($_REQUEST['canceled'])) {
159 $a->internalRedirect('message');
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');
170 if (DBA::delete('mail', ['id' => $a->argv[2], 'uid' => local_user()])) {
171 info(L10n::t('Message deleted.') . EOL);
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');
180 $a->internalRedirect('message/' . $conversation['id'] );
182 $r = q("SELECT `parent-uri`,`convid` FROM `mail` WHERE `id` = %d AND `uid` = %d LIMIT 1",
186 if (DBA::isResult($r)) {
187 $parent = $r[0]['parent-uri'];
189 if (DBA::delete('mail', ['parent-uri' => $parent, 'uid' => local_user()])) {
190 info(L10n::t('Conversation removed.') . EOL);
193 $a->internalRedirect('message');
197 if (($a->argc > 1) && ($a->argv[1] === 'new')) {
200 $tpl = Renderer::getMarkupTemplate('msg-header.tpl');
201 $a->page['htmlhead'] .= Renderer::replaceMacros($tpl, [
202 '$baseurl' => System::baseUrl(true),
203 '$nickname' => $a->user['nickname'],
204 '$linkurl' => L10n::t('Please enter a link URL:')
207 $preselect = isset($a->argv[2]) ? [$a->argv[2]] : [];
209 $prename = $preurl = $preid = '';
212 $r = q("SELECT `name`, `url`, `id` FROM `contact` WHERE `uid` = %d AND `id` = %d LIMIT 1",
213 intval(local_user()),
216 if (!DBA::isResult($r)) {
217 $r = q("SELECT `name`, `url`, `id` FROM `contact` WHERE `uid` = %d AND `nurl` = '%s' LIMIT 1",
218 intval(local_user()),
219 DBA::escape(Strings::normaliseLink(base64_decode($a->argv[2])))
223 if (!DBA::isResult($r)) {
224 $r = q("SELECT `name`, `url`, `id` FROM `contact` WHERE `uid` = %d AND `addr` = '%s' LIMIT 1",
225 intval(local_user()),
226 DBA::escape(base64_decode($a->argv[2]))
230 if (DBA::isResult($r)) {
231 $prename = $r[0]['name'];
232 $preid = $r[0]['id'];
233 $preselect = [$preid];
239 $prefill = $preselect ? $prename : '';
241 // the ugly select box
242 $select = ACL::getMessageContactSelectHTML('messageto', 'message-to-select', $preselect, 4, 10);
244 $tpl = Renderer::getMarkupTemplate('prv_message.tpl');
245 $o .= Renderer::replaceMacros($tpl, [
246 '$header' => L10n::t('Send Private Message'),
247 '$to' => L10n::t('To:'),
248 '$showinputs' => 'true',
249 '$prefill' => $prefill,
251 '$subject' => L10n::t('Subject:'),
252 '$subjtxt' => defaults($_REQUEST, 'subject', ''),
253 '$text' => defaults($_REQUEST, 'body', ''),
255 '$yourmessage'=> L10n::t('Your message:'),
256 '$select' => $select,
258 '$upload' => L10n::t('Upload photo'),
259 '$insert' => L10n::t('Insert web link'),
260 '$wait' => L10n::t('Please wait'),
261 '$submit' => L10n::t('Submit')
267 $_SESSION['return_path'] = $a->query_string;
276 $r = q("SELECT count(*) AS `total`, ANY_VALUE(`created`) AS `created` FROM `mail`
277 WHERE `mail`.`uid` = %d GROUP BY `parent-uri` ORDER BY `created` DESC",
280 if (DBA::isResult($r)) {
281 $total = $r[0]['total'];
284 $pager = new Pager($a->query_string);
286 $r = get_messages(local_user(), $pager->getStart(), $pager->getItemsPerPage());
288 if (!DBA::isResult($r)) {
289 info(L10n::t('No messages.') . EOL);
293 $o .= render_messages($r, 'mail_list.tpl');
295 $o .= $pager->renderFull($total);
300 if (($a->argc > 1) && (intval($a->argv[1]))) {
304 $message = DBA::fetchFirst("
305 SELECT `mail`.*, `contact`.`name`, `contact`.`url`, `contact`.`thumb`
307 LEFT JOIN `contact` ON `mail`.`contact-id` = `contact`.`id`
308 WHERE `mail`.`uid` = ? AND `mail`.`id` = ?
313 if (DBA::isResult($message)) {
314 $contact_id = $message['contact-id'];
318 $message['parent-uri']
321 if ($message['convid']) {
322 $sql_extra = "AND (`mail`.`parent-uri` = ? OR `mail`.`convid` = ?)";
323 $params[] = $message['convid'];
325 $sql_extra = "AND `mail`.`parent-uri` = ?";
327 $messages_stmt = DBA::p("
328 SELECT `mail`.*, `contact`.`name`, `contact`.`url`, `contact`.`thumb`
330 LEFT JOIN `contact` ON `mail`.`contact-id` = `contact`.`id`
331 WHERE `mail`.`uid` = ?
333 ORDER BY `mail`.`created` ASC",
337 $messages = DBA::toArray($messages_stmt);
339 DBA::update('mail', ['seen' => 1], ['parent-uri' => $message['parent-uri'], 'uid' => local_user()]);
341 if ($message['convid']) {
342 // Clear Diaspora private message notifications
343 DBA::update('notify', ['seen' => 1], ['type' => NOTIFY_MAIL, 'parent' => $message['convid'], 'uid' => local_user()]);
345 // Clear DFRN private message notifications
346 DBA::update('notify', ['seen' => 1], ['type' => NOTIFY_MAIL, 'parent' => $message['parent-uri'], 'uid' => local_user()]);
351 if (!DBA::isResult($messages)) {
352 notice(L10n::t('Message not available.') . EOL);
356 $tpl = Renderer::getMarkupTemplate('msg-header.tpl');
357 $a->page['htmlhead'] .= Renderer::replaceMacros($tpl, [
358 '$baseurl' => System::baseUrl(true),
359 '$nickname' => $a->user['nickname'],
360 '$linkurl' => L10n::t('Please enter a link URL:')
367 foreach ($messages as $message) {
368 if ($message['unknown']) {
372 if ($message['from-url'] == $myprofile) {
373 $from_url = $myprofile;
376 $from_url = Contact::magicLink($message['from-url']);
377 $sparkle = ' sparkle';
380 $extracted = item_extract_images($message['body']);
381 if ($extracted['images']) {
382 $message['body'] = item_redir_and_replace_images($extracted['body'], $extracted['images'], $message['contact-id']);
385 $from_name_e = $message['from-name'];
386 $subject_e = $message['title'];
387 $body_e = Smilies::replace(BBCode::convert($message['body']));
388 $to_name_e = $message['name'];
390 $contact = Contact::getDetailsByURL($message['from-url']);
391 if (isset($contact["thumb"])) {
392 $from_photo = $contact["thumb"];
394 $from_photo = $message['from-photo'];
398 'id' => $message['id'],
399 'from_name' => $from_name_e,
400 'from_url' => $from_url,
401 'from_addr' => $contact['addr'],
402 'sparkle' => $sparkle,
403 'from_photo' => ProxyUtils::proxifyUrl($from_photo, false, ProxyUtils::SIZE_THUMB),
404 'subject' => $subject_e,
406 'delete' => L10n::t('Delete message'),
407 'to_name' => $to_name_e,
408 'date' => DateTimeFormat::local($message['created'], L10n::t('D, d M Y - g:i A')),
409 'ago' => Temporal::getRelativeDate($message['created']),
412 $seen = $message['seen'];
415 $select = $message['name'] . '<input type="hidden" name="messageto" value="' . $contact_id . '" />';
416 $parent = '<input type="hidden" name="replyto" value="' . $message['parent-uri'] . '" />';
418 $tpl = Renderer::getMarkupTemplate('mail_display.tpl');
419 $o = Renderer::replaceMacros($tpl, [
420 '$thread_id' => $a->argv[1],
421 '$thread_subject' => $message['title'],
422 '$thread_seen' => $seen,
423 '$delete' => L10n::t('Delete conversation'),
424 '$canreply' => (($unknown) ? false : '1'),
425 '$unknown_text' => L10n::t("No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."),
429 '$header' => L10n::t('Send Reply'),
430 '$to' => L10n::t('To:'),
432 '$subject' => L10n::t('Subject:'),
433 '$subjtxt' => $message['title'],
434 '$readonly' => ' readonly="readonly" style="background: #BBBBBB;" ',
435 '$yourmessage' => L10n::t('Your message:'),
437 '$select' => $select,
438 '$parent' => $parent,
439 '$upload' => L10n::t('Upload photo'),
440 '$insert' => L10n::t('Insert web link'),
441 '$submit' => L10n::t('Submit'),
442 '$wait' => L10n::t('Please wait')
455 function get_messages($uid, $start, $limit)
457 return DBA::toArray(DBA::p('SELECT
488 MAX(`created`) AS `mailcreated`,
489 MIN(`seen`) AS `mailseen`
492 GROUP BY `parent-uri`
493 ) m2 ON m.`parent-uri` = m2.`parent-uri` AND m.`id` = m2.`id`
494 LEFT JOIN `contact` c ON m.`contact-id` = c.`id`
496 ORDER BY m2.`mailcreated` DESC
498 , $uid, $uid, $start, $limit));
501 function render_messages(array $msg, $t)
505 $tpl = Renderer::getMarkupTemplate($t);
508 $myprofile = System::baseUrl() . '/profile/' . $a->user['nickname'];
510 foreach ($msg as $rr) {
511 if ($rr['unknown']) {
512 $participants = L10n::t("Unknown sender - %s", $rr['from-name']);
513 } elseif (Strings::compareLink($rr['from-url'], $myprofile)) {
514 $participants = L10n::t("You and %s", $rr['name']);
516 $participants = L10n::t("%s and You", $rr['from-name']);
519 $body_e = $rr['body'];
520 $to_name_e = $rr['name'];
522 $contact = Contact::getDetailsByURL($rr['url']);
523 if (isset($contact["thumb"])) {
524 $from_photo = $contact["thumb"];
526 $from_photo = (($rr['thumb']) ? $rr['thumb'] : $rr['from-photo']);
529 $rslt .= Renderer::replaceMacros($tpl, [
531 '$from_name' => $participants,
532 '$from_url' => Contact::magicLink($rr['url']),
533 '$from_addr' => defaults($contact, 'addr', ''),
534 '$sparkle' => ' sparkle',
535 '$from_photo' => ProxyUtils::proxifyUrl($from_photo, false, ProxyUtils::SIZE_THUMB),
536 '$subject' => $rr['title'],
537 '$delete' => L10n::t('Delete conversation'),
539 '$to_name' => $to_name_e,
540 '$date' => DateTimeFormat::local($rr['mailcreated'], L10n::t('D, d M Y - g:i A')),
541 '$ago' => Temporal::getRelativeDate($rr['mailcreated']),
542 '$seen' => $rr['mailseen'],
543 '$count' => L10n::tt('%d message', '%d messages', $rr['count']),