2010-07-28 11:45:07 +00:00
|
|
|
<?php
|
2018-01-15 17:14:09 +00:00
|
|
|
/**
|
2022-01-02 07:27:47 +00:00
|
|
|
* @copyright Copyright (C) 2010-2022, the Friendica project
|
2020-02-09 15:18:46 +00:00
|
|
|
*
|
|
|
|
* @license GNU AGPL version 3 or any later version
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as
|
|
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*
|
2018-01-15 17:14:09 +00:00
|
|
|
*/
|
2018-01-25 02:08:45 +00:00
|
|
|
|
2017-04-30 04:07:00 +00:00
|
|
|
use Friendica\App;
|
2018-01-15 19:51:56 +00:00
|
|
|
use Friendica\Content\Nav;
|
2018-10-24 06:15:24 +00:00
|
|
|
use Friendica\Content\Pager;
|
2018-02-15 02:33:55 +00:00
|
|
|
use Friendica\Content\Text\BBCode;
|
2018-03-02 23:41:24 +00:00
|
|
|
use Friendica\Core\ACL;
|
2018-10-31 14:35:50 +00:00
|
|
|
use Friendica\Core\Renderer;
|
2022-10-19 04:14:42 +00:00
|
|
|
use Friendica\Core\Session;
|
2018-07-20 12:19:26 +00:00
|
|
|
use Friendica\Database\DBA;
|
2019-12-15 23:28:31 +00:00
|
|
|
use Friendica\DI;
|
2017-12-07 14:04:24 +00:00
|
|
|
use Friendica\Model\Contact;
|
2018-01-15 17:14:09 +00:00
|
|
|
use Friendica\Model\Mail;
|
2019-12-27 21:19:28 +00:00
|
|
|
use Friendica\Module\Security\Login;
|
2018-01-27 02:38:34 +00:00
|
|
|
use Friendica\Util\DateTimeFormat;
|
2018-11-08 15:14:37 +00:00
|
|
|
use Friendica\Util\Strings;
|
2018-02-03 17:25:58 +00:00
|
|
|
use Friendica\Util\Temporal;
|
2017-04-30 04:07:00 +00:00
|
|
|
|
2018-01-01 21:29:48 +00:00
|
|
|
function message_init(App $a)
|
|
|
|
{
|
2015-11-07 17:53:32 +00:00
|
|
|
$tabs = '';
|
|
|
|
|
2021-07-25 14:27:13 +00:00
|
|
|
if (DI::args()->getArgc() > 1 && is_numeric(DI::args()->getArgv()[1])) {
|
2022-10-19 04:14:42 +00:00
|
|
|
$tabs = render_messages(get_messages(Session::getLocalUser(), 0, 5), 'mail_list.tpl');
|
2015-11-08 14:45:42 +00:00
|
|
|
}
|
2015-11-07 17:53:32 +00:00
|
|
|
|
2018-01-15 13:05:12 +00:00
|
|
|
$new = [
|
2022-09-12 21:12:11 +00:00
|
|
|
'label' => DI::l10n()->t('New Message'),
|
|
|
|
'url' => 'message/new',
|
|
|
|
'sel' => DI::args()->getArgc() > 1 && DI::args()->getArgv()[1] == 'new',
|
2015-08-08 15:33:43 +00:00
|
|
|
'accesskey' => 'm',
|
2018-01-15 13:05:12 +00:00
|
|
|
];
|
2015-08-08 15:33:43 +00:00
|
|
|
|
2018-10-31 14:44:06 +00:00
|
|
|
$tpl = Renderer::getMarkupTemplate('message_side.tpl');
|
2019-12-30 19:02:09 +00:00
|
|
|
DI::page()['aside'] = Renderer::replaceMacros($tpl, [
|
2018-01-01 21:29:48 +00:00
|
|
|
'$tabs' => $tabs,
|
2022-09-12 21:12:11 +00:00
|
|
|
'$new' => $new,
|
2018-01-15 13:05:12 +00:00
|
|
|
]);
|
2019-12-30 22:00:08 +00:00
|
|
|
$base = DI::baseUrl();
|
2012-05-07 02:55:39 +00:00
|
|
|
|
2018-10-31 14:44:06 +00:00
|
|
|
$head_tpl = Renderer::getMarkupTemplate('message-head.tpl');
|
2019-12-30 19:02:09 +00:00
|
|
|
DI::page()['htmlhead'] .= Renderer::replaceMacros($head_tpl, [
|
2019-12-30 22:00:08 +00:00
|
|
|
'$baseurl' => DI::baseUrl()->get(true),
|
2022-09-12 21:12:11 +00:00
|
|
|
'$base' => $base
|
2018-01-15 13:05:12 +00:00
|
|
|
]);
|
2012-03-28 13:31:58 +00:00
|
|
|
}
|
|
|
|
|
2018-01-01 21:29:48 +00:00
|
|
|
function message_post(App $a)
|
|
|
|
{
|
2022-10-19 04:14:42 +00:00
|
|
|
if (!Session::getLocalUser()) {
|
2022-10-17 11:27:32 +00:00
|
|
|
DI::sysmsg()->addNotice(DI::l10n()->t('Permission denied.'));
|
2010-07-30 13:09:20 +00:00
|
|
|
return;
|
|
|
|
}
|
2010-07-28 11:45:07 +00:00
|
|
|
|
2021-11-06 20:25:21 +00:00
|
|
|
$replyto = !empty($_REQUEST['replyto']) ? trim($_REQUEST['replyto']) : '';
|
|
|
|
$subject = !empty($_REQUEST['subject']) ? trim($_REQUEST['subject']) : '';
|
|
|
|
$body = !empty($_REQUEST['body']) ? Strings::escapeHtml(trim($_REQUEST['body'])) : '';
|
|
|
|
$recipient = !empty($_REQUEST['recipient']) ? intval($_REQUEST['recipient']) : 0;
|
2010-07-28 11:45:07 +00:00
|
|
|
|
2018-01-15 17:14:09 +00:00
|
|
|
$ret = Mail::send($recipient, $body, $subject, $replyto);
|
2012-03-10 23:50:51 +00:00
|
|
|
$norecip = false;
|
2011-08-19 14:54:41 +00:00
|
|
|
|
2018-01-01 21:29:48 +00:00
|
|
|
switch ($ret) {
|
2011-08-19 14:54:41 +00:00
|
|
|
case -1:
|
2022-10-17 11:27:32 +00:00
|
|
|
DI::sysmsg()->addNotice(DI::l10n()->t('No recipient selected.'));
|
2012-03-10 23:50:51 +00:00
|
|
|
$norecip = true;
|
2011-08-19 14:54:41 +00:00
|
|
|
break;
|
2022-09-12 21:12:11 +00:00
|
|
|
|
2011-08-19 14:54:41 +00:00
|
|
|
case -2:
|
2022-10-17 11:27:32 +00:00
|
|
|
DI::sysmsg()->addNotice(DI::l10n()->t('Unable to locate contact information.'));
|
2011-08-19 14:54:41 +00:00
|
|
|
break;
|
2022-09-12 21:12:11 +00:00
|
|
|
|
2011-08-19 14:54:41 +00:00
|
|
|
case -3:
|
2022-10-17 11:27:32 +00:00
|
|
|
DI::sysmsg()->addNotice(DI::l10n()->t('Message could not be sent.'));
|
2011-12-05 08:35:44 +00:00
|
|
|
break;
|
2022-09-12 21:12:11 +00:00
|
|
|
|
2011-12-05 08:35:44 +00:00
|
|
|
case -4:
|
2022-10-17 11:27:32 +00:00
|
|
|
DI::sysmsg()->addNotice(DI::l10n()->t('Message collection failure.'));
|
2011-12-05 08:35:44 +00:00
|
|
|
break;
|
2010-07-30 13:09:20 +00:00
|
|
|
}
|
2011-08-19 14:54:41 +00:00
|
|
|
|
2012-03-10 23:50:51 +00:00
|
|
|
// fake it to go back to the input form if no recipient listed
|
2017-08-31 12:01:44 +00:00
|
|
|
if ($norecip) {
|
2021-07-25 14:27:13 +00:00
|
|
|
DI::args()->setArgv(['message', 'new']);
|
2018-01-01 21:29:48 +00:00
|
|
|
} else {
|
2019-12-16 00:33:13 +00:00
|
|
|
DI::baseUrl()->redirect(DI::args()->getCommand() . '/' . $ret);
|
2018-01-01 21:29:48 +00:00
|
|
|
}
|
2010-07-30 13:09:20 +00:00
|
|
|
}
|
2010-07-28 11:45:07 +00:00
|
|
|
|
2018-01-01 21:29:48 +00:00
|
|
|
function message_content(App $a)
|
|
|
|
{
|
2010-10-31 23:38:22 +00:00
|
|
|
$o = '';
|
2018-01-15 19:51:56 +00:00
|
|
|
Nav::setSelected('messages');
|
2010-07-28 11:45:07 +00:00
|
|
|
|
2022-10-19 04:14:42 +00:00
|
|
|
if (!Session::getLocalUser()) {
|
2022-10-17 11:27:32 +00:00
|
|
|
DI::sysmsg()->addNotice(DI::l10n()->t('Permission denied.'));
|
2018-10-07 14:34:08 +00:00
|
|
|
return Login::form();
|
2010-07-28 11:45:07 +00:00
|
|
|
}
|
|
|
|
|
2021-08-09 19:48:39 +00:00
|
|
|
$myprofile = DI::baseUrl() . '/profile/' . $a->getLoggedInUserNickname();
|
2010-07-30 13:09:20 +00:00
|
|
|
|
2018-10-31 14:44:06 +00:00
|
|
|
$tpl = Renderer::getMarkupTemplate('mail_head.tpl');
|
2021-07-25 14:27:13 +00:00
|
|
|
if (DI::args()->getArgc() > 1 && DI::args()->getArgv()[1] == 'new') {
|
2018-07-21 11:31:05 +00:00
|
|
|
$button = [
|
2020-01-18 19:52:34 +00:00
|
|
|
'label' => DI::l10n()->t('Discard'),
|
2022-09-12 21:12:11 +00:00
|
|
|
'url' => '/message',
|
|
|
|
'sel' => 'close',
|
2018-07-21 11:31:05 +00:00
|
|
|
];
|
|
|
|
} else {
|
|
|
|
$button = [
|
2022-09-12 21:12:11 +00:00
|
|
|
'label' => DI::l10n()->t('New Message'),
|
|
|
|
'url' => '/message/new',
|
|
|
|
'sel' => 'new',
|
2018-07-21 11:31:05 +00:00
|
|
|
'accesskey' => 'm',
|
|
|
|
];
|
|
|
|
}
|
2018-10-31 14:35:50 +00:00
|
|
|
$header = Renderer::replaceMacros($tpl, [
|
2020-01-18 19:52:34 +00:00
|
|
|
'$messages' => DI::l10n()->t('Messages'),
|
2022-09-12 21:12:11 +00:00
|
|
|
'$button' => $button,
|
2018-01-15 13:05:12 +00:00
|
|
|
]);
|
2010-07-31 04:22:52 +00:00
|
|
|
|
2021-07-25 14:27:13 +00:00
|
|
|
if ((DI::args()->getArgc() == 3) && (DI::args()->getArgv()[1] === 'drop' || DI::args()->getArgv()[1] === 'dropconv')) {
|
|
|
|
if (!intval(DI::args()->getArgv()[2])) {
|
2010-07-31 04:22:52 +00:00
|
|
|
return;
|
2018-01-01 21:29:48 +00:00
|
|
|
}
|
2013-01-26 19:52:21 +00:00
|
|
|
|
2021-07-25 14:27:13 +00:00
|
|
|
$cmd = DI::args()->getArgv()[1];
|
2017-08-31 12:01:44 +00:00
|
|
|
if ($cmd === 'drop') {
|
2022-10-19 04:14:42 +00:00
|
|
|
$message = DBA::selectFirst('mail', ['convid'], ['id' => DI::args()->getArgv()[2], 'uid' => Session::getLocalUser()]);
|
2018-10-02 16:24:16 +00:00
|
|
|
if(!DBA::isResult($message)){
|
2022-10-17 11:27:32 +00:00
|
|
|
DI::sysmsg()->addNotice(DI::l10n()->t('Conversation not found.'));
|
2019-12-15 23:28:31 +00:00
|
|
|
DI::baseUrl()->redirect('message');
|
2018-10-02 11:16:43 +00:00
|
|
|
}
|
|
|
|
|
2022-10-19 04:14:42 +00:00
|
|
|
if (!DBA::delete('mail', ['id' => DI::args()->getArgv()[2], 'uid' => Session::getLocalUser()])) {
|
2022-10-17 11:27:32 +00:00
|
|
|
DI::sysmsg()->addNotice(DI::l10n()->t('Message was not deleted.'));
|
2010-07-31 04:22:52 +00:00
|
|
|
}
|
2018-06-20 20:12:59 +00:00
|
|
|
|
2022-10-19 04:14:42 +00:00
|
|
|
$conversation = DBA::selectFirst('mail', ['id'], ['convid' => $message['convid'], 'uid' => Session::getLocalUser()]);
|
2018-10-02 16:13:58 +00:00
|
|
|
if(!DBA::isResult($conversation)){
|
2019-12-15 23:28:31 +00:00
|
|
|
DI::baseUrl()->redirect('message');
|
2018-10-02 11:16:43 +00:00
|
|
|
}
|
|
|
|
|
2019-12-30 02:50:51 +00:00
|
|
|
DI::baseUrl()->redirect('message/' . $conversation['id'] );
|
2017-08-31 12:01:44 +00:00
|
|
|
} else {
|
2022-10-19 04:14:42 +00:00
|
|
|
$parentmail = DBA::selectFirst('mail', ['parent-uri'], ['id' => DI::args()->getArgv()[2], 'uid' => Session::getLocalUser()]);
|
2021-10-02 18:32:56 +00:00
|
|
|
if (DBA::isResult($parentmail)) {
|
|
|
|
$parent = $parentmail['parent-uri'];
|
2011-11-30 03:52:14 +00:00
|
|
|
|
2022-10-19 04:14:42 +00:00
|
|
|
if (!DBA::delete('mail', ['parent-uri' => $parent, 'uid' => Session::getLocalUser()])) {
|
2022-10-17 11:27:32 +00:00
|
|
|
DI::sysmsg()->addNotice(DI::l10n()->t('Conversation was not removed.'));
|
2018-01-01 21:29:48 +00:00
|
|
|
}
|
2015-01-27 07:04:24 +00:00
|
|
|
}
|
2019-12-15 23:28:31 +00:00
|
|
|
DI::baseUrl()->redirect('message');
|
2015-01-27 07:04:24 +00:00
|
|
|
}
|
2010-07-31 04:22:52 +00:00
|
|
|
}
|
|
|
|
|
2021-07-25 14:27:13 +00:00
|
|
|
if ((DI::args()->getArgc() > 1) && (DI::args()->getArgv()[1] === 'new')) {
|
2011-10-03 01:37:47 +00:00
|
|
|
$o .= $header;
|
2015-01-27 07:04:24 +00:00
|
|
|
|
2018-10-31 14:44:06 +00:00
|
|
|
$tpl = Renderer::getMarkupTemplate('msg-header.tpl');
|
2019-12-30 19:02:09 +00:00
|
|
|
DI::page()['htmlhead'] .= Renderer::replaceMacros($tpl, [
|
2019-12-30 22:00:08 +00:00
|
|
|
'$baseurl' => DI::baseUrl()->get(true),
|
2021-08-09 19:48:39 +00:00
|
|
|
'$nickname' => $a->getLoggedInUserNickname(),
|
2020-01-18 19:52:34 +00:00
|
|
|
'$linkurl' => DI::l10n()->t('Please enter a link URL:')
|
2018-01-15 13:05:12 +00:00
|
|
|
]);
|
2015-01-27 07:04:24 +00:00
|
|
|
|
2021-07-25 14:27:13 +00:00
|
|
|
$recipientId = DI::args()->getArgv()[2] ?? null;
|
2012-05-07 03:06:39 +00:00
|
|
|
|
2020-09-03 14:01:58 +00:00
|
|
|
$select = ACL::getMessageContactSelectHTML($recipientId);
|
2012-05-07 02:55:39 +00:00
|
|
|
|
2018-10-31 14:44:06 +00:00
|
|
|
$tpl = Renderer::getMarkupTemplate('prv_message.tpl');
|
2018-10-31 14:35:50 +00:00
|
|
|
$o .= Renderer::replaceMacros($tpl, [
|
2022-09-12 21:12:11 +00:00
|
|
|
'$header' => DI::l10n()->t('Send Private Message'),
|
|
|
|
'$to' => DI::l10n()->t('To:'),
|
|
|
|
'$subject' => DI::l10n()->t('Subject:'),
|
|
|
|
'$subjtxt' => $_REQUEST['subject'] ?? '',
|
|
|
|
'$text' => $_REQUEST['body'] ?? '',
|
|
|
|
'$readonly' => '',
|
|
|
|
'$yourmessage' => DI::l10n()->t('Your message:'),
|
|
|
|
'$select' => $select,
|
|
|
|
'$parent' => '',
|
|
|
|
'$upload' => DI::l10n()->t('Upload photo'),
|
|
|
|
'$insert' => DI::l10n()->t('Insert web link'),
|
|
|
|
'$wait' => DI::l10n()->t('Please wait'),
|
|
|
|
'$submit' => DI::l10n()->t('Submit')
|
2018-01-15 13:05:12 +00:00
|
|
|
]);
|
2010-07-28 11:45:07 +00:00
|
|
|
return $o;
|
|
|
|
}
|
|
|
|
|
2013-01-26 19:52:21 +00:00
|
|
|
|
2019-12-16 00:30:34 +00:00
|
|
|
$_SESSION['return_path'] = DI::args()->getQueryString();
|
2013-01-26 19:52:21 +00:00
|
|
|
|
2021-07-25 14:27:13 +00:00
|
|
|
if (DI::args()->getArgc() == 1) {
|
2012-04-01 03:08:32 +00:00
|
|
|
|
2015-11-07 17:53:32 +00:00
|
|
|
// List messages
|
2010-07-31 04:22:52 +00:00
|
|
|
|
|
|
|
$o .= $header;
|
2012-07-02 02:17:21 +00:00
|
|
|
|
2022-10-19 04:14:42 +00:00
|
|
|
$total = DBA::count('mail', ['uid' => Session::getLocalUser()], ['distinct' => true, 'expression' => 'parent-uri']);
|
2015-11-07 17:53:32 +00:00
|
|
|
|
2020-02-16 16:53:52 +00:00
|
|
|
$pager = new Pager(DI::l10n(), DI::args()->getQueryString());
|
2018-10-24 06:15:24 +00:00
|
|
|
|
2022-10-19 04:14:42 +00:00
|
|
|
$r = get_messages(Session::getLocalUser(), $pager->getStart(), $pager->getItemsPerPage());
|
2012-07-02 02:17:21 +00:00
|
|
|
|
2018-07-21 12:46:04 +00:00
|
|
|
if (!DBA::isResult($r)) {
|
2022-10-17 11:27:32 +00:00
|
|
|
DI::sysmsg()->addNotice(DI::l10n()->t('No messages.'));
|
2010-07-31 05:27:41 +00:00
|
|
|
return $o;
|
2010-07-28 11:45:07 +00:00
|
|
|
}
|
|
|
|
|
2015-11-07 17:53:32 +00:00
|
|
|
$o .= render_messages($r, 'mail_list.tpl');
|
2015-01-27 07:04:24 +00:00
|
|
|
|
2018-10-24 15:42:59 +00:00
|
|
|
$o .= $pager->renderFull($total);
|
2015-11-07 17:53:32 +00:00
|
|
|
|
2010-07-30 13:09:20 +00:00
|
|
|
return $o;
|
2010-07-28 11:45:07 +00:00
|
|
|
}
|
|
|
|
|
2021-07-25 14:27:13 +00:00
|
|
|
if ((DI::args()->getArgc() > 1) && (intval(DI::args()->getArgv()[1]))) {
|
2010-07-31 04:22:52 +00:00
|
|
|
|
|
|
|
$o .= $header;
|
|
|
|
|
2018-12-30 06:08:51 +00:00
|
|
|
$message = DBA::fetchFirst("
|
|
|
|
SELECT `mail`.*, `contact`.`name`, `contact`.`url`, `contact`.`thumb`
|
|
|
|
FROM `mail`
|
|
|
|
LEFT JOIN `contact` ON `mail`.`contact-id` = `contact`.`id`
|
|
|
|
WHERE `mail`.`uid` = ? AND `mail`.`id` = ?
|
|
|
|
LIMIT 1",
|
2022-10-19 04:14:42 +00:00
|
|
|
Session::getLocalUser(),
|
2021-07-25 14:27:13 +00:00
|
|
|
DI::args()->getArgv()[1]
|
2010-07-31 04:22:52 +00:00
|
|
|
);
|
2018-12-30 06:08:51 +00:00
|
|
|
if (DBA::isResult($message)) {
|
|
|
|
$contact_id = $message['contact-id'];
|
2011-12-07 03:15:42 +00:00
|
|
|
|
2018-12-30 06:08:51 +00:00
|
|
|
$params = [
|
2022-10-19 04:14:42 +00:00
|
|
|
Session::getLocalUser(),
|
2018-12-30 06:08:51 +00:00
|
|
|
$message['parent-uri']
|
|
|
|
];
|
|
|
|
|
|
|
|
if ($message['convid']) {
|
|
|
|
$sql_extra = "AND (`mail`.`parent-uri` = ? OR `mail`.`convid` = ?)";
|
|
|
|
$params[] = $message['convid'];
|
|
|
|
} else {
|
|
|
|
$sql_extra = "AND `mail`.`parent-uri` = ?";
|
|
|
|
}
|
|
|
|
$messages_stmt = DBA::p("
|
|
|
|
SELECT `mail`.*, `contact`.`name`, `contact`.`url`, `contact`.`thumb`
|
|
|
|
FROM `mail`
|
|
|
|
LEFT JOIN `contact` ON `mail`.`contact-id` = `contact`.`id`
|
|
|
|
WHERE `mail`.`uid` = ?
|
|
|
|
$sql_extra
|
|
|
|
ORDER BY `mail`.`created` ASC",
|
|
|
|
...$params
|
2010-07-31 04:22:52 +00:00
|
|
|
);
|
2018-12-30 06:08:51 +00:00
|
|
|
|
|
|
|
$messages = DBA::toArray($messages_stmt);
|
|
|
|
|
2022-10-19 04:14:42 +00:00
|
|
|
DBA::update('mail', ['seen' => 1], ['parent-uri' => $message['parent-uri'], 'uid' => Session::getLocalUser()]);
|
2018-07-10 12:27:56 +00:00
|
|
|
} else {
|
|
|
|
$messages = false;
|
2010-07-31 04:22:52 +00:00
|
|
|
}
|
2018-12-30 06:08:51 +00:00
|
|
|
|
2018-07-21 12:46:04 +00:00
|
|
|
if (!DBA::isResult($messages)) {
|
2022-10-17 11:27:32 +00:00
|
|
|
DI::sysmsg()->addNotice(DI::l10n()->t('Message not available.'));
|
2010-07-31 05:27:41 +00:00
|
|
|
return $o;
|
2010-07-31 04:22:52 +00:00
|
|
|
}
|
|
|
|
|
2018-10-31 14:44:06 +00:00
|
|
|
$tpl = Renderer::getMarkupTemplate('msg-header.tpl');
|
2019-12-30 19:02:09 +00:00
|
|
|
DI::page()['htmlhead'] .= Renderer::replaceMacros($tpl, [
|
2019-12-30 22:00:08 +00:00
|
|
|
'$baseurl' => DI::baseUrl()->get(true),
|
2021-08-09 19:48:39 +00:00
|
|
|
'$nickname' => $a->getLoggedInUserNickname(),
|
2020-01-18 19:52:34 +00:00
|
|
|
'$linkurl' => DI::l10n()->t('Please enter a link URL:')
|
2018-01-15 13:05:12 +00:00
|
|
|
]);
|
2010-07-31 04:22:52 +00:00
|
|
|
|
2018-01-15 13:05:12 +00:00
|
|
|
$mails = [];
|
2012-03-28 13:31:58 +00:00
|
|
|
$seen = 0;
|
2012-04-01 07:59:35 +00:00
|
|
|
$unknown = false;
|
|
|
|
|
2018-01-01 21:29:48 +00:00
|
|
|
foreach ($messages as $message) {
|
2018-12-30 06:08:51 +00:00
|
|
|
if ($message['unknown']) {
|
2012-04-01 07:59:35 +00:00
|
|
|
$unknown = true;
|
2018-12-30 06:08:51 +00:00
|
|
|
}
|
|
|
|
|
2017-08-31 12:01:44 +00:00
|
|
|
if ($message['from-url'] == $myprofile) {
|
2010-09-28 02:48:45 +00:00
|
|
|
$from_url = $myprofile;
|
|
|
|
$sparkle = '';
|
2016-05-29 17:35:23 +00:00
|
|
|
} else {
|
2018-06-02 08:05:06 +00:00
|
|
|
$from_url = Contact::magicLink($message['from-url']);
|
2010-09-28 02:48:45 +00:00
|
|
|
$sparkle = ' sparkle';
|
|
|
|
}
|
2012-04-25 12:41:32 +00:00
|
|
|
|
2017-11-27 06:44:49 +00:00
|
|
|
$from_name_e = $message['from-name'];
|
|
|
|
$subject_e = $message['title'];
|
2021-07-10 12:58:48 +00:00
|
|
|
$body_e = BBCode::convertForUriId($message['uri-id'], $message['body']);
|
2017-11-27 06:44:49 +00:00
|
|
|
$to_name_e = $message['name'];
|
2012-12-22 19:57:29 +00:00
|
|
|
|
2022-06-04 07:57:11 +00:00
|
|
|
$contact = Contact::getByURL($message['from-url'], false, ['thumb', 'addr', 'id', 'avatar', 'url']);
|
2021-07-06 10:36:00 +00:00
|
|
|
$from_photo = Contact::getThumb($contact);
|
2016-06-10 05:44:32 +00:00
|
|
|
|
2018-01-15 13:05:12 +00:00
|
|
|
$mails[] = [
|
2022-09-12 21:12:11 +00:00
|
|
|
'id' => $message['id'],
|
|
|
|
'from_name' => $from_name_e,
|
|
|
|
'from_url' => $from_url,
|
|
|
|
'from_addr' => $contact['addr'] ?? $from_url,
|
|
|
|
'sparkle' => $sparkle,
|
2020-07-28 19:30:55 +00:00
|
|
|
'from_photo' => $from_photo,
|
2022-09-12 21:12:11 +00:00
|
|
|
'subject' => $subject_e,
|
|
|
|
'body' => $body_e,
|
|
|
|
'delete' => DI::l10n()->t('Delete message'),
|
|
|
|
'to_name' => $to_name_e,
|
|
|
|
'date' => DateTimeFormat::local($message['created'], DI::l10n()->t('D, d M Y - g:i A')),
|
|
|
|
'ago' => Temporal::getRelativeDate($message['created']),
|
2018-01-15 13:05:12 +00:00
|
|
|
];
|
2015-01-27 07:04:24 +00:00
|
|
|
|
2012-03-28 13:31:58 +00:00
|
|
|
$seen = $message['seen'];
|
2010-07-31 04:22:52 +00:00
|
|
|
}
|
2012-05-11 03:01:13 +00:00
|
|
|
|
2020-09-03 14:01:58 +00:00
|
|
|
$select = $message['name'] . '<input type="hidden" name="recipient" value="' . $contact_id . '" />';
|
2010-07-31 04:22:52 +00:00
|
|
|
$parent = '<input type="hidden" name="replyto" value="' . $message['parent-uri'] . '" />';
|
2012-03-28 13:31:58 +00:00
|
|
|
|
2018-10-31 14:44:06 +00:00
|
|
|
$tpl = Renderer::getMarkupTemplate('mail_display.tpl');
|
2018-10-31 14:35:50 +00:00
|
|
|
$o = Renderer::replaceMacros($tpl, [
|
2022-09-12 21:12:11 +00:00
|
|
|
'$thread_id' => DI::args()->getArgv()[1],
|
2012-03-28 13:31:58 +00:00
|
|
|
'$thread_subject' => $message['title'],
|
2022-09-12 21:12:11 +00:00
|
|
|
'$thread_seen' => $seen,
|
|
|
|
'$delete' => DI::l10n()->t('Delete conversation'),
|
|
|
|
'$canreply' => (($unknown) ? false : '1'),
|
|
|
|
'$unknown_text' => DI::l10n()->t("No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."),
|
|
|
|
'$mails' => $mails,
|
2012-03-28 13:31:58 +00:00
|
|
|
// reply
|
2022-09-12 21:12:11 +00:00
|
|
|
'$header' => DI::l10n()->t('Send Reply'),
|
|
|
|
'$to' => DI::l10n()->t('To:'),
|
|
|
|
'$subject' => DI::l10n()->t('Subject:'),
|
|
|
|
'$subjtxt' => $message['title'],
|
|
|
|
'$readonly' => ' readonly="readonly" style="background: #BBBBBB;" ',
|
|
|
|
'$yourmessage' => DI::l10n()->t('Your message:'),
|
|
|
|
'$text' => '',
|
|
|
|
'$select' => $select,
|
|
|
|
'$parent' => $parent,
|
|
|
|
'$upload' => DI::l10n()->t('Upload photo'),
|
|
|
|
'$insert' => DI::l10n()->t('Insert web link'),
|
|
|
|
'$submit' => DI::l10n()->t('Submit'),
|
|
|
|
'$wait' => DI::l10n()->t('Please wait')
|
2018-01-15 13:05:12 +00:00
|
|
|
]);
|
2010-07-31 04:22:52 +00:00
|
|
|
|
|
|
|
return $o;
|
|
|
|
}
|
2015-11-07 17:53:32 +00:00
|
|
|
}
|
|
|
|
|
2018-12-19 11:41:08 +00:00
|
|
|
/**
|
|
|
|
* @param int $uid
|
|
|
|
* @param int $start
|
|
|
|
* @param int $limit
|
|
|
|
* @return array
|
|
|
|
*/
|
2022-09-12 21:12:11 +00:00
|
|
|
function get_messages(int $uid, int $start, int $limit): array
|
2018-01-01 21:29:48 +00:00
|
|
|
{
|
2018-12-19 11:41:08 +00:00
|
|
|
return DBA::toArray(DBA::p('SELECT
|
|
|
|
m.`id`,
|
|
|
|
m.`uid`,
|
|
|
|
m.`guid`,
|
|
|
|
m.`from-name`,
|
|
|
|
m.`from-photo`,
|
|
|
|
m.`from-url`,
|
|
|
|
m.`contact-id`,
|
|
|
|
m.`convid`,
|
|
|
|
m.`title`,
|
|
|
|
m.`body`,
|
|
|
|
m.`seen`,
|
|
|
|
m.`reply`,
|
|
|
|
m.`replied`,
|
|
|
|
m.`unknown`,
|
|
|
|
m.`uri`,
|
|
|
|
m.`parent-uri`,
|
|
|
|
m.`created`,
|
|
|
|
c.`name`,
|
|
|
|
c.`url`,
|
|
|
|
c.`thumb`,
|
|
|
|
c.`network`,
|
2022-09-12 21:12:11 +00:00
|
|
|
m2.`count`,
|
|
|
|
m2.`mailcreated`,
|
|
|
|
m2.`mailseen`
|
|
|
|
FROM `mail` m
|
|
|
|
JOIN (
|
|
|
|
SELECT
|
|
|
|
`parent-uri`,
|
|
|
|
MIN(`id`) AS `id`,
|
|
|
|
COUNT(*) AS `count`,
|
|
|
|
MAX(`created`) AS `mailcreated`,
|
|
|
|
MIN(`seen`) AS `mailseen`
|
|
|
|
FROM `mail`
|
|
|
|
WHERE `uid` = ?
|
|
|
|
GROUP BY `parent-uri`
|
|
|
|
) m2 ON m.`parent-uri` = m2.`parent-uri` AND m.`id` = m2.`id`
|
2018-12-19 11:41:08 +00:00
|
|
|
LEFT JOIN `contact` c ON m.`contact-id` = c.`id`
|
|
|
|
WHERE m.`uid` = ?
|
|
|
|
ORDER BY m2.`mailcreated` DESC
|
|
|
|
LIMIT ?, ?'
|
|
|
|
, $uid, $uid, $start, $limit));
|
2015-11-07 17:53:32 +00:00
|
|
|
}
|
|
|
|
|
2022-09-12 21:12:11 +00:00
|
|
|
function render_messages(array $msg, string $t): string
|
2018-01-01 21:29:48 +00:00
|
|
|
{
|
2020-01-04 22:42:01 +00:00
|
|
|
$a = DI::app();
|
2015-11-07 17:53:32 +00:00
|
|
|
|
2018-10-31 14:44:06 +00:00
|
|
|
$tpl = Renderer::getMarkupTemplate($t);
|
2015-11-07 17:53:32 +00:00
|
|
|
$rslt = '';
|
|
|
|
|
2021-08-09 19:48:39 +00:00
|
|
|
$myprofile = DI::baseUrl() . '/profile/' . $a->getLoggedInUserNickname();
|
2015-11-07 17:53:32 +00:00
|
|
|
|
2018-01-01 21:29:48 +00:00
|
|
|
foreach ($msg as $rr) {
|
|
|
|
if ($rr['unknown']) {
|
2020-01-18 19:52:34 +00:00
|
|
|
$participants = DI::l10n()->t("Unknown sender - %s", $rr['from-name']);
|
2018-11-08 15:46:50 +00:00
|
|
|
} elseif (Strings::compareLink($rr['from-url'], $myprofile)) {
|
2020-01-18 19:52:34 +00:00
|
|
|
$participants = DI::l10n()->t("You and %s", $rr['name']);
|
2018-01-01 21:29:48 +00:00
|
|
|
} else {
|
2020-01-18 19:52:34 +00:00
|
|
|
$participants = DI::l10n()->t("%s and You", $rr['from-name']);
|
2018-01-01 21:29:48 +00:00
|
|
|
}
|
2015-11-07 17:53:32 +00:00
|
|
|
|
2017-11-27 06:44:49 +00:00
|
|
|
$body_e = $rr['body'];
|
|
|
|
$to_name_e = $rr['name'];
|
2015-11-07 17:53:32 +00:00
|
|
|
|
2021-03-18 13:11:32 +00:00
|
|
|
if (is_null($rr['url'])) {
|
|
|
|
// contact-id is pointing to a non existing contact
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2022-06-04 07:57:11 +00:00
|
|
|
$contact = Contact::getByURL($rr['url'], false, ['thumb', 'addr', 'id', 'avatar', 'url']);
|
2021-07-06 10:36:00 +00:00
|
|
|
$from_photo = Contact::getThumb($contact);
|
2016-06-10 05:44:32 +00:00
|
|
|
|
2018-10-31 14:35:50 +00:00
|
|
|
$rslt .= Renderer::replaceMacros($tpl, [
|
2022-09-12 21:12:11 +00:00
|
|
|
'$id' => $rr['id'],
|
|
|
|
'$from_name' => $participants,
|
|
|
|
'$from_url' => Contact::magicLink($rr['url']),
|
|
|
|
'$from_addr' => $contact['addr'] ?? '',
|
|
|
|
'$sparkle' => ' sparkle',
|
2020-07-28 19:30:55 +00:00
|
|
|
'$from_photo' => $from_photo,
|
2022-09-12 21:12:11 +00:00
|
|
|
'$subject' => $rr['title'],
|
|
|
|
'$delete' => DI::l10n()->t('Delete conversation'),
|
|
|
|
'$body' => $body_e,
|
|
|
|
'$to_name' => $to_name_e,
|
|
|
|
'$date' => DateTimeFormat::local($rr['mailcreated'], DI::l10n()->t('D, d M Y - g:i A')),
|
|
|
|
'$ago' => Temporal::getRelativeDate($rr['mailcreated']),
|
|
|
|
'$seen' => $rr['mailseen'],
|
|
|
|
'$count' => DI::l10n()->tt('%d message', '%d messages', $rr['count']),
|
2018-01-15 13:05:12 +00:00
|
|
|
]);
|
2015-11-07 17:53:32 +00:00
|
|
|
}
|
2010-07-31 04:22:52 +00:00
|
|
|
|
2015-11-07 17:53:32 +00:00
|
|
|
return $rslt;
|
2011-05-23 09:39:57 +00:00
|
|
|
}
|