2 // send a private message
7 function send_message($recipient=0, $body='', $subject='', $replyto=''){
11 if(! $recipient) return -1;
13 if(! strlen($subject))
14 $subject = t('[no subject]');
16 $me = q("SELECT * FROM `contact` WHERE `uid` = %d AND `self` = 1 LIMIT 1",
19 $contact = q("SELECT * FROM `contact` WHERE `id` = %d AND `uid` = %d LIMIT 1",
24 if(! (count($me) && (count($contact)))) {
28 $hash = random_string();
29 $uri = 'urn:X-dfrn:' . $a->get_baseurl() . ':' . local_user() . ':' . $hash ;
34 // look for any existing conversation structure
36 if(strlen($replyto)) {
38 $r = q("select convid from mail where uid = %d and ( uri = '%s' or `parent-uri` = '%s' ) limit 1",
44 $convid = $r[0]['convid'];
49 // create a new conversation
51 $conv_guid = get_guid();
53 $recip_host = substr($contact[0]['url'],strpos($contact[0]['url'],'://')+3);
54 $recip_host = substr($recip_host,0,strpos($recip_host,'/'));
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);
59 $handles = $recip_handle . ';' . $sender_handle;
61 $r = q("insert into conv (uid,guid,creator,created,updated,subject,recips) values(%d, '%s', '%s', '%s', '%s', '%s', '%s') ",
64 dbesc($sender_handle),
65 dbesc(datetime_convert()),
66 dbesc(datetime_convert()),
71 $r = q("select * from conv where guid = '%s' and uid = %d limit 1",
76 $convid = $r[0]['id'];
80 logger('send message: conversation not found.');
84 if(! strlen($replyto)) {
89 $r = q("INSERT INTO `mail` ( `uid`, `guid`, `convid`, `from-name`, `from-photo`, `from-url`,
90 `contact-id`, `title`, `body`, `seen`, `reply`, `replied`, `uri`, `parent-uri`, `created`)
91 VALUES ( %d, '%s', %d, '%s', '%s', '%s', %d, '%s', '%s', %d, %d, %d, '%s', '%s', '%s' )",
95 dbesc($me[0]['name']),
96 dbesc($me[0]['thumb']),
110 $r = q("SELECT * FROM `mail` WHERE `uri` = '%s' and `uid` = %d LIMIT 1",
115 $post_id = $r[0]['id'];
119 * When a photo was uploaded into the message using the (profile wall) ajax
120 * uploader, The permissions are initially set to disallow anybody but the
121 * owner from seeing it. This is because the permissions may not yet have been
122 * set for the post. If it's private, the photo permissions should be set
123 * appropriately. But we didn't know the final permissions on the post until
124 * now. So now we'll look for links of uploaded messages that are in the
125 * post and set them to the same permissions as the post itself.
131 if(preg_match_all("/\[img\](.*?)\[\/img\]/",$body,$match)) {
134 foreach($images as $image) {
135 if(! stristr($image,$a->get_baseurl() . '/photo/'))
137 $image_uri = substr($image,strrpos($image,'/') + 1);
138 $image_uri = substr($image_uri,0, strpos($image_uri,'-'));
139 $r = q("UPDATE `photo` SET `allow_cid` = '%s'
140 WHERE `resource-id` = '%s' AND `album` = '%s' AND `uid` = %d ",
141 dbesc('<' . $recipient . '>'),
143 dbesc( t('Wall Photos')),
151 proc_run('php',"include/notifier.php","mail","$post_id");
152 return intval($post_id);