X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=static%2Fdbview.config.php;h=13408d27a9320e18b3870e3942dea989259497b8;hb=2ee14bf5fe6642d0083d43404451b6b1fa5ce4ce;hp=9722ca3819a62bc47351f0e7a826550b5ef8a252;hpb=57009d30c480c7147ee6e5f02b2fe15cd98db7be;p=friendica.git diff --git a/static/dbview.config.php b/static/dbview.config.php index 9722ca3819..13408d27a9 100755 --- a/static/dbview.config.php +++ b/static/dbview.config.php @@ -103,11 +103,9 @@ return [ "name-date" => ["contact", "name-date"], "uri-date" => ["contact", "uri-date"], "avatar-date" => ["contact", "avatar-date"], - "contact_id" => ["contact", "id"], /// @todo Replaces all uses of "contact_id" with "id" "picdate" => ["contact", "avatar-date"], /// @todo Replaces all uses of "picdate" with "avatar-date" "term-date" => ["contact", "term-date"], - "last-item" => ["contact", "last-item"], - "lastitem_date" => ["contact", "last-item"], /// @todo Replaces all uses of "lastitem_date" with "last-item" + "last-item" => ["contact", "last-item"], "priority" => ["contact", "priority"], "blocked" => ["contact", "blocked"], /// @todo Check if "blocked" from contact or from the users table "block_reason" => ["contact", "block_reason"], @@ -130,33 +128,47 @@ return [ "profile-id" => ["contact", "profile-id"], "bdyear" => ["contact", "bdyear"], "bd" => ["contact", "bd"], - "notify_new_posts" => ["notify_new_posts"], - "fetch_further_information" => ["fetch_further_information"], - "ffi_keyword_blacklist" => ["ffi_keyword_blacklist"], + "notify_new_posts" => ["contact", "notify_new_posts"], + "fetch_further_information" => ["contact", "fetch_further_information"], + "ffi_keyword_blacklist" => ["contact", "ffi_keyword_blacklist"], + "parent-uid" => ["user", "parent-uid"], "guid" => ["user", "guid"], - "theme" => ["user", "theme"], - "language" => ["user", "language"], + "nickname" => ["user", "nickname"], /// @todo Replaces all uses of "nickname" with "nick" "email" => ["user", "email"], - "uprvkey" => ["user", "prvkey"], - "upubkey" => ["user", "pubkey"], + "openid" => ["user", "openid"], "timezone" => ["user", "timezone"], - "nickname" => ["user", "nickname"], /// @todo Replaces all uses of "nickname" with "nick" - "username" => ["user", "username"], /// @todo Replaces all uses of "username" with "name" + "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"], "sprvkey" => ["user", "sprvkey"], "spubkey" => ["user", "spubkey"], + "verified" => ["user", "verified"], + "blockwall" => ["user", "blockwall"], + "hidewall" => ["user", "hidewall"], + "blocktags" => ["user", "blocktags"], + "unkmail" => ["user", "unkmail"], + "cntunkmail" => ["user", "cntunkmail"], + "notify-flags" => ["user", "notify-flags"], "page-flags" => ["user", "page-flags"], "account-type" => ["user", "account-type"], "prvnets" => ["user", "prvnets"], - "account_removed" => ["user", "account_removed"], - "hidewall" => ["user", "hidewall"], - "login_date" => ["user", "login_date"], - "register_date" => ["user", "register_date"], - "verified" => ["user", "verified"], + "maxreq" => ["user", "maxreq"], "expire" => ["user", "expire"], - "expire_notification_sent" => ["user", "expire_notification_sent"], "account_removed" => ["user", "account_removed"], "account_expired" => ["user", "account_expired"], "account_expires_on" => ["user", "account_expires_on"], + "expire_notification_sent" => ["user", "expire_notification_sent"], + "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"], "publish" => ["profile", "publish"], "net-publish" => ["profile", "net-publish"], "hide-friends" => ["profile", "hide-friends"], @@ -168,7 +180,6 @@ return [ "postal-code" => ["profile", "postal-code"], "country-name" => ["profile", "country-name"], "homepage" => ["profile", "homepage"], - "xmpp" => ["profile", "xmpp"], "dob" => ["profile", "dob"], ], "query" => "FROM `user` @@ -195,5 +206,33 @@ return [ INNER JOIN `contact` ON `register`.`uid` = `contact`.`uid` INNER JOIN `user` ON `register`.`uid` = `user`.`uid`" ], + "tag-search-view" => [ + "fields" => [ + "uri-id" => ["post-tag", "uri-id"], + "iid" => ["item", "id"], + "uri" => ["item", "uri"], + "guid" => ["item", "guid"], + "uid" => ["item", "uid"], + "private" => ["item", "private"], + "wall" => ["item", "wall"], + "origin" => ["item", "origin"], + "gravity" => ["item", "gravity"], + "received" => ["item", "received"], + "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" + ], + "workerqueue-view" => [ + "fields" => [ + "pid" => ["process", "pid"], + "priority" => ["workerqueue", "priority"], + ], + "query" => "FROM `process` + INNER JOIN `workerqueue` ON `workerqueue`.`pid` = `process`.`pid` + WHERE NOT `workerqueue`.`done`" + ], ];