]> git.mxchange.org Git - friendica.git/commitdiff
Issue 13844: User defined channels based on the network
authorMichael <heluecht@pirati.ca>
Sun, 4 Feb 2024 07:14:57 +0000 (07:14 +0000)
committerMichael <heluecht@pirati.ca>
Sun, 4 Feb 2024 07:14:57 +0000 (07:14 +0000)
database.sql
src/Module/Conversation/Channel.php
src/Module/Conversation/Network.php
src/Module/Conversation/Timeline.php
src/Module/Settings/Channels.php
src/Module/Update/Channel.php
src/Module/Update/Network.php
static/dbstructure.config.php
static/dbview.config.php
view/lang/C/messages.po

index c8ab483b44e483f67853d021696da6d00e133f33..9ec0037cb28af4b1a7d18618154593e73e2612fe 100644 (file)
@@ -1,6 +1,6 @@
 -- ------------------------------------------
 -- Friendica 2024.03-dev (Yellow Archangel)
--- DB_UPDATE_VERSION 1550
+-- DB_UPDATE_VERSION 1551
 -- ------------------------------------------
 
 
@@ -2106,6 +2106,37 @@ CREATE VIEW `post-timeline-view` AS SELECT
                        STRAIGHT_JOIN `contact` AS `owner` ON `owner`.`id` = `post-user`.`owner-id`
                        LEFT JOIN `contact` AS `causer` ON `causer`.`id` = `post-user`.`causer-id`;
 
+--
+-- VIEW post-searchindex-user-view
+--
+DROP VIEW IF EXISTS `post-searchindex-user-view`;
+CREATE VIEW `post-searchindex-user-view` AS SELECT 
+       `post-thread-user`.`uid` AS `uid`,
+       `post-searchindex`.`uri-id` AS `uri-id`,
+       `post-searchindex`.`owner-id` AS `owner-id`,
+       `post-searchindex`.`media-type` AS `media-type`,
+       `post-searchindex`.`language` AS `language`,
+       `post-searchindex`.`searchtext` AS `searchtext`,
+       `post-searchindex`.`size` AS `size`,
+       `post-thread-user`.`commented` AS `commented`,
+       `post-thread-user`.`received` AS `received`,
+       `post-thread-user`.`created` AS `created`,
+       `post-searchindex`.`language` AS `restricted`,
+       0 AS `comments`,
+       0 AS `activities`
+       FROM `post-thread-user`
+                       INNER JOIN `post-searchindex` ON `post-searchindex`.`uri-id` = `post-thread-user`.`uri-id`
+                       INNER JOIN `post-user` ON `post-user`.`id` = `post-thread-user`.`post-user-id`
+                       STRAIGHT_JOIN `contact` ON `contact`.`id` = `post-thread-user`.`contact-id`
+                       STRAIGHT_JOIN `contact` AS `authorcontact` ON `authorcontact`.`id` = `post-thread-user`.`author-id`
+                       STRAIGHT_JOIN `contact` AS `ownercontact` ON `ownercontact`.`id` = `post-thread-user`.`owner-id`
+                       WHERE `post-user`.`visible` AND NOT `post-user`.`deleted`
+                       AND (NOT `contact`.`readonly` AND NOT `contact`.`blocked` AND NOT `contact`.`pending`)
+                       AND (`post-thread-user`.`hidden` IS NULL OR NOT `post-thread-user`.`hidden`)
+                       AND NOT `authorcontact`.`blocked` AND NOT `ownercontact`.`blocked`
+                       AND NOT EXISTS(SELECT `cid`  FROM `user-contact` WHERE `uid` = `post-thread-user`.`uid` AND `cid` IN (`authorcontact`.`id`, `ownercontact`.`id`) AND (`blocked` OR `ignored`))
+                       AND NOT EXISTS(SELECT `gsid` FROM `user-gserver` WHERE `uid` = `post-thread-user`.`uid` AND `gsid` IN (`authorcontact`.`gsid`, `ownercontact`.`gsid`) AND `ignored`);
+
 --
 -- VIEW post-user-view
 --
