]> git.mxchange.org Git - friendica.git/commitdiff
add conv structure
authorfriendica <info@friendica.com>
Mon, 5 Dec 2011 08:35:44 +0000 (00:35 -0800)
committerfriendica <info@friendica.com>
Mon, 5 Dec 2011 08:35:44 +0000 (00:35 -0800)
include/message.php
mod/message.php

index cca913b4ef67bc879171a1ede6eea1b6034fa557..05157cc83a724b634db0d5d564d621c9c6656df5 100644 (file)
@@ -27,13 +27,50 @@ function send_message($recipient=0, $body='', $subject='', $replyto=''){
        $hash = random_string();
        $uri = 'urn:X-dfrn:' . $a->get_baseurl() . ':' . local_user() . ':' . $hash ;
 
-       if(! strlen($replyto))
+       if(! strlen($replyto)) {
                $replyto = $uri;
 
-       $r = q("INSERT INTO `mail` ( `uid`, `from-name`, `from-photo`, `from-url`, 
+               $conv_guid = get_guid();
+
+               $recip_host = substr($contact[0]['url'],strpos($contact[0]['url'],'://')+3);
+               $recip_host = substr($recip_host,0,strpos($recip_host,'/'));
+
+               $recip_handle = (($contact[0]['addr']) ? $contact[0]['addr'] : $contact[0]['nick'] . '@' . $recip_host);
+               $sender_handle = $a->user['nickname'] . '@' . substr($a->get_baseurl(), strpos($a->get_baseurl(),'://') + 3);
+
+               $handles = $recip_handle . ';' . $sender_handle;
+
+               $r = q("insert into conv (uid,guid,recips) values (%d, '%s', '%s') ",
+                       intval(local_user()),
+                       dbesc($conv_guid),
+                       dbesc($handles)
+               );
+               $r = q("select * from conv where guid = '%s' and uid = %d limit 1",
+                       dbesc($conv_guid),
+                       intval(local_user())
+               );
+               if(count($r))
+                       $convid = $r[0]['id'];
+       }
+       else {
+               $r = q("select convid from mail where uid = %d and uri = '%s' limit 1",
+                       intval(local_user()),
+                       dbesc($replyto)
+               );
+               if(count($r))
+                       $convid = $r[0]['convid'];
+       }               
+
+       if(! $convid) {
+               logger('send message: conversation not found.');
+               return -4;
+       }
+
+       $r = q("INSERT INTO `mail` ( `uid`, `convid`, `from-name`, `from-photo`, `from-url`, 
                `contact-id`, `title`, `body`, `seen`, `replied`, `uri`, `parent-uri`, `created`)
-               VALUES ( %d, '%s', '%s', '%s', %d, '%s', '%s', %d, %d, '%s', '%s', '%s' )",
+               VALUES ( %d, %d, '%s', '%s', '%s', %d, '%s', '%s', %d, %d, '%s', '%s', '%s' )",
                intval(local_user()),
+               intval($convid),
                dbesc($me[0]['name']),
                dbesc($me[0]['thumb']),
                dbesc($me[0]['url']),
index 60e6b38fceb723456e71856ef51f62cf1bb05b93..172a1ca98f7e209e6877b4dfca50e2688f746f8b 100644 (file)
@@ -27,6 +27,10 @@ function message_post(&$a) {
                        break;
                case -3:
                        notice( t('Message could not be sent.') . EOL );
+                       break;
+               case -4:
+                       notice( t('Message collection failure.') . EOL );
+                       break;
                default:
                        info( t('Message sent.') . EOL );
        }