2010-07-28 13:45:07 +02:00
|
|
|
<?php
|
2018-01-15 18:14:09 +01:00
|
|
|
/**
|
|
|
|
* @file mod/message.php
|
|
|
|
*/
|
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;
|
2017-11-11 13:21:15 +01:00
|
|
|
use Friendica\Content\Smilies;
|
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-01-21 19:33:59 +01:00
|
|
|
use Friendica\Core\L10n;
|
2017-08-26 08:04:21 +02:00
|
|
|
use Friendica\Core\System;
|
2018-07-20 14:19:26 +02:00
|
|
|
use Friendica\Database\DBA;
|
2017-12-07 15:04:24 +01:00
|
|
|
use Friendica\Model\Contact;
|
2018-01-15 18:14:09 +01:00
|
|
|
use Friendica\Model\Mail;
|
2018-01-27 03:38:34 +01:00
|
|
|
use Friendica\Util\DateTimeFormat;
|
2018-07-31 04:06:22 +02:00
|
|
|
use Friendica\Util\Proxy as ProxyUtils;
|
2018-02-03 18:25:58 +01:00
|
|
|
use Friendica\Util\Temporal;
|
2018-10-07 16:34:08 +02:00
|
|
|
use Friendica\Module\Login;
|
2017-04-30 06:07:00 +02:00
|
|
|
|
2017-12-12 05:52:33 +01:00
|
|
|
require_once 'include/conversation.php';
|
2010-07-28 13:45:07 +02:00
|
|
|
|
2018-01-01 22:29:48 +01:00
|
|
|
function message_init(App $a)
|
|
|
|
{
|
2015-11-07 18:53:32 +01:00
|
|
|
$tabs = '';
|
|
|
|
|
2018-01-01 22:29:48 +01: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 15:45:42 +01:00
|
|
|
}
|
2015-11-07 18:53:32 +01:00
|
|
|
|
2018-01-15 14:05:12 +01:00
|
|
|
$new = [
|
2018-01-22 15:16:25 +01:00
|
|
|
'label' => L10n::t('New Message'),
|
2016-02-17 23:47:32 +01:00
|
|
|
'url' => 'message/new',
|
2018-01-01 22:29:48 +01:00
|
|
|
'sel' => $a->argc > 1 && $a->argv[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
|
|
|
|
2012-03-28 15:31:58 +02:00
|
|
|
$tpl = get_markup_template('message_side.tpl');
|
2018-01-15 14:05:12 +01:00
|
|
|
$a->page['aside'] = replace_macros($tpl, [
|
2018-01-01 22:29:48 +01:00
|
|
|
'$tabs' => $tabs,
|
|
|
|
'$new' => $new,
|
2018-01-15 14:05:12 +01:00
|
|
|
]);
|
2017-08-26 09:32:10 +02:00
|
|
|
$base = System::baseUrl();
|
2012-05-07 04:55:39 +02:00
|
|
|
|
2012-07-28 17:57:16 +02:00
|
|
|
$head_tpl = get_markup_template('message-head.tpl');
|
2018-01-15 14:05:12 +01:00
|
|
|
$a->page['htmlhead'] .= replace_macros($head_tpl, [
|
2017-08-26 09:32:10 +02:00
|
|
|
'$baseurl' => System::baseUrl(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()) {
|
2018-01-21 19:33:59 +01:00
|
|
|
notice(L10n::t('Permission denied.') . EOL);
|
2010-07-30 15:09:20 +02:00
|
|
|
return;
|
|
|
|
}
|
2010-07-28 13:45:07 +02:00
|
|
|
|
2018-01-01 22:29:48 +01:00
|
|
|
$replyto = x($_REQUEST, 'replyto') ? notags(trim($_REQUEST['replyto'])) : '';
|
|
|
|
$subject = x($_REQUEST, 'subject') ? notags(trim($_REQUEST['subject'])) : '';
|
|
|
|
$body = x($_REQUEST, 'body') ? escape_tags(trim($_REQUEST['body'])) : '';
|
|
|
|
$recipient = x($_REQUEST, 'messageto') ? intval($_REQUEST['messageto']) : 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:
|
2018-01-21 19:33:59 +01:00
|
|
|
notice(L10n::t('No recipient selected.') . EOL);
|
2012-03-11 00:50:51 +01:00
|
|
|
$norecip = true;
|
2011-08-19 16:54:41 +02:00
|
|
|
break;
|
|
|
|
case -2:
|
2018-01-21 19:33:59 +01:00
|
|
|
notice(L10n::t('Unable to locate contact information.') . EOL);
|
2011-08-19 16:54:41 +02:00
|
|
|
break;
|
|
|
|
case -3:
|
2018-01-21 19:33:59 +01:00
|
|
|
notice(L10n::t('Message could not be sent.') . EOL);
|
2011-12-05 09:35:44 +01:00
|
|
|
break;
|
|
|
|
case -4:
|
2018-01-21 19:33:59 +01:00
|
|
|
notice(L10n::t('Message collection failure.') . EOL);
|
2011-12-05 09:35:44 +01:00
|
|
|
break;
|
2011-08-19 16:54:41 +02:00
|
|
|
default:
|
2018-01-22 15:16:25 +01:00
|
|
|
info(L10n::t('Message sent.') . EOL);
|
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) {
|
2012-03-11 00:50:51 +01:00
|
|
|
$a->argc = 2;
|
|
|
|
$a->argv[1] = 'new';
|
2018-01-01 22:29:48 +01:00
|
|
|
} else {
|
2018-09-20 14:41:52 +02:00
|
|
|
goaway($a->cmd . '/' . $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()) {
|
2018-01-21 19:33:59 +01:00
|
|
|
notice(L10n::t('Permission denied.') . EOL);
|
2018-10-07 16:34:08 +02:00
|
|
|
return Login::form();
|
2010-07-28 13:45:07 +02:00
|
|
|
}
|
|
|
|
|
2018-01-01 22:29:48 +01:00
|
|
|
$myprofile = System::baseUrl() . '/profile/' . $a->user['nickname'];
|
2010-07-30 15:09:20 +02:00
|
|
|
|
2011-05-11 13:37:13 +02:00
|
|
|
$tpl = get_markup_template('mail_head.tpl');
|
2018-07-21 13:31:05 +02:00
|
|
|
if ($a->argc > 1 && $a->argv[1] == 'new') {
|
|
|
|
$button = [
|
|
|
|
'label' => L10n::t('Discard'),
|
|
|
|
'url' => '/message',
|
|
|
|
'sel' => 'close',
|
|
|
|
];
|
|
|
|
} else {
|
|
|
|
$button = [
|
|
|
|
'label' => L10n::t('New Message'),
|
|
|
|
'url' => '/message/new',
|
|
|
|
'sel' => 'new',
|
|
|
|
'accesskey' => 'm',
|
|
|
|
];
|
|
|
|
}
|
2018-01-15 14:05:12 +01:00
|
|
|
$header = replace_macros($tpl, [
|
2018-01-22 15:16:25 +01:00
|
|
|
'$messages' => 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
|
|
|
|
2017-08-31 14:01:44 +02:00
|
|
|
if (($a->argc == 3) && ($a->argv[1] === 'drop' || $a->argv[1] === 'dropconv')) {
|
2018-01-01 22:29:48 +01:00
|
|
|
if (!intval($a->argv[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
|
|
|
|
|
|
|
// Check if we should do HTML-based delete confirmation
|
2018-07-10 14:27:56 +02:00
|
|
|
if (!empty($_REQUEST['confirm'])) {
|
2013-01-26 20:52:21 +01:00
|
|
|
// <form> can't take arguments in its "action" parameter
|
|
|
|
// so add any arguments as hidden inputs
|
|
|
|
$query = explode_querystring($a->query_string);
|
2018-01-15 14:05:12 +01:00
|
|
|
$inputs = [];
|
2018-01-01 22:29:48 +01:00
|
|
|
foreach ($query['args'] as $arg) {
|
2017-08-31 14:01:44 +02:00
|
|
|
if (strpos($arg, 'confirm=') === false) {
|
2013-01-26 20:52:21 +01:00
|
|
|
$arg_parts = explode('=', $arg);
|
2018-01-15 14:05:12 +01:00
|
|
|
$inputs[] = ['name' => $arg_parts[0], 'value' => $arg_parts[1]];
|
2013-01-26 20:52:21 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//$a->page['aside'] = '';
|
2018-01-15 14:05:12 +01:00
|
|
|
return replace_macros(get_markup_template('confirm.tpl'), [
|
2013-01-26 20:52:21 +01:00
|
|
|
'$method' => 'get',
|
2018-01-22 15:16:25 +01:00
|
|
|
'$message' => L10n::t('Do you really want to delete this message?'),
|
2013-01-26 20:52:21 +01:00
|
|
|
'$extra_inputs' => $inputs,
|
2018-01-22 15:16:25 +01:00
|
|
|
'$confirm' => L10n::t('Yes'),
|
2013-01-26 20:52:21 +01:00
|
|
|
'$confirm_url' => $query['base'],
|
|
|
|
'$confirm_name' => 'confirmed',
|
2018-01-22 15:16:25 +01:00
|
|
|
'$cancel' => L10n::t('Cancel'),
|
2018-01-15 14:05:12 +01:00
|
|
|
]);
|
2013-01-26 20:52:21 +01:00
|
|
|
}
|
2018-06-20 22:12:59 +02:00
|
|
|
|
2013-01-26 20:52:21 +01:00
|
|
|
// Now check how the user responded to the confirmation query
|
2018-07-10 14:27:56 +02:00
|
|
|
if (!empty($_REQUEST['canceled'])) {
|
2018-09-30 19:26:29 +02:00
|
|
|
goaway('/message');
|
2013-01-26 20:52:21 +01:00
|
|
|
}
|
|
|
|
|
2010-07-31 06:22:52 +02:00
|
|
|
$cmd = $a->argv[1];
|
2017-08-31 14:01:44 +02:00
|
|
|
if ($cmd === 'drop') {
|
2018-10-02 18:13:58 +02:00
|
|
|
$message = DBA::selectFirst('mail', ['convid'], ['id' => $a->argv[2], 'uid' => local_user()]);
|
2018-10-02 18:24:16 +02:00
|
|
|
if(!DBA::isResult($message)){
|
2018-10-02 18:13:58 +02:00
|
|
|
info(L10n::t('Conversation not found.') . EOL);
|
2018-10-02 13:16:43 +02:00
|
|
|
goaway('/message');
|
|
|
|
}
|
|
|
|
|
2018-07-20 14:19:26 +02:00
|
|
|
if (DBA::delete('mail', ['id' => $a->argv[2], 'uid' => local_user()])) {
|
2018-01-22 15:16:25 +01:00
|
|
|
info(L10n::t('Message deleted.') . EOL);
|
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)){
|
2018-10-02 13:16:43 +02:00
|
|
|
info(L10n::t('Conversation removed.') . EOL);
|
|
|
|
goaway('/message');
|
|
|
|
}
|
|
|
|
|
2018-10-02 18:22:23 +02:00
|
|
|
goaway('/message/' . $conversation['id'] );
|
2017-08-31 14:01:44 +02:00
|
|
|
} else {
|
2011-11-30 04:52:14 +01:00
|
|
|
$r = q("SELECT `parent-uri`,`convid` FROM `mail` WHERE `id` = %d AND `uid` = %d LIMIT 1",
|
2010-07-31 06:22:52 +02:00
|
|
|
intval($a->argv[2]),
|
2010-11-08 00:46:49 +01:00
|
|
|
intval(local_user())
|
2010-07-31 06:22:52 +02:00
|
|
|
);
|
2018-07-21 14:46:04 +02:00
|
|
|
if (DBA::isResult($r)) {
|
2010-07-31 06:22:52 +02:00
|
|
|
$parent = $r[0]['parent-uri'];
|
2011-11-30 04:52:14 +01:00
|
|
|
$convid = $r[0]['convid'];
|
|
|
|
|
2018-07-20 14:19:26 +02:00
|
|
|
if (DBA::delete('mail', ['parent-uri' => $parent, 'uid' => local_user()])) {
|
2018-01-22 15:16:25 +01:00
|
|
|
info(L10n::t('Conversation removed.') . EOL);
|
2018-01-01 22:29:48 +01:00
|
|
|
}
|
2015-01-27 08:04:24 +01:00
|
|
|
}
|
2018-09-30 19:26:29 +02:00
|
|
|
goaway('/message' );
|
2015-01-27 08:04:24 +01:00
|
|
|
}
|
2010-07-31 06:22:52 +02:00
|
|
|
}
|
|
|
|
|
2017-08-31 14:01:44 +02:00
|
|
|
if (($a->argc > 1) && ($a->argv[1] === 'new')) {
|
2011-10-03 03:37:47 +02:00
|
|
|
$o .= $header;
|
2015-01-27 08:04:24 +01:00
|
|
|
|
2011-05-11 13:37:13 +02:00
|
|
|
$tpl = get_markup_template('msg-header.tpl');
|
2018-01-15 14:05:12 +01:00
|
|
|
$a->page['htmlhead'] .= replace_macros($tpl, [
|
2017-08-26 09:32:10 +02:00
|
|
|
'$baseurl' => System::baseUrl(true),
|
2011-03-21 08:21:35 +01:00
|
|
|
'$nickname' => $a->user['nickname'],
|
2018-01-22 15:16:25 +01:00
|
|
|
'$linkurl' => L10n::t('Please enter a link URL:')
|
2018-01-15 14:05:12 +01:00
|
|
|
]);
|
2015-01-27 08:04:24 +01:00
|
|
|
|
2018-03-01 02:08:59 +01:00
|
|
|
$preselect = isset($a->argv[2]) ? [$a->argv[2]] : [];
|
2012-05-07 05:06:39 +02:00
|
|
|
|
2012-05-10 10:45:51 +02:00
|
|
|
$prename = $preurl = $preid = '';
|
2012-05-07 05:06:39 +02:00
|
|
|
|
2017-08-31 14:01:44 +02:00
|
|
|
if ($preselect) {
|
2016-05-29 21:29:26 +02:00
|
|
|
$r = q("SELECT `name`, `url`, `id` FROM `contact` WHERE `uid` = %d AND `id` = %d LIMIT 1",
|
2012-05-10 10:45:51 +02:00
|
|
|
intval(local_user()),
|
|
|
|
intval($a->argv[2])
|
|
|
|
);
|
2018-07-21 14:46:04 +02:00
|
|
|
if (!DBA::isResult($r)) {
|
2016-05-29 21:29:26 +02:00
|
|
|
$r = q("SELECT `name`, `url`, `id` FROM `contact` WHERE `uid` = %d AND `nurl` = '%s' LIMIT 1",
|
|
|
|
intval(local_user()),
|
2018-07-21 15:10:13 +02:00
|
|
|
DBA::escape(normalise_link(base64_decode($a->argv[2])))
|
2016-05-29 21:29:26 +02:00
|
|
|
);
|
|
|
|
}
|
2016-09-18 23:21:18 +02:00
|
|
|
|
2018-07-21 14:46:04 +02:00
|
|
|
if (!DBA::isResult($r)) {
|
2016-05-29 21:29:26 +02:00
|
|
|
$r = q("SELECT `name`, `url`, `id` FROM `contact` WHERE `uid` = %d AND `addr` = '%s' LIMIT 1",
|
|
|
|
intval(local_user()),
|
2018-07-21 15:10:13 +02:00
|
|
|
DBA::escape(base64_decode($a->argv[2]))
|
2016-05-29 21:29:26 +02:00
|
|
|
);
|
|
|
|
}
|
2016-09-18 23:21:18 +02:00
|
|
|
|
2018-07-21 14:46:04 +02:00
|
|
|
if (DBA::isResult($r)) {
|
2012-05-10 10:45:51 +02:00
|
|
|
$prename = $r[0]['name'];
|
|
|
|
$preurl = $r[0]['url'];
|
|
|
|
$preid = $r[0]['id'];
|
2018-01-15 14:05:12 +01:00
|
|
|
$preselect = [$preid];
|
2018-01-01 22:29:48 +01:00
|
|
|
} else {
|
2018-02-26 01:56:53 +01:00
|
|
|
$preselect = [];
|
2018-01-01 22:29:48 +01:00
|
|
|
}
|
2015-01-27 08:04:24 +01:00
|
|
|
}
|
2012-05-08 10:14:24 +02:00
|
|
|
|
2018-01-01 22:29:48 +01:00
|
|
|
$prefill = $preselect ? $prename : '';
|
2012-05-08 10:14:24 +02:00
|
|
|
|
2012-05-10 10:45:51 +02:00
|
|
|
// the ugly select box
|
2018-03-03 00:41:24 +01:00
|
|
|
$select = ACL::getMessageContactSelectHTML('messageto', 'message-to-select', $preselect, 4, 10);
|
2012-05-07 04:55:39 +02:00
|
|
|
|
2011-05-11 13:37:13 +02:00
|
|
|
$tpl = get_markup_template('prv_message.tpl');
|
2018-01-15 14:05:12 +01:00
|
|
|
$o .= replace_macros($tpl, [
|
2018-01-22 15:16:25 +01:00
|
|
|
'$header' => L10n::t('Send Private Message'),
|
|
|
|
'$to' => L10n::t('To:'),
|
2015-01-27 08:04:24 +01:00
|
|
|
'$showinputs' => 'true',
|
2012-12-26 18:42:01 +01:00
|
|
|
'$prefill' => $prefill,
|
|
|
|
'$preid' => $preid,
|
2018-01-22 15:16:25 +01:00
|
|
|
'$subject' => L10n::t('Subject:'),
|
2018-01-01 22:29:48 +01:00
|
|
|
'$subjtxt' => x($_REQUEST, 'subject') ? strip_tags($_REQUEST['subject']) : '',
|
|
|
|
'$text' => x($_REQUEST, 'body') ? escape_tags(htmlspecialchars($_REQUEST['body'])) : '',
|
2012-12-26 18:42:01 +01:00
|
|
|
'$readonly' => '',
|
2018-01-22 15:16:25 +01:00
|
|
|
'$yourmessage' => L10n::t('Your message:'),
|
2012-12-26 18:42:01 +01:00
|
|
|
'$select' => $select,
|
|
|
|
'$parent' => '',
|
2018-01-22 15:16:25 +01:00
|
|
|
'$upload' => L10n::t('Upload photo'),
|
|
|
|
'$insert' => L10n::t('Insert web link'),
|
|
|
|
'$wait' => L10n::t('Please wait'),
|
|
|
|
'$submit' => 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
|
|
|
|
|
|
|
$_SESSION['return_url'] = $a->query_string;
|
|
|
|
|
2016-12-20 10:58:55 +01:00
|
|
|
if ($a->argc == 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
|
|
|
|
2017-05-07 21:39:00 +02:00
|
|
|
$r = q("SELECT count(*) AS `total`, ANY_VALUE(`created`) AS `created` FROM `mail`
|
2017-04-15 00:42:44 +02:00
|
|
|
WHERE `mail`.`uid` = %d GROUP BY `parent-uri` ORDER BY `created` DESC",
|
2016-04-30 14:13:43 +02:00
|
|
|
intval(local_user())
|
2010-07-30 15:09:20 +02:00
|
|
|
);
|
2012-07-02 04:17:21 +02:00
|
|
|
|
2018-07-21 14:46:04 +02:00
|
|
|
if (DBA::isResult($r)) {
|
2018-10-09 19:58:58 +02:00
|
|
|
$a->setPagerTotal($r[0]['total']);
|
2016-03-01 14:33:54 +01:00
|
|
|
}
|
2015-11-07 18:53:32 +01:00
|
|
|
|
|
|
|
$r = get_messages(local_user(), $a->pager['start'], $a->pager['itemspage']);
|
2012-07-02 04:17:21 +02:00
|
|
|
|
2018-07-21 14:46:04 +02:00
|
|
|
if (!DBA::isResult($r)) {
|
2018-01-22 15:16:25 +01:00
|
|
|
info(L10n::t('No messages.') . EOL);
|
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
|
|
|
|
|
|
|
$o .= paginate($a);
|
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
|
|
|
}
|
|
|
|
|
2017-08-31 14:01:44 +02:00
|
|
|
if (($a->argc > 1) && (intval($a->argv[1]))) {
|
2010-07-31 06:22:52 +02:00
|
|
|
|
|
|
|
$o .= $header;
|
|
|
|
|
2015-01-27 08:04:24 +01:00
|
|
|
$r = q("SELECT `mail`.*, `contact`.`name`, `contact`.`url`, `contact`.`thumb`
|
|
|
|
FROM `mail` LEFT JOIN `contact` ON `mail`.`contact-id` = `contact`.`id`
|
2010-07-31 06:22:52 +02:00
|
|
|
WHERE `mail`.`uid` = %d AND `mail`.`id` = %d LIMIT 1",
|
2010-11-08 00:46:49 +01:00
|
|
|
intval(local_user()),
|
2010-07-31 06:22:52 +02:00
|
|
|
intval($a->argv[1])
|
|
|
|
);
|
2018-07-21 14:46:04 +02:00
|
|
|
if (DBA::isResult($r)) {
|
2010-07-31 06:22:52 +02:00
|
|
|
$contact_id = $r[0]['contact-id'];
|
2011-12-07 04:15:42 +01:00
|
|
|
$convid = $r[0]['convid'];
|
|
|
|
|
2018-07-21 15:10:13 +02:00
|
|
|
$sql_extra = sprintf(" and `mail`.`parent-uri` = '%s' ", DBA::escape($r[0]['parent-uri']));
|
2017-08-31 14:01:44 +02:00
|
|
|
if ($convid)
|
2011-12-07 04:15:42 +01:00
|
|
|
$sql_extra = sprintf(" and ( `mail`.`parent-uri` = '%s' OR `mail`.`convid` = '%d' ) ",
|
2018-07-21 15:10:13 +02:00
|
|
|
DBA::escape($r[0]['parent-uri']),
|
2011-12-07 04:15:42 +01:00
|
|
|
intval($convid)
|
2015-01-27 08:04:24 +01:00
|
|
|
);
|
2011-12-07 04:15:42 +01:00
|
|
|
|
2015-01-27 08:04:24 +01:00
|
|
|
$messages = q("SELECT `mail`.*, `contact`.`name`, `contact`.`url`, `contact`.`thumb`
|
|
|
|
FROM `mail` LEFT JOIN `contact` ON `mail`.`contact-id` = `contact`.`id`
|
2011-12-07 04:15:42 +01:00
|
|
|
WHERE `mail`.`uid` = %d $sql_extra ORDER BY `mail`.`created` ASC",
|
|
|
|
intval(local_user())
|
2010-07-31 06:22:52 +02:00
|
|
|
);
|
2018-07-10 14:27:56 +02:00
|
|
|
} else {
|
|
|
|
$messages = false;
|
2010-07-31 06:22:52 +02:00
|
|
|
}
|
2018-07-21 14:46:04 +02:00
|
|
|
if (!DBA::isResult($messages)) {
|
2018-01-21 19:33:59 +01:00
|
|
|
notice(L10n::t('Message not available.') . EOL);
|
2010-07-31 07:27:41 +02:00
|
|
|
return $o;
|
2010-07-31 06:22:52 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
$r = q("UPDATE `mail` SET `seen` = 1 WHERE `parent-uri` = '%s' AND `uid` = %d",
|
2018-07-21 15:10:13 +02:00
|
|
|
DBA::escape($r[0]['parent-uri']),
|
2010-11-08 00:46:49 +01:00
|
|
|
intval(local_user())
|
2010-07-31 06:22:52 +02:00
|
|
|
);
|
|
|
|
|
2011-05-11 13:37:13 +02:00
|
|
|
$tpl = get_markup_template('msg-header.tpl');
|
2018-01-15 14:05:12 +01:00
|
|
|
$a->page['htmlhead'] .= replace_macros($tpl, [
|
2017-08-26 09:32:10 +02:00
|
|
|
'$baseurl' => System::baseUrl(true),
|
2010-12-06 04:28:47 +01:00
|
|
|
'$nickname' => $a->user['nickname'],
|
2018-01-22 15:16:25 +01:00
|
|
|
'$linkurl' => 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) {
|
2017-08-31 14:01:44 +02:00
|
|
|
if ($message['unknown'])
|
2012-04-01 09:59:35 +02:00
|
|
|
$unknown = true;
|
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
|
|
|
|
2012-07-08 00:20:24 +02:00
|
|
|
$extracted = item_extract_images($message['body']);
|
2018-01-01 22:29:48 +01:00
|
|
|
if ($extracted['images']) {
|
2012-07-08 00:20:24 +02:00
|
|
|
$message['body'] = item_redir_and_replace_images($extracted['body'], $extracted['images'], $message['contact-id']);
|
2018-01-01 22:29:48 +01:00
|
|
|
}
|
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'];
|
2018-02-15 03:33:55 +01:00
|
|
|
$body_e = Smilies::replace(BBCode::convert($message['body']));
|
2017-11-27 07:44:49 +01:00
|
|
|
$to_name_e = $message['name'];
|
2012-12-22 20:57:29 +01:00
|
|
|
|
2017-11-19 23:03:39 +01:00
|
|
|
$contact = Contact::getDetailsByURL($message['from-url']);
|
2018-01-01 22:29:48 +01:00
|
|
|
if (isset($contact["thumb"])) {
|
2016-06-10 07:44:32 +02:00
|
|
|
$from_photo = $contact["thumb"];
|
2018-01-01 22:29:48 +01:00
|
|
|
} else {
|
2016-06-10 07:44:32 +02:00
|
|
|
$from_photo = $message['from-photo'];
|
2018-01-01 22:29:48 +01:00
|
|
|
}
|
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,
|
2017-09-01 21:32:12 +02:00
|
|
|
'from_addr' => $contact['addr'],
|
2017-03-21 17:02:59 +01:00
|
|
|
'sparkle' => $sparkle,
|
2018-07-31 04:06:22 +02:00
|
|
|
'from_photo' => ProxyUtils::proxifyUrl($from_photo, false, ProxyUtils::SIZE_THUMB),
|
2017-03-21 17:02:59 +01:00
|
|
|
'subject' => $subject_e,
|
|
|
|
'body' => $body_e,
|
2018-01-22 15:16:25 +01:00
|
|
|
'delete' => L10n::t('Delete message'),
|
2017-03-21 17:02:59 +01:00
|
|
|
'to_name' => $to_name_e,
|
2018-02-18 09:56:27 +01:00
|
|
|
'date' => DateTimeFormat::local($message['created'], 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
|
|
|
|
2010-07-31 06:22:52 +02:00
|
|
|
$select = $message['name'] . '<input type="hidden" name="messageto" value="' . $contact_id . '" />';
|
|
|
|
$parent = '<input type="hidden" name="replyto" value="' . $message['parent-uri'] . '" />';
|
2012-03-28 15:31:58 +02:00
|
|
|
|
|
|
|
$tpl = get_markup_template('mail_display.tpl');
|
2018-01-15 14:05:12 +01:00
|
|
|
$o = replace_macros($tpl, [
|
2012-03-28 15:31:58 +02:00
|
|
|
'$thread_id' => $a->argv[1],
|
|
|
|
'$thread_subject' => $message['title'],
|
|
|
|
'$thread_seen' => $seen,
|
2018-01-22 15:16:25 +01:00
|
|
|
'$delete' => L10n::t('Delete conversation'),
|
2012-04-01 09:59:35 +02:00
|
|
|
'$canreply' => (($unknown) ? false : '1'),
|
2018-01-22 15:16:25 +01:00
|
|
|
'$unknown_text' => 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
|
2018-01-22 15:16:25 +01:00
|
|
|
'$header' => L10n::t('Send Reply'),
|
|
|
|
'$to' => L10n::t('To:'),
|
2012-12-26 18:42:01 +01:00
|
|
|
'$showinputs' => '',
|
2018-01-22 15:16:25 +01:00
|
|
|
'$subject' => 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;" ',
|
2018-01-22 15:16:25 +01:00
|
|
|
'$yourmessage' => L10n::t('Your message:'),
|
2012-12-26 18:42:01 +01:00
|
|
|
'$text' => '',
|
|
|
|
'$select' => $select,
|
|
|
|
'$parent' => $parent,
|
2018-01-22 15:16:25 +01:00
|
|
|
'$upload' => L10n::t('Upload photo'),
|
|
|
|
'$insert' => L10n::t('Insert web link'),
|
|
|
|
'$submit' => L10n::t('Submit'),
|
|
|
|
'$wait' => 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-01-01 22:29:48 +01:00
|
|
|
function get_messages($user, $lstart, $lend)
|
|
|
|
{
|
2017-04-15 00:42:44 +02:00
|
|
|
//TODO: rewritte with a sub-query to get the first message of each private thread with certainty
|
2015-11-07 18:53:32 +01:00
|
|
|
return q("SELECT max(`mail`.`created`) AS `mailcreated`, min(`mail`.`seen`) AS `mailseen`,
|
2017-04-17 15:01:05 +02:00
|
|
|
ANY_VALUE(`mail`.`id`) AS `id`, ANY_VALUE(`mail`.`uid`) AS `uid`, ANY_VALUE(`mail`.`guid`) AS `guid`,
|
|
|
|
ANY_VALUE(`mail`.`from-name`) AS `from-name`, ANY_VALUE(`mail`.`from-photo`) AS `from-photo`,
|
|
|
|
ANY_VALUE(`mail`.`from-url`) AS `from-url`, ANY_VALUE(`mail`.`contact-id`) AS `contact-id`,
|
|
|
|
ANY_VALUE(`mail`.`convid`) AS `convid`, ANY_VALUE(`mail`.`title`) AS `title`, ANY_VALUE(`mail`.`body`) AS `body`,
|
|
|
|
ANY_VALUE(`mail`.`seen`) AS `seen`, ANY_VALUE(`mail`.`reply`) AS `reply`, ANY_VALUE(`mail`.`replied`) AS `replied`,
|
|
|
|
ANY_VALUE(`mail`.`unknown`) AS `unknown`, ANY_VALUE(`mail`.`uri`) AS `uri`,
|
|
|
|
`mail`.`parent-uri`,
|
|
|
|
ANY_VALUE(`mail`.`created`) AS `created`, ANY_VALUE(`contact`.`name`) AS `name`, ANY_VALUE(`contact`.`url`) AS `url`,
|
|
|
|
ANY_VALUE(`contact`.`thumb`) AS `thumb`, ANY_VALUE(`contact`.`network`) AS `network`,
|
|
|
|
count( * ) as `count`
|
2015-11-07 18:53:32 +01:00
|
|
|
FROM `mail` LEFT JOIN `contact` ON `mail`.`contact-id` = `contact`.`id`
|
2017-04-17 15:01:05 +02:00
|
|
|
WHERE `mail`.`uid` = %d GROUP BY `parent-uri` ORDER BY `mailcreated` DESC LIMIT %d , %d ",
|
2015-11-07 18:53:32 +01:00
|
|
|
intval($user), intval($lstart), intval($lend)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2018-01-01 22:29:48 +01:00
|
|
|
function render_messages(array $msg, $t)
|
|
|
|
{
|
2015-11-07 18:53:32 +01:00
|
|
|
$a = get_app();
|
|
|
|
|
|
|
|
$tpl = get_markup_template($t);
|
|
|
|
$rslt = '';
|
|
|
|
|
2018-01-01 22:29:48 +01:00
|
|
|
$myprofile = System::baseUrl() . '/profile/' . $a->user['nickname'];
|
2015-11-07 18:53:32 +01:00
|
|
|
|
2018-01-01 22:29:48 +01:00
|
|
|
foreach ($msg as $rr) {
|
|
|
|
if ($rr['unknown']) {
|
2018-01-22 15:16:25 +01:00
|
|
|
$participants = L10n::t("Unknown sender - %s", $rr['from-name']);
|
2018-01-01 22:29:48 +01:00
|
|
|
} elseif (link_compare($rr['from-url'], $myprofile)) {
|
2018-01-22 15:16:25 +01:00
|
|
|
$participants = L10n::t("You and %s", $rr['name']);
|
2018-01-01 22:29:48 +01:00
|
|
|
} else {
|
2018-01-22 15:16:25 +01:00
|
|
|
$participants = 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
|
|
|
$subject_e = (($rr['mailseen']) ? $rr['title'] : '<strong>' . $rr['title'] . '</strong>');
|
|
|
|
$body_e = $rr['body'];
|
|
|
|
$to_name_e = $rr['name'];
|
2015-11-07 18:53:32 +01:00
|
|
|
|
2017-11-19 23:03:39 +01:00
|
|
|
$contact = Contact::getDetailsByURL($rr['url']);
|
2018-01-01 22:29:48 +01:00
|
|
|
if (isset($contact["thumb"])) {
|
2016-06-10 07:44:32 +02:00
|
|
|
$from_photo = $contact["thumb"];
|
2018-01-01 22:29:48 +01:00
|
|
|
} else {
|
2016-06-10 07:44:32 +02:00
|
|
|
$from_photo = (($rr['thumb']) ? $rr['thumb'] : $rr['from-photo']);
|
2018-01-01 22:29:48 +01:00
|
|
|
}
|
2016-06-10 07:44:32 +02:00
|
|
|
|
2018-01-15 14:05:12 +01:00
|
|
|
$rslt .= replace_macros($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']),
|
2018-09-09 08:32:01 +02:00
|
|
|
'$from_addr' => defaults($contact, 'addr', ''),
|
2015-11-07 18:53:32 +01:00
|
|
|
'$sparkle' => ' sparkle',
|
2018-07-31 04:06:22 +02:00
|
|
|
'$from_photo' => ProxyUtils::proxifyUrl($from_photo, false, ProxyUtils::SIZE_THUMB),
|
2015-11-07 18:53:32 +01:00
|
|
|
'$subject' => $subject_e,
|
2018-01-22 15:16:25 +01:00
|
|
|
'$delete' => L10n::t('Delete conversation'),
|
2015-11-07 18:53:32 +01:00
|
|
|
'$body' => $body_e,
|
|
|
|
'$to_name' => $to_name_e,
|
2018-01-27 03:38:34 +01:00
|
|
|
'$date' => DateTimeFormat::local($rr['mailcreated'], 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'],
|
2018-01-21 23:15:52 +01:00
|
|
|
'$count' => 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
|
|
|
}
|