]> git.mxchange.org Git - friendica.git/blobdiff - static/dbview.config.php
Issue 8700: Resolvable activities
[friendica.git] / static / dbview.config.php
index 20da1b2d4d23ac2d9af1a626d9cd05048b257c0c..4d7eadc283cfcd30f7127b63d04e72cb9b18aad1 100755 (executable)
  */
 
 return [
+       "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`"
+       ],
        "tag-view" => [
                "fields" => [
                        "uri-id" => ["post-tag", "uri-id"],
@@ -103,11 +118,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,12 +143,11 @@ 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"],
-                       "username" => ["user", "username"], /// @todo Replaces all uses of "username" with "name"
                        "nickname" => ["user", "nickname"], /// @todo Replaces all uses of "nickname" with "nick"
                        "email" => ["user", "email"],
                        "openid" => ["user", "openid"],
@@ -183,27 +195,12 @@ return [
                        "postal-code" => ["profile", "postal-code"],
                        "country-name" => ["profile", "country-name"],
                        "homepage" => ["profile", "homepage"],
-                       "xmpp" => ["profile", "xmpp"],
                        "dob" => ["profile", "dob"],
                ],
                "query" => "FROM `user`
                        INNER JOIN `contact` ON `contact`.`uid` = `user`.`uid` AND `contact`.`self`
                        INNER JOIN `profile` ON `profile`.`uid` = `user`.`uid`"
        ],
-       "participation-view" => [
-               "fields" => [
-                       "iid" => ["participation", "iid"],
-                       "id" => ["contact", "id"],
-                       "url" => ["contact", "url"],
-                       "name" => ["contact", "name"],
-                       "protocol" => ["contact", "protocol"],
-                       "batch" => "CASE `contact`.`batch` WHEN '' THEN `fcontact`.`batch` ELSE `contact`.`batch` END",
-                       "network" => "CASE `fcontact`.`network` WHEN '' THEN `contact`.`network` ELSE `fcontact`.`network` END",
-               ],
-               "query" => "FROM `participation`
-                       INNER JOIN `contact` ON `contact`.`id` = `participation`.`cid` AND NOT `contact`.`archive`
-                       INNER JOIN `fcontact` ON `fcontact`.`id` = `participation`.`fid`"
-       ],
        "pending-view" => [
                "fields" => [
                        "id" => ["register", "id"],
@@ -224,6 +221,25 @@ 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"],