From e68f781f9d77cc3d8d7cdb45b7a72e4e41af59c4 Mon Sep 17 00:00:00 2001 From: Michael Date: Sun, 3 Sep 2023 04:20:09 +0000 Subject: [PATCH] The language is now stored as well --- doc/database/db_post-engagement.md | 1 + src/Model/Post/Engagement.php | 3 ++- static/dbstructure.config.php | 1 + 3 files changed, 4 insertions(+), 1 deletion(-) diff --git a/doc/database/db_post-engagement.md b/doc/database/db_post-engagement.md index c261586b31..3409680e28 100644 --- a/doc/database/db_post-engagement.md +++ b/doc/database/db_post-engagement.md @@ -12,6 +12,7 @@ Fields | owner-id | Item owner | int unsigned | NO | | 0 | | | contact-type | Person, organisation, news, community, relay | tinyint | NO | | 0 | | | media-type | Type of media in a bit array (1 = image, 2 = video, 4 = audio | tinyint | NO | | 0 | | +| language | Language information about this post | varbinary(128) | YES | | NULL | | | created | | datetime | YES | | NULL | | | comments | Number of comments | mediumint unsigned | YES | | NULL | | | activities | Number of activities (like, dislike, ...) | mediumint unsigned | YES | | NULL | | diff --git a/src/Model/Post/Engagement.php b/src/Model/Post/Engagement.php index 7e35723713..0e284bd41d 100644 --- a/src/Model/Post/Engagement.php +++ b/src/Model/Post/Engagement.php @@ -60,7 +60,7 @@ class Engagement return; } - $parent = Post::selectFirst(['created', 'owner-id', 'uid', 'private', 'contact-contact-type'], ['uri-id' => $item['parent-uri-id']]); + $parent = Post::selectFirst(['created', 'owner-id', 'uid', 'private', 'contact-contact-type', 'language'], ['uri-id' => $item['parent-uri-id']]); if ($parent['private'] != Item::PUBLIC) { Logger::debug('Non public posts are not stored', ['uri-id' => $item['uri-id'], 'parent-uri-id' => $item['parent-uri-id'], 'uid' => $parent['uid'], 'private' => $parent['private']]); return; @@ -88,6 +88,7 @@ class Engagement 'owner-id' => $parent['owner-id'], 'contact-type' => $parent['contact-contact-type'], 'media-type' => $mediatype, + 'language' => $parent['language'], 'created' => $parent['created'], 'comments' => DBA::count('post', ['parent-uri-id' => $item['parent-uri-id'], 'gravity' => Item::GRAVITY_COMMENT]), 'activities' => DBA::count('post', [ diff --git a/static/dbstructure.config.php b/static/dbstructure.config.php index 2f654e3639..d48428f4c1 100644 --- a/static/dbstructure.config.php +++ b/static/dbstructure.config.php @@ -1330,6 +1330,7 @@ return [ "owner-id" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "foreign" => ["contact" => "id", "on delete" => "restrict"], "comment" => "Item owner"], "contact-type" => ["type" => "tinyint", "not null" => "1", "default" => "0", "comment" => "Person, organisation, news, community, relay"], "media-type" => ["type" => "tinyint", "not null" => "1", "default" => "0", "comment" => "Type of media in a bit array (1 = image, 2 = video, 4 = audio"], + "language" => ["type" => "varbinary(128)", "comment" => "Language information about this post"], "created" => ["type" => "datetime", "comment" => ""], "comments" => ["type" => "mediumint unsigned", "comment" => "Number of comments"], "activities" => ["type" => "mediumint unsigned", "comment" => "Number of activities (like, dislike, ...)"],