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
|
|
|
|
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
|
|
|
|
2010-08-16 06:49:29 +02: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';
|
|
|
|
}
|
|
|
|
|
2010-07-30 15:09:20 +02:00
|
|
|
}
|
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-10-12 06:30:23 +02:00
|
|
|
|
|
|
|
$tabs = array(
|
|
|
|
array(
|
|
|
|
'label' => t('Inbox'),
|
2012-03-15 05:20:20 +01:00
|
|
|
'url'=> $a->get_baseurl(true) . '/message',
|
2011-10-12 06:30:23 +02:00
|
|
|
'sel'=> (($a->argc == 1) ? 'active' : ''),
|
|
|
|
),
|
|
|
|
array(
|
|
|
|
'label' => t('Outbox'),
|
2012-03-15 05:20:20 +01:00
|
|
|
'url' => $a->get_baseurl(true) . '/message/sent',
|
2011-10-12 06:30:23 +02:00
|
|
|
'sel'=> (($a->argv[1] == 'sent') ? 'active' : ''),
|
|
|
|
),
|
|
|
|
array(
|
|
|
|
'label' => t('New Message'),
|
2012-03-15 05:20:20 +01:00
|
|
|
'url' => $a->get_baseurl(true) . '/message/new',
|
2011-10-12 06:30:23 +02:00
|
|
|
'sel'=> (($a->argv[1] == 'new') ? 'active' : ''),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
$tpl = get_markup_template('common_tabs.tpl');
|
|
|
|
$tab_content = replace_macros($tpl, array('$tabs'=>$tabs));
|
|
|
|
|
|
|
|
|
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;
|
|
|
|
$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
|
|
|
}
|
2012-03-15 05:20:20 +01:00
|
|
|
goaway($a->get_baseurl(true) . '/message' );
|
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,
|
|
|
|
// as we will never again have the info we need to re-create it.
|
|
|
|
// We'll just have to orphan it.
|
|
|
|
|
|
|
|
//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 );
|
2010-07-31 06:22:52 +02:00
|
|
|
}
|
2012-03-15 05:20:20 +01:00
|
|
|
goaway($a->get_baseurl(true) . '/message' );
|
2010-07-31 06:22:52 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2010-09-27 02:24:20 +02:00
|
|
|
if(($a->argc > 1) && ($a->argv[1] === 'new')) {
|
2010-07-28 13:45:07 +02:00
|
|
|
|
2011-10-03 03:37:47 +02:00
|
|
|
$o .= $header;
|
|
|
|
|
2012-03-09 09:47:10 +01:00
|
|
|
$plaintext = false;
|
|
|
|
if(intval(get_pconfig(local_user(),'system','plaintext')))
|
|
|
|
$plaintext = true;
|
|
|
|
|
|
|
|
|
2011-05-11 13:37:13 +02:00
|
|
|
$tpl = get_markup_template('msg-header.tpl');
|
2010-07-28 13:45:07 +02:00
|
|
|
|
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
|
|
|
));
|
|
|
|
|
2011-03-31 16:54:06 +02:00
|
|
|
$preselect = (isset($a->argv[2])?array($a->argv[2]):false);
|
|
|
|
|
|
|
|
$select = contact_select('messageto','message-to-select', $preselect, 4, true);
|
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(
|
2010-07-30 15:09:20 +02:00
|
|
|
'$header' => t('Send Private Message'),
|
|
|
|
'$to' => t('To:'),
|
|
|
|
'$subject' => t('Subject:'),
|
2012-03-11 00:50:51 +01:00
|
|
|
'$subjtxt' => ((x($_REQUEST,'subject')) ? strip_tags($_REQUEST['subject']) : ''),
|
|
|
|
'$text' => ((x($_REQUEST,'body')) ? escape_tags(htmlspecialchars($_REQUEST['body'])) : ''),
|
2010-07-31 06:22:52 +02:00
|
|
|
'$readonly' => '',
|
2010-07-30 15:09:20 +02:00
|
|
|
'$yourmessage' => t('Your message:'),
|
|
|
|
'$select' => $select,
|
2010-07-31 06:22:52 +02:00
|
|
|
'$parent' => '',
|
2010-07-30 15:09:20 +02:00
|
|
|
'$upload' => t('Upload photo'),
|
|
|
|
'$insert' => t('Insert web link'),
|
|
|
|
'$wait' => t('Please wait')
|
2010-07-28 13:45:07 +02:00
|
|
|
));
|
|
|
|
|
|
|
|
return $o;
|
|
|
|
}
|
|
|
|
|
2010-09-27 02:24:20 +02:00
|
|
|
if(($a->argc == 1) || ($a->argc == 2 && $a->argv[1] === 'sent')) {
|
2010-07-31 06:22:52 +02:00
|
|
|
|
|
|
|
$o .= $header;
|
|
|
|
|
|
|
|
if($a->argc == 2)
|
|
|
|
$eq = '='; // I'm not going to bother escaping this.
|
|
|
|
else
|
|
|
|
$eq = '!='; // or this.
|
2010-07-28 13:45:07 +02:00
|
|
|
|
2010-07-30 15:09:20 +02:00
|
|
|
$r = q("SELECT count(*) AS `total` FROM `mail`
|
2010-07-31 06:22:52 +02:00
|
|
|
WHERE `mail`.`uid` = %d AND `from-url` $eq '%s' 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)
|
|
|
|
);
|
|
|
|
if(count($r))
|
|
|
|
$a->set_pager_total($r[0]['total']);
|
|
|
|
|
2010-07-31 06:22:52 +02:00
|
|
|
$r = q("SELECT max(`mail`.`created`) AS `mailcreated`, min(`mail`.`seen`) AS `mailseen`,
|
2012-02-28 14:40:41 +01:00
|
|
|
`mail`.* , `contact`.`name`, `contact`.`url`, `contact`.`thumb` , `contact`.`network`
|
2010-07-30 15:09:20 +02:00
|
|
|
FROM `mail` LEFT JOIN `contact` ON `mail`.`contact-id` = `contact`.`id`
|
2012-03-14 03:27:52 +01:00
|
|
|
WHERE `mail`.`uid` = %d AND `from-url` $eq '%s' GROUP BY `parent-uri` ORDER BY `mailcreated` DESC LIMIT %d , %d ",
|
2010-11-08 00:46:49 +01:00
|
|
|
intval(local_user()),
|
2010-07-30 15:09:20 +02:00
|
|
|
dbesc($myprofile),
|
2010-07-28 13:45:07 +02:00
|
|
|
intval($a->pager['start']),
|
|
|
|
intval($a->pager['itemspage'])
|
|
|
|
);
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2011-05-11 13:37:13 +02:00
|
|
|
$tpl = get_markup_template('mail_list.tpl');
|
2010-07-30 15:09:20 +02:00
|
|
|
foreach($r as $rr) {
|
|
|
|
$o .= replace_macros($tpl, array(
|
|
|
|
'$id' => $rr['id'],
|
|
|
|
'$from_name' =>$rr['from-name'],
|
2012-03-15 05:20:20 +01:00
|
|
|
'$from_url' => (($rr['network'] === NETWORK_DFRN) ? $a->get_baseurl(true) . '/redir/' . $rr['contact-id'] : $rr['url']),
|
2010-09-28 04:48:45 +02:00
|
|
|
'$sparkle' => ' sparkle',
|
2010-12-06 04:28:47 +01:00
|
|
|
'$from_photo' => $rr['thumb'],
|
2011-09-20 04:46:18 +02:00
|
|
|
'$subject' => template_escape((($rr['mailseen']) ? $rr['title'] : '<strong>' . $rr['title'] . '</strong>')),
|
2010-07-31 06:22:52 +02:00
|
|
|
'$delete' => t('Delete conversation'),
|
2011-09-20 04:46:18 +02:00
|
|
|
'$body' => template_escape($rr['body']),
|
|
|
|
'$to_name' => template_escape($rr['name']),
|
2011-03-31 23:46:16 +02:00
|
|
|
'$date' => datetime_convert('UTC',date_default_timezone_get(),$rr['mailcreated'], t('D, d M Y - g:i A'))
|
2010-07-30 15:09:20 +02:00
|
|
|
));
|
|
|
|
}
|
|
|
|
$o .= paginate($a);
|
|
|
|
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;
|
|
|
|
|
|
|
|
$r = q("SELECT `mail`.*, `contact`.`name`, `contact`.`url`, `contact`.`thumb`
|
|
|
|
FROM `mail` LEFT JOIN `contact` ON `mail`.`contact-id` = `contact`.`id`
|
|
|
|
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])
|
|
|
|
);
|
|
|
|
if(count($r)) {
|
|
|
|
$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)
|
|
|
|
);
|
|
|
|
|
2010-07-31 06:22:52 +02: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-07-31 06:22:52 +02:00
|
|
|
|
2010-12-06 04:28:47 +01:00
|
|
|
$a->page['htmlhead'] .= replace_macros($tpl, array(
|
|
|
|
'$nickname' => $a->user['nickname'],
|
2012-03-15 05:20:20 +01:00
|
|
|
'$baseurl' => $a->get_baseurl(true)
|
2010-12-06 04:28:47 +01:00
|
|
|
));
|
2010-07-31 06:22:52 +02:00
|
|
|
|
|
|
|
|
2011-05-11 13:37:13 +02:00
|
|
|
$tpl = get_markup_template('mail_conv.tpl');
|
2010-07-31 06:22:52 +02:00
|
|
|
foreach($messages as $message) {
|
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';
|
|
|
|
}
|
2010-07-31 06:22:52 +02:00
|
|
|
$o .= replace_macros($tpl, array(
|
|
|
|
'$id' => $message['id'],
|
2011-09-20 04:46:18 +02:00
|
|
|
'$from_name' => template_escape($message['from-name']),
|
2010-09-28 04:48:45 +02:00
|
|
|
'$from_url' => $from_url,
|
|
|
|
'$sparkle' => $sparkle,
|
2010-07-31 06:22:52 +02:00
|
|
|
'$from_photo' => $message['from-photo'],
|
2011-09-20 04:46:18 +02:00
|
|
|
'$subject' => template_escape($message['title']),
|
|
|
|
'$body' => template_escape(smilies(bbcode($message['body']))),
|
2010-07-31 06:22:52 +02:00
|
|
|
'$delete' => t('Delete message'),
|
2011-09-20 04:46:18 +02:00
|
|
|
'$to_name' => template_escape($message['name']),
|
2010-07-31 06:22:52 +02:00
|
|
|
'$date' => datetime_convert('UTC',date_default_timezone_get(),$message['created'],'D, d M Y - g:i A')
|
|
|
|
));
|
|
|
|
|
|
|
|
}
|
|
|
|
$select = $message['name'] . '<input type="hidden" name="messageto" value="' . $contact_id . '" />';
|
|
|
|
$parent = '<input type="hidden" name="replyto" value="' . $message['parent-uri'] . '" />';
|
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(
|
|
|
|
'$header' => t('Send Reply'),
|
|
|
|
'$to' => t('To:'),
|
|
|
|
'$subject' => t('Subject:'),
|
2011-09-20 04:46:18 +02:00
|
|
|
'$subjtxt' => template_escape($message['title']),
|
2010-07-31 06:22:52 +02:00
|
|
|
'$readonly' => ' readonly="readonly" style="background: #BBBBBB;" ',
|
|
|
|
'$yourmessage' => t('Your message:'),
|
2012-03-11 00:53:36 +01:00
|
|
|
'$text' => '',
|
2010-07-31 06:22:52 +02:00
|
|
|
'$select' => $select,
|
|
|
|
'$parent' => $parent,
|
|
|
|
'$upload' => t('Upload photo'),
|
|
|
|
'$insert' => t('Insert web link'),
|
|
|
|
'$wait' => t('Please wait')
|
|
|
|
));
|
|
|
|
|
|
|
|
return $o;
|
|
|
|
}
|
|
|
|
|
2011-05-23 11:39:57 +02:00
|
|
|
}
|