]> git.mxchange.org Git - friendica.git/blob - src/Factory/Api/Mastodon/Account.php
API: Counts added, local query improved
[friendica.git] / src / Factory / Api / Mastodon / Account.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2020, Friendica
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\Mastodon;
23
24 use Friendica\App\BaseURL;
25 use Friendica\BaseFactory;
26 use Friendica\Collection\Api\Mastodon\Fields;
27 use Friendica\Model\APContact;
28 use Friendica\Model\Contact;
29 use Friendica\Network\HTTPException;
30 use Friendica\Repository\PermissionSet;
31 use Friendica\Repository\ProfileField;
32 use Psr\Log\LoggerInterface;
33
34 class Account extends BaseFactory
35 {
36         /** @var BaseURL */
37         protected $baseUrl;
38         /** @var ProfileField */
39         protected $profileField;
40         /** @var Field */
41         protected $mstdnField;
42
43         public function __construct(LoggerInterface $logger, BaseURL $baseURL, ProfileField $profileField, Field $mstdnField)
44         {
45                 parent::__construct($logger);
46
47                 $this->baseUrl = $baseURL;
48                 $this->profileField = $profileField;
49                 $this->mstdnField = $mstdnField;
50         }
51
52         /**
53          * @param int $contactId
54          * @param int $uid        Public contact (=0) or owner user id
55          * @return \Friendica\Object\Api\Mastodon\Account
56          * @throws HTTPException\InternalServerErrorException
57          * @throws \ImagickException
58          */
59         public function createFromContactId(int $contactId, $uid = 0)
60         {
61                 $cdata = Contact::getPublicAndUserContacID($contactId, $uid);
62                 if (!empty($cdata)) {
63                         $publicContact = Contact::getById($cdata['public']);
64                         $userContact = Contact::getById($cdata['user']);
65                 } else {
66                         $publicContact = Contact::getById($contactId);
67                         $userContact = [];
68                 }
69
70                 $apcontact = APContact::getByURL($publicContact['url'], false);
71
72                 return new \Friendica\Object\Api\Mastodon\Account($this->baseUrl, $publicContact, new Fields(), $apcontact, $userContact);
73         }
74
75         /**
76          * @param int $userId
77          * @return \Friendica\Object\Api\Mastodon\Account
78          * @throws HTTPException\InternalServerErrorException
79          * @throws \ImagickException
80          */
81         public function createFromUserId(int $userId)
82         {
83                 $publicContact = Contact::selectFirst([], ['uid' => $userId, 'self' => true]);
84
85                 $profileFields = $this->profileField->select(['uid' => $userId, 'psid' => PermissionSet::PUBLIC]);
86                 $fields        = $this->mstdnField->createFromProfileFields($profileFields);
87
88                 $apcontact     = APContact::getByURL($publicContact['url'], false);
89
90                 return new \Friendica\Object\Api\Mastodon\Account($this->baseUrl, $publicContact, $fields, $apcontact);
91         }
92 }