]> git.mxchange.org Git - friendica.git/blob - mod/message.php
localise some more templates
[friendica.git] / mod / message.php
1 <?php
2
3 require_once('include/acl_selectors.php');
4
5 function message_post(&$a) {
6
7         if(! local_user()) {
8                 notice( t('Permission denied.') . EOL);
9                 return;
10         }
11
12         $replyto   = ((x($_POST,'replyto'))   ? notags(trim($_POST['replyto']))   : '');
13         $subject   = ((x($_POST,'subject'))   ? notags(trim($_POST['subject']))   : '');
14         $body      = ((x($_POST,'body'))      ? escape_tags(trim($_POST['body'])) : '');
15         $recipient = ((x($_POST,'messageto')) ? intval($_POST['messageto'])       : 0 );
16
17         if(! $recipient) {
18                 notice( t('No recipient selected.') . EOL );
19                 return;
20         }
21
22         if(! strlen($subject))
23                 $subject = t('[no subject]');
24
25         $me = q("SELECT * FROM `contact` WHERE `uid` = %d AND `self` = 1 LIMIT 1",
26                 intval(local_user())
27         );
28         $contact = q("SELECT * FROM `contact` WHERE `id` = %d AND `uid` = %d LIMIT 1",
29                         intval($recipient),
30                         intval(local_user())
31         );
32
33         if(! (count($me) && (count($contact)))) {
34                 notice( t('Unable to locate contact information.') . EOL );
35                 return;
36         }
37
38         $hash = random_string();
39         $uri = 'urn:X-dfrn:' . $a->get_baseurl() . ':' . local_user() . ':' . $hash ;
40
41         if(! strlen($replyto))
42                 $replyto = $uri;
43
44         $r = q("INSERT INTO `mail` ( `uid`, `from-name`, `from-photo`, `from-url`, 
45                 `contact-id`, `title`, `body`, `seen`, `replied`, `uri`, `parent-uri`, `created`)
46                 VALUES ( %d, '%s', '%s', '%s', %d, '%s', '%s', %d, %d, '%s', '%s', '%s' )",
47                 intval(local_user()),
48                 dbesc($me[0]['name']),
49                 dbesc($me[0]['thumb']),
50                 dbesc($me[0]['url']),
51                 intval($recipient),
52                 dbesc($subject),
53                 dbesc($body),
54                 1,
55                 0,
56                 dbesc($uri),
57                 dbesc($replyto),
58                 datetime_convert()
59         );
60         $r = q("SELECT * FROM `mail` WHERE `uri` = '%s' and `uid` = %d LIMIT 1",
61                 dbesc($uri),
62                 intval(local_user())
63         );
64         if(count($r))
65                 $post_id = $r[0]['id'];
66
67         /**
68          *
69          * When a photo was uploaded into the message using the (profile wall) ajax 
70          * uploader, The permissions are initially set to disallow anybody but the
71          * owner from seeing it. This is because the permissions may not yet have been
72          * set for the post. If it's private, the photo permissions should be set
73          * appropriately. But we didn't know the final permissions on the post until
74          * now. So now we'll look for links of uploaded messages that are in the
75          * post and set them to the same permissions as the post itself.
76          *
77          */
78
79         $match = null;
80
81         if(preg_match_all("/\[img\](.+?)\[\/img\]/",$body,$match)) {
82                 $images = $match[1];
83                 if(count($images)) {
84                         foreach($images as $image) {
85                                 if(! stristr($image,$a->get_baseurl() . '/photo/'))
86                                         continue;
87                                 $image_uri = substr($image,strrpos($image,'/') + 1);
88                                 $image_uri = substr($image_uri,0, strpos($image_uri,'-'));
89                                 $r = q("UPDATE `photo` SET `allow_cid` = '%s'
90                                         WHERE `resource-id` = '%s' AND `album` = '%s' AND `uid` = %d ",
91                                         dbesc('<' . $recipient . '>'),
92                                         dbesc($image_uri),
93                                         dbesc( t('Wall Photos')),
94                                         intval(local_user())
95                                 ); 
96                         }
97                 }
98         }
99         
100         if($post_id) {
101                 proc_run('php',"include/notifier.php","mail","$post_id");
102                 notice( t('Message sent.') . EOL );
103         }
104         else {
105                 notice( t('Message could not be sent.') . EOL );
106         }
107         return;
108 }
109
110 function message_content(&$a) {
111
112         $o = '';
113         $o .= '<script> $(document).ready(function() { $(\'#nav-messages-link\').addClass(\'nav-selected\'); });</script>';
114
115         if(! local_user()) {
116                 notice( t('Permission denied.') . EOL);
117                 return;
118         }
119
120         $myprofile = $a->get_baseurl() . '/profile/' . $a->user['nickname'];
121
122
123         $tpl = load_view_file('view/mail_head.tpl');
124         $header = replace_macros($tpl, array(
125                 '$messages' => t('Messages'),
126                 '$inbox' => t('Inbox'),
127                 '$outbox' => t('Outbox'),
128                 '$new' => t('New Message')
129         ));
130
131
132         if(($a->argc == 3) && ($a->argv[1] === 'drop' || $a->argv[1] === 'dropconv')) {
133                 if(! intval($a->argv[2]))
134                         return;
135                 $cmd = $a->argv[1];
136                 if($cmd === 'drop') {
137                         $r = q("DELETE FROM `mail` WHERE `id` = %d AND `uid` = %d LIMIT 1",
138                                 intval($a->argv[2]),
139                                 intval(local_user())
140                         );
141                         if($r) {
142                                 notice( t('Message deleted.') . EOL );
143                         }
144                         goaway($a->get_baseurl() . '/message' );
145                 }
146                 else {
147                         $r = q("SELECT `parent-uri` FROM `mail` WHERE `id` = %d AND `uid` = %d LIMIT 1",
148                                 intval($a->argv[2]),
149                                 intval(local_user())
150                         );
151                         if(count($r)) {
152                                 $parent = $r[0]['parent-uri'];
153                                 $r = q("DELETE FROM `mail` WHERE `parent-uri` = '%s' AND `uid` = %d ",
154                                         dbesc($parent),
155                                         intval(local_user())
156                                 );
157                                 if($r)
158                                         notice( t('Conversation removed.') . EOL );
159                         } 
160                         goaway($a->get_baseurl() . '/message' );
161                 }       
162         
163         }
164
165         if(($a->argc > 1) && ($a->argv[1] === 'new')) {
166                 
167                 $tpl = load_view_file('view/msg-header.tpl');
168
169                 $a->page['htmlhead'] .= replace_macros($tpl, array(
170                         '$baseurl' => $a->get_baseurl(),
171                         '$nickname' => $a->user['nickname'],
172                         '$linkurl' => t('Please enter a link URL:')
173                 ));
174         
175                 $select = contact_select('messageto','message-to-select', false, 4, true);
176                 $tpl = load_view_file('view/prv_message.tpl');
177                 $o .= replace_macros($tpl,array(
178                         '$header' => t('Send Private Message'),
179                         '$to' => t('To:'),
180                         '$subject' => t('Subject:'),
181                         '$subjtxt' => '',
182                         '$readonly' => '',
183                         '$yourmessage' => t('Your message:'),
184                         '$select' => $select,
185                         '$parent' => '',
186                         '$upload' => t('Upload photo'),
187                         '$insert' => t('Insert web link'),
188                         '$wait' => t('Please wait')
189
190                 ));
191
192                 return $o;
193         }
194
195         if(($a->argc == 1) || ($a->argc == 2 && $a->argv[1] === 'sent')) {
196
197                 $o .= $header;
198                 
199                 if($a->argc == 2)
200                         $eq = '='; // I'm not going to bother escaping this.
201                 else
202                         $eq = '!='; // or this.
203
204                 $r = q("SELECT count(*) AS `total` FROM `mail` 
205                         WHERE `mail`.`uid` = %d AND `from-url` $eq '%s' GROUP BY `parent-uri` ORDER BY `created` DESC",
206                         intval(local_user()),
207                         dbesc($myprofile)
208                 );
209                 if(count($r))
210                         $a->set_pager_total($r[0]['total']);
211         
212                 $r = q("SELECT max(`mail`.`created`) AS `mailcreated`, min(`mail`.`seen`) AS `mailseen`, 
213                         `mail`.* , `contact`.`name`, `contact`.`url`, `contact`.`thumb` 
214                         FROM `mail` LEFT JOIN `contact` ON `mail`.`contact-id` = `contact`.`id` 
215                         WHERE `mail`.`uid` = %d AND `from-url` $eq '%s' GROUP BY `parent-uri` ORDER BY `created` DESC  LIMIT %d , %d ",
216                         intval(local_user()),
217                         dbesc($myprofile),
218                         intval($a->pager['start']),
219                         intval($a->pager['itemspage'])
220                 );
221                 if(! count($r)) {
222                         notice( t('No messages.') . EOL);
223                         return $o;
224                 }
225
226                 $tpl = load_view_file('view/mail_list.tpl');
227                 foreach($r as $rr) {
228                         $o .= replace_macros($tpl, array(
229                                 '$id' => $rr['id'],
230                                 '$from_name' =>$rr['from-name'],
231                                 '$from_url' => $a->get_baseurl() . '/redir/' . $rr['contact-id'],
232                                 '$sparkle' => ' sparkle',
233                                 '$from_photo' => $rr['thumb'],
234                                 '$subject' => (($rr['mailseen']) ? $rr['title'] : '<strong>' . $rr['title'] . '</strong>'),
235                                 '$delete' => t('Delete conversation'),
236                                 '$body' => $rr['body'],
237                                 '$to_name' => $rr['name'],
238                                 '$date' => datetime_convert('UTC',date_default_timezone_get(),$rr['mailcreated'],'D, d M Y - g:i A')
239                         ));
240                 }
241                 $o .= paginate($a);     
242                 return $o;
243         }
244
245         if(($a->argc > 1) && (intval($a->argv[1]))) {
246
247                 $o .= $header;
248
249                 $r = q("SELECT `mail`.*, `contact`.`name`, `contact`.`url`, `contact`.`thumb` 
250                         FROM `mail` LEFT JOIN `contact` ON `mail`.`contact-id` = `contact`.`id` 
251                         WHERE `mail`.`uid` = %d AND `mail`.`id` = %d LIMIT 1",
252                         intval(local_user()),
253                         intval($a->argv[1])
254                 );
255                 if(count($r)) { 
256                         $contact_id = $r[0]['contact-id'];
257                         $messages = q("SELECT `mail`.*, `contact`.`name`, `contact`.`url`, `contact`.`thumb` 
258                                 FROM `mail` LEFT JOIN `contact` ON `mail`.`contact-id` = `contact`.`id` 
259                                 WHERE `mail`.`uid` = %d AND `mail`.`parent-uri` = '%s' ORDER BY `mail`.`created` ASC",
260                                 intval(local_user()),
261                                 dbesc($r[0]['parent-uri'])
262                         );
263                 }
264                 if(! count($messages)) {
265                         notice( t('Message not available.') . EOL );
266                         return $o;
267                 }
268
269                 $r = q("UPDATE `mail` SET `seen` = 1 WHERE `parent-uri` = '%s' AND `uid` = %d",
270                         dbesc($r[0]['parent-uri']),
271                         intval(local_user())
272                 );
273
274                 require_once("include/bbcode.php");
275
276                 $tpl = load_view_file('view/msg-header.tpl');
277         
278                 $a->page['htmlhead'] .= replace_macros($tpl, array(
279                         '$nickname' => $a->user['nickname'],
280                         '$baseurl' => $a->get_baseurl()
281                 ));
282
283
284                 $tpl = load_view_file('view/mail_conv.tpl');
285                 foreach($messages as $message) {
286                         if($message['from-url'] == $myprofile) {
287                                 $from_url = $myprofile;
288                                 $sparkle = '';
289                         }
290                         else {
291                                 $from_url = $a->get_baseurl() . '/redir/' . $message['contact-id'];
292                                 $sparkle = ' sparkle';
293                         }
294                         $o .= replace_macros($tpl, array(
295                                 '$id' => $message['id'],
296                                 '$from_name' =>$message['from-name'],
297                                 '$from_url' => $from_url,
298                                 '$sparkle' => $sparkle,
299                                 '$from_photo' => $message['from-photo'],
300                                 '$subject' => $message['title'],
301                                 '$body' => smilies(bbcode($message['body'])),
302                                 '$delete' => t('Delete message'),
303                                 '$to_name' => $message['name'],
304                                 '$date' => datetime_convert('UTC',date_default_timezone_get(),$message['created'],'D, d M Y - g:i A')
305                         ));
306                                 
307                 }
308                 $select = $message['name'] . '<input type="hidden" name="messageto" value="' . $contact_id . '" />';
309                 $parent = '<input type="hidden" name="replyto" value="' . $message['parent-uri'] . '" />';
310                 $tpl = load_view_file('view/prv_message.tpl');
311                 $o .= replace_macros($tpl,array(
312                         '$header' => t('Send Reply'),
313                         '$to' => t('To:'),
314                         '$subject' => t('Subject:'),
315                         '$subjtxt' => $message['title'],
316                         '$readonly' => ' readonly="readonly" style="background: #BBBBBB;" ',
317                         '$yourmessage' => t('Your message:'),
318                         '$select' => $select,
319                         '$parent' => $parent,
320                         '$upload' => t('Upload photo'),
321                         '$insert' => t('Insert web link'),
322                         '$wait' => t('Please wait')
323
324                 ));
325
326                 return $o;
327         }
328
329 }