3 require_once('include/acl_selectors.php');
4 require_once('include/message.php');
6 function message_init(&$a) {
9 'label' => t('New Message'),
10 'url' => $a->get_baseurl(true) . '/message/new',
11 'sel'=> ($a->argv[1] == 'new'),
14 $tpl = get_markup_template('message_side.tpl');
15 $a->page['aside'] = replace_macros($tpl, array(
19 $base = $a->get_baseurl();
21 $a->page['htmlhead'] .= '<script src="' . $a->get_baseurl(true) . '/library/jquery_ac/jquery.autocomplete-min.js" ></script>';
22 $a->page['htmlhead'] .= <<< EOT
24 <script>$(document).ready(function() {
26 a = $("#messageto").autocomplete({
27 serviceUrl: '$base/acl'
36 function message_post(&$a) {
39 notice( t('Permission denied.') . EOL);
43 $replyto = ((x($_REQUEST,'replyto')) ? notags(trim($_REQUEST['replyto'])) : '');
44 $subject = ((x($_REQUEST,'subject')) ? notags(trim($_REQUEST['subject'])) : '');
45 $body = ((x($_REQUEST,'body')) ? escape_tags(trim($_REQUEST['body'])) : '');
46 $recipient = ((x($_REQUEST,'messageto')) ? intval($_REQUEST['messageto']) : 0 );
48 // Work around doubled linefeeds in Tinymce 3.5b2
50 $plaintext = intval(get_pconfig(local_user(),'system','plaintext'));
52 $body = fix_mce_lf($body);
55 $ret = send_message($recipient, $body, $subject, $replyto);
60 notice( t('No recipient selected.') . EOL );
64 notice( t('Unable to locate contact information.') . EOL );
67 notice( t('Message could not be sent.') . EOL );
70 notice( t('Message collection failure.') . EOL );
73 info( t('Message sent.') . EOL );
76 // fake it to go back to the input form if no recipient listed
85 function message_content(&$a) {
88 nav_set_selected('messages');
91 notice( t('Permission denied.') . EOL);
95 $myprofile = $a->get_baseurl(true) . '/profile/' . $a->user['nickname'];
101 $tpl = get_markup_template('mail_head.tpl');
102 $header = replace_macros($tpl, array(
103 '$messages' => t('Messages'),
104 '$tab_content' => $tab_content
108 if(($a->argc == 3) && ($a->argv[1] === 'drop' || $a->argv[1] === 'dropconv')) {
109 if(! intval($a->argv[2]))
112 if($cmd === 'drop') {
113 $r = q("DELETE FROM `mail` WHERE `id` = %d AND `uid` = %d LIMIT 1",
118 info( t('Message deleted.') . EOL );
120 goaway($a->get_baseurl(true) . '/message' );
123 $r = q("SELECT `parent-uri`,`convid` FROM `mail` WHERE `id` = %d AND `uid` = %d LIMIT 1",
128 $parent = $r[0]['parent-uri'];
129 $convid = $r[0]['convid'];
131 $r = q("DELETE FROM `mail` WHERE `parent-uri` = '%s' AND `uid` = %d ",
136 // remove diaspora conversation pointer
137 // Actually if we do this, we can never receive another reply to that conversation,
138 // as we will never again have the info we need to re-create it.
139 // We'll just have to orphan it.
142 // q("delete from conv where id = %d limit 1",
148 info( t('Conversation removed.') . EOL );
150 goaway($a->get_baseurl(true) . '/message' );
155 if(($a->argc > 1) && ($a->argv[1] === 'new')) {
160 if(intval(get_pconfig(local_user(),'system','plaintext')))
164 $tpl = get_markup_template('msg-header.tpl');
166 $a->page['htmlhead'] .= replace_macros($tpl, array(
167 '$baseurl' => $a->get_baseurl(true),
168 '$editselect' => (($plaintext) ? 'none' : '/(profile-jot-text|prvmail-text)/'),
169 '$nickname' => $a->user['nickname'],
170 '$linkurl' => t('Please enter a link URL:')
173 $preselect = (isset($a->argv[2])?array($a->argv[2]):false);
175 // $select = contact_select('messageto','message-to-select', $preselect, 4, true, false, false, 10);
176 $select = '<input type="text" id="messageto" name="messageto" value="' . $preselect .'" />';
178 $tpl = get_markup_template('prv_message.tpl');
179 $o .= replace_macros($tpl,array(
180 '$header' => t('Send Private Message'),
182 '$subject' => t('Subject:'),
183 '$subjtxt' => ((x($_REQUEST,'subject')) ? strip_tags($_REQUEST['subject']) : ''),
184 '$text' => ((x($_REQUEST,'body')) ? escape_tags(htmlspecialchars($_REQUEST['body'])) : ''),
186 '$yourmessage' => t('Your message:'),
187 '$select' => $select,
189 '$upload' => t('Upload photo'),
190 '$insert' => t('Insert web link'),
191 '$wait' => t('Please wait')
203 $r = q("SELECT count(*) AS `total` FROM `mail`
204 WHERE `mail`.`uid` = %d GROUP BY `parent-uri` ORDER BY `created` DESC",
205 intval(local_user()),
209 $a->set_pager_total($r[0]['total']);
211 $r = q("SELECT max(`mail`.`created`) AS `mailcreated`, min(`mail`.`seen`) AS `mailseen`,
212 `mail`.* , `contact`.`name`, `contact`.`url`, `contact`.`thumb` , `contact`.`network`,
214 FROM `mail` LEFT JOIN `contact` ON `mail`.`contact-id` = `contact`.`id`
215 WHERE `mail`.`uid` = %d GROUP BY `parent-uri` ORDER BY `mailcreated` DESC LIMIT %d , %d ",
216 intval(local_user()),
218 intval($a->pager['start']),
219 intval($a->pager['itemspage'])
222 info( t('No messages.') . EOL);
226 $tpl = get_markup_template('mail_list.tpl');
229 $partecipants = sprintf( t("Unknown sender - %s"),$rr['from-name']);
231 elseif (link_compare($rr['from-url'],$myprofile)){
232 $partecipants = sprintf( t("You and %s"), $rr['name']);
235 $partecipants = sprintf( t("%s and You"), $rr['from-name']);
238 $o .= replace_macros($tpl, array(
240 '$from_name' => $partecipants,
241 '$from_url' => (($rr['network'] === NETWORK_DFRN) ? $a->get_baseurl(true) . '/redir/' . $rr['contact-id'] : $rr['url']),
242 '$sparkle' => ' sparkle',
243 '$from_photo' => (($rr['thumb']) ? $rr['thumb'] : $rr['from-photo']),
244 '$subject' => template_escape((($rr['mailseen']) ? $rr['title'] : '<strong>' . $rr['title'] . '</strong>')),
245 '$delete' => t('Delete conversation'),
246 '$body' => template_escape($rr['body']),
247 '$to_name' => template_escape($rr['name']),
248 '$date' => datetime_convert('UTC',date_default_timezone_get(),$rr['mailcreated'], t('D, d M Y - g:i A')),
249 '$seen' => $rr['mailseen'],
250 '$count' => sprintf( tt('%d message', '%d messages', $rr['count']), $rr['count']),
257 if(($a->argc > 1) && (intval($a->argv[1]))) {
261 $r = q("SELECT `mail`.*, `contact`.`name`, `contact`.`url`, `contact`.`thumb`
262 FROM `mail` LEFT JOIN `contact` ON `mail`.`contact-id` = `contact`.`id`
263 WHERE `mail`.`uid` = %d AND `mail`.`id` = %d LIMIT 1",
264 intval(local_user()),
268 $contact_id = $r[0]['contact-id'];
269 $convid = $r[0]['convid'];
271 $sql_extra = sprintf(" and `mail`.`parent-uri` = '%s' ", dbesc($r[0]['parent-uri']));
273 $sql_extra = sprintf(" and ( `mail`.`parent-uri` = '%s' OR `mail`.`convid` = '%d' ) ",
274 dbesc($r[0]['parent-uri']),
278 $messages = q("SELECT `mail`.*, `contact`.`name`, `contact`.`url`, `contact`.`thumb`
279 FROM `mail` LEFT JOIN `contact` ON `mail`.`contact-id` = `contact`.`id`
280 WHERE `mail`.`uid` = %d $sql_extra ORDER BY `mail`.`created` ASC",
284 if(! count($messages)) {
285 notice( t('Message not available.') . EOL );
289 $r = q("UPDATE `mail` SET `seen` = 1 WHERE `parent-uri` = '%s' AND `uid` = %d",
290 dbesc($r[0]['parent-uri']),
294 require_once("include/bbcode.php");
296 $tpl = get_markup_template('msg-header.tpl');
298 $a->page['htmlhead'] .= replace_macros($tpl, array(
299 '$nickname' => $a->user['nickname'],
300 '$baseurl' => $a->get_baseurl(true)
308 foreach($messages as $message) {
309 if($message['unknown'])
311 if($message['from-url'] == $myprofile) {
312 $from_url = $myprofile;
316 $from_url = $a->get_baseurl(true) . '/redir/' . $message['contact-id'];
317 $sparkle = ' sparkle';
321 $Text = $message['body'];
323 $img_start = strpos($Text,'[img]data:');
324 $img_end = strpos($Text,'[/img]');
326 if($img_start !== false && $img_end !== false && $img_end > $img_start) {
327 $start_fragment = substr($Text,0,$img_start);
328 $img_start += strlen('[img]');
329 $saved_image = substr($Text,$img_start,$img_end - $img_start);
330 $end_fragment = substr($Text,$img_end + strlen('[/img]'));
331 $Text = $start_fragment . '[!#saved_image#!]' . $end_fragment;
332 $search = '/\[url\=(.*?)\]\[!#saved_image#!\]\[\/url\]' . '/is';
333 $replace = '[url=' . z_path() . '/redir/' . $message['contact-id']
334 . '?f=1&url=' . '$1' . '][!#saved_image#!][/url]' ;
336 $Text = preg_replace($search,$replace,$Text);
338 if(strlen($saved_image))
339 $message['body'] = str_replace('[!#saved_image#!]', '[img]' . $saved_image . '[/img]',$Text);
343 'id' => $message['id'],
344 'from_name' => template_escape($message['from-name']),
345 'from_url' => $from_url,
346 'sparkle' => $sparkle,
347 'from_photo' => $message['from-photo'],
348 'subject' => template_escape($message['title']),
349 'body' => template_escape(smilies(bbcode($message['body']))),
350 'delete' => t('Delete message'),
351 'to_name' => template_escape($message['name']),
352 'date' => datetime_convert('UTC',date_default_timezone_get(),$message['created'],'D, d M Y - g:i A'),
355 $seen = $message['seen'];
357 $select = $message['name'] . '<input type="hidden" name="messageto" value="' . $contact_id . '" />';
358 $parent = '<input type="hidden" name="replyto" value="' . $message['parent-uri'] . '" />';
361 $tpl = get_markup_template('mail_display.tpl');
362 $o = replace_macros($tpl, array(
363 '$thread_id' => $a->argv[1],
364 '$thread_subject' => $message['title'],
365 '$thread_seen' => $seen,
366 '$delete' => t('Delete conversation'),
367 '$canreply' => (($unknown) ? false : '1'),
368 '$unknown_text' => t("No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."),
372 '$header' => t('Send Reply'),
374 '$subject' => t('Subject:'),
375 '$subjtxt' => template_escape($message['title']),
376 '$readonly' => ' readonly="readonly" style="background: #BBBBBB;" ',
377 '$yourmessage' => t('Your message:'),
379 '$select' => $select,
380 '$parent' => $parent,
381 '$upload' => t('Upload photo'),
382 '$insert' => t('Insert web link'),
383 '$wait' => t('Please wait')