index 5a117998907ff89c2af7457705547aabbfdaad00..dbc006b5ccb50bfe8d1b27b11fe127100173ba02 100644 (file)
@@ -128,7 +128,7 @@ class Channel extends Timeline
                }
 
                if ($this->channel->isTimeline($this->selectedTab) || $this->userDefinedChannel->isTimeline($this->selectedTab, $this->session->getLocalUserId())) {
-                       $items = $this->getChannelItems();
+                       $items = $this->getChannelItems($request);
                        $order = 'created';
                } else {
                        $items = $this->getCommunityItems();
index 01bec064115a52cb4f6b6f098267a016a93f51a5..9f5c04145619b6a136721de959a6de6eb0d134e2 100644 (file)
@@ -74,8 +74,6 @@ class Network extends Timeline
        protected $star;
        /** @var int */
        protected $mention;
-       /** @var string */
-       protected $order;
 
        /** @var App */
        protected $app;
@@ -215,7 +213,7 @@ class Network extends Timeline
 
                try {
                        if ($this->channel->isTimeline($this->selectedTab) || $this->userDefinedChannel->isTimeline($this->selectedTab, $this->session->getLocalUserId())) {
-                               $items = $this->getChannelItems();
+                               $items = $this->getChannelItems($request);
                        } elseif ($this->community->isTimeline($this->selectedTab)) {
                                $items = $this->getCommunityItems();
                        } else {
@@ -360,24 +358,7 @@ class Network extends Timeline
                $this->dateFrom = $this->parameters['from'] ?? '';
                $this->dateTo = $this->parameters['to'] ?? '';
 
-               switch ($this->order) {
-                       case 'received':
-                               $this->maxId = $request['last_received'] ?? $this->maxId;
-                               $this->minId = $request['first_received'] ?? $this->minId;
-                               break;
-                       case 'created':
-                               $this->maxId = $request['last_created'] ?? $this->maxId;
-                               $this->minId = $request['first_created'] ?? $this->minId;
-                               break;
-                       case 'uriid':
-                               $this->maxId = $request['last_uriid'] ?? $this->maxId;
-                               $this->minId = $request['first_uriid'] ?? $this->minId;
-                               break;
-                       default:
-                               $this->order = 'commented';
-                               $this->maxId = $request['last_commented'] ?? $this->maxId;
-                               $this->minId = $request['first_commented'] ?? $this->minId;
-               }
+               $this->setMaxMinByOrder($request);
        }
 
        protected function getItems()
index a8db2d85dfb6df59125364e1bd493fd646ad94f2..eb89fa7dec2d28b0fa4ee5530ca6121bfe8b5594 100644 (file)
@@ -26,6 +26,7 @@ use Friendica\App\Mode;
 use Friendica\BaseModule;
 use Friendica\Content\Conversation\Collection\Timelines;
 use Friendica\Content\Conversation\Entity\Channel as ChannelEntity;
+use Friendica\Content\Conversation\Entity\UserDefinedChannel as UserDefinedChannelEntity;
 use Friendica\Content\Conversation\Repository\UserDefinedChannel;
 use Friendica\Core\Cache\Capability\ICanCache;
 use Friendica\Core\Cache\Enum\Duration;
@@ -41,7 +42,6 @@ use Friendica\Database\DBA;
 use Friendica\Model\Item;
 use Friendica\Model\Post;
 use Friendica\Model\Post\Engagement;
-use Friendica\Model\Verb;
 use Friendica\Module\Response;
 use Friendica\Protocol\Activity;
 use Friendica\Util\DateTimeFormat;
@@ -72,6 +72,8 @@ class Timeline extends BaseModule
        protected $update;
        /** @var bool */
        protected $raw;
+       /** @var string */
+       protected $order;
 
        /** @var App\Mode $mode */
        protected $mode;
@@ -138,6 +140,8 @@ class Timeline extends BaseModule
                        $this->itemUriId = 0;
                }
 
+               $this->order = 'created';
+
                $this->minId = $request['min_id'] ?? null;
                $this->maxId = $request['max_id'] ?? null;
 
@@ -147,6 +151,28 @@ class Timeline extends BaseModule
                $this->raw      = !empty($request['mode']) && ($request['mode'] == 'raw');
        }
 
