3 require_once('include/acl_selectors.php');
5 function message_init(&$a) {
10 function message_post(&$a) {
13 notice( t('Permission denied.') . EOL);
17 $replyto = ((x($_POST,'replyto')) ? notags(trim($_POST['replyto'])) : '');
18 $subject = ((x($_POST,'subject')) ? notags(trim($_POST['subject'])) : '');
19 $body = ((x($_POST,'body')) ? escape_tags(trim($_POST['body'])) : '');
20 $recipient = ((x($_POST,'messageto')) ? intval($_POST['messageto']) : 0 );
23 notice( t('No recipient selected.') . EOL );
27 if(! strlen($subject))
28 $subject = t('[no subject]');
30 $me = q("SELECT * FROM `contact` WHERE `uid` = %d AND `self` = 1 LIMIT 1",
33 $contact = q("SELECT * FROM `contact` WHERE `id` = %d AND `uid` = %d LIMIT 1",
38 if(! (count($me) && (count($contact)))) {
39 notice( t('Unable to locate contact information.') . EOL );
43 $hash = random_string();
44 $uri = 'urn:X-dfrn:' . $a->get_baseurl() . ':' . local_user() . ':' . $hash ;
46 if(! strlen($replyto))
49 $r = q("INSERT INTO `mail` ( `uid`, `from-name`, `from-photo`, `from-url`,
50 `contact-id`, `title`, `body`, `delivered`, `seen`, `replied`, `uri`, `parent-uri`, `created`)
51 VALUES ( %d, '%s', '%s', '%s', %d, '%s', '%s', %d, %d, %d, '%s', '%s', '%s' )",
53 dbesc($me[0]['name']),
54 dbesc($me[0]['thumb']),
66 $r = q("SELECT * FROM `mail` WHERE `uri` = '%s' and `uid` = %d LIMIT 1",
71 $post_id = $r[0]['id'];
73 $php_path = ((strlen($a->config['php_path'])) ? $a->config['php_path'] : 'php');
76 proc_close(proc_open("\"$php_path\" \"include/notifier.php\" \"mail\" \"$post_id\" &",
78 notice( t('Message sent.') . EOL );
81 notice( t('Message could not be sent.') . EOL );
87 function message_content(&$a) {
90 $o .= '<script> $(document).ready(function() { $(\'#nav-messages-link\').addClass(\'nav-selected\'); });</script>';
93 notice( t('Permission denied.') . EOL);
97 $myprofile = $a->get_baseurl() . '/profile/' . $a->user['nickname'];
100 $tpl = load_view_file('view/mail_head.tpl');
101 $header = replace_macros($tpl, array(
102 '$messages' => t('Messages'),
103 '$inbox' => t('Inbox'),
104 '$outbox' => t('Outbox'),
105 '$new' => t('New Message')
109 if(($a->argc == 3) && ($a->argv[1] === 'drop' || $a->argv[1] === 'dropconv')) {
110 if(! intval($a->argv[2]))
113 if($cmd === 'drop') {
114 $r = q("DELETE FROM `mail` WHERE `id` = %d AND `uid` = %d LIMIT 1",
119 notice( t('Message deleted.') . EOL );
121 goaway($a->get_baseurl() . '/message' );
124 $r = q("SELECT `parent-uri` FROM `mail` WHERE `id` = %d AND `uid` = %d LIMIT 1",
129 $parent = $r[0]['parent-uri'];
130 $r = q("DELETE FROM `mail` WHERE `parent-uri` = '%s' AND `uid` = %d ",
135 notice( t('Conversation removed.') . EOL );
137 goaway($a->get_baseurl() . '/message' );
141 if(($a->argc > 2) && ($a->argv[1] === 'redeliver') && intval($a->argv[2])) {
142 $post_id = intval($a->argv[2]);
143 $php_path = ((strlen($a->config['php_path'])) ? $a->config['php_path'] : 'php');
145 proc_close(proc_open("\"$php_path\" \"include/notifier.php\" \"mail\" \"$post_id\" & ",
147 goaway($a->get_baseurl() . '/message' );
152 if(($a->argc > 1) && ($a->argv[1] === 'new')) {
154 $tpl = load_view_file('view/msg-header.tpl');
156 $a->page['htmlhead'] .= replace_macros($tpl, array('$baseurl' => $a->get_baseurl()));
158 $select = contact_select('messageto','message-to-select', false, 4, true);
159 $tpl = load_view_file('view/prv_message.tpl');
160 $o .= replace_macros($tpl,array(
161 '$header' => t('Send Private Message'),
163 '$subject' => t('Subject:'),
166 '$yourmessage' => t('Your message:'),
167 '$select' => $select,
169 '$upload' => t('Upload photo'),
170 '$insert' => t('Insert web link'),
171 '$wait' => t('Please wait')
178 if(($a->argc == 1) || ($a->argc == 2 && $a->argv[1] === 'sent')) {
183 $eq = '='; // I'm not going to bother escaping this.
185 $eq = '!='; // or this.
187 $r = q("SELECT count(*) AS `total` FROM `mail`
188 WHERE `mail`.`uid` = %d AND `from-url` $eq '%s' GROUP BY `parent-uri` ORDER BY `created` DESC",
189 intval(local_user()),
193 $a->set_pager_total($r[0]['total']);
195 $r = q("SELECT max(`mail`.`created`) AS `mailcreated`, min(`mail`.`seen`) AS `mailseen`,
196 `mail`.* , `contact`.`name`, `contact`.`url`, `contact`.`thumb`
197 FROM `mail` LEFT JOIN `contact` ON `mail`.`contact-id` = `contact`.`id`
198 WHERE `mail`.`uid` = %d AND `from-url` $eq '%s' GROUP BY `parent-uri` ORDER BY `created` DESC LIMIT %d , %d ",
199 intval(local_user()),
201 intval($a->pager['start']),
202 intval($a->pager['itemspage'])
205 notice( t('No messages.') . EOL);
209 $tpl = load_view_file('view/mail_list.tpl');
211 $o .= replace_macros($tpl, array(
213 '$from_name' =>$rr['from-name'],
214 '$from_url' => $a->get_baseurl() . '/redir/' . $rr['contact-id'],
215 '$sparkle' => ' sparkle',
216 '$from_photo' => $rr['from-photo'],
217 '$subject' => (($rr['mailseen']) ? $rr['title'] : '<strong>' . $rr['title'] . '</strong>'),
218 '$delete' => t('Delete conversation'),
219 '$body' => $rr['body'],
220 '$to_name' => $rr['name'],
221 '$date' => datetime_convert('UTC',date_default_timezone_get(),$rr['mailcreated'],'D, d M Y - g:i A')
228 if(($a->argc > 1) && (intval($a->argv[1]))) {
232 $r = q("SELECT `mail`.*, `contact`.`name`, `contact`.`url`, `contact`.`thumb`
233 FROM `mail` LEFT JOIN `contact` ON `mail`.`contact-id` = `contact`.`id`
234 WHERE `mail`.`uid` = %d AND `mail`.`id` = %d LIMIT 1",
235 intval(local_user()),
239 $contact_id = $r[0]['contact-id'];
240 $messages = q("SELECT `mail`.*, `contact`.`name`, `contact`.`url`, `contact`.`thumb`
241 FROM `mail` LEFT JOIN `contact` ON `mail`.`contact-id` = `contact`.`id`
242 WHERE `mail`.`uid` = %d AND `mail`.`parent-uri` = '%s' ORDER BY `mail`.`created` ASC",
243 intval(local_user()),
244 dbesc($r[0]['parent-uri'])
247 if(! count($messages)) {
248 notice( t('Message not available.') . EOL );
252 $r = q("UPDATE `mail` SET `seen` = 1 WHERE `parent-uri` = '%s' AND `uid` = %d",
253 dbesc($r[0]['parent-uri']),
257 require_once("include/bbcode.php");
259 $tpl = load_view_file('view/msg-header.tpl');
261 $a->page['htmlhead'] .= replace_macros($tpl, array('$baseurl' => $a->get_baseurl()));
264 $tpl = load_view_file('view/mail_conv.tpl');
265 foreach($messages as $message) {
266 if($message['from-url'] == $myprofile) {
267 $from_url = $myprofile;
271 $from_url = $a->get_baseurl() . '/redir/' . $message['contact-id'];
272 $sparkle = ' sparkle';
274 $o .= replace_macros($tpl, array(
275 '$id' => $message['id'],
276 '$from_name' =>$message['from-name'],
277 '$from_url' => $from_url,
278 '$sparkle' => $sparkle,
279 '$from_photo' => $message['from-photo'],
280 '$subject' => $message['title'],
281 '$body' => bbcode($message['body']),
282 '$delete' => t('Delete message'),
283 '$to_name' => $message['name'],
284 '$date' => datetime_convert('UTC',date_default_timezone_get(),$message['created'],'D, d M Y - g:i A')
288 $select = $message['name'] . '<input type="hidden" name="messageto" value="' . $contact_id . '" />';
289 $parent = '<input type="hidden" name="replyto" value="' . $message['parent-uri'] . '" />';
290 $tpl = load_view_file('view/prv_message.tpl');
291 $o .= replace_macros($tpl,array(
292 '$header' => t('Send Reply'),
294 '$subject' => t('Subject:'),
295 '$subjtxt' => $message['title'],
296 '$readonly' => ' readonly="readonly" style="background: #BBBBBB;" ',
297 '$yourmessage' => t('Your message:'),
298 '$select' => $select,
299 '$parent' => $parent,
300 '$upload' => t('Upload photo'),
301 '$insert' => t('Insert web link'),
302 '$wait' => t('Please wait')