3 * @copyright Copyright (C) 2010-2022, the Friendica project
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\Module\Security\Login;
33 use Friendica\Util\DateTimeFormat;
34 use Friendica\Util\Strings;
35 use Friendica\Util\Temporal;
37 function message_init(App $a)
41 if (DI::args()->getArgc() > 1 && is_numeric(DI::args()->getArgv()[1])) {
42 $tabs = render_messages(get_messages(local_user(), 0, 5), 'mail_list.tpl');
46 'label' => DI::l10n()->t('New Message'),
47 'url' => 'message/new',
48 'sel' => DI::args()->getArgc() > 1 && DI::args()->getArgv()[1] == 'new',
52 $tpl = Renderer::getMarkupTemplate('message_side.tpl');
53 DI::page()['aside'] = Renderer::replaceMacros($tpl, [
57 $base = DI::baseUrl();
59 $head_tpl = Renderer::getMarkupTemplate('message-head.tpl');
60 DI::page()['htmlhead'] .= Renderer::replaceMacros($head_tpl, [
61 '$baseurl' => DI::baseUrl()->get(true),
66 function message_post(App $a)
69 notice(DI::l10n()->t('Permission denied.'));
73 $replyto = !empty($_REQUEST['replyto']) ? trim($_REQUEST['replyto']) : '';
74 $subject = !empty($_REQUEST['subject']) ? trim($_REQUEST['subject']) : '';
75 $body = !empty($_REQUEST['body']) ? Strings::escapeHtml(trim($_REQUEST['body'])) : '';
76 $recipient = !empty($_REQUEST['recipient']) ? intval($_REQUEST['recipient']) : 0;
78 $ret = Mail::send($recipient, $body, $subject, $replyto);
83 notice(DI::l10n()->t('No recipient selected.'));
87 notice(DI::l10n()->t('Unable to locate contact information.'));
90 notice(DI::l10n()->t('Message could not be sent.'));
93 notice(DI::l10n()->t('Message collection failure.'));
97 // fake it to go back to the input form if no recipient listed
99 DI::args()->setArgv(['message', 'new']);
101 DI::baseUrl()->redirect(DI::args()->getCommand() . '/' . $ret);
105 function message_content(App $a)
108 Nav::setSelected('messages');
111 notice(DI::l10n()->t('Permission denied.'));
112 return Login::form();
115 $myprofile = DI::baseUrl() . '/profile/' . $a->getLoggedInUserNickname();
117 $tpl = Renderer::getMarkupTemplate('mail_head.tpl');
118 if (DI::args()->getArgc() > 1 && DI::args()->getArgv()[1] == 'new') {
120 'label' => DI::l10n()->t('Discard'),
126 'label' => DI::l10n()->t('New Message'),
127 'url' => '/message/new',
132 $header = Renderer::replaceMacros($tpl, [
133 '$messages' => DI::l10n()->t('Messages'),
134 '$button' => $button,
137 if ((DI::args()->getArgc() == 3) && (DI::args()->getArgv()[1] === 'drop' || DI::args()->getArgv()[1] === 'dropconv')) {
138 if (!intval(DI::args()->getArgv()[2])) {
142 $cmd = DI::args()->getArgv()[1];
143 if ($cmd === 'drop') {
144 $message = DBA::selectFirst('mail', ['convid'], ['id' => DI::args()->getArgv()[2], 'uid' => local_user()]);
145 if(!DBA::isResult($message)){
146 notice(DI::l10n()->t('Conversation not found.'));
147 DI::baseUrl()->redirect('message');
150 if (!DBA::delete('mail', ['id' => DI::args()->getArgv()[2], 'uid' => local_user()])) {
151 notice(DI::l10n()->t('Message was not deleted.'));
154 $conversation = DBA::selectFirst('mail', ['id'], ['convid' => $message['convid'], 'uid' => local_user()]);
155 if(!DBA::isResult($conversation)){
156 DI::baseUrl()->redirect('message');
159 DI::baseUrl()->redirect('message/' . $conversation['id'] );
161 $parentmail = DBA::selectFirst('mail', ['parent-uri'], ['id' => DI::args()->getArgv()[2], 'uid' => local_user()]);
162 if (DBA::isResult($parentmail)) {
163 $parent = $parentmail['parent-uri'];
165 if (!DBA::delete('mail', ['parent-uri' => $parent, 'uid' => local_user()])) {
166 notice(DI::l10n()->t('Conversation was not removed.'));
169 DI::baseUrl()->redirect('message');
173 if ((DI::args()->getArgc() > 1) && (DI::args()->getArgv()[1] === 'new')) {
176 $tpl = Renderer::getMarkupTemplate('msg-header.tpl');
177 DI::page()['htmlhead'] .= Renderer::replaceMacros($tpl, [
178 '$baseurl' => DI::baseUrl()->get(true),
179 '$nickname' => $a->getLoggedInUserNickname(),
180 '$linkurl' => DI::l10n()->t('Please enter a link URL:')
183 $recipientId = DI::args()->getArgv()[2] ?? null;
185 $select = ACL::getMessageContactSelectHTML($recipientId);
187 $tpl = Renderer::getMarkupTemplate('prv_message.tpl');
188 $o .= Renderer::replaceMacros($tpl, [
189 '$header' => DI::l10n()->t('Send Private Message'),
190 '$to' => DI::l10n()->t('To:'),
191 '$subject' => DI::l10n()->t('Subject:'),
192 '$subjtxt' => $_REQUEST['subject'] ?? '',
193 '$text' => $_REQUEST['body'] ?? '',
195 '$yourmessage'=> DI::l10n()->t('Your message:'),
196 '$select' => $select,
198 '$upload' => DI::l10n()->t('Upload photo'),
199 '$insert' => DI::l10n()->t('Insert web link'),
200 '$wait' => DI::l10n()->t('Please wait'),
201 '$submit' => DI::l10n()->t('Submit')
207 $_SESSION['return_path'] = DI::args()->getQueryString();
209 if (DI::args()->getArgc() == 1) {
215 $total = DBA::count('mail', ['uid' => local_user()], ['distinct' => true, 'expression' => 'parent-uri']);
217 $pager = new Pager(DI::l10n(), DI::args()->getQueryString());
219 $r = get_messages(local_user(), $pager->getStart(), $pager->getItemsPerPage());
221 if (!DBA::isResult($r)) {
222 notice(DI::l10n()->t('No messages.'));
226 $o .= render_messages($r, 'mail_list.tpl');
228 $o .= $pager->renderFull($total);
233 if ((DI::args()->getArgc() > 1) && (intval(DI::args()->getArgv()[1]))) {
237 $message = DBA::fetchFirst("
238 SELECT `mail`.*, `contact`.`name`, `contact`.`url`, `contact`.`thumb`
240 LEFT JOIN `contact` ON `mail`.`contact-id` = `contact`.`id`
241 WHERE `mail`.`uid` = ? AND `mail`.`id` = ?
244 DI::args()->getArgv()[1]
246 if (DBA::isResult($message)) {
247 $contact_id = $message['contact-id'];
251 $message['parent-uri']
254 if ($message['convid']) {
255 $sql_extra = "AND (`mail`.`parent-uri` = ? OR `mail`.`convid` = ?)";
256 $params[] = $message['convid'];
258 $sql_extra = "AND `mail`.`parent-uri` = ?";
260 $messages_stmt = DBA::p("
261 SELECT `mail`.*, `contact`.`name`, `contact`.`url`, `contact`.`thumb`
263 LEFT JOIN `contact` ON `mail`.`contact-id` = `contact`.`id`
264 WHERE `mail`.`uid` = ?
266 ORDER BY `mail`.`created` ASC",
270 $messages = DBA::toArray($messages_stmt);
272 DBA::update('mail', ['seen' => 1], ['parent-uri' => $message['parent-uri'], 'uid' => local_user()]);
277 if (!DBA::isResult($messages)) {
278 notice(DI::l10n()->t('Message not available.'));
282 $tpl = Renderer::getMarkupTemplate('msg-header.tpl');
283 DI::page()['htmlhead'] .= Renderer::replaceMacros($tpl, [
284 '$baseurl' => DI::baseUrl()->get(true),
285 '$nickname' => $a->getLoggedInUserNickname(),
286 '$linkurl' => DI::l10n()->t('Please enter a link URL:')
293 foreach ($messages as $message) {
294 if ($message['unknown']) {
298 if ($message['from-url'] == $myprofile) {
299 $from_url = $myprofile;
302 $from_url = Contact::magicLink($message['from-url']);
303 $sparkle = ' sparkle';
306 $from_name_e = $message['from-name'];
307 $subject_e = $message['title'];
308 $body_e = BBCode::convertForUriId($message['uri-id'], $message['body']);
309 $to_name_e = $message['name'];
311 $contact = Contact::getByURL($message['from-url'], false, ['thumb', 'addr', 'id', 'avatar']);
312 $from_photo = Contact::getThumb($contact);
315 'id' => $message['id'],
316 'from_name' => $from_name_e,
317 'from_url' => $from_url,
318 'from_addr' => $contact['addr'] ?? $from_url,
319 'sparkle' => $sparkle,
320 'from_photo' => $from_photo,
321 'subject' => $subject_e,
323 'delete' => DI::l10n()->t('Delete message'),
324 'to_name' => $to_name_e,
325 'date' => DateTimeFormat::local($message['created'], DI::l10n()->t('D, d M Y - g:i A')),
326 'ago' => Temporal::getRelativeDate($message['created']),
329 $seen = $message['seen'];
332 $select = $message['name'] . '<input type="hidden" name="recipient" value="' . $contact_id . '" />';
333 $parent = '<input type="hidden" name="replyto" value="' . $message['parent-uri'] . '" />';
335 $tpl = Renderer::getMarkupTemplate('mail_display.tpl');
336 $o = Renderer::replaceMacros($tpl, [
337 '$thread_id' => DI::args()->getArgv()[1],
338 '$thread_subject' => $message['title'],
339 '$thread_seen' => $seen,
340 '$delete' => DI::l10n()->t('Delete conversation'),
341 '$canreply' => (($unknown) ? false : '1'),
342 '$unknown_text' => DI::l10n()->t("No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."),
346 '$header' => DI::l10n()->t('Send Reply'),
347 '$to' => DI::l10n()->t('To:'),
348 '$subject' => DI::l10n()->t('Subject:'),
349 '$subjtxt' => $message['title'],
350 '$readonly' => ' readonly="readonly" style="background: #BBBBBB;" ',
351 '$yourmessage' => DI::l10n()->t('Your message:'),
353 '$select' => $select,
354 '$parent' => $parent,
355 '$upload' => DI::l10n()->t('Upload photo'),
356 '$insert' => DI::l10n()->t('Insert web link'),
357 '$submit' => DI::l10n()->t('Submit'),
358 '$wait' => DI::l10n()->t('Please wait')
371 function get_messages(int $uid, int $start, int $limit)
373 return DBA::toArray(DBA::p('SELECT
404 MAX(`created`) AS `mailcreated`,
405 MIN(`seen`) AS `mailseen`
408 GROUP BY `parent-uri`
409 ) m2 ON m.`parent-uri` = m2.`parent-uri` AND m.`id` = m2.`id`
410 LEFT JOIN `contact` c ON m.`contact-id` = c.`id`
412 ORDER BY m2.`mailcreated` DESC
414 , $uid, $uid, $start, $limit));
417 function render_messages(array $msg, $t)
421 $tpl = Renderer::getMarkupTemplate($t);
424 $myprofile = DI::baseUrl() . '/profile/' . $a->getLoggedInUserNickname();
426 foreach ($msg as $rr) {
427 if ($rr['unknown']) {
428 $participants = DI::l10n()->t("Unknown sender - %s", $rr['from-name']);
429 } elseif (Strings::compareLink($rr['from-url'], $myprofile)) {
430 $participants = DI::l10n()->t("You and %s", $rr['name']);
432 $participants = DI::l10n()->t("%s and You", $rr['from-name']);
435 $body_e = $rr['body'];
436 $to_name_e = $rr['name'];
438 if (is_null($rr['url'])) {
439 // contact-id is pointing to a non existing contact
443 $contact = Contact::getByURL($rr['url'], false, ['thumb', 'addr', 'id', 'avatar']);
444 $from_photo = Contact::getThumb($contact);
446 $rslt .= Renderer::replaceMacros($tpl, [
448 '$from_name' => $participants,
449 '$from_url' => Contact::magicLink($rr['url']),
450 '$from_addr' => $contact['addr'] ?? '',
451 '$sparkle' => ' sparkle',
452 '$from_photo' => $from_photo,
453 '$subject' => $rr['title'],
454 '$delete' => DI::l10n()->t('Delete conversation'),
456 '$to_name' => $to_name_e,
457 '$date' => DateTimeFormat::local($rr['mailcreated'], DI::l10n()->t('D, d M Y - g:i A')),
458 '$ago' => Temporal::getRelativeDate($rr['mailcreated']),
459 '$seen' => $rr['mailseen'],
460 '$count' => DI::l10n()->tt('%d message', '%d messages', $rr['count']),