+       protected function setMaxMinByOrder(array $request)
+       {
+               switch ($this->order) {
+                       case 'received':
+                               $this->maxId = $request['last_received'] ?? $this->maxId;
+                               $this->minId = $request['first_received'] ?? $this->minId;
+                               break;
+                       case 'created':
+                               $this->maxId = $request['last_created'] ?? $this->maxId;
+                               $this->minId = $request['first_created'] ?? $this->minId;
+                               break;
+                       case 'uriid':
+                               $this->maxId = $request['last_uriid'] ?? $this->maxId;
+                               $this->minId = $request['first_uriid'] ?? $this->minId;
+                               break;
+                       default:
+                               $this->order = 'commented';
+                               $this->maxId = $request['last_commented'] ?? $this->maxId;
+                               $this->minId = $request['first_commented'] ?? $this->minId;
+               }
+       }
+
        protected function getNoSharerWidget(string $base): string
        {
                $path = $this->selectedTab;
@@ -204,9 +230,9 @@ class Timeline extends BaseModule
         * @return array
         * @throws \Exception
         */
-       protected function getChannelItems()
+       protected function getChannelItems(array $request)
        {
-               $items = $this->getRawChannelItems();
+               $items = $this->getRawChannelItems($request);
 
                $contacts = $this->database->selectToArray('user-contact', ['cid'], ['channel-frequency' => Contact\User::FREQUENCY_REDUCED, 'cid' => array_column($items, 'owner-id')]);
                $reduced  = array_column($contacts, 'cid');
@@ -220,8 +246,8 @@ class Timeline extends BaseModule
 
                        while (count($selected_items) < $this->itemsPerPage && ++$count < 50 && count($items) > 0) {
                                $maxposts = round((count($items) / $this->itemsPerPage) * $maxpostperauthor);
-                               $minId = $items[array_key_first($items)]['created'];
-                               $maxId = $items[array_key_last($items)]['created'];
+                               $minId = $items[array_key_first($items)][$this->order];
+                               $maxId = $items[array_key_last($items)][$this->order];
 
                                foreach ($items as $item) {
                                        if (!in_array($item['owner-id'], $reduced)) {
@@ -252,7 +278,7 @@ class Timeline extends BaseModule
                                }
 
                                if (count($selected_items) < $this->itemsPerPage) {
-                                       $items = $this->getRawChannelItems();
+                                       $items = $this->getRawChannelItems($request);
                                }
                        }
                } else {
@@ -271,10 +297,12 @@ class Timeline extends BaseModule
         * @return array
         * @throws \Exception
         */
-       private function getRawChannelItems()
+       private function getRawChannelItems(array $request)
        {
                $uid = $this->session->getLocalUserId();
 
+               $table = 'post-engagement';
+
                if ($this->selectedTab == ChannelEntity::WHATSHOT) {
                        if (!is_null($this->accountType)) {
                                $condition = ["(`comments` > ? OR `activities` > ?) AND `contact-type` = ?", $this->getMedianComments($uid, 4), $this->getMedianActivities($uid, 4), $this->accountType];
@@ -325,47 +353,57 @@ class Timeline extends BaseModule
                        $condition = ["`media-type` & ?", 4];
                } elseif ($this->selectedTab == ChannelEntity::LANGUAGE) {
                        $condition = ["`language` = ?", User::getLanguageCode($uid)];
-               } elseif (is_numeric($this->selectedTab)) {
-                       $condition = $this->getUserChannelConditions($this->selectedTab, $uid);
+               } elseif (is_numeric($this->selectedTab) && !empty($channel = $this->channelRepository->selectById($this->selectedTab, $uid))) {
+                       $condition = $this->getUserChannelConditions($channel, $uid);
+                       if (in_array($channel->circle, [-3, -4, -5])) {
+                               $table = 'post-searchindex-user-view';
+                               $condition = DBA::mergeConditions($condition, ['uid' => $uid]);
+                               $orders = ['-3' => 'created', '-4' => 'received', '-5' => 'commented'];
+                               $this->order = $orders[$channel->circle];
+                       }
                }
 
+               $this->setMaxMinByOrder($request);
+
                if (($this->selectedTab != ChannelEntity::LANGUAGE) && !is_numeric($this->selectedTab)) {
                        $condition = $this->addLanguageCondition($uid, $condition);
                }
 
-               $condition = DBA::mergeConditions($condition, ["(NOT `restricted` OR EXISTS(SELECT `id` FROM `post-user` WHERE `uid` = ? AND `uri-id` = `post-engagement`.`uri-id`))", $uid]);
+               $condition = DBA::mergeConditions($condition, ["(NOT `restricted` OR EXISTS(SELECT `id` FROM `post-user` WHERE `uid` = ? AND `uri-id` = `$table`.`uri-id`))", $uid]);
 
-               $condition = DBA::mergeConditions($condition, ["NOT EXISTS(SELECT `cid` FROM `user-contact` WHERE `uid` = ? AND `cid` = `post-engagement`.`owner-id` AND (`ignored` OR `blocked` OR `collapsed` OR `is-blocked` OR `channel-frequency` = ?))", $uid, Contact\User::FREQUENCY_NEVER]);
+               $condition = DBA::mergeConditions($condition, ["NOT EXISTS(SELECT `cid` FROM `user-contact` WHERE `uid` = ? AND `cid` = `$table`.`owner-id` AND (`ignored` OR `blocked` OR `collapsed` OR `is-blocked` OR `channel-frequency` = ?))", $uid, Contact\User::FREQUENCY_NEVER]);
 
                if (($this->selectedTab != ChannelEntity::WHATSHOT) && !is_null($this->accountType)) {
                        $condition = DBA::mergeConditions($condition, ['contact-type' => $this->accountType]);
                }
 
-               $params = ['order' => ['created' => true], 'limit' => $this->itemsPerPage];
+               $params = ['order' => [$this->order => true], 'limit' => $this->itemsPerPage];
 
                if (!empty($this->itemUriId)) {
                        $condition = DBA::mergeConditions($condition, ['uri-id' => $this->itemUriId]);
                } else {
                        if ($this->noSharer) {
-                               $condition = DBA::mergeConditions($condition, ["NOT `uri-id` IN (SELECT `uri-id` FROM `post-user` WHERE `post-user`.`uid` = ? AND `post-user`.`uri-id` = `post-engagement`.`uri-id`)", $this->session->getLocalUserId()]);
+                               $condition = DBA::mergeConditions($condition, ["NOT `uri-id` IN (SELECT `uri-id` FROM `post-user` WHERE `post-user`.`uid` = ? AND `post-user`.`uri-id` = `$table`.`uri-id`)", $this->session->getLocalUserId()]);
                        }
 
                        if (isset($this->maxId)) {
-                               $condition = DBA::mergeConditions($condition, ["`created` < ?", $this->maxId]);
+                               $condition = DBA::mergeConditions($condition, ["`$this->order` < ?", $this->maxId]);
                        }
 
                        if (isset($this->minId)) {
-                               $condition = DBA::mergeConditions($condition, ["`created` > ?", $this->minId]);
+                               $condition = DBA::mergeConditions($condition, ["`$this->order` > ?", $this->minId]);
 
                                // Previous page case: we want the items closest to min_id but for that we need to reverse the query order
                                if (!isset($this->maxId)) {
-                                       $params['order']['created'] = false;
+                                       $params['order'][$this->order] = false;
                                }
                        }
                }
 
                $items = [];
-               $result = $this->database->select('post-engagement', ['uri-id', 'created', 'owner-id', 'comments', 'activities'], $condition, $params);
+               $fields = ['uri-id', 'owner-id', 'comments', 'activities'];
+               $fields[] = $this->order;
+               $result = $this->database->select($table, $fields, $condition, $params);
                if ($this->database->errorNo()) {
                        throw new \Exception($this->database->errorMessage(), $this->database->errorNo());
                }
@@ -390,13 +428,8 @@ class Timeline extends BaseModule
                return $items;
        }
 
-       private function getUserChannelConditions(int $id, int $uid): array
+       private function getUserChannelConditions(UserDefinedChannelEntity $channel, int $uid): array
        {
-               $channel = $this->channelRepository->selectById($id, $uid);
-               if (empty($channel)) {
-                       return [];
-               }
-
                $condition = [];
 
                if (!empty($channel->circle)) {
@@ -404,8 +437,6 @@ class Timeline extends BaseModule
                                $condition = ["`owner-id` IN (SELECT `pid` FROM `account-user-view` WHERE `uid` = ? AND `rel` IN (?, ?))", $uid, Contact::SHARING, Contact::FRIEND];
                        } elseif ($channel->circle == -2) {
                                $condition = ["`owner-id` IN (SELECT `pid` FROM `account-user-view` WHERE `uid` = ? AND `rel` = ?)", $uid, Contact::FOLLOWER];
-                       } elseif ($channel->circle == -3) {
-                               $condition = ["EXISTS(SELECT `uri-id` FROM `post-thread-user` WHERE `uid` = ? AND `post-thread-user`.`uri-id` = `post-engagement`.`uri-id`)", $uid];
                        } elseif ($channel->circle > 0) {
                                $condition = DBA::mergeConditions($condition, ["`owner-id` IN (SELECT `pid` FROM `group_member` INNER JOIN `account-user-view` ON `group_member`.`contact-id` = `account-user-view`.`id` WHERE `gid` = ? AND `account-user-view`.`uid` = ?)", $channel->circle, $uid]);
                        }
@@ -683,6 +714,8 @@ class Timeline extends BaseModule
         */
        private function selectItems()
        {
+               $this->order = 'received';
+
                if ($this->selectedTab == 'local') {
                        $condition = ["`wall` AND `origin` AND `private` = ?", Item::PUBLIC];
                } elseif ($this->selectedTab == 'global') {
index c581e0c60916a4c60691727aef7eef28a31228b4..34c9aabd01525d711a2dcd4c10c1f1df52374bb7 100644 (file)
@@ -147,7 +147,9 @@ class Channels extends BaseSettings
                        $intro   = $this->t('This page can be used to define your own channels.');
                        $circles = [
                                0  => $this->l10n->t('Global Community'),
-                               -3 => $this->l10n->t('Network'),
+                               -5 => $this->l10n->t('Latest Activity'),
+                               -4 => $this->l10n->t('Latest Posts'),
+                               -3 => $this->l10n->t('Latest Creation'),
                                -1 => $this->l10n->t('Following'),
                                -2 => $this->l10n->t('Followers'),
                        ];
index 06f9c07516b874cb6568b7fb3242f8aa568499ea..0d099de650a86bf5a425a993cd3ec0dcc2ff2e4a 100644 (file)
@@ -39,7 +39,7 @@ class Channel extends ChannelModule
                $o = '';
                if ($this->update || $this->force) {
                        if ($this->channel->isTimeline($this->selectedTab) || $this->userDefinedChannel->isTimeline($this->selectedTab, $this->session->getLocalUserId())) {
-                               $items = $this->getChannelItems();
+                               $items = $this->getChannelItems($request);
                        } else {
                                $items = $this->getCommunityItems();
                        }
index 154326f7afac24a5946e05a548f5c583d80c014f..bb10d533f960d2f7ae72fe2ad875d4583351d873 100644 (file)
@@ -42,7 +42,7 @@ class Network extends NetworkModule
                }
 
                if ($this->channel->isTimeline($this->selectedTab) || $this->userDefinedChannel->isTimeline($this->selectedTab, $this->session->getLocalUserId())) {
-                       $items = $this->getChannelItems();
+                       $items = $this->getChannelItems($request);
                } elseif ($this->community->isTimeline($this->selectedTab)) {
                        $items = $this->getCommunityItems();
                } else {
index e9082efc669218cc31e1296ef3dbd905ac3d9284..3d3c7c03589abf6e8f4de3b0490dc87786dfaf60 100644 (file)
@@ -56,7 +56,7 @@ use Friendica\Database\DBA;
 
 // This file is required several times during the test in DbaDefinition which justifies this condition
 if (!defined('DB_UPDATE_VERSION')) {
-       define('DB_UPDATE_VERSION', 1550);
+       define('DB_UPDATE_VERSION', 1551);
 }
 
 return [
index f0183db81ad3b14b0d0dfb033ed72a03abd7fe33..a04e09c5e0c331be41e874bdbfebb3a654b07163 100644 (file)
                        STRAIGHT_JOIN `contact` AS `owner` ON `owner`.`id` = `post-user`.`owner-id`
                        LEFT JOIN `contact` AS `causer` ON `causer`.`id` = `post-user`.`causer-id`"
        ],
+       "post-searchindex-user-view" => [
+               "fields" => [
+                       "uid" => ["post-thread-user", "uid"],
+                       "uri-id" => ["post-searchindex", "uri-id"],
+                       "owner-id" => ["post-searchindex", "owner-id"],
+                       "media-type" => ["post-searchindex", "media-type"],
+                       "language" => ["post-searchindex", "language"],
+                       "searchtext" => ["post-searchindex", "searchtext"],
+                       "size" => ["post-searchindex", "size"],
+                       "commented" => ["post-thread-user", "commented"],
+                       "received" => ["post-thread-user", "received"],
+                       "created" => ["post-thread-user", "created"],
+                       "restricted" => ["post-searchindex", "language"],
+                       "comments" => "0",
+                       "activities" => "0",
+               ],
+               "query" => "FROM `post-thread-user`
+                       INNER JOIN `post-searchindex` ON `post-searchindex`.`uri-id` = `post-thread-user`.`uri-id`
+                       INNER JOIN `post-user` ON `post-user`.`id` = `post-thread-user`.`post-user-id`
+                       STRAIGHT_JOIN `contact` ON `contact`.`id` = `post-thread-user`.`contact-id`
+                       STRAIGHT_JOIN `contact` AS `authorcontact` ON `authorcontact`.`id` = `post-thread-user`.`author-id`
+                       STRAIGHT_JOIN `contact` AS `ownercontact` ON `ownercontact`.`id` = `post-thread-user`.`owner-id`
+                       WHERE `post-user`.`visible` AND NOT `post-user`.`deleted`
+                       AND (NOT `contact`.`readonly` AND NOT `contact`.`blocked` AND NOT `contact`.`pending`)
+                       AND (`post-thread-user`.`hidden` IS NULL OR NOT `post-thread-user`.`hidden`)
+                       AND NOT `authorcontact`.`blocked` AND NOT `ownercontact`.`blocked`
+                       AND NOT EXISTS(SELECT `cid`  FROM `user-contact` WHERE `uid` = `post-thread-user`.`uid` AND `cid` IN (`authorcontact`.`id`, `ownercontact`.`id`) AND (`blocked` OR `ignored`))
+                       AND NOT EXISTS(SELECT `gsid` FROM `user-gserver` WHERE `uid` = `post-thread-user`.`uid` AND `gsid` IN (`authorcontact`.`gsid`, `ownercontact`.`gsid`) AND `ignored`)"
+       ],
        "post-user-view" => [
                "fields" => [
                        "id" => ["post-user", "id"],
index 8c3c5814caf5e9c87f65bb9d297fb4ac487ec5df..f46380e48fcb011cd640e012cf603304527bdf3e 100644 (file)
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: 2024.03-dev\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2024-02-01 16:16+0000\n"
+"POT-Creation-Date: 2024-02-04 06:55+0000\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -382,7 +382,7 @@ msgstr ""
 
 #: mod/notes.php:57 src/Content/Text/HTML.php:860
 #: src/Module/Admin/Storage.php:142 src/Module/Filer/SaveTag.php:74
-#: src/Module/Post/Edit.php:129 src/Module/Settings/Channels.php:221
+#: src/Module/Post/Edit.php:129 src/Module/Settings/Channels.php:223
 msgid "Save"
 msgstr ""
 
@@ -794,12 +794,12 @@ msgstr ""
 #: src/BaseModule.php:439 src/Content/Conversation/Factory/Channel.php:46
 #: src/Content/Widget.php:239 src/Core/ACL.php:195 src/Module/Contact.php:414
 #: src/Module/PermissionTooltip.php:141 src/Module/PermissionTooltip.php:163
-#: src/Module/Settings/Channels.php:152
+#: src/Module/Settings/Channels.php:154
 msgid "Followers"
 msgstr ""
 
 #: src/BaseModule.php:444 src/Content/Widget.php:240 src/Module/Contact.php:417
-#: src/Module/Settings/Channels.php:151
+#: src/Module/Settings/Channels.php:153
 msgid "Following"
 msgstr ""
 
@@ -1559,7 +1559,7 @@ msgid "Posts from accounts that are followed by accounts that you follow"
 msgstr ""
 
 #: src/Content/Conversation/Factory/Channel.php:48
-#: src/Module/Settings/Channels.php:191 src/Module/Settings/Channels.php:212
+#: src/Module/Settings/Channels.php:193 src/Module/Settings/Channels.php:214
 msgid "Images"
 msgstr ""
 
@@ -1568,7 +1568,7 @@ msgid "Posts with images"
 msgstr ""
 
 #: src/Content/Conversation/Factory/Channel.php:49
-#: src/Module/Settings/Channels.php:193 src/Module/Settings/Channels.php:214
+#: src/Module/Settings/Channels.php:195 src/Module/Settings/Channels.php:216
 msgid "Audio"
 msgstr ""
 
@@ -1577,7 +1577,7 @@ msgid "Posts with audio"
 msgstr ""
 
 #: src/Content/Conversation/Factory/Channel.php:50
-#: src/Module/Settings/Channels.php:192 src/Module/Settings/Channels.php:213
+#: src/Module/Settings/Channels.php:194 src/Module/Settings/Channels.php:215
 msgid "Videos"
 msgstr ""
 
@@ -1603,6 +1603,7 @@ msgid "Posts from users of the whole federated network"
 msgstr ""
 
 #: src/Content/Conversation/Factory/Network.php:38
+#: src/Module/Settings/Channels.php:150
 msgid "Latest Activity"
 msgstr ""
 
@@ -1611,6 +1612,7 @@ msgid "Sort by latest activity"
 msgstr ""
 
 #: src/Content/Conversation/Factory/Network.php:39
+#: src/Module/Settings/Channels.php:151
 msgid "Latest Posts"
 msgstr ""
 
@@ -1619,6 +1621,7 @@ msgid "Sort by post received date"
 msgstr ""
 
 #: src/Content/Conversation/Factory/Network.php:40
+#: src/Module/Settings/Channels.php:152
 msgid "Latest Creation"
 msgstr ""
 
@@ -1755,26 +1758,26 @@ msgid ""
 "Contact birthday events are private to you."
 msgstr ""
 
-#: src/Content/GroupManager.php:148 src/Content/Nav.php:278
+#: src/Content/GroupManager.php:147 src/Content/Nav.php:278
 #: src/Content/Text/HTML.php:881 src/Content/Widget.php:537
 #: src/Model/User.php:1381
 msgid "Groups"
 msgstr ""
 
-#: src/Content/GroupManager.php:150
+#: src/Content/GroupManager.php:149
 msgid "External link to group"
 msgstr ""
 
-#: src/Content/GroupManager.php:154 src/Content/Widget.php:512
+#: src/Content/GroupManager.php:153 src/Content/Widget.php:512
 msgid "show less"
 msgstr ""
 
-#: src/Content/GroupManager.php:155 src/Content/Widget.php:410
+#: src/Content/GroupManager.php:154 src/Content/Widget.php:410
 #: src/Content/Widget.php:513
 msgid "show more"
 msgstr ""
 
-#: src/Content/GroupManager.php:156
+#: src/Content/GroupManager.php:155
 msgid "Create new group"
 msgstr ""
 
@@ -1854,8 +1857,8 @@ msgstr ""
 msgid "Ignore %s server"
 msgstr ""
 
-#: src/Content/Item.php:443 src/Module/Settings/Channels.php:194
-#: src/Module/Settings/Channels.php:215 src/Object/Post.php:509
+#: src/Content/Item.php:443 src/Module/Settings/Channels.php:196
+#: src/Module/Settings/Channels.php:217 src/Object/Post.php:509
 msgid "Languages"
 msgstr ""
 
@@ -2058,8 +2061,7 @@ msgstr ""
 msgid "Terms of Service of this Friendica instance"
 msgstr ""
 
-#: src/Content/Nav.php:306 src/Module/Settings/Channels.php:150
-#: view/theme/frio/theme.php:239
+#: src/Content/Nav.php:306 view/theme/frio/theme.php:239
 msgid "Network"
 msgstr ""
 
@@ -2385,7 +2387,7 @@ msgid "All"
 msgstr ""
 
 #: src/Content/Widget.php:592 src/Module/Admin/Site.php:472
-#: src/Module/BaseSettings.php:125 src/Module/Settings/Channels.php:217
+#: src/Module/BaseSettings.php:125 src/Module/Settings/Channels.php:219
 #: src/Module/Settings/Display.php:315
 msgid "Channels"
 msgstr ""
@@ -6171,7 +6173,7 @@ msgstr ""
 #: src/Module/Moderation/Blocklist/Server/Index.php:116
 #: src/Module/Moderation/Item/Delete.php:67 src/Module/Register.php:148
 #: src/Module/Security/TwoFactor/Verify.php:101
-#: src/Module/Settings/Channels.php:182 src/Module/Settings/Channels.php:203
+#: src/Module/Settings/Channels.php:184 src/Module/Settings/Channels.php:205
 #: src/Module/Settings/TwoFactor/Index.php:161
 #: src/Module/Settings/TwoFactor/Verify.php:158
 msgid "Required"
@@ -7052,33 +7054,33 @@ msgstr ""
 msgid "Not available."
 msgstr ""
 
-#: src/Module/Conversation/Network.php:204
+#: src/Module/Conversation/Network.php:202
 msgid "No such circle"
 msgstr ""
 
-#: src/Module/Conversation/Network.php:208
+#: src/Module/Conversation/Network.php:206
 #, php-format
 msgid "Circle: %s"
 msgstr ""
 
-#: src/Module/Conversation/Network.php:227
+#: src/Module/Conversation/Network.php:225
 #, php-format
 msgid "Error %d (%s) while fetching the timeline."
 msgstr ""
 
-#: src/Module/Conversation/Network.php:304
+#: src/Module/Conversation/Network.php:302
 msgid "Network feed not available."
 msgstr ""
 
-#: src/Module/Conversation/Timeline.php:169
+#: src/Module/Conversation/Timeline.php:194
 msgid "Own Contacts"
 msgstr ""
 
-#: src/Module/Conversation/Timeline.php:173
+#: src/Module/Conversation/Timeline.php:198
 msgid "Include"
 msgstr ""
 
-#: src/Module/Conversation/Timeline.php:174
+#: src/Module/Conversation/Timeline.php:199
 msgid "Hide"
 msgstr ""
 
@@ -7424,7 +7426,7 @@ msgstr ""
 #: src/Module/Friendica.php:102
 #: src/Module/Moderation/Blocklist/Server/Index.php:87
 #: src/Module/Moderation/Blocklist/Server/Index.php:111
-#: src/Module/Settings/Channels.php:224
+#: src/Module/Settings/Channels.php:226
 msgid "Reason for the block"
 msgstr ""
 
@@ -8172,7 +8174,7 @@ msgstr ""
 
 #: src/Module/Moderation/Blocklist/Server/Index.php:86
 #: src/Module/Moderation/Blocklist/Server/Index.php:110
-#: src/Module/Settings/Channels.php:223
+#: src/Module/Settings/Channels.php:225
 msgid "Blocked server domain pattern"
 msgstr ""
 
@@ -10164,110 +10166,110 @@ msgstr ""
 msgid "This page can be used to define your own channels."
 msgstr ""
 
-#: src/Module/Settings/Channels.php:174
+#: src/Module/Settings/Channels.php:176
 msgid "Publish"
 msgstr ""
 
-#: src/Module/Settings/Channels.php:174
+#: src/Module/Settings/Channels.php:176
 msgid ""
 "When selected, the channel results are reshared. This only works for public "
 "ActivityPub posts from the public timeline or the user defined circles."
 msgstr ""
 
-#: src/Module/Settings/Channels.php:182 src/Module/Settings/Channels.php:203
+#: src/Module/Settings/Channels.php:184 src/Module/Settings/Channels.php:205
 #: src/Module/Settings/Display.php:338
 msgid "Label"
 msgstr ""
 
-#: src/Module/Settings/Channels.php:183 src/Module/Settings/Channels.php:204
+#: src/Module/Settings/Channels.php:185 src/Module/Settings/Channels.php:206
 #: src/Module/Settings/Display.php:339
 #: src/Module/Settings/TwoFactor/AppSpecific.php:137
 msgid "Description"
 msgstr ""
 
-#: src/Module/Settings/Channels.php:184 src/Module/Settings/Channels.php:205
+#: src/Module/Settings/Channels.php:186 src/Module/Settings/Channels.php:207
 msgid "Access Key"
 msgstr ""
 
-#: src/Module/Settings/Channels.php:185 src/Module/Settings/Channels.php:206
+#: src/Module/Settings/Channels.php:187 src/Module/Settings/Channels.php:208
 msgid "Circle/Channel"
 msgstr ""
 
-#: src/Module/Settings/Channels.php:186 src/Module/Settings/Channels.php:207
+#: src/Module/Settings/Channels.php:188 src/Module/Settings/Channels.php:209
 msgid "Include Tags"
 msgstr ""
 
-#: src/Module/Settings/Channels.php:187 src/Module/Settings/Channels.php:208
+#: src/Module/Settings/Channels.php:189 src/Module/Settings/Channels.php:210
 msgid "Exclude Tags"
 msgstr ""
 
-#: src/Module/Settings/Channels.php:188 src/Module/Settings/Channels.php:209
+#: src/Module/Settings/Channels.php:190 src/Module/Settings/Channels.php:211
 msgid "Minimum Size"
 msgstr ""
 
-#: src/Module/Settings/Channels.php:189 src/Module/Settings/Channels.php:210
+#: src/Module/Settings/Channels.php:191 src/Module/Settings/Channels.php:212
 msgid "Maximum Size"
 msgstr ""
 
-#: src/Module/Settings/Channels.php:190 src/Module/Settings/Channels.php:211
+#: src/Module/Settings/Channels.php:192 src/Module/Settings/Channels.php:213
 msgid "Full Text Search"
 msgstr ""
 
-#: src/Module/Settings/Channels.php:194 src/Module/Settings/Channels.php:215
+#: src/Module/Settings/Channels.php:196 src/Module/Settings/Channels.php:217
 msgid "Select all languages that you want to see in this channel."
 msgstr ""
 
-#: src/Module/Settings/Channels.php:196
+#: src/Module/Settings/Channels.php:198
 msgid "Delete channel"
 msgstr ""
 
-#: src/Module/Settings/Channels.php:196
+#: src/Module/Settings/Channels.php:198
 msgid "Check to delete this entry from the channel list"
 msgstr ""
 
-#: src/Module/Settings/Channels.php:203
+#: src/Module/Settings/Channels.php:205
 msgid "Short name for the channel. It is displayed on the channels widget."
 msgstr ""
 
-#: src/Module/Settings/Channels.php:204
+#: src/Module/Settings/Channels.php:206
 msgid "This should describe the content of the channel in a few word."
 msgstr ""
 
-#: src/Module/Settings/Channels.php:205
+#: src/Module/Settings/Channels.php:207
 msgid ""
 "When you want to access this channel via an access key, you can define it "
 "here. Pay attention to not use an already used one."
 msgstr ""
 
-#: src/Module/Settings/Channels.php:206
+#: src/Module/Settings/Channels.php:208
 msgid "Select a circle or channel, that your channel should be based on."
 msgstr ""
 
-#: src/Module/Settings/Channels.php:207
+#: src/Module/Settings/Channels.php:209
 msgid ""
 "Comma separated list of tags. A post will be used when it contains any of "
 "the listed tags."
 msgstr ""
 
-#: src/Module/Settings/Channels.php:208
+#: src/Module/Settings/Channels.php:210
 msgid ""
 "Comma separated list of tags. If a post contain any of these tags, then it "
 "will not be part of nthis channel."
 msgstr ""
 
-#: src/Module/Settings/Channels.php:209
+#: src/Module/Settings/Channels.php:211
 msgid ""
 "Minimum post size. Leave empty for no minimum size. The size is calculated "
 "without links, attached posts, mentions or hashtags."
 msgstr ""
 
-#: src/Module/Settings/Channels.php:210
+#: src/Module/Settings/Channels.php:212
 msgid ""
 "Maximum post size. Leave empty for no maximum size. The size is calculated "
 "without links, attached posts, mentions or hashtags."
 msgstr ""
 
-#: src/Module/Settings/Channels.php:211
+#: src/Module/Settings/Channels.php:213
 #, php-format
 msgid ""
 "Search terms for the body, supports the \"boolean mode\" operators from "
@@ -10275,35 +10277,35 @@ msgid ""
 "keywords: %s"
 msgstr ""
 
-#: src/Module/Settings/Channels.php:212
+#: src/Module/Settings/Channels.php:214
 msgid "Check to display images in the channel."
 msgstr ""
 
-#: src/Module/Settings/Channels.php:213
+#: src/Module/Settings/Channels.php:215
 msgid "Check to display videos in the channel."
 msgstr ""
 
-#: src/Module/Settings/Channels.php:214
+#: src/Module/Settings/Channels.php:216
 msgid "Check to display audio in the channel."
 msgstr ""
 
-#: src/Module/Settings/Channels.php:219
+#: src/Module/Settings/Channels.php:221
 msgid "Add new entry to the channel list"
 msgstr ""
 
-#: src/Module/Settings/Channels.php:220
+#: src/Module/Settings/Channels.php:222
 msgid "Add"
 msgstr ""
 
-#: src/Module/Settings/Channels.php:222
+#: src/Module/Settings/Channels.php:224
 msgid "Current Entries in the channel list"
 msgstr ""
 
-#: src/Module/Settings/Channels.php:225
+#: src/Module/Settings/Channels.php:227
 msgid "Delete entry from the channel list"
 msgstr ""
 
-#: src/Module/Settings/Channels.php:226
+#: src/Module/Settings/Channels.php:228
 msgid "Delete entry from the channel list?"
 msgstr ""