]> git.mxchange.org Git - friendica.git/blob - src/Content/Conversation/Factory/Channel.php
702eab67ce4adde4f24ee8baf5373dcd108bf8fd
[friendica.git] / src / Content / Conversation / Factory / Channel.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\Model\User;
25 use Friendica\Content\Conversation\Entity\Channel as ChannelEntity;
26 use Friendica\Core\L10n;
27 use Friendica\Database\Database;
28 use Psr\Log\LoggerInterface;
29
30 final class Channel extends \Friendica\BaseModel
31 {
32         /** @var L10n */
33         protected $l10n;
34
35         public function __construct(L10n $l10n, Database $database, LoggerInterface $logger, array $data = [])
36         {
37                 parent::__construct($database, $logger, $data);
38
39                 $this->l10n = $l10n;
40         }
41         
42         /**
43          * List of available channels
44          *
45          * @param integer $uid
46          * @return array
47          */
48         public function getForUser(int $uid): array
49         {
50                 $language  = User::getLanguageCode($uid);
51                 $languages = $this->l10n->getAvailableLanguages(true);
52
53                 $tabs = [
54                         new ChannelEntity(ChannelEntity::FORYOU, $this->l10n->t('For you'), $this->l10n->t('Posts from contacts you interact with and who interact with you'), 'y'),
55                         new ChannelEntity(ChannelEntity::WHATSHOT, $this->l10n->t('What\'s Hot'), $this->l10n->t('Posts with a lot of interactions'), 'h'),
56                         new ChannelEntity(ChannelEntity::LANGUAGE, $languages[$language], $this->l10n->t('Posts in %s', $languages[$language]), 'g'),
57                         new ChannelEntity(ChannelEntity::FOLLOWERS, $this->l10n->t('Followers'), $this->l10n->t('Posts from your followers that you don\'t follow'), 'f'),
58                         new ChannelEntity(ChannelEntity::SHARERSOFSHARERS, $this->l10n->t('Sharers of sharers'), $this->l10n->t('Posts from accounts that are followed by accounts that you follow'), 'r'),
59                         new ChannelEntity(ChannelEntity::IMAGE, $this->l10n->t('Images'), $this->l10n->t('Posts with images'), 'i'),
60                         new ChannelEntity(ChannelEntity::AUDIO, $this->l10n->t('Audio'), $this->l10n->t('Posts with audio'), 'd'),
61                         new ChannelEntity(ChannelEntity::VIDEO, $this->l10n->t('Videos'), $this->l10n->t('Posts with videos'), 'v'),
62                 ];
63                 return $tabs;
64         }
65 }