]> git.mxchange.org Git - friendica.git/blob - mod/message.php
b8236641a9c749a765fee383aba4c5d7db925896
[friendica.git] / mod / message.php
1 <?php
2
3 require_once('view/acl_selectors.php');
4
5 function message_init(&$a) {
6
7
8 }
9
10 function message_post(&$a) {
11
12         if(! local_user()) {
13                 notice( t('Permission denied.') . EOL);
14                 return;
15         }
16
17         $replyto = notags(trim($_POST['replyto']));
18         $recipient = intval($_POST['messageto']);
19         $subject = notags(trim($_POST['subject']));
20         $body = escape_tags(trim($_POST['body']));
21
22         if(! $recipient) {
23                 notice( t('No recipient selected.') . EOL );
24                 return;
25         }
26
27         $me = q("SELECT * FROM `contact` WHERE `uid` = %d AND `self` = 1 LIMIT 1",
28                 intval($_SESSION['uid'])
29         );
30         $contact = q("SELECT * FROM `contact` WHERE `id` = %d AND `uid` = %d LIMIT 1",
31                         intval($recipient),
32                         intval($_SESSION['uid'])
33         );
34
35         if(! (count($me) && (count($contact)))) {
36                 notice( t('Unable to locate contact information.') . EOL );
37                 return;
38         }
39
40         $hash = random_string();
41         $uri = 'urn:X-dfrn:' . $a->get_baseurl() . ':' . $_SESSION['uid'] . ':' . $hash ;
42
43         if(! strlen($replyto))
44                 $replyto = $uri;
45
46         $r = q("INSERT INTO `mail` ( `uid`, `from-name`, `from-photo`, `from-url`, 
47                 `contact-id`, `title`, `body`, `delivered`, `seen`, `replied`, `uri`, `parent-uri`, `created`)
48                 VALUES ( %d, '%s', '%s', '%s', %d, '%s', '%s', %d, %d, %d, '%s', '%s', '%s' )",
49                 intval($_SESSION['uid']),
50                 dbesc($me[0]['name']),
51                 dbesc($me[0]['thumb']),
52                 dbesc($me[0]['url']),
53                 intval($recipient),
54                 dbesc($subject),
55                 dbesc($body),
56                 0,
57                 1,
58                 0,
59                 dbesc($uri),
60                 dbesc($replyto),
61                 datetime_convert()
62         );
63         $r = q("SELECT * FROM `mail` WHERE `uri` = '%s' and `uid` = %d LIMIT 1",
64                 dbesc($uri),
65                 intval($_SESSION['uid'])
66         );
67         if(count($r))
68                 $post_id = $r[0]['id'];
69
70         $php_path = ((strlen($a->config['php_path'])) ? $a->config['php_path'] : 'php');
71         
72         if($post_id) {
73                 proc_close(proc_open("\"$php_path\" \"include/notifier.php\" \"mail\" \"$post_id\" &",
74                         array(),$foo));
75                 notice( t('Message sent.') . EOL );
76         }
77         else {
78                 notice( t('Message could not be sent.') . EOL );
79         }
80         return;
81
82 }
83
84 function message_content(&$a) {
85
86         if(! local_user()) {
87                 notice( t('Permission denied.') . EOL);
88                 return;
89         }
90
91         $myprofile = $a->get_baseurl() . '/profile/' . $a->user['nickname'];
92
93
94         $tpl = file_get_contents('view/mail_head.tpl');
95         $header = replace_macros($tpl, array(
96                 '$messages' => t('Messages'),
97                 '$inbox' => t('Inbox'),
98                 '$outbox' => t('Outbox'),
99                 '$new' => t('New Message')
100         ));
101
102
103         if(($a->argc == 3) && ($a->argv[1] == 'drop' || $a->argv[1] == 'dropconv')) {
104                 if(! intval($a->argv[2]))
105                         return;
106                 $cmd = $a->argv[1];
107                 if($cmd == 'drop') {
108                         $r = q("DELETE FROM `mail` WHERE `id` = %d AND `uid` = %d LIMIT 1",
109                                 intval($a->argv[2]),
110                                 intval($_SESSION['uid'])
111                         );
112                         if($r) {
113                                 notice( t('Message deleted.') . EOL );
114                         }
115                         goaway($a->get_baseurl() . '/message' );
116                 }
117                 else {
118                         $r = q("SELECT `parent-uri` FROM `mail` WHERE `id` = %d AND `uid` = %d LIMIT 1",
119                                 intval($a->argv[2]),
120                                 intval($_SESSION['uid'])
121                         );
122                         if(count($r)) {
123                                 $parent = $r[0]['parent-uri'];
124                                 $r = q("DELETE FROM `mail` WHERE `parent-uri` = '%s' AND `uid` = %d ",
125                                         dbesc($parent),
126                                         intval($_SESSION['uid'])
127                                 );
128                                 if($r)
129                                         notice( t('Conversation removed.') . EOL );
130                         } 
131                         goaway($a->get_baseurl() . '/message' );
132                 }       
133         
134         }
135         if(($a->argc > 2) && ($a->argv[1] == 'redeliver') && intval($a->argv[2])) {
136                 $post_id = intval($a->argv[2]);
137                 $php_path = ((strlen($a->config['php_path'])) ? $a->config['php_path'] : 'php');
138
139                 proc_close(proc_open("\"$php_path\" \"include/notifier.php\" \"mail\" \"$post_id\" &",
140                         array(),$foo));
141                 goaway($a->get_baseurl() . '/message' );
142         }
143
144
145
146         if(($a->argc > 1) && ($a->argv[1] == 'new')) {
147                 
148                 $tpl = file_get_contents('view/msg-header.tpl');
149         
150                 $a->page['htmlhead'] .= replace_macros($tpl, array('$baseurl' => $a->get_baseurl()));
151
152                 $select .= contact_select('messageto','message-to-select', false, 4, true);
153                 $tpl = file_get_contents('view/prv_message.tpl');
154                 $o .= replace_macros($tpl,array(
155                         '$header' => t('Send Private Message'),
156                         '$to' => t('To:'),
157                         '$subject' => t('Subject:'),
158                         '$subjtxt' => '',
159                         '$readonly' => '',
160                         '$yourmessage' => t('Your message:'),
161                         '$select' => $select,
162                         '$parent' => '',
163                         '$upload' => t('Upload photo'),
164                         '$insert' => t('Insert web link'),
165                         '$wait' => t('Please wait')
166
167                 ));
168
169                 return $o;
170         }
171
172         if(($a->argc == 1) || ($a->argc == 2 && $a->argv[1] == 'sent')) {
173
174                 $o .= $header;
175                 
176                 if($a->argc == 2)
177                         $eq = '='; // I'm not going to bother escaping this.
178                 else
179                         $eq = '!='; // or this.
180
181                 $r = q("SELECT count(*) AS `total` FROM `mail` 
182                         WHERE `mail`.`uid` = %d AND `from-url` $eq '%s' GROUP BY `parent-uri` ORDER BY `created` DESC",
183                         intval($_SESSION['uid']),
184                         dbesc($myprofile)
185                 );
186                 if(count($r))
187                         $a->set_pager_total($r[0]['total']);
188         
189                 $r = q("SELECT max(`mail`.`created`) AS `mailcreated`, min(`mail`.`seen`) AS `mailseen`, 
190                         `mail`.* , `contact`.`name`, `contact`.`url`, `contact`.`thumb` 
191                         FROM `mail` LEFT JOIN `contact` ON `mail`.`contact-id` = `contact`.`id` 
192                         WHERE `mail`.`uid` = %d AND `from-url` $eq '%s' GROUP BY `parent-uri` ORDER BY `created` DESC  LIMIT %d , %d ",
193                         intval($_SESSION['uid']),
194                         dbesc($myprofile),
195                         intval($a->pager['start']),
196                         intval($a->pager['itemspage'])
197                 );
198                 if(! count($r)) {
199                         notice( t('No messages.') . EOL);
200                         return $o;
201                 }
202
203                 $tpl = file_get_contents('view/mail_list.tpl');
204                 foreach($r as $rr) {
205                         $o .= replace_macros($tpl, array(
206                                 '$id' => $rr['id'],
207                                 '$from_name' =>$rr['from-name'],
208                                 '$from_url' => $a->get_baseurl() . '/redir/' . $rr['contact-id'],
209                                 '$from_photo' => $rr['from-photo'],
210                                 '$subject' => (($rr['mailseen']) ? $rr['title'] : '<strong>' . $rr['title'] . '</strong>'),
211                                 '$delete' => t('Delete conversation'),
212                                 '$body' => $rr['body'],
213                                 '$to_name' => $rr['name'],
214                                 '$date' => datetime_convert('UTC',date_default_timezone_get(),$rr['mailcreated'],'D, d M Y - g:i A')
215                         ));
216                 }
217                 $o .= paginate($a);     
218                 return $o;
219         }
220
221         if(($a->argc > 1) && (intval($a->argv[1]))) {
222
223                 $o .= $header;
224
225                 $r = q("SELECT `mail`.*, `contact`.`name`, `contact`.`url`, `contact`.`thumb` 
226                         FROM `mail` LEFT JOIN `contact` ON `mail`.`contact-id` = `contact`.`id` 
227                         WHERE `mail`.`uid` = %d AND `mail`.`id` = %d LIMIT 1",
228                         intval($_SESSION['uid']),
229                         intval($a->argv[1])
230                 );
231                 if(count($r)) { 
232                         $contact_id = $r[0]['contact-id'];
233                         $messages = q("SELECT `mail`.*, `contact`.`name`, `contact`.`url`, `contact`.`thumb` 
234                                 FROM `mail` LEFT JOIN `contact` ON `mail`.`contact-id` = `contact`.`id` 
235                                 WHERE `mail`.`uid` = %d AND `mail`.`parent-uri` = '%s' ORDER BY `mail`.`created` ASC",
236                                 intval($_SESSION['uid']),
237                                 dbesc($r[0]['parent-uri'])
238                         );
239                 }
240                 if(! count($messages)) {
241                         notice( t('Message not available.') . EOL );
242                         return $o;
243                 }
244
245                 $r = q("UPDATE `mail` SET `seen` = 1 WHERE `parent-uri` = '%s' AND `uid` = %d",
246                         dbesc($r[0]['parent-uri']),
247                         intval($_SESSION['uid'])
248                 );
249
250                 require_once("include/bbcode.php");
251
252                 $tpl = file_get_contents('view/msg-header.tpl');
253         
254                 $a->page['htmlhead'] .= replace_macros($tpl, array('$baseurl' => $a->get_baseurl()));
255
256
257                 $tpl = file_get_contents('view/mail_conv.tpl');
258                 foreach($messages as $message) {
259                         $o .= replace_macros($tpl, array(
260                                 '$id' => $message['id'],
261                                 '$from_name' =>$message['from-name'],
262                                 '$from_url' => (($message['from-url'] == $myprofile) 
263                                         ? $myprofile : $a->get_baseurl() . '/redir/' . $message['contact-id']),
264                                 '$from_photo' => $message['from-photo'],
265                                 '$subject' => $message['title'],
266                                 '$body' => bbcode($message['body']),
267                                 '$delete' => t('Delete message'),
268                                 '$to_name' => $message['name'],
269                                 '$date' => datetime_convert('UTC',date_default_timezone_get(),$message['created'],'D, d M Y - g:i A')
270                         ));
271                                 
272                 }
273                 $select = $message['name'] . '<input type="hidden" name="messageto" value="' . $contact_id . '" />';
274                 $parent = '<input type="hidden" name="replyto" value="' . $message['parent-uri'] . '" />';
275                 $tpl = file_get_contents('view/prv_message.tpl');
276                 $o .= replace_macros($tpl,array(
277                         '$header' => t('Send Reply'),
278                         '$to' => t('To:'),
279                         '$subject' => t('Subject:'),
280                         '$subjtxt' => $message['title'],
281                         '$readonly' => ' readonly="readonly" style="background: #BBBBBB;" ',
282                         '$yourmessage' => t('Your message:'),
283                         '$select' => $select,
284                         '$parent' => $parent,
285                         '$upload' => t('Upload photo'),
286                         '$insert' => t('Insert web link'),
287                         '$wait' => t('Please wait')
288
289                 ));
290
291                 return $o;
292         }
293
294 }