]> git.mxchange.org Git - friendica.git/blob - src/Factory/Api/Friendica/Group.php
Merge pull request #11286 from annando/api-fixes
[friendica.git] / src / Factory / Api / Friendica / Group.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2010-2022, 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\Factory\Api\Friendica;
23
24 use Friendica\BaseFactory;
25 use Friendica\Database\Database;
26 use Friendica\Network\HTTPException;
27 use Psr\Log\LoggerInterface;
28 use Friendica\Factory\Api\Twitter\User as TwitterUser;
29
30 class Group extends BaseFactory
31 {
32         /** @var twitterUser entity */
33         private $twitterUser;
34         /** @var Database */
35         private $dba;
36
37         public function __construct(LoggerInterface $logger, TwitterUser $twitteruser, Database $dba)
38         {
39                 parent::__construct($logger);
40
41                 $this->twitterUser = $twitteruser;
42                 $this->dba         = $dba;
43         }
44
45         /**
46          * @param int $id id of the group
47          * @return array
48          * @throws HTTPException\InternalServerErrorException
49          */
50         public function createFromId(int $id): array
51         {
52                 $group = $this->dba->selectFirst('group', [], ['id' => $id, 'deleted' => false]);
53                 if (empty($group)) {
54                         return [];
55                 }
56
57                 $user   = $this->twitterUser->createFromUserId($group['uid'])->toArray();
58                 $object = new \Friendica\Object\Api\Friendica\Group($group, $user);
59
60                 return $object->toArray();
61         }
62 }