spreed/lib/Controller/FederationController.php
Joas Schilling b26caa8cee
feat(federation): Add room to response when accepting an invite
Signed-off-by: Joas Schilling <coding@schilljs.com>
2024-01-26 15:44:03 +01:00

173 lines
5 KiB
PHP

<?php
declare(strict_types=1);
/**
* @copyright Copyright (c) 2021, Gary Kim <gary@garykim.dev>
*
* @author Gary Kim <gary@garykim.dev>
* @author Kate Döen <kate.doeen@nextcloud.com>
*
* @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 <http://www.gnu.org/licenses/>.
*
*/
namespace OCA\Talk\Controller;
use OCA\Talk\AppInfo\Application;
use OCA\Talk\Exceptions\RoomNotFoundException;
use OCA\Talk\Exceptions\UnauthorizedException;
use OCA\Talk\Federation\FederationManager;
use OCA\Talk\Manager;
use OCA\Talk\Model\Invitation;
use OCA\Talk\ResponseDefinitions;
use OCA\Talk\Service\RoomFormatter;
use OCP\AppFramework\Db\MultipleObjectsReturnedException;
use OCP\AppFramework\Http;
use OCP\AppFramework\Http\Attribute\NoAdminRequired;
use OCP\AppFramework\Http\Attribute\OpenAPI;
use OCP\AppFramework\Http\DataResponse;
use OCP\AppFramework\OCSController;
use OCP\DB\Exception as DBException;
use OCP\IRequest;
use OCP\IUser;
use OCP\IUserSession;
/**
* @psalm-import-type TalkFederationInvite from ResponseDefinitions
* @psalm-import-type TalkRoom from ResponseDefinitions
*/
class FederationController extends OCSController {
public function __construct(
IRequest $request,
private FederationManager $federationManager,
private Manager $talkManager,
private IUserSession $userSession,
private RoomFormatter $roomFormatter,
) {
parent::__construct(Application::APP_ID, $request);
}
/**
* Following the logic of {@see Dispatcher::executeController}
* @return string Either 'json' or 'xml'
* @psalm-return 'json'|'xml'
*/
public function getResponseFormat(): string {
// get format from the url format or request format parameter
$format = $this->request->getParam('format');
// if none is given try the first Accept header
if ($format === null) {
$headers = $this->request->getHeader('Accept');
/**
* Default value of
* @see OCSController::buildResponse()
*/
$format = $this->getResponderByHTTPHeader($headers, 'xml');
}
return $format;
}
/**
* Accept a federation invites
*
* 🚧 Draft: Still work in progress
*
* @param int $id ID of the share
* @psalm-param non-negative-int $id
* @return DataResponse<Http::STATUS_OK, TalkRoom, array{}>
* @throws UnauthorizedException
* @throws DBException
* @throws MultipleObjectsReturnedException
*
* 200: Invite accepted successfully
*/
#[NoAdminRequired]
#[OpenAPI(scope: OpenAPI::SCOPE_FEDERATION)]
public function acceptShare(int $id): DataResponse {
$user = $this->userSession->getUser();
if (!$user instanceof IUser) {
throw new UnauthorizedException();
}
$participant = $this->federationManager->acceptRemoteRoomShare($user, $id);
return new DataResponse($this->roomFormatter->formatRoom(
$this->getResponseFormat(),
[],
$participant->getRoom(),
$participant,
));
}
/**
* Decline a federation invites
*
* 🚧 Draft: Still work in progress
*
* @param int $id ID of the share
* @psalm-param non-negative-int $id
* @return DataResponse<Http::STATUS_OK, array<empty>, array{}>
* @throws UnauthorizedException
* @throws DBException
* @throws MultipleObjectsReturnedException
*
* 200: Invite declined successfully
*/
#[NoAdminRequired]
#[OpenAPI(scope: OpenAPI::SCOPE_FEDERATION)]
public function rejectShare(int $id): DataResponse {
$user = $this->userSession->getUser();
if (!$user instanceof IUser) {
throw new UnauthorizedException();
}
$this->federationManager->rejectRemoteRoomShare($user, $id);
return new DataResponse();
}
/**
* Get a list of federation invites
*
* 🚧 Draft: Still work in progress
*
* @return DataResponse<Http::STATUS_OK, TalkFederationInvite[], array{}>
*
* 200: Get list of received federation invites successfully
*/
#[NoAdminRequired]
#[OpenAPI(scope: OpenAPI::SCOPE_FEDERATION)]
public function getShares(): DataResponse {
$user = $this->userSession->getUser();
if (!$user instanceof IUser) {
throw new UnauthorizedException();
}
$invitations = $this->federationManager->getRemoteRoomShares($user);
/** @var TalkFederationInvite[] $data */
$data = array_filter(array_map(function (Invitation $invitation): ?array {
try {
$this->talkManager->getRoomById($invitation->getLocalRoomId());
} catch (RoomNotFoundException) {
return null;
}
return $invitation->jsonSerialize();
}, $invitations));
return new DataResponse($data);
}
}