2010-07-28 13:45:07 +02:00
|
|
|
<?php
|
2018-01-15 18:14:09 +01:00
|
|
|
/**
|
2021-03-29 08:40:20 +02:00
|
|
|
* @copyright Copyright (C) 2010-2021, the Friendica project
|
2020-02-09 16:18:46 +01: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 18:14:09 +01:00
|
|
|
*/
|
2018-01-25 03:08:45 +01:00
|
|
|
|
2017-04-30 06:07:00 +02:00
|
|
|
use Friendica\App;
|
2018-01-15 20:51:56 +01:00
|
|
|
use Friendica\Content\Nav;
|
2018-10-24 08:15:24 +02:00
|
|
|
use Friendica\Content\Pager;
|
2018-02-15 03:33:55 +01:00
|
|
|
use Friendica\Content\Text\BBCode;
|
2018-03-03 00:41:24 +01:00
|
|
|
use Friendica\Core\ACL;
|
2018-10-31 15:35:50 +01:00
|
|
|
use Friendica\Core\Renderer;
|
2018-07-20 14:19:26 +02:00
|
|
|
use Friendica\Database\DBA;
|
2019-12-16 00:28:31 +01:00
|
|
|
use Friendica\DI;
|
2017-12-07 15:04:24 +01:00
|
|
|
use Friendica\Model\Contact;
|
2018-01-15 18:14:09 +01:00
|
|
|
use Friendica\Model\Mail;
|
2019-12-27 22:19:28 +01:00
|
|
|
use Friendica\Module\Security\Login;
|
2018-01-27 03:38:34 +01:00
|
|
|
use Friendica\Util\DateTimeFormat;
|
2018-11-08 16:14:37 +01:00
|
|
|
use Friendica\Util\Strings;
|
2018-02-03 18:25:58 +01:00
|
|
|
use Friendica\Util\Temporal;
|
2017-04-30 06:07:00 +02:00
|
|
|
|
2018-01-01 22:29:48 +01:00
|
|
|
function message_init(App $a)
|
|
|
|
{
|
2015-11-07 18:53:32 +01:00
|
|
|
$tabs = '';
|
|
|
|
|
2021-07-25 16:27:13 +02:00
|
|
|
if (DI::args()->getArgc() > 1 && is_numeric(DI::args()->getArgv()[1])) {
|
2018-01-01 22:29:48 +01:00
|
|
|
$tabs = render_messages(get_messages(local_user(), 0, 5), 'mail_list.tpl');
|
2015-11-08 15:45:42 +01:00
|
|
|
}
|
2015-11-07 18:53:32 +01:00
|
|
|
|
2018-01-15 14:05:12 +01:00
|
|
|
$new = [
|
2020-01-18 20:52:34 +01:00
|
|
|
'label' => DI::l10n()->t('New Message'),
|
2016-02-17 23:47:32 +01:00
|
|
|
'url' => 'message/new',
|
2021-07-25 16:27:13 +02:00
|
|
|
'sel' => DI::args()->getArgc() > 1 && DI::args()->getArgv()[1] == 'new',
|
2015-08-08 17:33:43 +02:00
|
|
|
'accesskey' => 'm',
|
2018-01-15 14:05:12 +01:00
|
|
|
];
|
2015-08-08 17:33:43 +02:00
|
|
|
|
2018-10-31 15:44:06 +01:00
|
|
|
$tpl = Renderer::getMarkupTemplate('message_side.tpl');
|
2019-12-30 20:02:09 +01:00
|
|
|
DI::page()['aside'] = Renderer::replaceMacros($tpl, [
|
2018-01-01 22:29:48 +01:00
|
|
|
'$tabs' => $tabs,
|
|
|
|
'$new' => $new,
|
2018-01-15 14:05:12 +01:00
|
|
|
]);
|
2019-12-30 23:00:08 +01:00
|
|
|
$base = DI::baseUrl();
|
2012-05-07 04:55:39 +02:00
|
|
|
|
2018-10-31 15:44:06 +01:00
|
|
|
$head_tpl = Renderer::getMarkupTemplate('message-head.tpl');
|
2019-12-30 20:02:09 +01:00
|
|
|
DI::page()['htmlhead'] .= Renderer::replaceMacros($head_tpl, [
|
2019-12-30 23:00:08 +01:00
|
|
|
'$baseurl' => DI::baseUrl()->get(true),
|
2012-07-28 17:57:16 +02:00
|
|
|
'$base' => $base
|
2018-01-15 14:05:12 +01:00
|
|
|
]);
|
2012-03-28 15:31:58 +02:00
|
|
|
}
|
|
|
|
|
2018-01-01 22:29:48 +01:00
|
|
|
function message_post(App $a)
|
|
|
|
{
|
|
|
|
if (!local_user()) {
|
2020-07-23 08:25:01 +02:00
|
|
|
notice(DI::l10n()->t('Permission denied.'));
|
2010-07-30 15:09:20 +02:00
|
|
|
return;
|
|
|
|
}
|
2010-07-28 13:45:07 +02:00
|
|
|
|
2021-11-06 21:25:21 +01: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 13:45:07 +02:00
|
|
|
|
2018-01-15 18:14:09 +01:00
|
|
|
$ret = Mail::send($recipient, $body, $subject, $replyto);
|
2012-03-11 00:50:51 +01:00
|
|
|
$norecip = false;
|
2011-08-19 16:54:41 +02:00
|
|
|
|
2018-01-01 22:29:48 +01:00
|
|
|
switch ($ret) {
|
2011-08-19 16:54:41 +02:00
|
|
|
case -1:
|
2020-07-23 08:25:01 +02:00
|
|
|
notice(DI::l10n()->t('No recipient selected.'));
|
2012-03-11 00:50:51 +01:00
|
|
|
$norecip = true;
|
2011-08-19 16:54:41 +02:00
|
|
|
break;
|
|
|
|
case -2:
|
2020-07-23 08:25:01 +02:00
|
|
|
notice(DI::l10n()->t('Unable to locate contact information.'));
|
2011-08-19 16:54:41 +02:00
|
|
|
break;
|
|
|
|
case -3:
|
2020-07-23 08:25:01 +02:00
|
|
|
notice(DI::l10n()->t('Message could not be sent.'));
|
2011-12-05 09:35:44 +01:00
|
|
|
break;
|
|
|
|
case -4:
|
2020-07-23 08:25:01 +02:00
|
|
|
notice(DI::l10n()->t('Message collection failure.'));
|
2011-12-05 09:35:44 +01:00
|
|
|
break;
|
2010-07-30 15:09:20 +02:00
|
|
|
}
|
2011-08-19 16:54:41 +02:00
|
|
|
|
2012-03-11 00:50:51 +01:00
|
|
|
// fake it to go back to the input form if no recipient listed
|
2017-08-31 14:01:44 +02:00
|
|
|
if ($norecip) {
|
2021-07-25 16:27:13 +02:00
|
|
|
DI::args()->setArgv(['message', 'new']);
|
2018-01-01 22:29:48 +01:00
|
|
|
} else {
|
2019-12-16 01:33:13 +01:00
|
|
|
DI::baseUrl()->redirect(DI::args()->getCommand() . '/' . $ret);
|
2018-01-01 22:29:48 +01:00
|
|
|
}
|
2010-07-30 15:09:20 +02:00
|
|
|
}
|
2010-07-28 13:45:07 +02:00
|
|
|
|
2018-01-01 22:29:48 +01:00
|
|
|
function message_content(App $a)
|
|
|
|
{
|
2010-11-01 00:38:22 +01:00
|
|
|
$o = '';
|
2018-01-15 20:51:56 +01:00
|
|
|
Nav::setSelected('messages');
|
2010-07-28 13:45:07 +02:00
|
|
|
|
2018-01-01 22:29:48 +01:00
|
|
|
if (!local_user()) {
|
2020-07-23 08:25:01 +02:00
|
|
|
notice(DI::l10n()->t('Permission denied.'));
|
2018-10-07 16:34:08 +02:00
|
|
|
return Login::form();
|
2010-07-28 13:45:07 +02:00
|
|
|
}
|
|
|
|
|
2021-08-09 21:48:39 +02:00
|
|
|
$myprofile = DI::baseUrl() . '/profile/' . $a->getLoggedInUserNickname();
|
2010-07-30 15:09:20 +02:00
|
|
|
|
2018-10-31 15:44:06 +01:00
|
|
|
$tpl = Renderer::getMarkupTemplate('mail_head.tpl');
|
2021-07-25 16:27:13 +02:00
|
|
|
if (DI::args()->getArgc() > 1 && DI::args()->getArgv()[1] == 'new') {
|
2018-07-21 13:31:05 +02:00
|
|
|
$button = [
|
2020-01-18 20:52:34 +01:00
|
|
|
'label' => DI::l10n()->t('Discard'),
|
2018-07-21 13:31:05 +02:00
|
|
|
'url' => '/message',
|
|
|
|
'sel' => 'close',
|
|
|
|
];
|
|
|
|
} else {
|
|
|
|
$button = [
|
2020-01-18 20:52:34 +01:00
|
|
|
'label' => DI::l10n()->t('New Message'),
|
2018-07-21 13:31:05 +02:00
|
|
|
'url' => '/message/new',
|
|
|
|
'sel' => 'new',
|
|
|
|
'accesskey' => 'm',
|
|
|
|
];
|
|
|
|
}
|
2018-10-31 15:35:50 +01:00
|
|
|
$header = Renderer::replaceMacros($tpl, [
|
2020-01-18 20:52:34 +01:00
|
|
|
'$messages' => DI::l10n()->t('Messages'),
|
2018-07-21 13:31:05 +02:00
|
|
|
'$button' => $button,
|
2018-01-15 14:05:12 +01:00
|
|
|
]);
|
2010-07-31 06:22:52 +02:00
|
|
|
|
2021-07-25 16:27:13 +02: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 06:22:52 +02:00
|
|
|
return;
|
2018-01-01 22:29:48 +01:00
|
|
|
}
|
2013-01-26 20:52:21 +01:00
|
|
|
|
2021-07-25 16:27:13 +02:00
|
|
|
$cmd = DI::args()->getArgv()[1];
|
2017-08-31 14:01:44 +02:00
|
|
|
if ($cmd === 'drop') {
|
2021-07-25 16:27:13 +02:00
|
|
|
$message = DBA::selectFirst('mail', ['convid'], ['id' => DI::args()->getArgv()[2], 'uid' => local_user()]);
|
2018-10-02 18:24:16 +02:00
|
|
|
if(!DBA::isResult($message)){
|
2020-07-23 08:25:01 +02:00
|
|
|
notice(DI::l10n()->t('Conversation not found.'));
|
2019-12-16 00:28:31 +01:00
|
|
|
DI::baseUrl()->redirect('message');
|
2018-10-02 13:16:43 +02:00
|
|
|
}
|
|
|
|
|
2021-07-25 16:27:13 +02:00
|
|
|
if (!DBA::delete('mail', ['id' => DI::args()->getArgv()[2], 'uid' => local_user()])) {
|
2020-07-23 08:25:01 +02:00
|
|
|
notice(DI::l10n()->t('Message was not deleted.'));
|
2010-07-31 06:22:52 +02:00
|
|
|
}
|
2018-06-20 22:12:59 +02:00
|
|
|
|
2018-10-02 18:13:58 +02:00
|
|
|
$conversation = DBA::selectFirst('mail', ['id'], ['convid' => $message['convid'], 'uid' => local_user()]);
|
|
|
|
if(!DBA::isResult($conversation)){
|
2019-12-16 00:28:31 +01:00
|
|
|
DI::baseUrl()->redirect('message');
|
2018-10-02 13:16:43 +02:00
|
|
|
}
|
|
|
|
|
2019-12-30 03:50:51 +01:00
|
|
|
DI::baseUrl()->redirect('message/' . $conversation['id'] );
|
2017-08-31 14:01:44 +02:00
|
|
|
} else {
|
2021-10-02 20:32:56 +02:00
|
|
|
$parentmail = DBA::selectFirst('mail', ['parent-uri'], ['id' => DI::args()->getArgv()[2], 'uid' => local_user()]);
|
|
|
|
if (DBA::isResult($parentmail)) {
|
|
|
|
$parent = $parentmail['parent-uri'];
|
2011-11-30 04:52:14 +01:00
|
|
|
|
2020-07-23 08:11:21 +02:00
|
|
|
if (!DBA::delete('mail', ['parent-uri' => $parent, 'uid' => local_user()])) {
|
2020-07-23 08:25:01 +02:00
|
|
|
notice(DI::l10n()->t('Conversation was not removed.'));
|
2018-01-01 22:29:48 +01:00
|
|
|
}
|
2015-01-27 08:04:24 +01:00
|
|
|
}
|
2019-12-16 00:28:31 +01:00
|
|
|
DI::baseUrl()->redirect('message');
|
2015-01-27 08:04:24 +01:00
|
|
|
}
|
2010-07-31 06:22:52 +02:00
|
|
|
}
|
|
|
|
|
2021-07-25 16:27:13 +02:00
|
|
|
if ((DI::args()->getArgc() > 1) && (DI::args()->getArgv()[1] === 'new')) {
|
2011-10-03 03:37:47 +02:00
|
|
|
$o .= $header;
|
2015-01-27 08:04:24 +01:00
|
|
|
|
2018-10-31 15:44:06 +01:00
|
|
|
$tpl = Renderer::getMarkupTemplate('msg-header.tpl');
|
2019-12-30 20:02:09 +01:00
|
|
|
DI::page()['htmlhead'] .= Renderer::replaceMacros($tpl, [
|
2019-12-30 23:00:08 +01:00
|
|
|
'$baseurl' => DI::baseUrl()->get(true),
|
2021-08-09 21:48:39 +02:00
|
|
|
'$nickname' => $a->getLoggedInUserNickname(),
|
2020-01-18 20:52:34 +01:00
|
|
|
'$linkurl' => DI::l10n()->t('Please enter a link URL:')
|
2018-01-15 14:05:12 +01:00
|
|
|
]);
|
2015-01-27 08:04:24 +01:00
|
|
|
|
2021-07-25 16:27:13 +02:00
|
|
|
$recipientId = DI::args()->getArgv()[2] ?? null;
|
2012-05-07 05:06:39 +02:00
|
|
|
|
2020-09-03 16:01:58 +02:00
|
|
|
$select = ACL::getMessageContactSelectHTML($recipientId);
|
2012-05-07 04:55:39 +02:00
|
|
|
|
2018-10-31 15:44:06 +01:00
|
|
|
$tpl = Renderer::getMarkupTemplate('prv_message.tpl');
|
2018-10-31 15:35:50 +01:00
|
|
|
$o .= Renderer::replaceMacros($tpl, [
|
2020-01-18 20:52:34 +01:00
|
|
|
'$header' => DI::l10n()->t('Send Private Message'),
|
|
|
|
'$to' => DI::l10n()->t('To:'),
|
|
|
|
'$subject' => DI::l10n()->t('Subject:'),
|
2019-10-15 15:01:17 +02:00
|
|
|
'$subjtxt' => $_REQUEST['subject'] ?? '',
|
|
|
|
'$text' => $_REQUEST['body'] ?? '',
|
2018-12-25 17:37:32 +01:00
|
|
|
'$readonly' => '',
|
2020-01-18 20:52:34 +01:00
|
|
|
'$yourmessage'=> DI::l10n()->t('Your message:'),
|
2018-12-25 17:37:32 +01:00
|
|
|
'$select' => $select,
|
|
|
|
'$parent' => '',
|
2020-01-18 20:52:34 +01:00
|
|
|
'$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 14:05:12 +01:00
|
|
|
]);
|
2010-07-28 13:45:07 +02:00
|
|
|
return $o;
|
|
|
|
}
|
|
|
|
|
2013-01-26 20:52:21 +01:00
|
|
|
|
2019-12-16 01:30:34 +01:00
|
|
|
$_SESSION['return_path'] = DI::args()->getQueryString();
|
2013-01-26 20:52:21 +01:00
|
|
|
|
2021-07-25 16:27:13 +02:00
|
|
|
if (DI::args()->getArgc() == 1) {
|
2012-04-01 05:08:32 +02:00
|
|
|
|
2015-11-07 18:53:32 +01:00
|
|
|
// List messages
|
2010-07-31 06:22:52 +02:00
|
|
|
|
|
|
|
$o .= $header;
|
2012-07-02 04:17:21 +02:00
|
|
|
|
2021-10-08 08:01:07 +02:00
|
|
|
$total = DBA::count('mail', ['uid' => local_user()], ['distinct' => true, 'expression' => 'parent-uri']);
|
2015-11-07 18:53:32 +01:00
|
|
|
|
2020-02-16 17:53:52 +01:00
|
|
|
$pager = new Pager(DI::l10n(), DI::args()->getQueryString());
|
2018-10-24 08:15:24 +02:00
|
|
|
|
|
|
|
$r = get_messages(local_user(), $pager->getStart(), $pager->getItemsPerPage());
|
2012-07-02 04:17:21 +02:00
|
|
|
|
2018-07-21 14:46:04 +02:00
|
|
|
if (!DBA::isResult($r)) {
|
2020-07-23 08:25:01 +02:00
|
|
|
notice(DI::l10n()->t('No messages.'));
|
2010-07-31 07:27:41 +02:00
|
|
|
return $o;
|
2010-07-28 13:45:07 +02:00
|
|
|
}
|
|
|
|
|
2015-11-07 18:53:32 +01:00
|
|
|
$o .= render_messages($r, 'mail_list.tpl');
|
2015-01-27 08:04:24 +01:00
|
|
|
|
2018-10-24 17:42:59 +02:00
|
|
|
$o .= $pager->renderFull($total);
|
2015-11-07 18:53:32 +01:00
|
|
|
|
2010-07-30 15:09:20 +02:00
|
|
|
return $o;
|
2010-07-28 13:45:07 +02:00
|
|
|
}
|
|
|
|
|
2021-07-25 16:27:13 +02:00
|
|
|
if ((DI::args()->getArgc() > 1) && (intval(DI::args()->getArgv()[1]))) {
|
2010-07-31 06:22:52 +02:00
|
|
|
|
|
|
|
$o .= $header;
|
|
|
|
|
2018-12-30 07:08:51 +01: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",
|
|
|
|
local_user(),
|
2021-07-25 16:27:13 +02:00
|
|
|
DI::args()->getArgv()[1]
|
2010-07-31 06:22:52 +02:00
|
|
|
);
|
2018-12-30 07:08:51 +01:00
|
|
|
if (DBA::isResult($message)) {
|
|
|
|
$contact_id = $message['contact-id'];
|
2011-12-07 04:15:42 +01:00
|
|
|
|
2018-12-30 07:08:51 +01:00
|
|
|
$params = [
|
|
|
|
local_user(),
|
|
|
|
$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 06:22:52 +02:00
|
|
|
);
|
2018-12-30 07:08:51 +01:00
|
|
|
|
|
|
|
$messages = DBA::toArray($messages_stmt);
|
|
|
|
|
|
|
|
DBA::update('mail', ['seen' => 1], ['parent-uri' => $message['parent-uri'], 'uid' => local_user()]);
|
2018-07-10 14:27:56 +02:00
|
|
|
} else {
|
|
|
|
$messages = false;
|
2010-07-31 06:22:52 +02:00
|
|
|
}
|
2018-12-30 07:08:51 +01:00
|
|
|
|
2018-07-21 14:46:04 +02:00
|
|
|
if (!DBA::isResult($messages)) {
|
2020-07-23 08:25:01 +02:00
|
|
|
notice(DI::l10n()->t('Message not available.'));
|
2010-07-31 07:27:41 +02:00
|
|
|
return $o;
|
2010-07-31 06:22:52 +02:00
|
|
|
}
|
|
|
|
|
2018-10-31 15:44:06 +01:00
|
|
|
$tpl = Renderer::getMarkupTemplate('msg-header.tpl');
|
2019-12-30 20:02:09 +01:00
|
|
|
DI::page()['htmlhead'] .= Renderer::replaceMacros($tpl, [
|
2019-12-30 23:00:08 +01:00
|
|
|
'$baseurl' => DI::baseUrl()->get(true),
|
2021-08-09 21:48:39 +02:00
|
|
|
'$nickname' => $a->getLoggedInUserNickname(),
|
2020-01-18 20:52:34 +01:00
|
|
|
'$linkurl' => DI::l10n()->t('Please enter a link URL:')
|
2018-01-15 14:05:12 +01:00
|
|
|
]);
|
2010-07-31 06:22:52 +02:00
|
|
|
|
2018-01-15 14:05:12 +01:00
|
|
|
$mails = [];
|
2012-03-28 15:31:58 +02:00
|
|
|
$seen = 0;
|
2012-04-01 09:59:35 +02:00
|
|
|
$unknown = false;
|
|
|
|
|
2018-01-01 22:29:48 +01:00
|
|
|
foreach ($messages as $message) {
|
2018-12-30 07:08:51 +01:00
|
|
|
if ($message['unknown']) {
|
2012-04-01 09:59:35 +02:00
|
|
|
$unknown = true;
|
2018-12-30 07:08:51 +01:00
|
|
|
}
|
|
|
|
|
2017-08-31 14:01:44 +02:00
|
|
|
if ($message['from-url'] == $myprofile) {
|
2010-09-28 04:48:45 +02:00
|
|
|
$from_url = $myprofile;
|
|
|
|
$sparkle = '';
|
2016-05-29 19:35:23 +02:00
|
|
|
} else {
|
2018-06-02 10:05:06 +02:00
|
|
|
$from_url = Contact::magicLink($message['from-url']);
|
2010-09-28 04:48:45 +02:00
|
|
|
$sparkle = ' sparkle';
|
|
|
|
}
|
2012-04-25 14:41:32 +02:00
|
|
|
|
2017-11-27 07:44:49 +01:00
|
|
|
$from_name_e = $message['from-name'];
|
|
|
|
$subject_e = $message['title'];
|
2021-07-10 14:58:48 +02:00
|
|
|
$body_e = BBCode::convertForUriId($message['uri-id'], $message['body']);
|
2017-11-27 07:44:49 +01:00
|
|
|
$to_name_e = $message['name'];
|
2012-12-22 20:57:29 +01:00
|
|
|
|
2020-07-28 21:30:55 +02:00
|
|
|
$contact = Contact::getByURL($message['from-url'], false, ['thumb', 'addr', 'id', 'avatar']);
|
2021-07-06 12:36:00 +02:00
|
|
|
$from_photo = Contact::getThumb($contact);
|
2016-06-10 07:44:32 +02:00
|
|
|
|
2018-01-15 14:05:12 +01:00
|
|
|
$mails[] = [
|
2017-03-21 17:02:59 +01:00
|
|
|
'id' => $message['id'],
|
|
|
|
'from_name' => $from_name_e,
|
|
|
|
'from_url' => $from_url,
|
2020-12-29 22:38:23 +01:00
|
|
|
'from_addr' => $contact['addr'] ?? $from_url,
|
2017-03-21 17:02:59 +01:00
|
|
|
'sparkle' => $sparkle,
|
2020-07-28 21:30:55 +02:00
|
|
|
'from_photo' => $from_photo,
|
2017-03-21 17:02:59 +01:00
|
|
|
'subject' => $subject_e,
|
|
|
|
'body' => $body_e,
|
2020-01-18 20:52:34 +01:00
|
|
|
'delete' => DI::l10n()->t('Delete message'),
|
2017-03-21 17:02:59 +01:00
|
|
|
'to_name' => $to_name_e,
|
2020-01-18 20:52:34 +01:00
|
|
|
'date' => DateTimeFormat::local($message['created'], DI::l10n()->t('D, d M Y - g:i A')),
|
2018-02-03 18:25:58 +01:00
|
|
|
'ago' => Temporal::getRelativeDate($message['created']),
|
2018-01-15 14:05:12 +01:00
|
|
|
];
|
2015-01-27 08:04:24 +01:00
|
|
|
|
2012-03-28 15:31:58 +02:00
|
|
|
$seen = $message['seen'];
|
2010-07-31 06:22:52 +02:00
|
|
|
}
|
2012-05-11 05:01:13 +02:00
|
|
|
|
2020-09-03 16:01:58 +02:00
|
|
|
$select = $message['name'] . '<input type="hidden" name="recipient" value="' . $contact_id . '" />';
|
2010-07-31 06:22:52 +02:00
|
|
|
$parent = '<input type="hidden" name="replyto" value="' . $message['parent-uri'] . '" />';
|
2012-03-28 15:31:58 +02:00
|
|
|
|
2018-10-31 15:44:06 +01:00
|
|
|
$tpl = Renderer::getMarkupTemplate('mail_display.tpl');
|
2018-10-31 15:35:50 +01:00
|
|
|
$o = Renderer::replaceMacros($tpl, [
|
2021-07-25 16:27:13 +02:00
|
|
|
'$thread_id' => DI::args()->getArgv()[1],
|
2012-03-28 15:31:58 +02:00
|
|
|
'$thread_subject' => $message['title'],
|
|
|
|
'$thread_seen' => $seen,
|
2020-01-18 20:52:34 +01:00
|
|
|
'$delete' => DI::l10n()->t('Delete conversation'),
|
2012-04-01 09:59:35 +02:00
|
|
|
'$canreply' => (($unknown) ? false : '1'),
|
2020-01-18 20:52:34 +01:00
|
|
|
'$unknown_text' => DI::l10n()->t("No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."),
|
2012-03-28 15:31:58 +02:00
|
|
|
'$mails' => $mails,
|
2015-01-27 08:04:24 +01:00
|
|
|
|
2012-03-28 15:31:58 +02:00
|
|
|
// reply
|
2020-01-18 20:52:34 +01:00
|
|
|
'$header' => DI::l10n()->t('Send Reply'),
|
|
|
|
'$to' => DI::l10n()->t('To:'),
|
|
|
|
'$subject' => DI::l10n()->t('Subject:'),
|
2018-01-01 22:29:48 +01:00
|
|
|
'$subjtxt' => $message['title'],
|
2012-12-26 18:42:01 +01:00
|
|
|
'$readonly' => ' readonly="readonly" style="background: #BBBBBB;" ',
|
2020-01-18 20:52:34 +01:00
|
|
|
'$yourmessage' => DI::l10n()->t('Your message:'),
|
2012-12-26 18:42:01 +01:00
|
|
|
'$text' => '',
|
|
|
|
'$select' => $select,
|
|
|
|
'$parent' => $parent,
|
2020-01-18 20:52:34 +01:00
|
|
|
'$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 14:05:12 +01:00
|
|
|
]);
|
2010-07-31 06:22:52 +02:00
|
|
|
|
|
|
|
return $o;
|
|
|
|
}
|
2015-11-07 18:53:32 +01:00
|
|
|
}
|
|
|
|
|
2018-12-19 12:41:08 +01:00
|
|
|
/**
|
|
|
|
* @param int $uid
|
|
|
|
* @param int $start
|
|
|
|
* @param int $limit
|
|
|
|
* @return array
|
|
|
|
*/
|
2020-11-27 12:24:31 +01:00
|
|
|
function get_messages(int $uid, int $start, int $limit)
|
2018-01-01 22:29:48 +01:00
|
|
|
{
|
2018-12-19 12:41:08 +01: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`,
|
|
|
|
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`
|
|
|
|
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 18:53:32 +01:00
|
|
|
}
|
|
|
|
|
2018-01-01 22:29:48 +01:00
|
|
|
function render_messages(array $msg, $t)
|
|
|
|
{
|
2020-01-04 23:42:01 +01:00
|
|
|
$a = DI::app();
|
2015-11-07 18:53:32 +01:00
|
|
|
|
2018-10-31 15:44:06 +01:00
|
|
|
$tpl = Renderer::getMarkupTemplate($t);
|
2015-11-07 18:53:32 +01:00
|
|
|
$rslt = '';
|
|
|
|
|
2021-08-09 21:48:39 +02:00
|
|
|
$myprofile = DI::baseUrl() . '/profile/' . $a->getLoggedInUserNickname();
|
2015-11-07 18:53:32 +01:00
|
|
|
|
2018-01-01 22:29:48 +01:00
|
|
|
foreach ($msg as $rr) {
|
|
|
|
if ($rr['unknown']) {
|
2020-01-18 20:52:34 +01:00
|
|
|
$participants = DI::l10n()->t("Unknown sender - %s", $rr['from-name']);
|
2018-11-08 16:46:50 +01:00
|
|
|
} elseif (Strings::compareLink($rr['from-url'], $myprofile)) {
|
2020-01-18 20:52:34 +01:00
|
|
|
$participants = DI::l10n()->t("You and %s", $rr['name']);
|
2018-01-01 22:29:48 +01:00
|
|
|
} else {
|
2020-01-18 20:52:34 +01:00
|
|
|
$participants = DI::l10n()->t("%s and You", $rr['from-name']);
|
2018-01-01 22:29:48 +01:00
|
|
|
}
|
2015-11-07 18:53:32 +01:00
|
|
|
|
2017-11-27 07:44:49 +01:00
|
|
|
$body_e = $rr['body'];
|
|
|
|
$to_name_e = $rr['name'];
|
2015-11-07 18:53:32 +01:00
|
|
|
|
2021-03-18 14:11:32 +01:00
|
|
|
if (is_null($rr['url'])) {
|
|
|
|
// contact-id is pointing to a non existing contact
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2020-07-28 21:30:55 +02:00
|
|
|
$contact = Contact::getByURL($rr['url'], false, ['thumb', 'addr', 'id', 'avatar']);
|
2021-07-06 12:36:00 +02:00
|
|
|
$from_photo = Contact::getThumb($contact);
|
2016-06-10 07:44:32 +02:00
|
|
|
|
2018-10-31 15:35:50 +01:00
|
|
|
$rslt .= Renderer::replaceMacros($tpl, [
|
2015-11-07 18:53:32 +01:00
|
|
|
'$id' => $rr['id'],
|
|
|
|
'$from_name' => $participants,
|
2018-06-02 10:05:06 +02:00
|
|
|
'$from_url' => Contact::magicLink($rr['url']),
|
2019-10-15 15:01:17 +02:00
|
|
|
'$from_addr' => $contact['addr'] ?? '',
|
2015-11-07 18:53:32 +01:00
|
|
|
'$sparkle' => ' sparkle',
|
2020-07-28 21:30:55 +02:00
|
|
|
'$from_photo' => $from_photo,
|
2018-12-30 07:04:52 +01:00
|
|
|
'$subject' => $rr['title'],
|
2020-01-18 20:52:34 +01:00
|
|
|
'$delete' => DI::l10n()->t('Delete conversation'),
|
2015-11-07 18:53:32 +01:00
|
|
|
'$body' => $body_e,
|
|
|
|
'$to_name' => $to_name_e,
|
2020-01-18 20:52:34 +01:00
|
|
|
'$date' => DateTimeFormat::local($rr['mailcreated'], DI::l10n()->t('D, d M Y - g:i A')),
|
2018-02-03 18:25:58 +01:00
|
|
|
'$ago' => Temporal::getRelativeDate($rr['mailcreated']),
|
2015-11-07 18:53:32 +01:00
|
|
|
'$seen' => $rr['mailseen'],
|
2020-01-18 20:53:01 +01:00
|
|
|
'$count' => DI::l10n()->tt('%d message', '%d messages', $rr['count']),
|
2018-01-15 14:05:12 +01:00
|
|
|
]);
|
2015-11-07 18:53:32 +01:00
|
|
|
}
|
2010-07-31 06:22:52 +02:00
|
|
|
|
2015-11-07 18:53:32 +01:00
|
|
|
return $rslt;
|
2011-05-23 11:39:57 +02:00
|
|
|
}
|