]> git.mxchange.org Git - friendica.git/blob - src/Factory/Api/Mastodon/FollowRequest.php
Tests ...
[friendica.git] / src / Factory / Api / Mastodon / FollowRequest.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2010-2021, 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\Mastodon;
23
24 use Friendica\App\BaseURL;
25 use Friendica\BaseFactory;
26 use Friendica\Contact\Introduction\Entity\Introduction;
27 use Friendica\Model\APContact;
28 use Friendica\Model\Contact;
29 use Friendica\Network\HTTPException;
30 use ImagickException;
31 use Psr\Log\LoggerInterface;
32
33 class FollowRequest extends BaseFactory
34 {
35         /** @var BaseURL */
36         private $baseUrl;
37
38         public function __construct(LoggerInterface $logger, BaseURL $baseURL)
39         {
40                 parent::__construct($logger);
41
42                 $this->baseUrl = $baseURL;
43         }
44
45         /**
46          * @param Introduction $introduction
47          * @return \Friendica\Object\Api\Mastodon\FollowRequest
48          * @throws ImagickException|HTTPException\InternalServerErrorException
49          */
50         public function createFromIntroduction(Introduction $introduction): \Friendica\Object\Api\Mastodon\FollowRequest
51         {
52                 $cdata = Contact::getPublicAndUserContactID($introduction->cid, $introduction->uid);
53
54                 if (empty($cdata)) {
55                         $this->logger->warning('Wrong introduction data', ['Introduction' => $introduction]);
56                         throw new HTTPException\InternalServerErrorException('Wrong introduction data');
57                 }
58
59                 $publicContact = Contact::getById($cdata['public']);
60                 $userContact   = Contact::getById($cdata['user']);
61
62                 $apContact = APContact::getByURL($publicContact['url'], false);
63
64                 return new \Friendica\Object\Api\Mastodon\FollowRequest($this->baseUrl, $introduction->id, $publicContact, $apContact, $userContact);
65         }
66 }