OStatus-Conversation auto completion works now.
Some performance issues added as well.
This commit is contained in:
parent
9967c9892d
commit
2350aa54eb
|
@ -591,6 +591,7 @@ CREATE TABLE IF NOT EXISTS `item` (
|
||||||
KEY `uid_created` (`uid`, `created`),
|
KEY `uid_created` (`uid`, `created`),
|
||||||
KEY `uid_unseen` (`uid`, `unseen`),
|
KEY `uid_unseen` (`uid`, `unseen`),
|
||||||
KEY `mention` (`mention`),
|
KEY `mention` (`mention`),
|
||||||
|
KEY `resource-id` (`resource-id`),
|
||||||
FULLTEXT KEY `title` (`title`),
|
FULLTEXT KEY `title` (`title`),
|
||||||
FULLTEXT KEY `body` (`body`),
|
FULLTEXT KEY `body` (`body`),
|
||||||
FULLTEXT KEY `allow_cid` (`allow_cid`),
|
FULLTEXT KEY `allow_cid` (`allow_cid`),
|
||||||
|
|
|
@ -1,16 +1,4 @@
|
||||||
<?php
|
<?php
|
||||||
/*require_once("boot.php");
|
|
||||||
if(@is_null($a)) {
|
|
||||||
$a = new App;
|
|
||||||
}
|
|
||||||
|
|
||||||
if(is_null($db)) {
|
|
||||||
@include(".htconfig.php");
|
|
||||||
require_once("dba.php");
|
|
||||||
$db = new dba($db_host, $db_user, $db_pass, $db_data);
|
|
||||||
unset($db_host, $db_user, $db_pass, $db_data);
|
|
||||||
};*/
|
|
||||||
|
|
||||||
function complete_conversation($itemid, $conversation_url) {
|
function complete_conversation($itemid, $conversation_url) {
|
||||||
global $a;
|
global $a;
|
||||||
|
|
||||||
|
@ -54,16 +42,17 @@ function complete_conversation($itemid, $conversation_url) {
|
||||||
$items = array_reverse($conv_as->items);
|
$items = array_reverse($conv_as->items);
|
||||||
|
|
||||||
foreach ($items as $single_conv) {
|
foreach ($items as $single_conv) {
|
||||||
//print_r($single_conv);
|
|
||||||
|
|
||||||
if ($first_id == "") {
|
if ($first_id == "") {
|
||||||
$first_id = $single_conv->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",
|
$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));
|
intval($message["uid"]), dbesc($first_id));
|
||||||
if ($new_parents AND ($itemid != $parent["id"])) {
|
if ($new_parents) {
|
||||||
$parent = $new_parents[0];
|
$parent = $new_parents[0];
|
||||||
logger('complete_conversation: adopting new parent '.$parent["id"].' for '.$itemid);
|
logger('complete_conversation: adopting new parent '.$parent["id"].' for '.$itemid);
|
||||||
|
} else {
|
||||||
|
$parent["id"] = 0;
|
||||||
|
$parent["uri"] = $first_id;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -72,6 +61,7 @@ function complete_conversation($itemid, $conversation_url) {
|
||||||
else
|
else
|
||||||
$parent_uri = $parent["uri"];
|
$parent_uri = $parent["uri"];
|
||||||
|
|
||||||
|
if ($parent["id"] != 0) {
|
||||||
$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) {
|
||||||
|
@ -83,22 +73,25 @@ function complete_conversation($itemid, $conversation_url) {
|
||||||
intval($existing_message["id"]));
|
intval($existing_message["id"]));
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
$arr = array();
|
$arr = array();
|
||||||
$arr["uri"] = $single_conv->id;
|
$arr["uri"] = $single_conv->id;
|
||||||
|
$arr["plink"] = $single_conv->id;
|
||||||
$arr["uid"] = $message["uid"];
|
$arr["uid"] = $message["uid"];
|
||||||
$arr["contact-id"] = $parent["contact-id"]; // To-Do
|
$arr["contact-id"] = $parent["contact-id"]; // To-Do
|
||||||
|
if ($parent["id"] != 0)
|
||||||
$arr["parent"] = $parent["id"];
|
$arr["parent"] = $parent["id"];
|
||||||
$arr["parent-uri"] = $parent["uri"];
|
$arr["parent-uri"] = $parent["uri"];
|
||||||
$arr["thr-parent"] = $parent_uri;
|
$arr["thr-parent"] = $parent_uri;
|
||||||
$arr["created"] = $single_conv->published;
|
$arr["created"] = $single_conv->published;
|
||||||
$arr["edited"] = $single_conv->published;
|
$arr["edited"] = $single_conv->published;
|
||||||
$arr["owner-name"] = $single_conv->actor->contact->displayName;
|
//$arr["owner-name"] = $single_conv->actor->contact->displayName;
|
||||||
//$arr["owner-name"] = $single_conv->actor->contact->preferredUsername;
|
$arr["owner-name"] = $single_conv->actor->contact->preferredUsername;
|
||||||
$arr["owner-link"] = $single_conv->actor->id;
|
$arr["owner-link"] = $single_conv->actor->id;
|
||||||
$arr["owner-avatar"] = $single_conv->actor->image->url;
|
$arr["owner-avatar"] = $single_conv->actor->image->url;
|
||||||
$arr["author-name"] = $single_conv->actor->contact->displayName;
|
//$arr["author-name"] = $single_conv->actor->contact->displayName;
|
||||||
//$arr["author-name"] = $single_conv->actor->contact->preferredUsername;
|
$arr["author-name"] = $single_conv->actor->contact->preferredUsername;
|
||||||
$arr["author-link"] = $single_conv->actor->id;
|
$arr["author-link"] = $single_conv->actor->id;
|
||||||
$arr["author-avatar"] = $single_conv->actor->image->url;
|
$arr["author-avatar"] = $single_conv->actor->image->url;
|
||||||
$arr["body"] = html2bbcode($single_conv->content);
|
$arr["body"] = html2bbcode($single_conv->content);
|
||||||
|
@ -120,21 +113,22 @@ function complete_conversation($itemid, $conversation_url) {
|
||||||
|
|
||||||
// If the newly created item is the top item then change the parent settings of the thread
|
// If the newly created item is the top item then change the parent settings of the thread
|
||||||
if ($newitem AND ($arr["uri"] == $first_id)) {
|
if ($newitem AND ($arr["uri"] == $first_id)) {
|
||||||
logger('complete_conversation: changing parents to parent '.$newitem.' old parent: '.$parent["id"].' new uri: '.$arr["uri"]);
|
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",
|
$r = q("UPDATE `item` SET `parent` = %d, `parent-uri` = '%s' WHERE `parent` = %d",
|
||||||
intval($newitem),
|
intval($newitem),
|
||||||
dbesc($arr["uri"]),
|
dbesc($arr["uri"]),
|
||||||
intval($parent["id"]));
|
intval($parent["id"]));
|
||||||
logger('complete_conversation: done changing parents to parent '.$newitem);
|
logger('complete_conversation: done changing parents to parent '.$newitem.' '.print_r($r, true));*/
|
||||||
}
|
}
|
||||||
//print_r($arr);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
/*
|
|
||||||
$id = 282481;
|
|
||||||
$conversation = "http://identi.ca/conversation/98268580";
|
|
||||||
|
|
||||||
complete_conversation($id, $conversation);
|
|
||||||
*/
|
|
||||||
?>
|
?>
|
||||||
|
|
|
@ -75,12 +75,13 @@ function community_content(&$a, $update = 0) {
|
||||||
AND `item`.`allow_cid` = '' AND `item`.`allow_gid` = ''
|
AND `item`.`allow_cid` = '' AND `item`.`allow_gid` = ''
|
||||||
AND `item`.`deny_cid` = '' AND `item`.`deny_gid` = ''
|
AND `item`.`deny_cid` = '' AND `item`.`deny_gid` = ''
|
||||||
AND `item`.`private` = 0 AND `item`.`wall` = 1 AND `user`.`hidewall` = 0
|
AND `item`.`private` = 0 AND `item`.`wall` = 1 AND `user`.`hidewall` = 0
|
||||||
AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0 group by `item`.`uri`
|
AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0
|
||||||
ORDER BY `received` DESC LIMIT %d, %d ",
|
ORDER BY `received` DESC LIMIT %d, %d ",
|
||||||
intval($a->pager['start']),
|
intval($a->pager['start']),
|
||||||
intval($a->pager['itemspage'])
|
intval($a->pager['itemspage'])
|
||||||
|
|
||||||
);
|
);
|
||||||
|
// AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0 group by `item`.`uri`
|
||||||
|
|
||||||
if(! count($r)) {
|
if(! count($r)) {
|
||||||
info( t('No results.') . EOL);
|
info( t('No results.') . EOL);
|
||||||
|
|
|
@ -164,9 +164,10 @@ function search_content(&$a) {
|
||||||
AND (( `item`.`allow_cid` = '' AND `item`.`allow_gid` = '' AND `item`.`deny_cid` = '' AND `item`.`deny_gid` = '' AND `item`.`private` = 0 AND `user`.`hidewall` = 0)
|
AND (( `item`.`allow_cid` = '' AND `item`.`allow_gid` = '' AND `item`.`deny_cid` = '' AND `item`.`deny_gid` = '' AND `item`.`private` = 0 AND `user`.`hidewall` = 0)
|
||||||
OR `item`.`uid` = %d )
|
OR `item`.`uid` = %d )
|
||||||
AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0
|
AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0
|
||||||
$sql_extra group by `item`.`uri` ",
|
$sql_extra ",
|
||||||
intval(local_user())
|
intval(local_user())
|
||||||
);
|
);
|
||||||
|
// $sql_extra group by `item`.`uri` ",
|
||||||
|
|
||||||
if(count($r))
|
if(count($r))
|
||||||
$a->set_pager_total(count($r));
|
$a->set_pager_total(count($r));
|
||||||
|
@ -189,13 +190,13 @@ function search_content(&$a) {
|
||||||
OR `item`.`uid` = %d )
|
OR `item`.`uid` = %d )
|
||||||
AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0
|
AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0
|
||||||
$sql_extra
|
$sql_extra
|
||||||
group by `item`.`uri`
|
|
||||||
ORDER BY `received` DESC LIMIT %d , %d ",
|
ORDER BY `received` DESC LIMIT %d , %d ",
|
||||||
intval(local_user()),
|
intval(local_user()),
|
||||||
intval($a->pager['start']),
|
intval($a->pager['start']),
|
||||||
intval($a->pager['itemspage'])
|
intval($a->pager['itemspage'])
|
||||||
|
|
||||||
);
|
);
|
||||||
|
// group by `item`.`uri`
|
||||||
|
|
||||||
if(! count($r)) {
|
if(! count($r)) {
|
||||||
info( t('No results.') . EOL);
|
info( t('No results.') . EOL);
|
||||||
|
|
|
@ -3,3 +3,4 @@ Site speed can be improved when the following indexes are set. They cannot be se
|
||||||
CREATE INDEX `uid_commented` ON `item` (`uid`, `commented`);
|
CREATE INDEX `uid_commented` ON `item` (`uid`, `commented`);
|
||||||
CREATE INDEX `uid_created` ON `item` (`uid`, `created`);
|
CREATE INDEX `uid_created` ON `item` (`uid`, `created`);
|
||||||
CREATE INDEX `uid_unseen` ON `item` (`uid`, `unseen`);
|
CREATE INDEX `uid_unseen` ON `item` (`uid`, `unseen`);
|
||||||
|
CREATE INDEX `resource-id` ON `item` (`resource-id`);
|
||||||
|
|
Loading…
Reference in a new issue