]> git.mxchange.org Git - friendica.git/blob - src/Content/Conversation/Factory/Community.php
User Repository\UserDefinedChannel->selectByUid instead of Factory\UserDefinedChannel...
[friendica.git] / src / Content / Conversation / Factory / Community.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2010-2023, the Friendica project
4  *
5  * @license GNU AGPL version 3 or any later version
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU Affero General Public License as
9  * published by the Free Software Foundation, either version 3 of the
10  * License, or (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU Affero General Public License for more details.
16  *
17  * You should have received a copy of the GNU Affero General Public License
18  * along with this program.  If not, see <https://www.gnu.org/licenses/>.
19  *
20  */
21
22 namespace Friendica\Content\Conversation\Factory;
23
24 use Friendica\Content\Conversation\Collection\Timelines;
25 use Friendica\Content\Conversation\Entity\Community as CommunityEntity;
26 use Friendica\Module\Conversation\Community as CommunityModule;
27
28 final class Community extends Timeline
29 {
30         /**
31          * List of available communities
32          *
33          * @param boolean $authenticated
34          * @return Timelines
35          */
36         public function getTimelines(bool $authenticated): Timelines
37         {
38                 $page_style = $this->config->get('system', 'community_page_style');
39
40                 $tabs = [];
41
42                 if (($authenticated || in_array($page_style, [CommunityModule::LOCAL_AND_GLOBAL, CommunityModule::LOCAL])) && empty($this->config->get('system', 'singleuser'))) {
43                         $tabs[] = new CommunityEntity(CommunityEntity::LOCAL, $this->l10n->t('Local Community'), $this->l10n->t('Posts from local users on this server'), 'l');
44                 }
45
46                 if ($authenticated || in_array($page_style, [CommunityModule::LOCAL_AND_GLOBAL, CommunityModule::GLOBAL])) {
47                         $tabs[] = new CommunityEntity(CommunityEntity::GLOBAL, $this->l10n->t('Global Community'), $this->l10n->t('Posts from users of the whole federated network'), 'g');
48                 }
49                 return new Timelines($tabs);
50         }
51
52         public function isTimeline(string $selectedTab): bool
53         {
54                 return in_array($selectedTab, [CommunityEntity::LOCAL, CommunityEntity::GLOBAL]);
55         }
56 }