diff options
author | friendica <info@friendica.com> | 2011-11-29 01:19:09 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2011-11-29 01:19:09 -0800 |
commit | aa73d388451915e5fed1868a64f23f25249edbc0 (patch) | |
tree | ba7d0b9b75b9aaffa535cd0b93c0ea481f6f7df5 /include | |
parent | 669f40c3423e4c5cf53040474f5c14ea50a835ea (diff) | |
download | volse-hubzilla-aa73d388451915e5fed1868a64f23f25249edbc0.tar.gz volse-hubzilla-aa73d388451915e5fed1868a64f23f25249edbc0.tar.bz2 volse-hubzilla-aa73d388451915e5fed1868a64f23f25249edbc0.zip |
begininning d* conversation mode
Diffstat (limited to 'include')
-rw-r--r-- | include/diaspora.php | 44 |
1 files changed, 39 insertions, 5 deletions
diff --git a/include/diaspora.php b/include/diaspora.php index 07d454e45..8e4f919c5 100644 --- a/include/diaspora.php +++ b/include/diaspora.php @@ -1084,7 +1084,38 @@ function diaspora_conversation($importer,$xml,$msg) { return 202; } + $conversation = null; + + $c = q("select * from conv where uid = %d and guid = '%s' limit 1", + intval($importer['uid']), + dbesc($guid) + ); + if(count($c)) + $conversation = $c[0]; + else { + $r = q("insert into conv (uid,guid,recips) values('%d, '%s', '%s') ", + intval($importer['uid']), + dbesc($guid), + dbesc($participant_handles) + ); + if($r) + $c = q("select * from conv where uid = %d and guid = '%s' limit 1", + intval($importer['uid']), + dbesc($guid) + ); + if(count($c)) + $conversation = $c[0]; + } + if(! $conversation) { + logger('diaspora_conversation: unable to create conversation.'); + return; + } + + foreach($messages as $msg) { + + $reply = 0; + $msg_guid = notags(unxmlify($msg->guid)); $msg_parent_guid = notags(unxmlify($msg->parent_guid)); $msg_parent_author_signature = notags(unxmlify($msg->parent_author_signature)); @@ -1098,7 +1129,11 @@ function diaspora_conversation($importer,$xml,$msg) { continue; } + // Is this right? + if($msg_parent_guid != $guid) + $reply = 1; + $body = diaspora2bb($msg_text); $message_id = $msg_diaspora_handle . ':' . $msg_guid; @@ -1118,11 +1153,10 @@ function diaspora_conversation($importer,$xml,$msg) { continue; } - - // don't forget guid, convid!!! - - q("insert into mail ( `uid`, `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')", + q("insert into mail ( `uid`, `guid`, `convid`, `from-name`,`from-photo`,`from-url`,`contact-id`,`title`,`body`,`seen`,`replied`,`uri`,`parent-uri`,`created`) values ( %d, '%s', %d, '%s', '%s', '%s', %d, '%s', '%s', %d, %d, '%s','%s','%s')", intval($importer['uid']), + dbesc($msg_guid), + intval($conversation['id']), dbesc($person['name']), dbesc($person['photo']), dbesc($person['url']), @@ -1130,7 +1164,7 @@ function diaspora_conversation($importer,$xml,$msg) { dbesc($subject), dbesc($body), 0, - 0, + intval($reply), dbesc($message_id), dbesc($parent_uri), dbesc($msg_created_at) |