2020-04-23 08:19:44 +02:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @copyright Copyright (C) 2020, Friendica
|
|
|
|
*
|
|
|
|
* @license GNU AGPL version 3 or any later version
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as
|
|
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
* Main view structure configuration file.
|
|
|
|
*
|
|
|
|
* Here are described all the view Friendica needs to work.
|
|
|
|
*
|
|
|
|
* Syntax (braces indicate optionale values):
|
|
|
|
* "<view name>" => [
|
|
|
|
* "fields" => [
|
2020-04-23 09:02:18 +02:00
|
|
|
* "<field name>" => ["table", "field"],
|
2020-04-23 08:19:44 +02:00
|
|
|
* "<field name>" => "SQL expression",
|
|
|
|
* ...
|
|
|
|
* ],
|
|
|
|
* "query" => "FROM `table` INNER JOIN `other-table` ..."
|
|
|
|
* ],
|
|
|
|
* ],
|
|
|
|
*
|
|
|
|
* If you need to make any change, make sure to increment the DB_UPDATE_VERSION constant value in dbstructure.config.php.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
return [
|
2020-05-03 17:13:40 +02:00
|
|
|
"category-view" => [
|
|
|
|
"fields" => [
|
|
|
|
"uri-id" => ["post-category", "uri-id"],
|
|
|
|
"uid" => ["post-category", "uid"],
|
|
|
|
"uri" => ["item-uri", "uri"],
|
|
|
|
"guid" => ["item-uri", "guid"],
|
|
|
|
"type" => ["post-category", "type"],
|
|
|
|
"tid" => ["post-category", "tid"],
|
|
|
|
"name" => ["tag", "name"],
|
|
|
|
"url" => ["tag", "url"],
|
|
|
|
],
|
|
|
|
"query" => "FROM `post-category`
|
|
|
|
INNER JOIN `item-uri` ON `item-uri`.id = `post-category`.`uri-id`
|
|
|
|
LEFT JOIN `tag` ON `post-category`.`tid` = `tag`.`id`"
|
|
|
|
],
|
2020-04-23 08:19:44 +02:00
|
|
|
"tag-view" => [
|
2020-04-24 07:37:06 +02:00
|
|
|
"fields" => [
|
|
|
|
"uri-id" => ["post-tag", "uri-id"],
|
2020-04-23 09:02:18 +02:00
|
|
|
"uri" => ["item-uri", "uri"],
|
|
|
|
"guid" => ["item-uri", "guid"],
|
|
|
|
"type" => ["post-tag", "type"],
|
|
|
|
"tid" => ["post-tag", "tid"],
|
|
|
|
"cid" => ["post-tag", "cid"],
|
2020-04-23 08:19:44 +02:00
|
|
|
"name" => "CASE `cid` WHEN 0 THEN `tag`.`name` ELSE `contact`.`name` END",
|
2020-04-24 07:37:06 +02:00
|
|
|
"url" => "CASE `cid` WHEN 0 THEN `tag`.`url` ELSE `contact`.`url` END",
|
|
|
|
],
|
2020-04-23 08:19:44 +02:00
|
|
|
"query" => "FROM `post-tag`
|
|
|
|
INNER JOIN `item-uri` ON `item-uri`.id = `post-tag`.`uri-id`
|
|
|
|
LEFT JOIN `tag` ON `post-tag`.`tid` = `tag`.`id`
|
|
|
|
LEFT JOIN `contact` ON `post-tag`.`cid` = `contact`.`id`"
|
2020-04-24 07:39:30 +02:00
|
|
|
],
|
2020-08-15 13:31:34 +02:00
|
|
|
"network-item-view" => [
|
|
|
|
"fields" => [
|
|
|
|
"uri-id" => ["item", "parent-uri-id"],
|
|
|
|
"uri" => ["item", "parent-uri"],
|
|
|
|
"parent" => ["item", "parent"],
|
|
|
|
"received" => ["item", "received"],
|
|
|
|
"commented" => ["item", "commented"],
|
|
|
|
"created" => ["item", "created"],
|
|
|
|
"uid" => ["item", "uid"],
|
|
|
|
"starred" => ["item", "starred"],
|
|
|
|
"mention" => ["item", "mention"],
|
|
|
|
"network" => ["item", "network"],
|
|
|
|
"unseen" => ["item", "unseen"],
|
|
|
|
"gravity" => ["item", "gravity"],
|
|
|
|
"contact-id" => ["item", "contact-id"],
|
2020-10-05 18:48:28 +02:00
|
|
|
"contact-type" => ["ownercontact", "contact-type"],
|
2020-08-15 13:31:34 +02:00
|
|
|
],
|
|
|
|
"query" => "FROM `item`
|
|
|
|
INNER JOIN `thread` ON `thread`.`iid` = `item`.`parent`
|
2020-08-19 21:10:30 +02:00
|
|
|
STRAIGHT_JOIN `contact` ON `contact`.`id` = `thread`.`contact-id`
|
2020-08-15 13:31:34 +02:00
|
|
|
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`
|
2020-10-05 18:48:28 +02:00
|
|
|
LEFT JOIN `contact` AS `ownercontact` ON `ownercontact`.`id` = `thread`.`owner-id`
|
2020-08-15 13:31:34 +02:00
|
|
|
WHERE `thread`.`visible` AND NOT `thread`.`deleted` AND NOT `thread`.`moderated`
|
2020-08-19 21:10:30 +02:00
|
|
|
AND (NOT `contact`.`readonly` AND NOT `contact`.`blocked` AND NOT `contact`.`pending`)
|
2020-08-15 13:31:34 +02:00
|
|
|
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`)"
|
2020-08-15 14:06:18 +02:00
|
|
|
],
|
|
|
|
"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"],
|
2020-10-05 18:48:28 +02:00
|
|
|
"contact-type" => ["ownercontact", "contact-type"],
|
2020-08-15 14:06:18 +02:00
|
|
|
],
|
|
|
|
"query" => "FROM `thread`
|
2020-08-19 21:10:30 +02:00
|
|
|
STRAIGHT_JOIN `contact` ON `contact`.`id` = `thread`.`contact-id`
|
2020-08-15 14:06:18 +02:00
|
|
|
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`
|
2020-10-05 18:48:28 +02:00
|
|
|
LEFT JOIN `contact` AS `ownercontact` ON `ownercontact`.`id` = `thread`.`owner-id`
|
2020-08-15 14:06:18 +02:00
|
|
|
WHERE `thread`.`visible` AND NOT `thread`.`deleted` AND NOT `thread`.`moderated`
|
2020-08-19 21:10:30 +02:00
|
|
|
AND (NOT `contact`.`readonly` AND NOT `contact`.`blocked` AND NOT `contact`.`pending`)
|
2020-08-15 14:06:18 +02:00
|
|
|
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`)"
|
2020-08-15 13:31:34 +02:00
|
|
|
],
|
2020-04-24 13:04:50 +02:00
|
|
|
"owner-view" => [
|
|
|
|
"fields" => [
|
|
|
|
"id" => ["contact", "id"],
|
|
|
|
"uid" => ["contact", "uid"],
|
|
|
|
"created" => ["contact", "created"],
|
|
|
|
"updated" => ["contact", "updated"],
|
|
|
|
"self" => ["contact", "self"],
|
|
|
|
"remote_self" => ["contact", "remote_self"],
|
|
|
|
"rel" => ["contact", "rel"],
|
|
|
|
"duplex" => ["contact", "duplex"],
|
|
|
|
"network" => ["contact", "network"],
|
|
|
|
"protocol" => ["contact", "protocol"],
|
|
|
|
"name" => ["contact", "name"],
|
|
|
|
"nick" => ["contact", "nick"],
|
|
|
|
"location" => ["contact", "location"],
|
|
|
|
"about" => ["contact", "about"],
|
|
|
|
"keywords" => ["contact", "keywords"],
|
|
|
|
"gender" => ["contact", "gender"],
|
|
|
|
"xmpp" => ["contact", "xmpp"],
|
|
|
|
"attag" => ["contact", "attag"],
|
|
|
|
"avatar" => ["contact", "avatar"],
|
|
|
|
"photo" => ["contact", "photo"],
|
|
|
|
"thumb" => ["contact", "thumb"],
|
|
|
|
"micro" => ["contact", "micro"],
|
|
|
|
"site-pubkey" => ["contact", "site-pubkey"],
|
|
|
|
"issued-id" => ["contact", "issued-id"],
|
|
|
|
"dfrn-id" => ["contact", "dfrn-id"],
|
|
|
|
"url" => ["contact", "url"],
|
|
|
|
"nurl" => ["contact", "nurl"],
|
|
|
|
"addr" => ["contact", "addr"],
|
|
|
|
"alias" => ["contact", "alias"],
|
|
|
|
"pubkey" => ["contact", "pubkey"],
|
|
|
|
"prvkey" => ["contact", "prvkey"],
|
|
|
|
"batch" => ["contact", "batch"],
|
|
|
|
"request" => ["contact", "request"],
|
|
|
|
"notify" => ["contact", "notify"],
|
|
|
|
"poll" => ["contact", "poll"],
|
|
|
|
"confirm" => ["contact", "confirm"],
|
|
|
|
"poco" => ["contact", "poco"],
|
|
|
|
"aes_allow" => ["contact", "aes_allow"],
|
|
|
|
"ret-aes" => ["contact", "ret-aes"],
|
|
|
|
"usehub" => ["contact", "usehub"],
|
|
|
|
"subhub" => ["contact", "subhub"],
|
|
|
|
"hub-verify" => ["contact", "hub-verify"],
|
|
|
|
"last-update" => ["contact", "last-update"],
|
|
|
|
"success_update" => ["contact", "success_update"],
|
|
|
|
"failure_update" => ["contact", "failure_update"],
|
|
|
|
"name-date" => ["contact", "name-date"],
|
|
|
|
"uri-date" => ["contact", "uri-date"],
|
|
|
|
"avatar-date" => ["contact", "avatar-date"],
|
2020-04-24 14:59:19 +02:00
|
|
|
"picdate" => ["contact", "avatar-date"], /// @todo Replaces all uses of "picdate" with "avatar-date"
|
2020-04-24 13:04:50 +02:00
|
|
|
"term-date" => ["contact", "term-date"],
|
2020-04-25 09:29:02 +02:00
|
|
|
"last-item" => ["contact", "last-item"],
|
2020-04-24 13:04:50 +02:00
|
|
|
"priority" => ["contact", "priority"],
|
2020-11-08 08:23:28 +01:00
|
|
|
"blocked" => ["user", "blocked"],
|
2020-04-24 13:04:50 +02:00
|
|
|
"block_reason" => ["contact", "block_reason"],
|
|
|
|
"readonly" => ["contact", "readonly"],
|
|
|
|
"writable" => ["contact", "writable"],
|
|
|
|
"forum" => ["contact", "forum"],
|
|
|
|
"prv" => ["contact", "prv"],
|
|
|
|
"contact-type" => ["contact", "contact-type"],
|
2020-09-02 05:18:04 +02:00
|
|
|
"manually-approve" => ["contact", "manually-approve"],
|
2020-04-24 13:04:50 +02:00
|
|
|
"hidden" => ["contact", "hidden"],
|
|
|
|
"archive" => ["contact", "archive"],
|
|
|
|
"pending" => ["contact", "pending"],
|
|
|
|
"deleted" => ["contact", "deleted"],
|
|
|
|
"unsearchable" => ["contact", "unsearchable"],
|
|
|
|
"sensitive" => ["contact", "sensitive"],
|
|
|
|
"baseurl" => ["contact", "baseurl"],
|
|
|
|
"reason" => ["contact", "reason"],
|
|
|
|
"closeness" => ["contact", "closeness"],
|
|
|
|
"info" => ["contact", "info"],
|
|
|
|
"profile-id" => ["contact", "profile-id"],
|
|
|
|
"bdyear" => ["contact", "bdyear"],
|
|
|
|
"bd" => ["contact", "bd"],
|
2020-04-28 21:15:42 +02:00
|
|
|
"notify_new_posts" => ["contact", "notify_new_posts"],
|
|
|
|
"fetch_further_information" => ["contact", "fetch_further_information"],
|
2020-06-06 22:43:23 +02:00
|
|
|
"ffi_keyword_denylist" => ["contact", "ffi_keyword_denylist"],
|
2020-04-24 23:14:03 +02:00
|
|
|
"parent-uid" => ["user", "parent-uid"],
|
2020-04-24 15:41:11 +02:00
|
|
|
"guid" => ["user", "guid"],
|
2020-04-24 23:14:03 +02:00
|
|
|
"nickname" => ["user", "nickname"], /// @todo Replaces all uses of "nickname" with "nick"
|
2020-04-24 13:04:50 +02:00
|
|
|
"email" => ["user", "email"],
|
2020-04-24 23:14:03 +02:00
|
|
|
"openid" => ["user", "openid"],
|
2020-04-24 13:04:50 +02:00
|
|
|
"timezone" => ["user", "timezone"],
|
2020-04-24 23:14:03 +02:00
|
|
|
"language" => ["user", "language"],
|
|
|
|
"register_date" => ["user", "register_date"],
|
|
|
|
"login_date" => ["user", "login_date"],
|
|
|
|
"default-location" => ["user", "default-location"],
|
|
|
|
"allow_location" => ["user", "allow_location"],
|
|
|
|
"theme" => ["user", "theme"],
|
|
|
|
"upubkey" => ["user", "pubkey"],
|
|
|
|
"uprvkey" => ["user", "prvkey"],
|
2020-04-24 13:04:50 +02:00
|
|
|
"sprvkey" => ["user", "sprvkey"],
|
|
|
|
"spubkey" => ["user", "spubkey"],
|
2020-04-24 23:14:03 +02:00
|
|
|
"verified" => ["user", "verified"],
|
|
|
|
"blockwall" => ["user", "blockwall"],
|
|
|
|
"hidewall" => ["user", "hidewall"],
|
|
|
|
"blocktags" => ["user", "blocktags"],
|
|
|
|
"unkmail" => ["user", "unkmail"],
|
|
|
|
"cntunkmail" => ["user", "cntunkmail"],
|
|
|
|
"notify-flags" => ["user", "notify-flags"],
|
2020-04-24 13:04:50 +02:00
|
|
|
"page-flags" => ["user", "page-flags"],
|
|
|
|
"account-type" => ["user", "account-type"],
|
|
|
|
"prvnets" => ["user", "prvnets"],
|
2020-04-24 23:14:03 +02:00
|
|
|
"maxreq" => ["user", "maxreq"],
|
2020-04-24 13:55:46 +02:00
|
|
|
"expire" => ["user", "expire"],
|
2020-04-24 13:04:50 +02:00
|
|
|
"account_removed" => ["user", "account_removed"],
|
|
|
|
"account_expired" => ["user", "account_expired"],
|
|
|
|
"account_expires_on" => ["user", "account_expires_on"],
|
2020-08-16 13:57:56 +02:00
|
|
|
"expire_notification_sent" => ["user", "expire_notification_sent"],
|
2020-04-24 23:14:03 +02:00
|
|
|
"def_gid" => ["user", "def_gid"],
|
|
|
|
"allow_cid" => ["user", "allow_cid"],
|
|
|
|
"allow_gid" => ["user", "allow_gid"],
|
|
|
|
"deny_cid" => ["user", "deny_cid"],
|
|
|
|
"deny_gid" => ["user", "deny_gid"],
|
|
|
|
"openidserver" => ["user", "openidserver"],
|
2020-04-24 13:55:46 +02:00
|
|
|
"publish" => ["profile", "publish"],
|
|
|
|
"net-publish" => ["profile", "net-publish"],
|
|
|
|
"hide-friends" => ["profile", "hide-friends"],
|
|
|
|
"prv_keywords" => ["profile", "prv_keywords"],
|
|
|
|
"pub_keywords" => ["profile", "pub_keywords"],
|
|
|
|
"address" => ["profile", "address"],
|
|
|
|
"locality" => ["profile", "locality"],
|
|
|
|
"region" => ["profile", "region"],
|
|
|
|
"postal-code" => ["profile", "postal-code"],
|
|
|
|
"country-name" => ["profile", "country-name"],
|
|
|
|
"homepage" => ["profile", "homepage"],
|
|
|
|
"dob" => ["profile", "dob"],
|
2020-04-24 13:04:50 +02:00
|
|
|
],
|
|
|
|
"query" => "FROM `user`
|
2020-04-24 13:55:46 +02:00
|
|
|
INNER JOIN `contact` ON `contact`.`uid` = `user`.`uid` AND `contact`.`self`
|
|
|
|
INNER JOIN `profile` ON `profile`.`uid` = `user`.`uid`"
|
2020-04-24 17:42:43 +02:00
|
|
|
],
|
|
|
|
"pending-view" => [
|
|
|
|
"fields" => [
|
|
|
|
"id" => ["register", "id"],
|
|
|
|
"hash" => ["register", "hash"],
|
|
|
|
"created" => ["register", "created"],
|
|
|
|
"uid" => ["register", "uid"],
|
|
|
|
"password" => ["register", "password"],
|
|
|
|
"language" => ["register", "language"],
|
|
|
|
"note" => ["register", "note"],
|
|
|
|
"self" => ["contact", "self"],
|
|
|
|
"name" => ["contact", "name"],
|
|
|
|
"url" => ["contact", "url"],
|
|
|
|
"micro" => ["contact", "micro"],
|
|
|
|
"email" => ["user", "email"],
|
|
|
|
"nick" => ["contact", "nick"],
|
|
|
|
],
|
|
|
|
"query" => "FROM `register`
|
|
|
|
INNER JOIN `contact` ON `register`.`uid` = `contact`.`uid`
|
|
|
|
INNER JOIN `user` ON `register`.`uid` = `user`.`uid`"
|
|
|
|
],
|
2020-04-27 22:32:25 +02:00
|
|
|
"tag-search-view" => [
|
|
|
|
"fields" => [
|
|
|
|
"uri-id" => ["post-tag", "uri-id"],
|
2020-05-01 11:41:17 +02:00
|
|
|
"iid" => ["item", "id"],
|
2020-04-27 22:32:25 +02:00
|
|
|
"uri" => ["item", "uri"],
|
|
|
|
"guid" => ["item", "guid"],
|
|
|
|
"uid" => ["item", "uid"],
|
|
|
|
"private" => ["item", "private"],
|
2020-05-01 12:57:32 +02:00
|
|
|
"wall" => ["item", "wall"],
|
|
|
|
"origin" => ["item", "origin"],
|
|
|
|
"gravity" => ["item", "gravity"],
|
|
|
|
"received" => ["item", "received"],
|
2020-04-27 22:32:25 +02:00
|
|
|
"name" => ["tag", "name"],
|
|
|
|
],
|
|
|
|
"query" => "FROM `post-tag`
|
|
|
|
INNER JOIN `tag` ON `tag`.`id` = `post-tag`.`tid`
|
|
|
|
INNER JOIN `item` ON `item`.`uri-id` = `post-tag`.`uri-id`
|
|
|
|
WHERE `post-tag`.`type` = 1"
|
|
|
|
],
|
2020-04-24 20:50:36 +02:00
|
|
|
"workerqueue-view" => [
|
|
|
|
"fields" => [
|
|
|
|
"pid" => ["process", "pid"],
|
|
|
|
"priority" => ["workerqueue", "priority"],
|
|
|
|
],
|
|
|
|
"query" => "FROM `process`
|
|
|
|
INNER JOIN `workerqueue` ON `workerqueue`.`pid` = `process`.`pid`
|
|
|
|
WHERE NOT `workerqueue`.`done`"
|
|
|
|
],
|
2020-04-23 08:19:44 +02:00
|
|
|
];
|
|
|
|
|