2010-07-28 11:45:07 +00:00
|
|
|
<?php
|
2018-01-15 17:14:09 +00:00
|
|
|
/**
|
2020-02-09 15:18:46 +00:00
|
|
|
* @copyright Copyright (C) 2020, Friendica
|
|
|
|
*
|
|
|
|
* @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;
|
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;
|
2020-02-04 21:10:19 +00:00
|
|
|
use Friendica\Model\Notify\Type;
|
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 = '';
|
|
|
|
|
2018-01-01 21:29:48 +00:00
|
|
|
if ($a->argc > 1 && is_numeric($a->argv[1])) {
|
|
|
|
$tabs = render_messages(get_messages(local_user(), 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 = [
|
2020-01-18 19:52:34 +00:00
|
|
|
'label' => DI::l10n()->t('New Message'),
|
2016-02-17 22:47:32 +00:00
|
|
|
'url' => 'message/new',
|
2018-01-01 21:29:48 +00:00
|
|
|
'sel' => $a->argc > 1 && $a->argv[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,
|
|
|
|
'$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),
|
2012-07-28 15:57:16 +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)
|
|
|
|
{
|
|
|
|
if (!local_user()) {
|
2020-07-23 06:25:01 +00:00
|
|
|
notice(DI::l10n()->t('Permission denied.'));
|
2010-07-30 13:09:20 +00:00
|
|
|
return;
|
|
|
|
}
|
2010-07-28 11:45:07 +00:00
|
|
|
|
2018-11-30 14:06:22 +00:00
|
|
|
$replyto = !empty($_REQUEST['replyto']) ? Strings::escapeTags(trim($_REQUEST['replyto'])) : '';
|
|
|
|
$subject = !empty($_REQUEST['subject']) ? Strings::escapeTags(trim($_REQUEST['subject'])) : '';
|
|
|
|
$body = !empty($_REQUEST['body']) ? Strings::escapeHtml(trim($_REQUEST['body'])) : '';
|
2020-09-03 14:01:58 +00:00
|
|
|
$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:
|
2020-07-23 06:25:01 +00:00
|
|
|
notice(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;
|
|
|
|
case -2:
|
2020-07-23 06:25:01 +00:00
|
|
|
notice(DI::l10n()->t('Unable to locate contact information.'));
|
2011-08-19 14:54:41 +00:00
|
|
|
break;
|
|
|
|
case -3:
|
2020-07-23 06:25:01 +00:00
|
|
|
notice(DI::l10n()->t('Message could not be sent.'));
|
2011-12-05 08:35:44 +00:00
|
|
|
break;
|
|
|
|
case -4:
|
2020-07-23 06:25:01 +00:00
|
|
|
notice(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) {
|
2012-03-10 23:50:51 +00:00
|
|
|
$a->argc = 2;
|
|
|
|
$a->argv[1] = '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
|
|
|
|
2018-01-01 21:29:48 +00:00
|
|
|
if (!local_user()) {
|
2020-07-23 06:25:01 +00:00
|
|
|
notice(DI::l10n()->t('Permission denied.'));
|
2018-10-07 14:34:08 +00:00
|
|
|
return Login::form();
|
2010-07-28 11:45:07 +00:00
|
|
|
}
|
|
|
|
|
2019-12-30 22:00:08 +00:00
|
|
|
$myprofile = DI::baseUrl() . '/profile/' . $a->user['nickname'];
|
2010-07-30 13:09:20 +00:00
|
|
|
|
2018-10-31 14:44:06 +00:00
|
|
|
$tpl = Renderer::getMarkupTemplate('mail_head.tpl');
|
2018-07-21 11:31:05 +00:00
|
|
|
if ($a->argc > 1 && $a->argv[1] == 'new') {
|
|
|
|
$button = [
|
2020-01-18 19:52:34 +00:00
|
|
|
'label' => DI::l10n()->t('Discard'),
|
2018-07-21 11:31:05 +00:00
|
|
|
'url' => '/message',
|
|
|
|
'sel' => 'close',
|
|
|
|
];
|
|
|
|
} else {
|
|
|
|
$button = [
|
2020-01-18 19:52:34 +00:00
|
|
|
'label' => DI::l10n()->t('New Message'),
|
2018-07-21 11:31:05 +00:00
|
|
|
'url' => '/message/new',
|
|
|
|
'sel' => 'new',
|
|
|
|
'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'),
|
2018-07-21 11:31:05 +00:00
|
|
|
'$button' => $button,
|
2018-01-15 13:05:12 +00:00
|
|
|
]);
|
2010-07-31 04:22:52 +00:00
|
|
|
|
2017-08-31 12:01:44 +00:00
|
|
|
if (($a->argc == 3) && ($a->argv[1] === 'drop' || $a->argv[1] === 'dropconv')) {
|
2018-01-01 21:29:48 +00:00
|
|
|
if (!intval($a->argv[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
|
|
|
|
2010-07-31 04:22:52 +00:00
|
|
|
$cmd = $a->argv[1];
|
2017-08-31 12:01:44 +00:00
|
|
|
if ($cmd === 'drop') {
|
2018-10-02 16:13:58 +00:00
|
|
|
$message = DBA::selectFirst('mail', ['convid'], ['id' => $a->argv[2], 'uid' => local_user()]);
|
2018-10-02 16:24:16 +00:00
|
|
|
if(!DBA::isResult($message)){
|
2020-07-23 06:25:01 +00:00
|
|
|
notice(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
|
|
|
}
|
|
|
|
|
2020-07-23 06:11:21 +00:00
|
|
|
if (!DBA::delete('mail', ['id' => $a->argv[2], 'uid' => local_user()])) {
|
2020-07-23 06:25:01 +00:00
|
|
|
notice(DI::l10n()->t('Message was not deleted.'));
|
2010-07-31 04:22:52 +00:00
|
|
|
}
|
2018-06-20 20:12:59 +00:00
|
|
|
|
2018-10-02 16:13:58 +00:00
|
|
|
$conversation = DBA::selectFirst('mail', ['id'], ['convid' => $message['convid'], 'uid' => local_user()]);
|
|
|
|
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 {
|
2011-11-30 03:52:14 +00:00
|
|
|
$r = q("SELECT `parent-uri`,`convid` FROM `mail` WHERE `id` = %d AND `uid` = %d LIMIT 1",
|
2010-07-31 04:22:52 +00:00
|
|
|
intval($a->argv[2]),
|
2010-11-07 23:46:49 +00:00
|
|
|
intval(local_user())
|
2010-07-31 04:22:52 +00:00
|
|
|
);
|
2018-07-21 12:46:04 +00:00
|
|
|
if (DBA::isResult($r)) {
|
2010-07-31 04:22:52 +00:00
|
|
|
$parent = $r[0]['parent-uri'];
|
2011-11-30 03:52:14 +00:00
|
|
|
|
2020-07-23 06:11:21 +00:00
|
|
|
if (!DBA::delete('mail', ['parent-uri' => $parent, 'uid' => local_user()])) {
|
2020-07-23 06:25:01 +00:00
|
|
|
notice(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
|
|
|
}
|
|
|
|
|
2017-08-31 12:01:44 +00:00
|
|
|
if (($a->argc > 1) && ($a->argv[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),
|
2011-03-21 07:21:35 +00:00
|
|
|
'$nickname' => $a->user['nickname'],
|
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
|
|
|
|
2020-09-03 14:01:58 +00:00
|
|
|
$recipientId = $a->argv[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, [
|
2020-01-18 19:52:34 +00:00
|
|
|
'$header' => DI::l10n()->t('Send Private Message'),
|
|
|
|
'$to' => DI::l10n()->t('To:'),
|
|
|
|
'$subject' => DI::l10n()->t('Subject:'),
|
2019-10-15 13:01:17 +00:00
|
|
|
'$subjtxt' => $_REQUEST['subject'] ?? '',
|
|
|
|
'$text' => $_REQUEST['body'] ?? '',
|
2018-12-25 16:37:32 +00:00
|
|
|
'$readonly' => '',
|
2020-01-18 19:52:34 +00:00
|
|
|
'$yourmessage'=> DI::l10n()->t('Your message:'),
|
2018-12-25 16:37:32 +00:00
|
|
|
'$select' => $select,
|
|
|
|
'$parent' => '',
|
2020-01-18 19:52:34 +00: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 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
|
|
|
|
2016-12-20 09:58:55 +00:00
|
|
|
if ($a->argc == 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
|
|
|
|
2018-10-24 06:15:24 +00:00
|
|
|
$total = 0;
|
2017-05-07 19:39:00 +00:00
|
|
|
$r = q("SELECT count(*) AS `total`, ANY_VALUE(`created`) AS `created` FROM `mail`
|
2017-04-14 22:42:44 +00:00
|
|
|
WHERE `mail`.`uid` = %d GROUP BY `parent-uri` ORDER BY `created` DESC",
|
2016-04-30 12:13:43 +00:00
|
|
|
intval(local_user())
|
2010-07-30 13:09:20 +00:00
|
|
|
);
|
2018-07-21 12:46:04 +00:00
|
|
|
if (DBA::isResult($r)) {
|
2018-10-24 06:15:24 +00:00
|
|
|
$total = $r[0]['total'];
|
2016-03-01 13:33:54 +00:00
|
|
|
}
|
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
|
|
|
|
|
|
|
$r = get_messages(local_user(), $pager->getStart(), $pager->getItemsPerPage());
|
2012-07-02 02:17:21 +00:00
|
|
|
|
2018-07-21 12:46:04 +00:00
|
|
|
if (!DBA::isResult($r)) {
|
2020-07-23 06:25:01 +00:00
|
|
|
notice(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
|
|
|
}
|
|
|
|
|
2017-08-31 12:01:44 +00:00
|
|
|
if (($a->argc > 1) && (intval($a->argv[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",
|
|
|
|
local_user(),
|
|
|
|
$a->argv[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 = [
|
|
|
|
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 04:22:52 +00:00
|
|
|
);
|
2018-12-30 06:08:51 +00:00
|
|
|
|
|
|
|
$messages = DBA::toArray($messages_stmt);
|
|
|
|
|
|
|
|
DBA::update('mail', ['seen' => 1], ['parent-uri' => $message['parent-uri'], 'uid' => local_user()]);
|
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)) {
|
2020-07-23 06:25:01 +00:00
|
|
|
notice(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),
|
2010-12-06 03:28:47 +00:00
|
|
|
'$nickname' => $a->user['nickname'],
|
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
|
|
|
|
2012-07-07 22:20:24 +00:00
|
|
|
$extracted = item_extract_images($message['body']);
|
2018-01-01 21:29:48 +00:00
|
|
|
if ($extracted['images']) {
|
2012-07-07 22:20:24 +00:00
|
|
|
$message['body'] = item_redir_and_replace_images($extracted['body'], $extracted['images'], $message['contact-id']);
|
2018-01-01 21:29:48 +00:00
|
|
|
}
|
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'];
|
2019-06-20 19:00:33 +00:00
|
|
|
$body_e = BBCode::convert($message['body']);
|
2017-11-27 06:44:49 +00:00
|
|
|
$to_name_e = $message['name'];
|
2012-12-22 19:57:29 +00:00
|
|
|
|
2020-07-28 19:30:55 +00:00
|
|
|
$contact = Contact::getByURL($message['from-url'], false, ['thumb', 'addr', 'id', 'avatar']);
|
|
|
|
$from_photo = Contact::getThumb($contact, $message['from-photo']);
|
2016-06-10 05:44:32 +00:00
|
|
|
|
2018-01-15 13:05:12 +00:00
|
|
|
$mails[] = [
|
2017-03-21 16:02:59 +00:00
|
|
|
'id' => $message['id'],
|
|
|
|
'from_name' => $from_name_e,
|
|
|
|
'from_url' => $from_url,
|
2017-09-01 19:32:12 +00:00
|
|
|
'from_addr' => $contact['addr'],
|
2017-03-21 16:02:59 +00:00
|
|
|
'sparkle' => $sparkle,
|
2020-07-28 19:30:55 +00:00
|
|
|
'from_photo' => $from_photo,
|
2017-03-21 16:02:59 +00:00
|
|
|
'subject' => $subject_e,
|
|
|
|
'body' => $body_e,
|
2020-01-18 19:52:34 +00:00
|
|
|
'delete' => DI::l10n()->t('Delete message'),
|
2017-03-21 16:02:59 +00:00
|
|
|
'to_name' => $to_name_e,
|
2020-01-18 19:52:34 +00:00
|
|
|
'date' => DateTimeFormat::local($message['created'], DI::l10n()->t('D, d M Y - g:i A')),
|
2018-02-03 17:25:58 +00:00
|
|
|
'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, [
|
2012-03-28 13:31:58 +00:00
|
|
|
'$thread_id' => $a->argv[1],
|
|
|
|
'$thread_subject' => $message['title'],
|
|
|
|
'$thread_seen' => $seen,
|
2020-01-18 19:52:34 +00:00
|
|
|
'$delete' => DI::l10n()->t('Delete conversation'),
|
2012-04-01 07:59:35 +00:00
|
|
|
'$canreply' => (($unknown) ? false : '1'),
|
2020-01-18 19:52:34 +00: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 13:31:58 +00:00
|
|
|
'$mails' => $mails,
|
2015-01-27 07:04:24 +00:00
|
|
|
|
2012-03-28 13:31:58 +00:00
|
|
|
// reply
|
2020-01-18 19:52:34 +00:00
|
|
|
'$header' => DI::l10n()->t('Send Reply'),
|
|
|
|
'$to' => DI::l10n()->t('To:'),
|
|
|
|
'$subject' => DI::l10n()->t('Subject:'),
|
2018-01-01 21:29:48 +00:00
|
|
|
'$subjtxt' => $message['title'],
|
2012-12-26 17:42:01 +00:00
|
|
|
'$readonly' => ' readonly="readonly" style="background: #BBBBBB;" ',
|
2020-01-18 19:52:34 +00:00
|
|
|
'$yourmessage' => DI::l10n()->t('Your message:'),
|
2012-12-26 17:42:01 +00:00
|
|
|
'$text' => '',
|
|
|
|
'$select' => $select,
|
|
|
|
'$parent' => $parent,
|
2020-01-18 19:52:34 +00: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 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
|
|
|
|
*/
|
|
|
|
function get_messages($uid, $start, $limit)
|
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`,
|
|
|
|
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 17:53:32 +00:00
|
|
|
}
|
|
|
|
|
2018-01-01 21:29:48 +00:00
|
|
|
function render_messages(array $msg, $t)
|
|
|
|
{
|
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 = '';
|
|
|
|
|
2019-12-30 22:00:08 +00:00
|
|
|
$myprofile = DI::baseUrl() . '/profile/' . $a->user['nickname'];
|
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
|
|
|
|
2020-07-28 19:30:55 +00:00
|
|
|
$contact = Contact::getByURL($rr['url'], false, ['thumb', 'addr', 'id', 'avatar']);
|
|
|
|
$from_photo = Contact::getThumb($contact, $rr['thumb'] ?: $rr['from-photo']);
|
2016-06-10 05:44:32 +00:00
|
|
|
|
2018-10-31 14:35:50 +00:00
|
|
|
$rslt .= Renderer::replaceMacros($tpl, [
|
2015-11-07 17:53:32 +00:00
|
|
|
'$id' => $rr['id'],
|
|
|
|
'$from_name' => $participants,
|
2018-06-02 08:05:06 +00:00
|
|
|
'$from_url' => Contact::magicLink($rr['url']),
|
2019-10-15 13:01:17 +00:00
|
|
|
'$from_addr' => $contact['addr'] ?? '',
|
2015-11-07 17:53:32 +00:00
|
|
|
'$sparkle' => ' sparkle',
|
2020-07-28 19:30:55 +00:00
|
|
|
'$from_photo' => $from_photo,
|
2018-12-30 06:04:52 +00:00
|
|
|
'$subject' => $rr['title'],
|
2020-01-18 19:52:34 +00:00
|
|
|
'$delete' => DI::l10n()->t('Delete conversation'),
|
2015-11-07 17:53:32 +00:00
|
|
|
'$body' => $body_e,
|
|
|
|
'$to_name' => $to_name_e,
|
2020-01-18 19:52:34 +00:00
|
|
|
'$date' => DateTimeFormat::local($rr['mailcreated'], DI::l10n()->t('D, d M Y - g:i A')),
|
2018-02-03 17:25:58 +00:00
|
|
|
'$ago' => Temporal::getRelativeDate($rr['mailcreated']),
|
2015-11-07 17:53:32 +00:00
|
|
|
'$seen' => $rr['mailseen'],
|
2020-01-18 19:53:01 +00:00
|
|
|
'$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
|
|
|
}
|