]> git.mxchange.org Git - friendica.git/blob - mod/message.php
70b85b84cbd1c2f0c01aa821b2a50605d5d51862
[friendica.git] / mod / message.php
1 <?php
2
3 require_once('include/acl_selectors.php');
4 require_once('include/message.php');
5
6 function message_init(&$a) {
7         $tabs = array();
8         $new = array(
9                 'label' => t('New Message'),
10                 'url' => $a->get_baseurl(true) . '/message/new',
11                 'sel'=> ($a->argv[1] == 'new'),
12         );
13         
14         $tpl = get_markup_template('message_side.tpl');
15         $a->page['aside'] = replace_macros($tpl, array(
16                 '$tabs'=>$tabs,
17                 '$new'=>$new,
18         ));
19         $base = $a->get_baseurl();
20
21         $a->page['htmlhead'] .= '<script src="' . $a->get_baseurl(true) . '/library/jquery_ac/jquery.autocomplete-min.js" ></script>';
22         $a->page['htmlhead'] .= <<< EOT
23
24 <script>$(document).ready(function() { 
25         var a; 
26         a = $("#messageto").autocomplete({ 
27                 serviceUrl: '$base/acl'
28         });
29 }); 
30
31 </script>
32 EOT;
33         
34 }
35
36 function message_post(&$a) {
37
38         if(! local_user()) {
39                 notice( t('Permission denied.') . EOL);
40                 return;
41         }
42
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 );
47
48         // Work around doubled linefeeds in Tinymce 3.5b2
49
50         $plaintext = intval(get_pconfig(local_user(),'system','plaintext'));
51         if(! $plaintext) {
52                 $body = fix_mce_lf($body);
53         }
54         
55         $ret = send_message($recipient, $body, $subject, $replyto);
56         $norecip = false;
57
58         switch($ret){
59                 case -1:
60                         notice( t('No recipient selected.') . EOL );
61                         $norecip = true;
62                         break;
63                 case -2:
64                         notice( t('Unable to locate contact information.') . EOL );
65                         break;
66                 case -3:
67                         notice( t('Message could not be sent.') . EOL );
68                         break;
69                 case -4:
70                         notice( t('Message collection failure.') . EOL );
71                         break;
72                 default:
73                         info( t('Message sent.') . EOL );
74         }
75
76         // fake it to go back to the input form if no recipient listed
77
78         if($norecip) {
79                 $a->argc = 2;
80                 $a->argv[1] = 'new';
81         }
82
83 }
84
85 function message_content(&$a) {
86
87         $o = '';
88         nav_set_selected('messages');
89
90         if(! local_user()) {
91                 notice( t('Permission denied.') . EOL);
92                 return;
93         }
94
95         $myprofile = $a->get_baseurl(true) . '/profile/' . $a->user['nickname'];
96
97
98
99
100
101         $tpl = get_markup_template('mail_head.tpl');
102         $header = replace_macros($tpl, array(
103                 '$messages' => t('Messages'),
104                 '$tab_content' => $tab_content
105         ));
106
107
108         if(($a->argc == 3) && ($a->argv[1] === 'drop' || $a->argv[1] === 'dropconv')) {
109                 if(! intval($a->argv[2]))
110                         return;
111                 $cmd = $a->argv[1];
112                 if($cmd === 'drop') {
113                         $r = q("DELETE FROM `mail` WHERE `id` = %d AND `uid` = %d LIMIT 1",
114                                 intval($a->argv[2]),
115                                 intval(local_user())
116                         );
117                         if($r) {
118                                 info( t('Message deleted.') . EOL );
119                         }
120                         goaway($a->get_baseurl(true) . '/message' );
121                 }
122                 else {
123                         $r = q("SELECT `parent-uri`,`convid` FROM `mail` WHERE `id` = %d AND `uid` = %d LIMIT 1",
124                                 intval($a->argv[2]),
125                                 intval(local_user())
126                         );
127                         if(count($r)) {
128                                 $parent = $r[0]['parent-uri'];
129                                 $convid = $r[0]['convid'];
130
131                                 $r = q("DELETE FROM `mail` WHERE `parent-uri` = '%s' AND `uid` = %d ",
132                                         dbesc($parent),
133                                         intval(local_user())
134                                 );
135
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. 
140
141                                 //if($convid) {
142                                 //      q("delete from conv where id = %d limit 1",
143                                 //              intval($convid)
144                                 //      );
145                                 //}
146
147                                 if($r)
148                                         info( t('Conversation removed.') . EOL );
149                         } 
150                         goaway($a->get_baseurl(true) . '/message' );
151                 }       
152         
153         }
154
155         if(($a->argc > 1) && ($a->argv[1] === 'new')) {
156                 
157                 $o .= $header;
158                 
159                 $plaintext = false;
160                 if(intval(get_pconfig(local_user(),'system','plaintext')))
161                         $plaintext = true;
162
163
164                 $tpl = get_markup_template('msg-header.tpl');
165
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:')
171                 ));
172         
173                 $preselect = (isset($a->argv[2])?array($a->argv[2]):false);
174         
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 .'" />';
177
178                 $tpl = get_markup_template('prv_message.tpl');
179                 $o .= replace_macros($tpl,array(
180                         '$header' => t('Send Private Message'),
181                         '$to' => t('To:'),
182                         '$subject' => t('Subject:'),
183                         '$subjtxt' => ((x($_REQUEST,'subject')) ? strip_tags($_REQUEST['subject']) : ''),
184                         '$text' => ((x($_REQUEST,'body')) ? escape_tags(htmlspecialchars($_REQUEST['body'])) : ''),
185                         '$readonly' => '',
186                         '$yourmessage' => t('Your message:'),
187                         '$select' => $select,
188                         '$parent' => '',
189                         '$upload' => t('Upload photo'),
190                         '$insert' => t('Insert web link'),
191                         '$wait' => t('Please wait')
192                 ));
193
194                 return $o;
195         }
196
197         if($a->argc == 1) {
198
199                 // list messages
200
201                 $o .= $header;
202                 
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()),
206                         dbesc($myprofile)
207                 );
208                 if(count($r))
209                         $a->set_pager_total($r[0]['total']);
210         
211                 $r = q("SELECT max(`mail`.`created`) AS `mailcreated`, min(`mail`.`seen`) AS `mailseen`, 
212                         `mail`.* , `contact`.`name`, `contact`.`url`, `contact`.`thumb` , `contact`.`network`,
213                         count( * ) as count
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()),
217                         //
218                         intval($a->pager['start']),
219                         intval($a->pager['itemspage'])
220                 );
221                 if(! count($r)) {
222                         info( t('No messages.') . EOL);
223                         return $o;
224                 }
225
226                 $tpl = get_markup_template('mail_list.tpl');
227                 foreach($r as $rr) {
228                         if($rr['unknown']) {
229                                 $partecipants = sprintf( t("Unknown sender - %s"),$rr['from-name']);
230                         }
231                         elseif (link_compare($rr['from-url'],$myprofile)){
232                                 $partecipants = sprintf( t("You and %s"), $rr['name']);
233                         }
234                         else {
235                                 $partecipants = sprintf( t("%s and You"), $rr['from-name']);
236                         }
237                         
238                         $o .= replace_macros($tpl, array(
239                                 '$id' => $rr['id'],
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']),
251                         ));
252                 }
253                 $o .= paginate($a);     
254                 return $o;
255         }
256
257         if(($a->argc > 1) && (intval($a->argv[1]))) {
258
259                 $o .= $header;
260
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()),
265                         intval($a->argv[1])
266                 );
267                 if(count($r)) { 
268                         $contact_id = $r[0]['contact-id'];
269                         $convid = $r[0]['convid'];
270
271                         $sql_extra = sprintf(" and `mail`.`parent-uri` = '%s' ", dbesc($r[0]['parent-uri']));
272                         if($convid)
273                                 $sql_extra = sprintf(" and ( `mail`.`parent-uri` = '%s' OR `mail`.`convid` = '%d' ) ",
274                                         dbesc($r[0]['parent-uri']),
275                                         intval($convid)
276                                 );  
277
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",
281                                 intval(local_user())
282                         );
283                 }
284                 if(! count($messages)) {
285                         notice( t('Message not available.') . EOL );
286                         return $o;
287                 }
288
289                 $r = q("UPDATE `mail` SET `seen` = 1 WHERE `parent-uri` = '%s' AND `uid` = %d",
290                         dbesc($r[0]['parent-uri']),
291                         intval(local_user())
292                 );
293
294                 require_once("include/bbcode.php");
295
296                 $tpl = get_markup_template('msg-header.tpl');
297         
298                 $a->page['htmlhead'] .= replace_macros($tpl, array(
299                         '$nickname' => $a->user['nickname'],
300                         '$baseurl' => $a->get_baseurl(true)
301                 ));
302
303
304                 $mails = array();
305                 $seen = 0;
306                 $unknown = false;
307
308                 foreach($messages as $message) {
309                         if($message['unknown'])
310                                 $unknown = true;
311                         if($message['from-url'] == $myprofile) {
312                                 $from_url = $myprofile;
313                                 $sparkle = '';
314                         }
315                         else {
316                                 $from_url = $a->get_baseurl(true) . '/redir/' . $message['contact-id'];
317                                 $sparkle = ' sparkle';
318                         }
319
320
321                         $Text = $message['body'];
322                         $saved_image = '';
323                         $img_start = strpos($Text,'[img]data:');
324                         $img_end = strpos($Text,'[/img]');
325
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]' ;
335
336                                 $Text = preg_replace($search,$replace,$Text);
337
338                         if(strlen($saved_image))
339                                 $message['body'] = str_replace('[!#saved_image#!]', '[img]' . $saved_image . '[/img]',$Text);
340                         }
341
342                         $mails[] = array(
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'),
353                         );
354                                 
355                         $seen = $message['seen'];
356                 }
357                 $select = $message['name'] . '<input type="hidden" name="messageto" value="' . $contact_id . '" />';
358                 $parent = '<input type="hidden" name="replyto" value="' . $message['parent-uri'] . '" />';
359                         
360
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."),                        
369                         '$mails' => $mails,
370                         
371                         // reply
372                         '$header' => t('Send Reply'),
373                         '$to' => t('To:'),
374                         '$subject' => t('Subject:'),
375                         '$subjtxt' => template_escape($message['title']),
376                         '$readonly' => ' readonly="readonly" style="background: #BBBBBB;" ',
377                         '$yourmessage' => t('Your message:'),
378                         '$text' => '',
379                         '$select' => $select,
380                         '$parent' => $parent,
381                         '$upload' => t('Upload photo'),
382                         '$insert' => t('Insert web link'),
383                         '$wait' => t('Please wait')
384
385                 ));
386
387                 return $o;
388         }
389
390 }