2010-07-28 13:45:07 +02:00
|
|
|
<?php
|
|
|
|
|
2010-11-16 06:02:59 +01:00
|
|
|
require_once('include/acl_selectors.php');
|
2011-08-19 16:54:41 +02:00
|
|
|
require_once('include/message.php');
|
2010-07-28 13:45:07 +02:00
|
|
|
|
2012-03-28 15:31:58 +02:00
|
|
|
function message_init(&$a) {
|
2015-11-07 18:53:32 +01:00
|
|
|
|
|
|
|
$tabs = '';
|
|
|
|
|
2015-11-08 15:45:42 +01:00
|
|
|
if ($a->argc >1 && is_numeric($a->argv[1])) {
|
2015-11-07 18:53:32 +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
|
|
|
|
2012-03-28 15:31:58 +02:00
|
|
|
$new = array(
|
|
|
|
'label' => t('New Message'),
|
|
|
|
'url' => $a->get_baseurl(true) . '/message/new',
|
|
|
|
'sel'=> ($a->argv[1] == 'new'),
|
2015-08-08 17:33:43 +02:00
|
|
|
'accesskey' => 'm',
|
2012-03-28 15:31:58 +02:00
|
|
|
);
|
2015-08-08 17:33:43 +02:00
|
|
|
|
2012-03-28 15:31:58 +02:00
|
|
|
$tpl = get_markup_template('message_side.tpl');
|
|
|
|
$a->page['aside'] = replace_macros($tpl, array(
|
|
|
|
'$tabs'=>$tabs,
|
|
|
|
'$new'=>$new,
|
|
|
|
));
|
2012-05-07 04:55:39 +02:00
|
|
|
$base = $a->get_baseurl();
|
|
|
|
|
2012-07-28 17:57:16 +02:00
|
|
|
$head_tpl = get_markup_template('message-head.tpl');
|
|
|
|
$a->page['htmlhead'] .= replace_macros($head_tpl,array(
|
|
|
|
'$baseurl' => $a->get_baseurl(true),
|
|
|
|
'$base' => $base
|
|
|
|
));
|
|
|
|
|
|
|
|
$end_tpl = get_markup_template('message-end.tpl');
|
|
|
|
$a->page['end'] .= replace_macros($end_tpl,array(
|
|
|
|
'$baseurl' => $a->get_baseurl(true),
|
|
|
|
'$base' => $base
|
|
|
|
));
|
2015-08-08 17:33:43 +02:00
|
|
|
|
2012-03-28 15:31:58 +02:00
|
|
|
}
|
|
|
|
|
2010-07-30 15:09:20 +02:00
|
|
|
function message_post(&$a) {
|
2010-07-28 13:45:07 +02:00
|
|
|
|
2010-07-30 15:09:20 +02:00
|
|
|
if(! local_user()) {
|
|
|
|
notice( t('Permission denied.') . EOL);
|
|
|
|
return;
|
|
|
|
}
|
2010-07-28 13:45:07 +02:00
|
|
|
|
2012-03-11 00:50:51 +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
|
|
|
|
2012-03-27 02:57:27 +02:00
|
|
|
// Work around doubled linefeeds in Tinymce 3.5b2
|
|
|
|
|
2012-11-22 17:14:22 +01:00
|
|
|
/* $plaintext = intval(get_pconfig(local_user(),'system','plaintext') && !feature_enabled(local_user(),'richtext'));
|
|
|
|
if(! $plaintext) {
|
|
|
|
$body = fix_mce_lf($body);
|
|
|
|
}*/
|
|
|
|
$plaintext = intval(!feature_enabled(local_user(),'richtext'));
|
2012-03-27 02:57:27 +02:00
|
|
|
if(! $plaintext) {
|
2012-04-11 02:14:07 +02:00
|
|
|
$body = fix_mce_lf($body);
|
2012-03-27 02:57:27 +02:00
|
|
|
}
|
2015-11-07 18:53:32 +01:00
|
|
|
|
2011-08-19 16:54:41 +02:00
|
|
|
$ret = send_message($recipient, $body, $subject, $replyto);
|
2012-03-11 00:50:51 +01:00
|
|
|
$norecip = false;
|
2011-08-19 16:54:41 +02:00
|
|
|
|
|
|
|
switch($ret){
|
|
|
|
case -1:
|
|
|
|
notice( 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:
|
|
|
|
notice( t('Unable to locate contact information.') . EOL );
|
|
|
|
break;
|
|
|
|
case -3:
|
|
|
|
notice( t('Message could not be sent.') . EOL );
|
2011-12-05 09:35:44 +01:00
|
|
|
break;
|
|
|
|
case -4:
|
|
|
|
notice( t('Message collection failure.') . EOL );
|
|
|
|
break;
|
2011-08-19 16:54:41 +02:00
|
|
|
default:
|
|
|
|
info( 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
|
|
|
|
|
|
|
|
if($norecip) {
|
|
|
|
$a->argc = 2;
|
|
|
|
$a->argv[1] = 'new';
|
|
|
|
}
|
2013-01-26 20:52:21 +01:00
|
|
|
else
|
|
|
|
goaway($a->get_baseurl(true) . '/' . $_SESSION['return_url']);
|
2012-03-11 00:50:51 +01:00
|
|
|
|
2010-07-30 15:09:20 +02:00
|
|
|
}
|
2010-07-28 13:45:07 +02:00
|
|
|
|
2012-07-08 00:20:24 +02:00
|
|
|
// Note: the code in 'item_extract_images' and 'item_redir_and_replace_images'
|
|
|
|
// is identical to the code in include/conversation.php
|
|
|
|
if(! function_exists('item_extract_images')) {
|
|
|
|
function item_extract_images($body) {
|
|
|
|
|
|
|
|
$saved_image = array();
|
|
|
|
$orig_body = $body;
|
|
|
|
$new_body = '';
|
|
|
|
|
|
|
|
$cnt = 0;
|
|
|
|
$img_start = strpos($orig_body, '[img');
|
|
|
|
$img_st_close = ($img_start !== false ? strpos(substr($orig_body, $img_start), ']') : false);
|
|
|
|
$img_end = ($img_start !== false ? strpos(substr($orig_body, $img_start), '[/img]') : false);
|
|
|
|
while(($img_st_close !== false) && ($img_end !== false)) {
|
|
|
|
|
|
|
|
$img_st_close++; // make it point to AFTER the closing bracket
|
|
|
|
$img_end += $img_start;
|
|
|
|
|
|
|
|
if(! strcmp(substr($orig_body, $img_start + $img_st_close, 5), 'data:')) {
|
|
|
|
// This is an embedded image
|
|
|
|
|
2012-07-08 02:47:13 +02:00
|
|
|
$saved_image[$cnt] = substr($orig_body, $img_start + $img_st_close, $img_end - ($img_start + $img_st_close));
|
2012-07-08 00:20:24 +02:00
|
|
|
$new_body = $new_body . substr($orig_body, 0, $img_start) . '[!#saved_image' . $cnt . '#!]';
|
2012-07-08 02:47:13 +02:00
|
|
|
|
|
|
|
$cnt++;
|
2012-07-08 00:20:24 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
$new_body = $new_body . substr($orig_body, 0, $img_end + strlen('[/img]'));
|
|
|
|
|
|
|
|
$orig_body = substr($orig_body, $img_end + strlen('[/img]'));
|
|
|
|
|
|
|
|
if($orig_body === false) // in case the body ends on a closing image tag
|
|
|
|
$orig_body = '';
|
|
|
|
|
|
|
|
$img_start = strpos($orig_body, '[img');
|
|
|
|
$img_st_close = ($img_start !== false ? strpos(substr($orig_body, $img_start), ']') : false);
|
|
|
|
$img_end = ($img_start !== false ? strpos(substr($orig_body, $img_start), '[/img]') : false);
|
|
|
|
}
|
|
|
|
|
|
|
|
$new_body = $new_body . $orig_body;
|
|
|
|
|
|
|
|
return array('body' => $new_body, 'images' => $saved_image);
|
|
|
|
}}
|
|
|
|
|
|
|
|
if(! function_exists('item_redir_and_replace_images')) {
|
|
|
|
function item_redir_and_replace_images($body, $images, $cid) {
|
|
|
|
|
2012-07-08 02:47:13 +02:00
|
|
|
$origbody = $body;
|
|
|
|
$newbody = '';
|
2012-07-08 00:20:24 +02:00
|
|
|
|
|
|
|
for($i = 0; $i < count($images); $i++) {
|
|
|
|
$search = '/\[url\=(.*?)\]\[!#saved_image' . $i . '#!\]\[\/url\]' . '/is';
|
2015-01-27 08:04:24 +01:00
|
|
|
$replace = '[url=' . z_path() . '/redir/' . $cid
|
2012-07-08 00:20:24 +02:00
|
|
|
. '?f=1&url=' . '$1' . '][!#saved_image' . $i . '#!][/url]' ;
|
|
|
|
|
2012-07-08 02:47:13 +02:00
|
|
|
$img_end = strpos($origbody, '[!#saved_image' . $i . '#!][/url]') + strlen('[!#saved_image' . $i . '#!][/url]');
|
|
|
|
$process_part = substr($origbody, 0, $img_end);
|
|
|
|
$origbody = substr($origbody, $img_end);
|
|
|
|
|
|
|
|
$process_part = preg_replace($search, $replace, $process_part);
|
|
|
|
$newbody = $newbody . $process_part;
|
2012-07-08 00:20:24 +02:00
|
|
|
}
|
2012-07-08 02:47:13 +02:00
|
|
|
$newbody = $newbody . $origbody;
|
2012-07-08 00:20:24 +02:00
|
|
|
|
|
|
|
$cnt = 0;
|
|
|
|
foreach($images as $image) {
|
|
|
|
// We're depending on the property of 'foreach' (specified on the PHP website) that
|
|
|
|
// it loops over the array starting from the first element and going sequentially
|
|
|
|
// to the last element
|
2012-07-08 02:47:13 +02:00
|
|
|
$newbody = str_replace('[!#saved_image' . $cnt . '#!]', '[img]' . $image . '[/img]', $newbody);
|
2012-07-08 00:20:24 +02:00
|
|
|
$cnt++;
|
|
|
|
}
|
|
|
|
|
|
|
|
return $newbody;
|
|
|
|
}}
|
|
|
|
|
|
|
|
|
|
|
|
|
2010-07-28 13:45:07 +02:00
|
|
|
function message_content(&$a) {
|
2010-11-01 00:38:22 +01:00
|
|
|
|
|
|
|
$o = '';
|
2011-08-17 18:36:24 +02:00
|
|
|
nav_set_selected('messages');
|
2010-07-28 13:45:07 +02:00
|
|
|
|
|
|
|
if(! local_user()) {
|
|
|
|
notice( t('Permission denied.') . EOL);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2012-03-15 05:20:20 +01:00
|
|
|
$myprofile = $a->get_baseurl(true) . '/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');
|
2010-07-31 06:22:52 +02:00
|
|
|
$header = replace_macros($tpl, array(
|
|
|
|
'$messages' => t('Messages'),
|
2011-10-12 06:30:23 +02:00
|
|
|
'$tab_content' => $tab_content
|
2010-07-31 06:22:52 +02:00
|
|
|
));
|
|
|
|
|
|
|
|
|
2010-09-27 02:24:20 +02:00
|
|
|
if(($a->argc == 3) && ($a->argv[1] === 'drop' || $a->argv[1] === 'dropconv')) {
|
2010-07-31 06:22:52 +02:00
|
|
|
if(! intval($a->argv[2]))
|
|
|
|
return;
|
2013-01-26 20:52:21 +01:00
|
|
|
|
|
|
|
// Check if we should do HTML-based delete confirmation
|
|
|
|
if($_REQUEST['confirm']) {
|
|
|
|
// <form> can't take arguments in its "action" parameter
|
|
|
|
// so add any arguments as hidden inputs
|
|
|
|
$query = explode_querystring($a->query_string);
|
|
|
|
$inputs = array();
|
|
|
|
foreach($query['args'] as $arg) {
|
|
|
|
if(strpos($arg, 'confirm=') === false) {
|
|
|
|
$arg_parts = explode('=', $arg);
|
|
|
|
$inputs[] = array('name' => $arg_parts[0], 'value' => $arg_parts[1]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//$a->page['aside'] = '';
|
|
|
|
return replace_macros(get_markup_template('confirm.tpl'), array(
|
|
|
|
'$method' => 'get',
|
|
|
|
'$message' => t('Do you really want to delete this message?'),
|
|
|
|
'$extra_inputs' => $inputs,
|
|
|
|
'$confirm' => t('Yes'),
|
|
|
|
'$confirm_url' => $query['base'],
|
|
|
|
'$confirm_name' => 'confirmed',
|
|
|
|
'$cancel' => t('Cancel'),
|
|
|
|
));
|
|
|
|
}
|
|
|
|
// Now check how the user responded to the confirmation query
|
|
|
|
if($_REQUEST['canceled']) {
|
|
|
|
goaway($a->get_baseurl(true) . '/' . $_SESSION['return_url']);
|
|
|
|
}
|
|
|
|
|
2010-07-31 06:22:52 +02:00
|
|
|
$cmd = $a->argv[1];
|
2010-09-27 02:24:20 +02:00
|
|
|
if($cmd === 'drop') {
|
2010-07-31 06:22:52 +02:00
|
|
|
$r = q("DELETE FROM `mail` WHERE `id` = %d AND `uid` = %d LIMIT 1",
|
|
|
|
intval($a->argv[2]),
|
2010-11-08 00:46:49 +01:00
|
|
|
intval(local_user())
|
2010-07-31 06:22:52 +02:00
|
|
|
);
|
|
|
|
if($r) {
|
2011-05-23 11:39:57 +02:00
|
|
|
info( t('Message deleted.') . EOL );
|
2010-07-31 06:22:52 +02:00
|
|
|
}
|
2013-01-26 20:52:21 +01:00
|
|
|
//goaway($a->get_baseurl(true) . '/message' );
|
|
|
|
goaway($a->get_baseurl(true) . '/' . $_SESSION['return_url']);
|
2010-07-31 06:22:52 +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
|
|
|
);
|
|
|
|
if(count($r)) {
|
|
|
|
$parent = $r[0]['parent-uri'];
|
2011-11-30 04:52:14 +01:00
|
|
|
$convid = $r[0]['convid'];
|
|
|
|
|
2010-07-31 06:22:52 +02:00
|
|
|
$r = q("DELETE FROM `mail` WHERE `parent-uri` = '%s' AND `uid` = %d ",
|
|
|
|
dbesc($parent),
|
2010-11-08 00:46:49 +01:00
|
|
|
intval(local_user())
|
2010-07-31 06:22:52 +02:00
|
|
|
);
|
2011-11-30 04:52:14 +01:00
|
|
|
|
|
|
|
// remove diaspora conversation pointer
|
2011-12-07 23:04:34 +01:00
|
|
|
// Actually if we do this, we can never receive another reply to that conversation,
|
2015-11-07 18:53:32 +01:00
|
|
|
// as we will never again have the info we need to re-create it.
|
|
|
|
// We'll just have to orphan it.
|
2011-12-07 23:04:34 +01:00
|
|
|
|
|
|
|
//if($convid) {
|
|
|
|
// q("delete from conv where id = %d limit 1",
|
|
|
|
// intval($convid)
|
|
|
|
// );
|
|
|
|
//}
|
2011-11-30 04:52:14 +01:00
|
|
|
|
2010-07-31 06:22:52 +02:00
|
|
|
if($r)
|
2011-05-23 11:39:57 +02:00
|
|
|
info( t('Conversation removed.') . EOL );
|
2015-01-27 08:04:24 +01:00
|
|
|
}
|
2013-01-26 20:52:21 +01:00
|
|
|
//goaway($a->get_baseurl(true) . '/message' );
|
|
|
|
goaway($a->get_baseurl(true) . '/' . $_SESSION['return_url']);
|
2015-01-27 08:04:24 +01:00
|
|
|
}
|
|
|
|
|
2010-07-31 06:22:52 +02:00
|
|
|
}
|
|
|
|
|
2010-09-27 02:24:20 +02:00
|
|
|
if(($a->argc > 1) && ($a->argv[1] === 'new')) {
|
2015-01-27 08:04:24 +01:00
|
|
|
|
2011-10-03 03:37:47 +02:00
|
|
|
$o .= $header;
|
2015-01-27 08:04:24 +01:00
|
|
|
|
2012-11-22 17:14:22 +01:00
|
|
|
/* $plaintext = false;
|
2012-03-09 09:47:10 +01:00
|
|
|
if(intval(get_pconfig(local_user(),'system','plaintext')))
|
2012-11-22 17:14:22 +01:00
|
|
|
$plaintext = true;*/
|
|
|
|
$plaintext = true;
|
|
|
|
if( local_user() && feature_enabled(local_user(),'richtext') )
|
|
|
|
$plaintext = false;
|
2012-03-09 09:47:10 +01:00
|
|
|
|
|
|
|
|
2011-05-11 13:37:13 +02:00
|
|
|
$tpl = get_markup_template('msg-header.tpl');
|
2011-03-04 05:58:39 +01:00
|
|
|
$a->page['htmlhead'] .= replace_macros($tpl, array(
|
2012-03-15 05:20:20 +01:00
|
|
|
'$baseurl' => $a->get_baseurl(true),
|
2012-03-09 09:47:10 +01:00
|
|
|
'$editselect' => (($plaintext) ? 'none' : '/(profile-jot-text|prvmail-text)/'),
|
2011-03-21 08:21:35 +01:00
|
|
|
'$nickname' => $a->user['nickname'],
|
|
|
|
'$linkurl' => t('Please enter a link URL:')
|
2011-03-04 05:58:39 +01:00
|
|
|
));
|
2015-01-27 08:04:24 +01:00
|
|
|
|
2012-07-28 17:57:16 +02:00
|
|
|
$tpl = get_markup_template('msg-end.tpl');
|
|
|
|
$a->page['end'] .= replace_macros($tpl, array(
|
|
|
|
'$baseurl' => $a->get_baseurl(true),
|
|
|
|
'$editselect' => (($plaintext) ? 'none' : '/(profile-jot-text|prvmail-text)/'),
|
|
|
|
'$nickname' => $a->user['nickname'],
|
|
|
|
'$linkurl' => t('Please enter a link URL:')
|
|
|
|
));
|
2015-01-27 08:04:24 +01:00
|
|
|
|
2011-03-31 16:54:06 +02:00
|
|
|
$preselect = (isset($a->argv[2])?array($a->argv[2]):false);
|
2015-01-27 08:04:24 +01:00
|
|
|
|
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
|
|
|
|
2012-05-10 10:45:51 +02:00
|
|
|
if($preselect) {
|
|
|
|
$r = q("select name, url, id from contact where uid = %d and id = %d limit 1",
|
|
|
|
intval(local_user()),
|
|
|
|
intval($a->argv[2])
|
|
|
|
);
|
|
|
|
if(count($r)) {
|
|
|
|
$prename = $r[0]['name'];
|
|
|
|
$preurl = $r[0]['url'];
|
|
|
|
$preid = $r[0]['id'];
|
|
|
|
}
|
2015-01-27 08:04:24 +01:00
|
|
|
}
|
2012-05-08 10:14:24 +02:00
|
|
|
|
2012-05-11 05:01:13 +02:00
|
|
|
$prefill = (($preselect) ? $prename : '');
|
2012-05-08 10:14:24 +02:00
|
|
|
|
2012-05-10 10:45:51 +02:00
|
|
|
// the ugly select box
|
2015-01-27 08:04:24 +01:00
|
|
|
|
2012-05-10 10:45:51 +02:00
|
|
|
$select = contact_select('messageto','message-to-select', $preselect, 4, true, false, false, 10);
|
2012-05-07 04:55:39 +02:00
|
|
|
|
2011-05-11 13:37:13 +02:00
|
|
|
$tpl = get_markup_template('prv_message.tpl');
|
2010-07-31 06:22:52 +02:00
|
|
|
$o .= replace_macros($tpl,array(
|
2012-12-26 18:42:01 +01:00
|
|
|
'$header' => t('Send Private Message'),
|
|
|
|
'$to' => t('To:'),
|
2015-01-27 08:04:24 +01:00
|
|
|
'$showinputs' => 'true',
|
2012-12-26 18:42:01 +01:00
|
|
|
'$prefill' => $prefill,
|
|
|
|
'$autocomp' => $autocomp,
|
|
|
|
'$preid' => $preid,
|
|
|
|
'$subject' => t('Subject:'),
|
|
|
|
'$subjtxt' => ((x($_REQUEST,'subject')) ? strip_tags($_REQUEST['subject']) : ''),
|
|
|
|
'$text' => ((x($_REQUEST,'body')) ? escape_tags(htmlspecialchars($_REQUEST['body'])) : ''),
|
|
|
|
'$readonly' => '',
|
|
|
|
'$yourmessage' => t('Your message:'),
|
|
|
|
'$select' => $select,
|
|
|
|
'$parent' => '',
|
|
|
|
'$upload' => t('Upload photo'),
|
|
|
|
'$insert' => t('Insert web link'),
|
|
|
|
'$wait' => t('Please wait'),
|
|
|
|
'$submit' => t('Submit')
|
2010-07-28 13:45:07 +02:00
|
|
|
));
|
|
|
|
|
|
|
|
return $o;
|
|
|
|
}
|
|
|
|
|
2013-01-26 20:52:21 +01:00
|
|
|
|
|
|
|
$_SESSION['return_url'] = $a->query_string;
|
|
|
|
|
2012-04-01 05:08:32 +02:00
|
|
|
if($a->argc == 1) {
|
|
|
|
|
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
|
|
|
|
2015-01-27 08:04:24 +01:00
|
|
|
$r = q("SELECT count(*) AS `total` FROM `mail`
|
2012-05-06 02:53:23 +02:00
|
|
|
WHERE `mail`.`uid` = %d GROUP BY `parent-uri` ORDER BY `created` DESC",
|
2010-11-08 00:46:49 +01:00
|
|
|
intval(local_user()),
|
2010-07-30 15:09:20 +02:00
|
|
|
dbesc($myprofile)
|
|
|
|
);
|
2012-07-02 04:17:21 +02:00
|
|
|
|
2015-11-07 18:53:32 +01:00
|
|
|
if(count($r)) $a->set_pager_total($r[0]['total']);
|
|
|
|
|
|
|
|
$r = get_messages(local_user(), $a->pager['start'], $a->pager['itemspage']);
|
2012-07-02 04:17:21 +02:00
|
|
|
|
2010-07-28 13:45:07 +02:00
|
|
|
if(! count($r)) {
|
2011-05-23 11:39:57 +02:00
|
|
|
info( 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
|
|
|
}
|
|
|
|
|
2010-07-31 06:22:52 +02:00
|
|
|
if(($a->argc > 1) && (intval($a->argv[1]))) {
|
|
|
|
|
|
|
|
$o .= $header;
|
|
|
|
|
2012-12-22 20:57:29 +01:00
|
|
|
$plaintext = true;
|
|
|
|
if( local_user() && feature_enabled(local_user(),'richtext') )
|
|
|
|
$plaintext = false;
|
|
|
|
|
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])
|
|
|
|
);
|
2015-01-27 08:04:24 +01:00
|
|
|
if(count($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'];
|
|
|
|
|
|
|
|
$sql_extra = sprintf(" and `mail`.`parent-uri` = '%s' ", dbesc($r[0]['parent-uri']));
|
|
|
|
if($convid)
|
|
|
|
$sql_extra = sprintf(" and ( `mail`.`parent-uri` = '%s' OR `mail`.`convid` = '%d' ) ",
|
|
|
|
dbesc($r[0]['parent-uri']),
|
|
|
|
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
|
|
|
);
|
|
|
|
}
|
|
|
|
if(! count($messages)) {
|
|
|
|
notice( 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",
|
|
|
|
dbesc($r[0]['parent-uri']),
|
2010-11-08 00:46:49 +01:00
|
|
|
intval(local_user())
|
2010-07-31 06:22:52 +02:00
|
|
|
);
|
|
|
|
|
|
|
|
require_once("include/bbcode.php");
|
|
|
|
|
2011-05-11 13:37:13 +02:00
|
|
|
$tpl = get_markup_template('msg-header.tpl');
|
2010-12-06 04:28:47 +01:00
|
|
|
$a->page['htmlhead'] .= replace_macros($tpl, array(
|
2012-12-22 20:57:29 +01:00
|
|
|
'$baseurl' => $a->get_baseurl(true),
|
|
|
|
'$editselect' => (($plaintext) ? 'none' : '/(profile-jot-text|prvmail-text)/'),
|
2010-12-06 04:28:47 +01:00
|
|
|
'$nickname' => $a->user['nickname'],
|
2012-12-22 20:57:29 +01:00
|
|
|
'$linkurl' => t('Please enter a link URL:')
|
2010-12-06 04:28:47 +01:00
|
|
|
));
|
2010-07-31 06:22:52 +02:00
|
|
|
|
2012-07-28 17:57:16 +02:00
|
|
|
$tpl = get_markup_template('msg-end.tpl');
|
|
|
|
$a->page['end'] .= replace_macros($tpl, array(
|
2012-12-22 20:57:29 +01:00
|
|
|
'$baseurl' => $a->get_baseurl(true),
|
|
|
|
'$editselect' => (($plaintext) ? 'none' : '/(profile-jot-text|prvmail-text)/'),
|
2012-07-28 17:57:16 +02:00
|
|
|
'$nickname' => $a->user['nickname'],
|
2012-12-22 20:57:29 +01:00
|
|
|
'$linkurl' => t('Please enter a link URL:')
|
2012-07-28 17:57:16 +02:00
|
|
|
));
|
|
|
|
|
2010-07-31 06:22:52 +02:00
|
|
|
|
2012-03-28 15:31:58 +02:00
|
|
|
$mails = array();
|
|
|
|
$seen = 0;
|
2012-04-01 09:59:35 +02:00
|
|
|
$unknown = false;
|
|
|
|
|
2010-07-31 06:22:52 +02:00
|
|
|
foreach($messages as $message) {
|
2012-04-01 09:59:35 +02:00
|
|
|
if($message['unknown'])
|
|
|
|
$unknown = true;
|
2010-09-28 04:48:45 +02:00
|
|
|
if($message['from-url'] == $myprofile) {
|
|
|
|
$from_url = $myprofile;
|
|
|
|
$sparkle = '';
|
|
|
|
}
|
|
|
|
else {
|
2012-03-15 05:20:20 +01:00
|
|
|
$from_url = $a->get_baseurl(true) . '/redir/' . $message['contact-id'];
|
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']);
|
|
|
|
if($extracted['images'])
|
|
|
|
$message['body'] = item_redir_and_replace_images($extracted['body'], $extracted['images'], $message['contact-id']);
|
2012-04-25 14:41:32 +02:00
|
|
|
|
2012-12-22 20:57:29 +01:00
|
|
|
if($a->theme['template_engine'] === 'internal') {
|
|
|
|
$from_name_e = template_escape($message['from-name']);
|
|
|
|
$subject_e = template_escape($message['title']);
|
|
|
|
$body_e = template_escape(smilies(bbcode($message['body'])));
|
|
|
|
$to_name_e = template_escape($message['name']);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$from_name_e = $message['from-name'];
|
|
|
|
$subject_e = $message['title'];
|
|
|
|
$body_e = smilies(bbcode($message['body']));
|
|
|
|
$to_name_e = $message['name'];
|
|
|
|
}
|
|
|
|
|
2012-03-28 15:31:58 +02:00
|
|
|
$mails[] = array(
|
|
|
|
'id' => $message['id'],
|
2012-12-22 20:57:29 +01:00
|
|
|
'from_name' => $from_name_e,
|
2012-03-28 15:31:58 +02:00
|
|
|
'from_url' => $from_url,
|
|
|
|
'sparkle' => $sparkle,
|
|
|
|
'from_photo' => $message['from-photo'],
|
2012-12-22 20:57:29 +01:00
|
|
|
'subject' => $subject_e,
|
|
|
|
'body' => $body_e,
|
2012-03-28 15:31:58 +02:00
|
|
|
'delete' => t('Delete message'),
|
2012-12-22 20:57:29 +01:00
|
|
|
'to_name' => $to_name_e,
|
2012-03-28 15:31:58 +02:00
|
|
|
'date' => datetime_convert('UTC',date_default_timezone_get(),$message['created'],'D, d M Y - g:i A'),
|
2012-08-27 19:46:35 +02:00
|
|
|
'ago' => relative_date($message['created']),
|
2012-03-28 15:31:58 +02: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');
|
2012-12-22 20:57:29 +01:00
|
|
|
|
|
|
|
if($a->theme['template_engine'] === 'internal') {
|
|
|
|
$subjtxt_e = template_escape($message['title']);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$subjtxt_e = $message['title'];
|
|
|
|
}
|
|
|
|
|
2012-12-25 19:48:02 +01:00
|
|
|
$o = replace_macros($tpl, array(
|
2012-03-28 15:31:58 +02:00
|
|
|
'$thread_id' => $a->argv[1],
|
|
|
|
'$thread_subject' => $message['title'],
|
|
|
|
'$thread_seen' => $seen,
|
|
|
|
'$delete' => t('Delete conversation'),
|
2012-04-01 09:59:35 +02:00
|
|
|
'$canreply' => (($unknown) ? false : '1'),
|
2015-01-27 08:04:24 +01:00
|
|
|
'$unknown_text' => 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
|
2012-12-26 18:42:01 +01:00
|
|
|
'$header' => t('Send Reply'),
|
|
|
|
'$to' => t('To:'),
|
|
|
|
'$showinputs' => '',
|
|
|
|
'$subject' => t('Subject:'),
|
2013-01-12 13:58:54 +01:00
|
|
|
'$subjtxt' => $subjtxt_e,
|
2012-12-26 18:42:01 +01:00
|
|
|
'$readonly' => ' readonly="readonly" style="background: #BBBBBB;" ',
|
|
|
|
'$yourmessage' => t('Your message:'),
|
|
|
|
'$text' => '',
|
|
|
|
'$select' => $select,
|
|
|
|
'$parent' => $parent,
|
|
|
|
'$upload' => t('Upload photo'),
|
|
|
|
'$insert' => t('Insert web link'),
|
|
|
|
'$submit' => t('Submit'),
|
|
|
|
'$wait' => t('Please wait')
|
2012-03-28 15:31:58 +02:00
|
|
|
|
2010-07-31 06:22:52 +02:00
|
|
|
));
|
|
|
|
|
|
|
|
return $o;
|
|
|
|
}
|
2015-11-07 18:53:32 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
function get_messages($user, $lstart, $lend) {
|
|
|
|
|
|
|
|
return q("SELECT max(`mail`.`created`) AS `mailcreated`, min(`mail`.`seen`) AS `mailseen`,
|
|
|
|
`mail`.* , `contact`.`name`, `contact`.`url`, `contact`.`thumb` , `contact`.`network`,
|
|
|
|
count( * ) as count
|
|
|
|
FROM `mail` LEFT JOIN `contact` ON `mail`.`contact-id` = `contact`.`id`
|
|
|
|
WHERE `mail`.`uid` = %d GROUP BY `parent-uri` ORDER BY `mailcreated` DESC LIMIT %d , %d ",
|
|
|
|
intval($user), intval($lstart), intval($lend)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
function render_messages($msg, $t) {
|
|
|
|
|
|
|
|
$a = get_app();
|
|
|
|
|
|
|
|
$tpl = get_markup_template($t);
|
|
|
|
$rslt = '';
|
|
|
|
|
|
|
|
foreach($msg as $rr) {
|
|
|
|
|
|
|
|
if($rr['unknown']) {
|
|
|
|
$participants = sprintf( t("Unknown sender - %s"),$rr['from-name']);
|
|
|
|
}
|
|
|
|
elseif (link_compare($rr['from-url'], $myprofile)){
|
|
|
|
$participants = sprintf( t("You and %s"), $rr['name']);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$participants = sprintf( t("%s and You"), $rr['from-name']);
|
|
|
|
}
|
|
|
|
|
|
|
|
if($a->theme['template_engine'] === 'internal') {
|
|
|
|
$subject_e = template_escape((($rr['mailseen']) ? $rr['title'] : '<strong>' . $rr['title'] . '</strong>'));
|
|
|
|
$body_e = template_escape($rr['body']);
|
|
|
|
$to_name_e = template_escape($rr['name']);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$subject_e = (($rr['mailseen']) ? $rr['title'] : '<strong>' . $rr['title'] . '</strong>');
|
|
|
|
$body_e = $rr['body'];
|
|
|
|
$to_name_e = $rr['name'];
|
|
|
|
}
|
|
|
|
|
|
|
|
$rslt .= replace_macros($tpl, array(
|
|
|
|
'$id' => $rr['id'],
|
|
|
|
'$from_name' => $participants,
|
|
|
|
'$from_url' => (($rr['network'] === NETWORK_DFRN) ? $a->get_baseurl(true) . '/redir/' . $rr['contact-id'] : $rr['url']),
|
|
|
|
'$sparkle' => ' sparkle',
|
|
|
|
'$from_photo' => (($rr['thumb']) ? $rr['thumb'] : $rr['from-photo']),
|
|
|
|
'$subject' => $subject_e,
|
|
|
|
'$delete' => t('Delete conversation'),
|
|
|
|
'$body' => $body_e,
|
|
|
|
'$to_name' => $to_name_e,
|
|
|
|
'$date' => datetime_convert('UTC',date_default_timezone_get(),$rr['mailcreated'], t('D, d M Y - g:i A')),
|
|
|
|
'$ago' => relative_date($rr['mailcreated']),
|
|
|
|
'$seen' => $rr['mailseen'],
|
|
|
|
'$count' => sprintf( tt('%d message', '%d messages', $rr['count']), $rr['count']),
|
|
|
|
));
|
|
|
|
}
|
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
|
|
|
}
|