ostatus completion of threads now works with longer threads well.
This commit is contained in:
parent
0723933c1c
commit
a2cef94d8b
2 changed files with 109 additions and 94 deletions
|
@ -75,116 +75,131 @@ function complete_conversation($itemid, $conversation_url, $only_add_conversatio
|
||||||
require_once('include/items.php');
|
require_once('include/items.php');
|
||||||
|
|
||||||
$conv = str_replace("/conversation/", "/api/statusnet/conversation/", $conversation_url).".as";
|
$conv = str_replace("/conversation/", "/api/statusnet/conversation/", $conversation_url).".as";
|
||||||
|
$pageno = 1;
|
||||||
|
$items = array();
|
||||||
|
|
||||||
logger('complete_conversation: fetching conversation url '.$conv.' for '.$itemid);
|
logger('complete_conversation: fetching conversation url '.$conv.' for '.$itemid);
|
||||||
$conv_as = fetch_url($conv);
|
|
||||||
|
|
||||||
if ($conv_as) {
|
do {
|
||||||
|
$conv_as = file_get_contents($conv."?page=".$pageno);
|
||||||
$conv_as = str_replace(',"statusnet:notice_info":', ',"statusnet_notice_info":', $conv_as);
|
$conv_as = str_replace(',"statusnet:notice_info":', ',"statusnet_notice_info":', $conv_as);
|
||||||
$conv_as = json_decode($conv_as);
|
$conv_as = json_decode($conv_as);
|
||||||
|
|
||||||
$first_id = "";
|
if (@is_array($conv_as->items))
|
||||||
|
$items = array_merge($items, $conv_as->items);
|
||||||
|
else
|
||||||
|
break;
|
||||||
|
|
||||||
if (!is_array($conv_as->items))
|
$pageno++;
|
||||||
return;
|
|
||||||
$items = array_reverse($conv_as->items);
|
|
||||||
|
|
||||||
foreach ($items as $single_conv) {
|
} while (true);
|
||||||
if (@!$single_conv->id AND $single_conv->provider->url AND $single_conv->statusnet_notice_info->local_id)
|
|
||||||
$single_conv->id = $single_conv->provider->url."notice/".$single_conv->statusnet_notice_info->local_id;
|
|
||||||
|
|
||||||
if (@!$single_conv->id)
|
if (!sizeof($items))
|
||||||
continue;
|
return;
|
||||||
|
|
||||||
if ($first_id == "") {
|
$items = array_reverse($items);
|
||||||
$first_id = $single_conv->id;
|
|
||||||
|
|
||||||
$new_parents = q("SELECT `id`, `uri`, `contact-id`, `type`, `verb`, `visible` FROM `item` WHERE `uid` = %d AND `uri` = '%s' LIMIT 1",
|
foreach ($items as $single_conv) {
|
||||||
intval($message["uid"]), dbesc($first_id));
|
if (@!$single_conv->id AND $single_conv->provider->url AND $single_conv->statusnet_notice_info->local_id)
|
||||||
if ($new_parents) {
|
$single_conv->id = $single_conv->provider->url."notice/".$single_conv->statusnet_notice_info->local_id;
|
||||||
$parent = $new_parents[0];
|
|
||||||
logger('complete_conversation: adopting new parent '.$parent["id"].' for '.$itemid);
|
if (@!$single_conv->id)
|
||||||
} else {
|
continue;
|
||||||
$parent["id"] = 0;
|
|
||||||
$parent["uri"] = $first_id;
|
if ($first_id == "") {
|
||||||
}
|
$first_id = $single_conv->id;
|
||||||
|
|
||||||
|
$new_parents = q("SELECT `id`, `uri`, `contact-id`, `type`, `verb`, `visible` FROM `item` WHERE `uid` = %d AND `uri` = '%s' LIMIT 1",
|
||||||
|
intval($message["uid"]), dbesc($first_id));
|
||||||
|
if ($new_parents) {
|
||||||
|
$parent = $new_parents[0];
|
||||||
|
logger('complete_conversation: adopting new parent '.$parent["id"].' for '.$itemid);
|
||||||
|
} else {
|
||||||
|
$parent["id"] = 0;
|
||||||
|
$parent["uri"] = $first_id;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if (isset($single_conv->context->inReplyTo->id))
|
if (isset($single_conv->context->inReplyTo->id))
|
||||||
$parent_uri = $single_conv->context->inReplyTo->id;
|
$parent_uri = $single_conv->context->inReplyTo->id;
|
||||||
else
|
else
|
||||||
$parent_uri = $parent["uri"];
|
$parent_uri = $parent["uri"];
|
||||||
|
|
||||||
$message_exists = q("SELECT `id` FROM `item` WHERE `uid` = %d AND `uri` = '%s' LIMIT 1",
|
$message_exists = q("SELECT `id` FROM `item` WHERE `uid` = %d AND `uri` = '%s' LIMIT 1",
|
||||||
intval($message["uid"]), dbesc($single_conv->id));
|
intval($message["uid"]), dbesc($single_conv->id));
|
||||||
if ($message_exists) {
|
if ($message_exists) {
|
||||||
if ($parent["id"] != 0) {
|
if ($parent["id"] != 0) {
|
||||||
$existing_message = $message_exists[0];
|
$existing_message = $message_exists[0];
|
||||||
$r = q("UPDATE `item` SET `parent` = %d, `parent-uri` = '%s', `thr-parent` = '%s' WHERE `id` = %d LIMIT 1",
|
$r = q("UPDATE `item` SET `parent` = %d, `parent-uri` = '%s', `thr-parent` = '%s' WHERE `id` = %d LIMIT 1",
|
||||||
intval($parent["id"]),
|
intval($parent["id"]),
|
||||||
dbesc($parent["uri"]),
|
dbesc($parent["uri"]),
|
||||||
dbesc($parent_uri),
|
dbesc($parent_uri),
|
||||||
intval($existing_message["id"]));
|
intval($existing_message["id"]));
|
||||||
}
|
}
|
||||||
continue;
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
$arr = array();
|
||||||
|
$arr["uri"] = $single_conv->id;
|
||||||
|
$arr["plink"] = $single_conv->id;
|
||||||
|
$arr["uid"] = $message["uid"];
|
||||||
|
$arr["contact-id"] = $parent["contact-id"]; // To-Do
|
||||||
|
if ($parent["id"] != 0)
|
||||||
|
$arr["parent"] = $parent["id"];
|
||||||
|
$arr["parent-uri"] = $parent["uri"];
|
||||||
|
$arr["thr-parent"] = $parent_uri;
|
||||||
|
$arr["created"] = $single_conv->published;
|
||||||
|
$arr["edited"] = $single_conv->published;
|
||||||
|
//$arr["owner-name"] = $single_conv->actor->contact->displayName;
|
||||||
|
$arr["owner-name"] = $single_conv->actor->contact->preferredUsername;
|
||||||
|
if ($arr["owner-name"] == '')
|
||||||
|
$arr["owner-name"] = $single_conv->actor->portablecontacts_net->preferredUsername;
|
||||||
|
if ($arr["owner-name"] == '')
|
||||||
|
$arr["owner-name"] = $single_conv->actor->displayName;
|
||||||
|
|
||||||
|
$arr["owner-link"] = $single_conv->actor->id;
|
||||||
|
$arr["owner-avatar"] = $single_conv->actor->image->url;
|
||||||
|
//$arr["author-name"] = $single_conv->actor->contact->displayName;
|
||||||
|
//$arr["author-name"] = $single_conv->actor->contact->preferredUsername;
|
||||||
|
$arr["author-name"] = $arr["owner-name"];
|
||||||
|
$arr["author-link"] = $single_conv->actor->id;
|
||||||
|
$arr["author-avatar"] = $single_conv->actor->image->url;
|
||||||
|
$arr["body"] = html2bbcode($single_conv->content);
|
||||||
|
$arr["app"] = strip_tags($single_conv->statusnet_notice_info->source);
|
||||||
|
if ($arr["app"] == "")
|
||||||
|
$arr["app"] = $single_conv->provider->displayName;
|
||||||
|
$arr["verb"] = $parent["verb"];
|
||||||
|
$arr["visible"] = $parent["visible"];
|
||||||
|
$arr["location"] = $single_conv->location->displayName;
|
||||||
|
$arr["coord"] = trim($single_conv->location->lat." ".$single_conv->location->lon);
|
||||||
|
|
||||||
|
if ($arr["location"] == "")
|
||||||
|
unset($arr["location"]);
|
||||||
|
|
||||||
|
if ($arr["coord"] == "")
|
||||||
|
unset($arr["coord"]);
|
||||||
|
|
||||||
|
$newitem = item_store($arr);
|
||||||
|
|
||||||
|
// Add the conversation entry (but don't fetch the whole conversation)
|
||||||
|
complete_conversation($newitem, $conversation_url, true);
|
||||||
|
|
||||||
|
// If the newly created item is the top item then change the parent settings of the thread
|
||||||
|
if ($newitem AND ($arr["uri"] == $first_id)) {
|
||||||
|
logger('complete_conversation: setting new parent to id '.$newitem);
|
||||||
|
$new_parents = q("SELECT `id`, `uri`, `contact-id`, `type`, `verb`, `visible` FROM `item` WHERE `uid` = %d AND `id` = %d LIMIT 1",
|
||||||
|
intval($message["uid"]), intval($newitem));
|
||||||
|
if ($new_parents) {
|
||||||
|
$parent = $new_parents[0];
|
||||||
|
logger('complete_conversation: done changing parents to parent '.$newitem);
|
||||||
}
|
}
|
||||||
|
|
||||||
$arr = array();
|
/*logger('complete_conversation: changing parents to parent '.$newitem.' old parent: '.$parent["id"].' new uri: '.$arr["uri"]);
|
||||||
$arr["uri"] = $single_conv->id;
|
$r = q("UPDATE `item` SET `parent` = %d, `parent-uri` = '%s' WHERE `parent` = %d",
|
||||||
$arr["plink"] = $single_conv->id;
|
intval($newitem),
|
||||||
$arr["uid"] = $message["uid"];
|
dbesc($arr["uri"]),
|
||||||
$arr["contact-id"] = $parent["contact-id"]; // To-Do
|
intval($parent["id"]));
|
||||||
if ($parent["id"] != 0)
|
logger('complete_conversation: done changing parents to parent '.$newitem.' '.print_r($r, true));*/
|
||||||
$arr["parent"] = $parent["id"];
|
|
||||||
$arr["parent-uri"] = $parent["uri"];
|
|
||||||
$arr["thr-parent"] = $parent_uri;
|
|
||||||
$arr["created"] = $single_conv->published;
|
|
||||||
$arr["edited"] = $single_conv->published;
|
|
||||||
//$arr["owner-name"] = $single_conv->actor->contact->displayName;
|
|
||||||
$arr["owner-name"] = $single_conv->actor->contact->preferredUsername;
|
|
||||||
$arr["owner-link"] = $single_conv->actor->id;
|
|
||||||
$arr["owner-avatar"] = $single_conv->actor->image->url;
|
|
||||||
//$arr["author-name"] = $single_conv->actor->contact->displayName;
|
|
||||||
$arr["author-name"] = $single_conv->actor->contact->preferredUsername;
|
|
||||||
$arr["author-link"] = $single_conv->actor->id;
|
|
||||||
$arr["author-avatar"] = $single_conv->actor->image->url;
|
|
||||||
$arr["body"] = html2bbcode($single_conv->content);
|
|
||||||
$arr["app"] = strip_tags($single_conv->statusnet_notice_info->source);
|
|
||||||
if ($arr["app"] == "")
|
|
||||||
$arr["app"] = $single_conv->provider->displayName;
|
|
||||||
$arr["verb"] = $parent["verb"];
|
|
||||||
$arr["visible"] = $parent["visible"];
|
|
||||||
$arr["location"] = $single_conv->location->displayName;
|
|
||||||
$arr["coord"] = trim($single_conv->location->lat." ".$single_conv->location->lon);
|
|
||||||
|
|
||||||
if ($arr["location"] == "")
|
|
||||||
unset($arr["location"]);
|
|
||||||
|
|
||||||
if ($arr["coord"] == "")
|
|
||||||
unset($arr["coord"]);
|
|
||||||
|
|
||||||
$newitem = item_store($arr);
|
|
||||||
|
|
||||||
// Add the conversation entry (but don't fetch the whole conversation)
|
|
||||||
complete_conversation($newitem, $conversation_url, true);
|
|
||||||
|
|
||||||
// If the newly created item is the top item then change the parent settings of the thread
|
|
||||||
if ($newitem AND ($arr["uri"] == $first_id)) {
|
|
||||||
logger('complete_conversation: setting new parent to id '.$newitem);
|
|
||||||
$new_parents = q("SELECT `id`, `uri`, `contact-id`, `type`, `verb`, `visible` FROM `item` WHERE `uid` = %d AND `id` = %d LIMIT 1",
|
|
||||||
intval($message["uid"]), intval($newitem));
|
|
||||||
if ($new_parents) {
|
|
||||||
$parent = $new_parents[0];
|
|
||||||
logger('complete_conversation: done changing parents to parent '.$newitem);
|
|
||||||
}
|
|
||||||
|
|
||||||
/*logger('complete_conversation: changing parents to parent '.$newitem.' old parent: '.$parent["id"].' new uri: '.$arr["uri"]);
|
|
||||||
$r = q("UPDATE `item` SET `parent` = %d, `parent-uri` = '%s' WHERE `parent` = %d",
|
|
||||||
intval($newitem),
|
|
||||||
dbesc($arr["uri"]),
|
|
||||||
intval($parent["id"]));
|
|
||||||
logger('complete_conversation: done changing parents to parent '.$newitem.' '.print_r($r, true));*/
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -34,7 +34,7 @@ function contacts_init(&$a) {
|
||||||
'$photo' => $a->data['contact']['photo']
|
'$photo' => $a->data['contact']['photo']
|
||||||
));
|
));
|
||||||
$follow_widget = '';
|
$follow_widget = '';
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
$vcard_widget = '';
|
$vcard_widget = '';
|
||||||
$follow_widget = follow_widget();
|
$follow_widget = follow_widget();
|
||||||
|
|
Loading…
Reference in a new issue