function item_post(&$a) {
+ $perfdb = $a->performance["database"];
+ $perfdbw = $a->performance["database_write"];
+ $perfnet = $a->performance["network"];
+ $perffile = $a->performance["file"];
+
+ logger("Performance: Start", LOGGER_DEBUG);
+
if((! local_user()) && (! remote_user()) && (! x($_REQUEST,'commenter')))
return;
if(! count($r))
continue;
-
+ logger("Pre Photo", LOGGER_DEBUG);
$r = q("UPDATE `photo` SET `allow_cid` = '%s', `allow_gid` = '%s', `deny_cid` = '%s', `deny_gid` = '%s'
WHERE `resource-id` = '%s' AND `uid` = %d AND `album` = '%s' ",
dbesc($str_contact_allow),
intval($profile_uid),
dbesc( t('Wall Photos'))
);
+ logger("Post Photo", LOGGER_DEBUG);
}
}
intval($attach)
);
if(count($r)) {
+ logger("Pre Attach", LOGGER_DEBUG);
$r = q("UPDATE `attach` SET `allow_cid` = '%s', `allow_gid` = '%s', `deny_cid` = '%s', `deny_gid` = '%s'
WHERE `uid` = %d AND `id` = %d",
dbesc($str_contact_allow),
intval($profile_uid),
intval($attach)
);
+ logger("Post Attach", LOGGER_DEBUG);
}
}
}
put_item_in_cache($datarray);
if($orig_post) {
+ logger("Pre Update", LOGGER_DEBUG);
$r = q("UPDATE `item` SET `title` = '%s', `body` = '%s', `tag` = '%s', `attach` = '%s', `file` = '%s', `rendered-html` = '%s', `rendered-hash` = '%s', `edited` = '%s', `changed` = '%s' WHERE `id` = %d AND `uid` = %d",
dbesc($datarray['title']),
dbesc($datarray['body']),
intval($post_id),
intval($profile_uid)
);
+ logger("Post Update", LOGGER_DEBUG);
create_tags_from_item($post_id);
create_files_from_item($post_id);
else
$post_id = 0;
+ if ($parent) {
+ // Inherit ACLs from the parent item.
+ /// @todo Check if really needed
+ $datarray['allow_cid'] = $parent_item['allow_cid'];
+ $datarray['allow_gid'] = $parent_item['allow_gid'];
+ $datarray['deny_cid'] = $parent_item['deny_cid'];
+ $datarray['deny_gid'] = $parent_item['deny_gid'];
+ $datarray['private'] = $parent_item['private'];
+ }
+ logger("Pre Insert", LOGGER_DEBUG);
$r = q("INSERT INTO `item` (`guid`, `extid`, `uid`,`type`,`wall`,`gravity`, `network`, `contact-id`,
`owner-name`,`owner-link`,`owner-avatar`, `owner-id`,
`author-name`, `author-link`, `author-avatar`, `author-id`,
dbesc($datarray['rendered-hash'])
);
+ logger("Post Insert", LOGGER_DEBUG);
+
$r = q("SELECT `id` FROM `item` WHERE `uri` = '%s' LIMIT 1",
dbesc($datarray['uri']));
if(!count($r)) {
if($parent) {
+ logger("Pre Update last-child", LOGGER_DEBUG);
// This item is the last leaf and gets the comment box, clear any ancestors
- $r = q("UPDATE `item` SET `last-child` = 0, `changed` = '%s' WHERE `parent` = %d ",
+ $r = q("UPDATE `item` SET `last-child` = 0, `changed` = '%s' WHERE `parent` = %d AND `last-child`",
dbesc(datetime_convert()),
intval($parent)
);
- update_thread($parent, true);
+ logger("Post Update last-child", LOGGER_DEBUG);
+ //Test: update_thread($parent, true);
// Inherit ACLs from the parent item.
-
+/*
+ logger("Pre Update ACL", LOGGER_DEBUG);
$r = q("UPDATE `item` SET `allow_cid` = '%s', `allow_gid` = '%s', `deny_cid` = '%s', `deny_gid` = '%s', `private` = %d
WHERE `id` = %d",
dbesc($parent_item['allow_cid']),
intval($parent_item['private']),
intval($post_id)
);
-
+ logger("Post Update ACL", LOGGER_DEBUG);
+*/
if($contact_record != $author) {
notification(array(
'type' => NOTIFY_COMMENT,
if(! $parent)
$parent = $post_id;
+ logger("Pre Update Parent", LOGGER_DEBUG);
$r = q("UPDATE `item` SET `parent` = %d, `parent-uri` = '%s', `plink` = '%s', `changed` = '%s', `last-child` = 1, `visible` = 1
WHERE `id` = %d",
intval($parent),
dbesc(datetime_convert()),
intval($post_id)
);
+ logger("Pre Update Parent", LOGGER_DEBUG);
// photo comments turn the corresponding item visible to the profile wall
// This way we don't see every picture in your new photo album posted to your wall at once.
// They will show up as people comment on them.
- if(! $parent_item['visible']) {
- $r = q("UPDATE `item` SET `visible` = 1 WHERE `id` = %d",
- intval($parent_item['id'])
- );
- update_thread($parent_item['id']);
- }
+ //if(! $parent_item['visible']) {
+ // logger("Pre Update Visible", LOGGER_DEBUG);
+ // $r = q("UPDATE `item` SET `visible` = 1 WHERE `id` = %d",
+ // intval($parent_item['id'])
+ // );
+ // logger("Post Update Visible", LOGGER_DEBUG);
+ //update_thread($parent_item['id']);
+ //}
// update the commented timestamp on the parent
- q("UPDATE `item` set `commented` = '%s', `changed` = '%s' WHERE `id` = %d",
+ logger("Pre Update Commented", LOGGER_DEBUG);
+ q("UPDATE `item` SET `visible` = 1, `commented` = '%s', `changed` = '%s' WHERE `id` = %d",
dbesc(datetime_convert()),
dbesc(datetime_convert()),
intval($parent)
);
+ logger("Post Update Commented", LOGGER_DEBUG);
if ($post_id != $parent)
- update_thread($parent);
+ update_thread($parent, true);
call_hooks('post_local_end', $datarray);
logger('post_complete');
+ $perfdb = $a->performance["database"] - $perfdb;
+ $perfdbw = $a->performance["database_write"] - $perfdbw;
+ $perfnet = $a->performance["network"] - $perfnet;
+ $perffile = $a->performance["file"] - $perffile;
+
+ logger("Performance: DB-R: ".round($perfdb - $perfdbw, 2)." - DB-W: ".round($perfdbw, 2)." - Net: ".round($perfnet, 2)." - File: ".round($perffile, 2), LOGGER_DEBUG);
+ //logger("Performance: DB-R: ".round($perfdb - $perfdbw, 2)." - DB-W: ".round($perfdbw, 2)." - Net: ".round($perfnet, 2), LOGGER_DEBUG);
+
item_post_return($a->get_baseurl(), $api_source, $return_path);
// NOTREACHED
}