friendica/src/Factory/Api/Friendica/Circle.php

63 lines
1.8 KiB
PHP
Raw Normal View History

2022-01-15 22:38:19 +01:00
<?php
/**
2023-01-01 15:36:24 +01:00
* @copyright Copyright (C) 2010-2023, the Friendica project
2022-01-15 22:38:19 +01:00
*
* @license GNU AGPL version 3 or any later version
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*
*/
namespace Friendica\Factory\Api\Friendica;
use Friendica\BaseFactory;
use Friendica\Database\Database;
2022-01-15 22:38:19 +01:00
use Friendica\Network\HTTPException;
use Psr\Log\LoggerInterface;
use Friendica\Factory\Api\Twitter\User as TwitterUser;
class Circle extends BaseFactory
2022-01-15 22:38:19 +01:00
{
/** @var twitterUser entity */
private $twitterUser;
/** @var Database */
2022-01-16 21:49:59 +01:00
private $dba;
2022-01-15 22:38:19 +01:00
public function __construct(LoggerInterface $logger, TwitterUser $twitteruser, Database $dba)
2022-01-15 22:38:19 +01:00
{
parent::__construct($logger);
$this->twitterUser = $twitteruser;
2022-01-16 21:49:59 +01:00
$this->dba = $dba;
2022-01-15 22:38:19 +01:00
}
/**
* @param int $id id of the circle
2022-01-15 22:38:19 +01:00
* @return array
* @throws HTTPException\InternalServerErrorException
*/
public function createFromId(int $id): array
{
$circle = $this->dba->selectFirst('group', [], ['id' => $id, 'deleted' => false]);
if (empty($circle)) {
2022-01-15 22:38:19 +01:00
return [];
}
$user = $this->twitterUser->createFromUserId($circle['uid'])->toArray();
$object = new \Friendica\Object\Api\Friendica\Circle($circle, $user);
2022-01-15 22:38:19 +01:00
return $object->toArray();
}
}