mirror of
https://github.com/friendica/friendica
synced 2024-11-09 23:02:54 +00:00
Some further cleaning up
This commit is contained in:
parent
d46359a891
commit
71d9037970
3 changed files with 56 additions and 60 deletions
58
database.sql
58
database.sql
|
@ -1388,35 +1388,6 @@ CREATE VIEW `tag-view` AS SELECT
|
||||||
LEFT JOIN `tag` ON `post-tag`.`tid` = `tag`.`id`
|
LEFT JOIN `tag` ON `post-tag`.`tid` = `tag`.`id`
|
||||||
LEFT JOIN `contact` ON `post-tag`.`cid` = `contact`.`id`;
|
LEFT JOIN `contact` ON `post-tag`.`cid` = `contact`.`id`;
|
||||||
|
|
||||||
--
|
|
||||||
-- VIEW network-thread-view
|
|
||||||
--
|
|
||||||
DROP VIEW IF EXISTS `network-thread-view`;
|
|
||||||
CREATE VIEW `network-thread-view` AS SELECT
|
|
||||||
`item`.`uri-id` AS `uri-id`,
|
|
||||||
`item`.`uri` AS `uri`,
|
|
||||||
`item`.`parent-uri-id` AS `parent-uri-id`,
|
|
||||||
`thread`.`iid` AS `parent`,
|
|
||||||
`thread`.`iid` AS `item_id`,
|
|
||||||
`thread`.`received` AS `received`,
|
|
||||||
`thread`.`commented` AS `commented`,
|
|
||||||
`thread`.`created` AS `created`,
|
|
||||||
`thread`.`uid` AS `uid`,
|
|
||||||
`thread`.`starred` AS `starred`,
|
|
||||||
`thread`.`mention` AS `mention`,
|
|
||||||
`thread`.`network` AS `network`,
|
|
||||||
`thread`.`contact-id` AS `contact-id`
|
|
||||||
FROM `thread`
|
|
||||||
STRAIGHT_JOIN `contact` ON `contact`.`id` = `thread`.`contact-id` AND (NOT `contact`.`blocked` OR `contact`.`pending`)
|
|
||||||
STRAIGHT_JOIN `item` ON `item`.`id` = `thread`.`iid`
|
|
||||||
LEFT JOIN `user-item` ON `user-item`.`iid` = `item`.`id` AND `user-item`.`uid` = `thread`.`uid`
|
|
||||||
LEFT JOIN `user-contact` AS `author` ON `author`.`uid` = `thread`.`uid` AND `author`.`cid` = `thread`.`author-id`
|
|
||||||
LEFT JOIN `user-contact` AS `owner` ON `owner`.`uid` = `thread`.`uid` AND `owner`.`cid` = `thread`.`owner-id`
|
|
||||||
WHERE `thread`.`visible` AND NOT `thread`.`deleted` AND NOT `thread`.`moderated`
|
|
||||||
AND (`user-item`.`hidden` IS NULL OR NOT `user-item`.`hidden`)
|
|
||||||
AND (`author`.`blocked` IS NULL OR NOT `author`.`blocked`)
|
|
||||||
AND (`owner`.`blocked` IS NULL OR NOT `owner`.`blocked`);
|
|
||||||
|
|
||||||
--
|
--
|
||||||
-- VIEW network-item-view
|
-- VIEW network-item-view
|
||||||
--
|
--
|
||||||
|
@ -1425,7 +1396,6 @@ CREATE VIEW `network-item-view` AS SELECT
|
||||||
`item`.`parent-uri-id` AS `uri-id`,
|
`item`.`parent-uri-id` AS `uri-id`,
|
||||||
`item`.`parent-uri` AS `uri`,
|
`item`.`parent-uri` AS `uri`,
|
||||||
`item`.`parent` AS `parent`,
|
`item`.`parent` AS `parent`,
|
||||||
`item`.`parent` AS `item_id`,
|
|
||||||
`item`.`received` AS `received`,
|
`item`.`received` AS `received`,
|
||||||
`item`.`commented` AS `commented`,
|
`item`.`commented` AS `commented`,
|
||||||
`item`.`created` AS `created`,
|
`item`.`created` AS `created`,
|
||||||
|
@ -1447,6 +1417,34 @@ CREATE VIEW `network-item-view` AS SELECT
|
||||||
AND (`author`.`blocked` IS NULL OR NOT `author`.`blocked`)
|
AND (`author`.`blocked` IS NULL OR NOT `author`.`blocked`)
|
||||||
AND (`owner`.`blocked` IS NULL OR NOT `owner`.`blocked`);
|
AND (`owner`.`blocked` IS NULL OR NOT `owner`.`blocked`);
|
||||||
|
|
||||||
|
--
|
||||||
|
-- VIEW network-thread-view
|
||||||
|
--
|
||||||
|
DROP VIEW IF EXISTS `network-thread-view`;
|
||||||
|
CREATE VIEW `network-thread-view` AS SELECT
|
||||||
|
`item`.`uri-id` AS `uri-id`,
|
||||||
|
`item`.`uri` AS `uri`,
|
||||||
|
`item`.`parent-uri-id` AS `parent-uri-id`,
|
||||||
|
`thread`.`iid` AS `parent`,
|
||||||
|
`thread`.`received` AS `received`,
|
||||||
|
`thread`.`commented` AS `commented`,
|
||||||
|
`thread`.`created` AS `created`,
|
||||||
|
`thread`.`uid` AS `uid`,
|
||||||
|
`thread`.`starred` AS `starred`,
|
||||||
|
`thread`.`mention` AS `mention`,
|
||||||
|
`thread`.`network` AS `network`,
|
||||||
|
`thread`.`contact-id` AS `contact-id`
|
||||||
|
FROM `thread`
|
||||||
|
STRAIGHT_JOIN `contact` ON `contact`.`id` = `thread`.`contact-id` AND (NOT `contact`.`blocked` OR `contact`.`pending`)
|
||||||
|
STRAIGHT_JOIN `item` ON `item`.`id` = `thread`.`iid`
|
||||||
|
LEFT JOIN `user-item` ON `user-item`.`iid` = `item`.`id` AND `user-item`.`uid` = `thread`.`uid`
|
||||||
|
LEFT JOIN `user-contact` AS `author` ON `author`.`uid` = `thread`.`uid` AND `author`.`cid` = `thread`.`author-id`
|
||||||
|
LEFT JOIN `user-contact` AS `owner` ON `owner`.`uid` = `thread`.`uid` AND `owner`.`cid` = `thread`.`owner-id`
|
||||||
|
WHERE `thread`.`visible` AND NOT `thread`.`deleted` AND NOT `thread`.`moderated`
|
||||||
|
AND (`user-item`.`hidden` IS NULL OR NOT `user-item`.`hidden`)
|
||||||
|
AND (`author`.`blocked` IS NULL OR NOT `author`.`blocked`)
|
||||||
|
AND (`owner`.`blocked` IS NULL OR NOT `owner`.`blocked`);
|
||||||
|
|
||||||
--
|
--
|
||||||
-- VIEW owner-view
|
-- VIEW owner-view
|
||||||
--
|
--
|
||||||
|
|
|
@ -628,8 +628,8 @@ function network_display_post($a, $pager, $mark_all, $update, $ordering, $items)
|
||||||
$parents_arr = [];
|
$parents_arr = [];
|
||||||
|
|
||||||
foreach ($items as $item) {
|
foreach ($items as $item) {
|
||||||
if (!in_array($item['item_id'], $parents_arr) && ($item['item_id'] > 0)) {
|
if (!in_array($item['parent'], $parents_arr) && ($item['parent'] > 0)) {
|
||||||
$parents_arr[] = $item['item_id'];
|
$parents_arr[] = $item['parent'];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
$parents_str = implode(', ', $parents_arr);
|
$parents_str = implode(', ', $parents_arr);
|
||||||
|
|
|
@ -68,39 +68,11 @@ return [
|
||||||
LEFT JOIN `tag` ON `post-tag`.`tid` = `tag`.`id`
|
LEFT JOIN `tag` ON `post-tag`.`tid` = `tag`.`id`
|
||||||
LEFT JOIN `contact` ON `post-tag`.`cid` = `contact`.`id`"
|
LEFT JOIN `contact` ON `post-tag`.`cid` = `contact`.`id`"
|
||||||
],
|
],
|
||||||
"network-thread-view" => [
|
|
||||||
"fields" => [
|
|
||||||
"uri-id" => ["item", "uri-id"],
|
|
||||||
"uri" => ["item", "uri"],
|
|
||||||
"parent-uri-id" => ["item", "parent-uri-id"],
|
|
||||||
"parent" => ["thread", "iid"],
|
|
||||||
"item_id" => ["thread", "iid"],
|
|
||||||
"received" => ["thread", "received"],
|
|
||||||
"commented" => ["thread", "commented"],
|
|
||||||
"created" => ["thread", "created"],
|
|
||||||
"uid" => ["thread", "uid"],
|
|
||||||
"starred" => ["thread", "starred"],
|
|
||||||
"mention" => ["thread", "mention"],
|
|
||||||
"network" => ["thread", "network"],
|
|
||||||
"contact-id" => ["thread", "contact-id"],
|
|
||||||
],
|
|
||||||
"query" => "FROM `thread`
|
|
||||||
STRAIGHT_JOIN `contact` ON `contact`.`id` = `thread`.`contact-id` AND (NOT `contact`.`blocked` OR `contact`.`pending`)
|
|
||||||
STRAIGHT_JOIN `item` ON `item`.`id` = `thread`.`iid`
|
|
||||||
LEFT JOIN `user-item` ON `user-item`.`iid` = `item`.`id` AND `user-item`.`uid` = `thread`.`uid`
|
|
||||||
LEFT JOIN `user-contact` AS `author` ON `author`.`uid` = `thread`.`uid` AND `author`.`cid` = `thread`.`author-id`
|
|
||||||
LEFT JOIN `user-contact` AS `owner` ON `owner`.`uid` = `thread`.`uid` AND `owner`.`cid` = `thread`.`owner-id`
|
|
||||||
WHERE `thread`.`visible` AND NOT `thread`.`deleted` AND NOT `thread`.`moderated`
|
|
||||||
AND (`user-item`.`hidden` IS NULL OR NOT `user-item`.`hidden`)
|
|
||||||
AND (`author`.`blocked` IS NULL OR NOT `author`.`blocked`)
|
|
||||||
AND (`owner`.`blocked` IS NULL OR NOT `owner`.`blocked`)"
|
|
||||||
],
|
|
||||||
"network-item-view" => [
|
"network-item-view" => [
|
||||||
"fields" => [
|
"fields" => [
|
||||||
"uri-id" => ["item", "parent-uri-id"],
|
"uri-id" => ["item", "parent-uri-id"],
|
||||||
"uri" => ["item", "parent-uri"],
|
"uri" => ["item", "parent-uri"],
|
||||||
"parent" => ["item", "parent"],
|
"parent" => ["item", "parent"],
|
||||||
"item_id" => ["item", "parent"],
|
|
||||||
"received" => ["item", "received"],
|
"received" => ["item", "received"],
|
||||||
"commented" => ["item", "commented"],
|
"commented" => ["item", "commented"],
|
||||||
"created" => ["item", "created"],
|
"created" => ["item", "created"],
|
||||||
|
@ -123,6 +95,32 @@ return [
|
||||||
AND (`author`.`blocked` IS NULL OR NOT `author`.`blocked`)
|
AND (`author`.`blocked` IS NULL OR NOT `author`.`blocked`)
|
||||||
AND (`owner`.`blocked` IS NULL OR NOT `owner`.`blocked`)"
|
AND (`owner`.`blocked` IS NULL OR NOT `owner`.`blocked`)"
|
||||||
],
|
],
|
||||||
|
"network-thread-view" => [
|
||||||
|
"fields" => [
|
||||||
|
"uri-id" => ["item", "uri-id"],
|
||||||
|
"uri" => ["item", "uri"],
|
||||||
|
"parent-uri-id" => ["item", "parent-uri-id"],
|
||||||
|
"parent" => ["thread", "iid"],
|
||||||
|
"received" => ["thread", "received"],
|
||||||
|
"commented" => ["thread", "commented"],
|
||||||
|
"created" => ["thread", "created"],
|
||||||
|
"uid" => ["thread", "uid"],
|
||||||
|
"starred" => ["thread", "starred"],
|
||||||
|
"mention" => ["thread", "mention"],
|
||||||
|
"network" => ["thread", "network"],
|
||||||
|
"contact-id" => ["thread", "contact-id"],
|
||||||
|
],
|
||||||
|
"query" => "FROM `thread`
|
||||||
|
STRAIGHT_JOIN `contact` ON `contact`.`id` = `thread`.`contact-id` AND (NOT `contact`.`blocked` OR `contact`.`pending`)
|
||||||
|
STRAIGHT_JOIN `item` ON `item`.`id` = `thread`.`iid`
|
||||||
|
LEFT JOIN `user-item` ON `user-item`.`iid` = `item`.`id` AND `user-item`.`uid` = `thread`.`uid`
|
||||||
|
LEFT JOIN `user-contact` AS `author` ON `author`.`uid` = `thread`.`uid` AND `author`.`cid` = `thread`.`author-id`
|
||||||
|
LEFT JOIN `user-contact` AS `owner` ON `owner`.`uid` = `thread`.`uid` AND `owner`.`cid` = `thread`.`owner-id`
|
||||||
|
WHERE `thread`.`visible` AND NOT `thread`.`deleted` AND NOT `thread`.`moderated`
|
||||||
|
AND (`user-item`.`hidden` IS NULL OR NOT `user-item`.`hidden`)
|
||||||
|
AND (`author`.`blocked` IS NULL OR NOT `author`.`blocked`)
|
||||||
|
AND (`owner`.`blocked` IS NULL OR NOT `owner`.`blocked`)"
|
||||||
|
],
|
||||||
"owner-view" => [
|
"owner-view" => [
|
||||||
"fields" => [
|
"fields" => [
|
||||||
"id" => ["contact", "id"],
|
"id" => ["contact", "id"],
|
||||||
|
|
Loading…
Reference in a new issue