48 lines
1.3 KiB
PHP
48 lines
1.3 KiB
PHP
|
<?php
|
||
|
|
||
|
namespace Friendica\Factory\Mastodon;
|
||
|
|
||
|
use Friendica\App\BaseURL;
|
||
|
use Friendica\Model\APContact;
|
||
|
use Friendica\Model\Contact;
|
||
|
use Friendica\Model\Introduction;
|
||
|
use Friendica\Network\HTTPException;
|
||
|
use Friendica\BaseFactory;
|
||
|
use Psr\Log\LoggerInterface;
|
||
|
|
||
|
class FollowRequest extends BaseFactory
|
||
|
{
|
||
|
/** @var BaseURL */
|
||
|
protected $baseUrl;
|
||
|
|
||
|
public function __construct(LoggerInterface $logger, BaseURL $baseURL)
|
||
|
{
|
||
|
parent::__construct($logger);
|
||
|
|
||
|
$this->baseUrl = $baseURL;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @param Introduction $Introduction
|
||
|
* @return \Friendica\Api\Entity\Mastodon\FollowRequest
|
||
|
* @throws HTTPException\InternalServerErrorException
|
||
|
* @throws \ImagickException
|
||
|
*/
|
||
|
public function createFromIntroduction(Introduction $Introduction)
|
||
|
{
|
||
|
$cdata = Contact::getPublicAndUserContacID($Introduction->{'contact-id'}, $Introduction->uid);
|
||
|
|
||
|
if (empty($cdata)) {
|
||
|
$this->logger->warning('Wrong introduction data', ['Introduction' => $Introduction]);
|
||
|
throw new HTTPException\InternalServerErrorException('Wrong introduction data');
|
||
|
}
|
||
|
|
||
|
$publicContact = Contact::getById($cdata['public']);
|
||
|
$userContact = Contact::getById($cdata['user']);
|
||
|
|
||
|
$apcontact = APContact::getByURL($publicContact['url'], false);
|
||
|
|
||
|
return new \Friendica\Api\Entity\Mastodon\FollowRequest($this->baseUrl, $Introduction->id, $publicContact, $apcontact, $userContact);
|
||
|
}
|
||
|
}
|