]> git.mxchange.org Git - friendica.git/blob - include/message.php
maintain backward compatibility with old PMs
[friendica.git] / include / message.php
1 <?php
2         // send a private message
3         
4
5
6
7 function send_message($recipient=0, $body='', $subject='', $replyto=''){ 
8         $a = get_app();
9
10         if(! $recipient) return -1;
11         
12         if(! strlen($subject))
13                 $subject = t('[no subject]');
14
15         $me = q("SELECT * FROM `contact` WHERE `uid` = %d AND `self` = 1 LIMIT 1",
16                 intval(local_user())
17         );
18         $contact = q("SELECT * FROM `contact` WHERE `id` = %d AND `uid` = %d LIMIT 1",
19                         intval($recipient),
20                         intval(local_user())
21         );
22
23         if(! (count($me) && (count($contact)))) {
24                 return -2;
25         }
26
27         $hash = random_string();
28         $uri = 'urn:X-dfrn:' . $a->get_baseurl() . ':' . local_user() . ':' . $hash ;
29
30         $convid = 0;
31
32         // look for any existing conversation structure
33
34         if(strlen($replyto)) {
35                 $r = q("select convid from mail where uid = %d and uri = '%s' limit 1",
36                         intval(local_user()),
37                         dbesc($replyto)
38                 );
39                 if(count($r))
40                         $convid = $r[0]['convid'];
41         }               
42
43         if(! strlen($replyto))
44                 $replyto = $uri;
45
46
47         if(! $convid) {
48
49                 // create a new conversation
50
51                 $conv_guid = get_guid();
52
53                 $recip_host = substr($contact[0]['url'],strpos($contact[0]['url'],'://')+3);
54                 $recip_host = substr($recip_host,0,strpos($recip_host,'/'));
55
56                 $recip_handle = (($contact[0]['addr']) ? $contact[0]['addr'] : $contact[0]['nick'] . '@' . $recip_host);
57                 $sender_handle = $a->user['nickname'] . '@' . substr($a->get_baseurl(), strpos($a->get_baseurl(),'://') + 3);
58
59                 $handles = $recip_handle . ';' . $sender_handle;
60
61                 $r = q("insert into conv (uid,guid,recips) values (%d, '%s', '%s') ",
62                         intval(local_user()),
63                         dbesc($conv_guid),
64                         dbesc($handles)
65                 );
66                 $r = q("select * from conv where guid = '%s' and uid = %d limit 1",
67                         dbesc($conv_guid),
68                         intval(local_user())
69                 );
70                 if(count($r))
71                         $convid = $r[0]['id'];
72         }
73
74         if(! $convid) {
75                 logger('send message: conversation not found.');
76                 return -4;
77         }
78
79         $r = q("INSERT INTO `mail` ( `uid`, `convid`, `from-name`, `from-photo`, `from-url`, 
80                 `contact-id`, `title`, `body`, `seen`, `replied`, `uri`, `parent-uri`, `created`)
81                 VALUES ( %d, %d, '%s', '%s', '%s', %d, '%s', '%s', %d, %d, '%s', '%s', '%s' )",
82                 intval(local_user()),
83                 intval($convid),
84                 dbesc($me[0]['name']),
85                 dbesc($me[0]['thumb']),
86                 dbesc($me[0]['url']),
87                 intval($recipient),
88                 dbesc($subject),
89                 dbesc($body),
90                 1,
91                 0,
92                 dbesc($uri),
93                 dbesc($replyto),
94                 datetime_convert()
95         );
96         $r = q("SELECT * FROM `mail` WHERE `uri` = '%s' and `uid` = %d LIMIT 1",
97                 dbesc($uri),
98                 intval(local_user())
99         );
100         if(count($r))
101                 $post_id = $r[0]['id'];
102
103         /**
104          *
105          * When a photo was uploaded into the message using the (profile wall) ajax 
106          * uploader, The permissions are initially set to disallow anybody but the
107          * owner from seeing it. This is because the permissions may not yet have been
108          * set for the post. If it's private, the photo permissions should be set
109          * appropriately. But we didn't know the final permissions on the post until
110          * now. So now we'll look for links of uploaded messages that are in the
111          * post and set them to the same permissions as the post itself.
112          *
113          */
114
115         $match = null;
116
117         if(preg_match_all("/\[img\](.*?)\[\/img\]/",$body,$match)) {
118                 $images = $match[1];
119                 if(count($images)) {
120                         foreach($images as $image) {
121                                 if(! stristr($image,$a->get_baseurl() . '/photo/'))
122                                         continue;
123                                 $image_uri = substr($image,strrpos($image,'/') + 1);
124                                 $image_uri = substr($image_uri,0, strpos($image_uri,'-'));
125                                 $r = q("UPDATE `photo` SET `allow_cid` = '%s'
126                                         WHERE `resource-id` = '%s' AND `album` = '%s' AND `uid` = %d ",
127                                         dbesc('<' . $recipient . '>'),
128                                         dbesc($image_uri),
129                                         dbesc( t('Wall Photos')),
130                                         intval(local_user())
131                                 ); 
132                         }
133                 }
134         }
135         
136         if($post_id) {
137                 proc_run('php',"include/notifier.php","mail","$post_id");
138                 return intval($post_id);
139         } else {
140                 return -3;
141         }
142
143 }