3 * @file mod/message.php
7 use Friendica\Content\Nav;
8 use Friendica\Content\Smilies;
9 use Friendica\Content\Text\BBCode;
10 use Friendica\Core\ACL;
11 use Friendica\Core\L10n;
12 use Friendica\Core\System;
13 use Friendica\Database\DBM;
14 use Friendica\Model\Contact;
15 use Friendica\Model\Mail;
16 use Friendica\Util\DateTimeFormat;
17 use Friendica\Util\Temporal;
19 require_once 'include/conversation.php';
21 function message_init(App $a)
25 if ($a->argc > 1 && is_numeric($a->argv[1])) {
26 $tabs = render_messages(get_messages(local_user(), 0, 5), 'mail_list.tpl');
30 'label' => L10n::t('New Message'),
31 'url' => 'message/new',
32 'sel' => $a->argc > 1 && $a->argv[1] == 'new',
36 $tpl = get_markup_template('message_side.tpl');
37 $a->page['aside'] = replace_macros($tpl, [
41 $base = System::baseUrl();
43 $head_tpl = get_markup_template('message-head.tpl');
44 $a->page['htmlhead'] .= replace_macros($head_tpl, [
45 '$baseurl' => System::baseUrl(true),
49 $end_tpl = get_markup_template('message-end.tpl');
50 $a->page['end'] .= replace_macros($end_tpl, [
51 '$baseurl' => System::baseUrl(true),
56 function message_post(App $a)
59 notice(L10n::t('Permission denied.') . EOL);
63 $replyto = x($_REQUEST, 'replyto') ? notags(trim($_REQUEST['replyto'])) : '';
64 $subject = x($_REQUEST, 'subject') ? notags(trim($_REQUEST['subject'])) : '';
65 $body = x($_REQUEST, 'body') ? escape_tags(trim($_REQUEST['body'])) : '';
66 $recipient = x($_REQUEST, 'messageto') ? intval($_REQUEST['messageto']) : 0;
68 $ret = Mail::send($recipient, $body, $subject, $replyto);
73 notice(L10n::t('No recipient selected.') . EOL);
77 notice(L10n::t('Unable to locate contact information.') . EOL);
80 notice(L10n::t('Message could not be sent.') . EOL);
83 notice(L10n::t('Message collection failure.') . EOL);
86 info(L10n::t('Message sent.') . EOL);
89 // fake it to go back to the input form if no recipient listed
94 goaway($_SESSION['return_url']);
98 function message_content(App $a)
101 Nav::setSelected('messages');
104 notice(L10n::t('Permission denied.') . EOL);
108 $myprofile = System::baseUrl() . '/profile/' . $a->user['nickname'];
110 $tpl = get_markup_template('mail_head.tpl');
111 $header = replace_macros($tpl, [
112 '$messages' => L10n::t('Messages'),
115 if (($a->argc == 3) && ($a->argv[1] === 'drop' || $a->argv[1] === 'dropconv')) {
116 if (!intval($a->argv[2])) {
120 // Check if we should do HTML-based delete confirmation
121 if ($_REQUEST['confirm']) {
122 // <form> can't take arguments in its "action" parameter
123 // so add any arguments as hidden inputs
124 $query = explode_querystring($a->query_string);
126 foreach ($query['args'] as $arg) {
127 if (strpos($arg, 'confirm=') === false) {
128 $arg_parts = explode('=', $arg);
129 $inputs[] = ['name' => $arg_parts[0], 'value' => $arg_parts[1]];
133 //$a->page['aside'] = '';
134 return replace_macros(get_markup_template('confirm.tpl'), [
136 '$message' => L10n::t('Do you really want to delete this message?'),
137 '$extra_inputs' => $inputs,
138 '$confirm' => L10n::t('Yes'),
139 '$confirm_url' => $query['base'],
140 '$confirm_name' => 'confirmed',
141 '$cancel' => L10n::t('Cancel'),
144 // Now check how the user responded to the confirmation query
145 if ($_REQUEST['canceled']) {
146 goaway($_SESSION['return_url']);
150 if ($cmd === 'drop') {
151 if (dba::delete('mail', ['id' => $a->argv[2], 'uid' => local_user()])) {
152 info(L10n::t('Message deleted.') . EOL);
154 //goaway(System::baseUrl(true) . '/message' );
155 goaway($_SESSION['return_url']);
157 $r = q("SELECT `parent-uri`,`convid` FROM `mail` WHERE `id` = %d AND `uid` = %d LIMIT 1",
161 if (DBM::is_result($r)) {
162 $parent = $r[0]['parent-uri'];
163 $convid = $r[0]['convid'];
165 if (dba::delete('mail', ['parent-uri' => $parent, 'uid' => local_user()])) {
166 info(L10n::t('Conversation removed.') . EOL);
169 //goaway(System::baseUrl(true) . '/message' );
170 goaway($_SESSION['return_url']);
174 if (($a->argc > 1) && ($a->argv[1] === 'new')) {
177 $tpl = get_markup_template('msg-header.tpl');
178 $a->page['htmlhead'] .= replace_macros($tpl, [
179 '$baseurl' => System::baseUrl(true),
180 '$nickname' => $a->user['nickname'],
181 '$linkurl' => L10n::t('Please enter a link URL:')
184 $tpl = get_markup_template('msg-end.tpl');
185 $a->page['end'] .= replace_macros($tpl, [
186 '$baseurl' => System::baseUrl(true),
187 '$nickname' => $a->user['nickname'],
188 '$linkurl' => L10n::t('Please enter a link URL:')
191 $preselect = isset($a->argv[2]) ? [$a->argv[2]] : [];
193 $prename = $preurl = $preid = '';
196 $r = q("SELECT `name`, `url`, `id` FROM `contact` WHERE `uid` = %d AND `id` = %d LIMIT 1",
197 intval(local_user()),
200 if (!DBM::is_result($r)) {
201 $r = q("SELECT `name`, `url`, `id` FROM `contact` WHERE `uid` = %d AND `nurl` = '%s' LIMIT 1",
202 intval(local_user()),
203 dbesc(normalise_link(base64_decode($a->argv[2])))
207 if (!DBM::is_result($r)) {
208 $r = q("SELECT `name`, `url`, `id` FROM `contact` WHERE `uid` = %d AND `addr` = '%s' LIMIT 1",
209 intval(local_user()),
210 dbesc(base64_decode($a->argv[2]))
214 if (DBM::is_result($r)) {
215 $prename = $r[0]['name'];
216 $preurl = $r[0]['url'];
217 $preid = $r[0]['id'];
218 $preselect = [$preid];
224 $prefill = $preselect ? $prename : '';
226 // the ugly select box
227 $select = ACL::getMessageContactSelectHTML('messageto', 'message-to-select', $preselect, 4, 10);
229 $tpl = get_markup_template('prv_message.tpl');
230 $o .= replace_macros($tpl, [
231 '$header' => L10n::t('Send Private Message'),
232 '$to' => L10n::t('To:'),
233 '$showinputs' => 'true',
234 '$prefill' => $prefill,
236 '$subject' => L10n::t('Subject:'),
237 '$subjtxt' => x($_REQUEST, 'subject') ? strip_tags($_REQUEST['subject']) : '',
238 '$text' => x($_REQUEST, 'body') ? escape_tags(htmlspecialchars($_REQUEST['body'])) : '',
240 '$yourmessage' => L10n::t('Your message:'),
241 '$select' => $select,
243 '$upload' => L10n::t('Upload photo'),
244 '$insert' => L10n::t('Insert web link'),
245 '$wait' => L10n::t('Please wait'),
246 '$submit' => L10n::t('Submit')
252 $_SESSION['return_url'] = $a->query_string;
260 $r = q("SELECT count(*) AS `total`, ANY_VALUE(`created`) AS `created` FROM `mail`
261 WHERE `mail`.`uid` = %d GROUP BY `parent-uri` ORDER BY `created` DESC",
265 if (DBM::is_result($r)) {
266 $a->set_pager_total($r[0]['total']);
269 $r = get_messages(local_user(), $a->pager['start'], $a->pager['itemspage']);
271 if (!DBM::is_result($r)) {
272 info(L10n::t('No messages.') . EOL);
276 $o .= render_messages($r, 'mail_list.tpl');
283 if (($a->argc > 1) && (intval($a->argv[1]))) {
287 $r = q("SELECT `mail`.*, `contact`.`name`, `contact`.`url`, `contact`.`thumb`
288 FROM `mail` LEFT JOIN `contact` ON `mail`.`contact-id` = `contact`.`id`
289 WHERE `mail`.`uid` = %d AND `mail`.`id` = %d LIMIT 1",
290 intval(local_user()),
293 if (DBM::is_result($r)) {
294 $contact_id = $r[0]['contact-id'];
295 $convid = $r[0]['convid'];
297 $sql_extra = sprintf(" and `mail`.`parent-uri` = '%s' ", dbesc($r[0]['parent-uri']));
299 $sql_extra = sprintf(" and ( `mail`.`parent-uri` = '%s' OR `mail`.`convid` = '%d' ) ",
300 dbesc($r[0]['parent-uri']),
304 $messages = q("SELECT `mail`.*, `contact`.`name`, `contact`.`url`, `contact`.`thumb`
305 FROM `mail` LEFT JOIN `contact` ON `mail`.`contact-id` = `contact`.`id`
306 WHERE `mail`.`uid` = %d $sql_extra ORDER BY `mail`.`created` ASC",
310 if (!count($messages)) {
311 notice(L10n::t('Message not available.') . EOL);
315 $r = q("UPDATE `mail` SET `seen` = 1 WHERE `parent-uri` = '%s' AND `uid` = %d",
316 dbesc($r[0]['parent-uri']),
320 $tpl = get_markup_template('msg-header.tpl');
321 $a->page['htmlhead'] .= replace_macros($tpl, [
322 '$baseurl' => System::baseUrl(true),
323 '$nickname' => $a->user['nickname'],
324 '$linkurl' => L10n::t('Please enter a link URL:')
327 $tpl = get_markup_template('msg-end.tpl');
328 $a->page['end'] .= replace_macros($tpl, [
329 '$baseurl' => System::baseUrl(true),
330 '$nickname' => $a->user['nickname'],
331 '$linkurl' => L10n::t('Please enter a link URL:')
338 foreach ($messages as $message) {
339 if ($message['unknown'])
341 if ($message['from-url'] == $myprofile) {
342 $from_url = $myprofile;
345 $from_url = Contact::magicLink($message['from-url']);
346 $sparkle = ' sparkle';
349 $extracted = item_extract_images($message['body']);
350 if ($extracted['images']) {
351 $message['body'] = item_redir_and_replace_images($extracted['body'], $extracted['images'], $message['contact-id']);
354 $from_name_e = $message['from-name'];
355 $subject_e = $message['title'];
356 $body_e = Smilies::replace(BBCode::convert($message['body']));
357 $to_name_e = $message['name'];
359 $contact = Contact::getDetailsByURL($message['from-url']);
360 if (isset($contact["thumb"])) {
361 $from_photo = $contact["thumb"];
363 $from_photo = $message['from-photo'];
367 'id' => $message['id'],
368 'from_name' => $from_name_e,
369 'from_url' => $from_url,
370 'from_addr' => $contact['addr'],
371 'sparkle' => $sparkle,
372 'from_photo' => proxy_url($from_photo, false, PROXY_SIZE_THUMB),
373 'subject' => $subject_e,
375 'delete' => L10n::t('Delete message'),
376 'to_name' => $to_name_e,
377 'date' => DateTimeFormat::local($message['created'], L10n::t('D, d M Y - g:i A')),
378 'ago' => Temporal::getRelativeDate($message['created']),
381 $seen = $message['seen'];
384 $select = $message['name'] . '<input type="hidden" name="messageto" value="' . $contact_id . '" />';
385 $parent = '<input type="hidden" name="replyto" value="' . $message['parent-uri'] . '" />';
387 $tpl = get_markup_template('mail_display.tpl');
388 $o = replace_macros($tpl, [
389 '$thread_id' => $a->argv[1],
390 '$thread_subject' => $message['title'],
391 '$thread_seen' => $seen,
392 '$delete' => L10n::t('Delete conversation'),
393 '$canreply' => (($unknown) ? false : '1'),
394 '$unknown_text' => L10n::t("No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."),
398 '$header' => L10n::t('Send Reply'),
399 '$to' => L10n::t('To:'),
401 '$subject' => L10n::t('Subject:'),
402 '$subjtxt' => $message['title'],
403 '$readonly' => ' readonly="readonly" style="background: #BBBBBB;" ',
404 '$yourmessage' => L10n::t('Your message:'),
406 '$select' => $select,
407 '$parent' => $parent,
408 '$upload' => L10n::t('Upload photo'),
409 '$insert' => L10n::t('Insert web link'),
410 '$submit' => L10n::t('Submit'),
411 '$wait' => L10n::t('Please wait')
418 function get_messages($user, $lstart, $lend)
420 //TODO: rewritte with a sub-query to get the first message of each private thread with certainty
421 return q("SELECT max(`mail`.`created`) AS `mailcreated`, min(`mail`.`seen`) AS `mailseen`,
422 ANY_VALUE(`mail`.`id`) AS `id`, ANY_VALUE(`mail`.`uid`) AS `uid`, ANY_VALUE(`mail`.`guid`) AS `guid`,
423 ANY_VALUE(`mail`.`from-name`) AS `from-name`, ANY_VALUE(`mail`.`from-photo`) AS `from-photo`,
424 ANY_VALUE(`mail`.`from-url`) AS `from-url`, ANY_VALUE(`mail`.`contact-id`) AS `contact-id`,
425 ANY_VALUE(`mail`.`convid`) AS `convid`, ANY_VALUE(`mail`.`title`) AS `title`, ANY_VALUE(`mail`.`body`) AS `body`,
426 ANY_VALUE(`mail`.`seen`) AS `seen`, ANY_VALUE(`mail`.`reply`) AS `reply`, ANY_VALUE(`mail`.`replied`) AS `replied`,
427 ANY_VALUE(`mail`.`unknown`) AS `unknown`, ANY_VALUE(`mail`.`uri`) AS `uri`,
429 ANY_VALUE(`mail`.`created`) AS `created`, ANY_VALUE(`contact`.`name`) AS `name`, ANY_VALUE(`contact`.`url`) AS `url`,
430 ANY_VALUE(`contact`.`thumb`) AS `thumb`, ANY_VALUE(`contact`.`network`) AS `network`,
431 count( * ) as `count`
432 FROM `mail` LEFT JOIN `contact` ON `mail`.`contact-id` = `contact`.`id`
433 WHERE `mail`.`uid` = %d GROUP BY `parent-uri` ORDER BY `mailcreated` DESC LIMIT %d , %d ",
434 intval($user), intval($lstart), intval($lend)
438 function render_messages(array $msg, $t)
442 $tpl = get_markup_template($t);
445 $myprofile = System::baseUrl() . '/profile/' . $a->user['nickname'];
447 foreach ($msg as $rr) {
448 if ($rr['unknown']) {
449 $participants = L10n::t("Unknown sender - %s", $rr['from-name']);
450 } elseif (link_compare($rr['from-url'], $myprofile)) {
451 $participants = L10n::t("You and %s", $rr['name']);
453 $participants = L10n::t("%s and You", $rr['from-name']);
456 $subject_e = (($rr['mailseen']) ? $rr['title'] : '<strong>' . $rr['title'] . '</strong>');
457 $body_e = $rr['body'];
458 $to_name_e = $rr['name'];
460 $contact = Contact::getDetailsByURL($rr['url']);
461 if (isset($contact["thumb"])) {
462 $from_photo = $contact["thumb"];
464 $from_photo = (($rr['thumb']) ? $rr['thumb'] : $rr['from-photo']);
467 $rslt .= replace_macros($tpl, [
469 '$from_name' => $participants,
470 '$from_url' => Contact::magicLink($rr['url']),
471 '$from_addr' => $contact['addr'],
472 '$sparkle' => ' sparkle',
473 '$from_photo' => proxy_url($from_photo, false, PROXY_SIZE_THUMB),
474 '$subject' => $subject_e,
475 '$delete' => L10n::t('Delete conversation'),
477 '$to_name' => $to_name_e,
478 '$date' => DateTimeFormat::local($rr['mailcreated'], L10n::t('D, d M Y - g:i A')),
479 '$ago' => Temporal::getRelativeDate($rr['mailcreated']),
480 '$seen' => $rr['mailseen'],
481 '$count' => L10n::tt('%d message', '%d messages', $rr['count']),