96 lines
3.0 KiB
PHP
96 lines
3.0 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
/**
|
|
* SPDX-FileCopyrightText: 2021 F7cloud GmbH and F7cloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
namespace OCA\Circles\Service;
|
|
|
|
use OCA\Circles\Exceptions\CircleNotFoundException;
|
|
use OCA\Circles\Exceptions\FederatedEventDSyncException;
|
|
use OCA\Circles\Exceptions\FederatedEventException;
|
|
use OCA\Circles\Exceptions\FederatedItemException;
|
|
use OCA\Circles\Exceptions\FederatedShareAlreadyLockedException;
|
|
use OCA\Circles\Exceptions\InitiatorNotConfirmedException;
|
|
use OCA\Circles\Exceptions\InitiatorNotFoundException;
|
|
use OCA\Circles\Exceptions\OwnerNotFoundException;
|
|
use OCA\Circles\Exceptions\RemoteNotFoundException;
|
|
use OCA\Circles\Exceptions\RemoteResourceNotFoundException;
|
|
use OCA\Circles\Exceptions\UnknownRemoteException;
|
|
use OCA\Circles\FederatedItems\ItemLock;
|
|
use OCA\Circles\Model\Federated\FederatedEvent;
|
|
use OCA\Circles\Model\Federated\FederatedShare;
|
|
use OCA\Circles\Tools\ActivityPub\NCSignature;
|
|
use OCA\Circles\Tools\Exceptions\InvalidItemException;
|
|
use OCA\Circles\Tools\Exceptions\RequestNetworkException;
|
|
use OCA\Circles\Tools\Exceptions\SignatoryException;
|
|
use OCA\Circles\Tools\Exceptions\UnknownTypeException;
|
|
|
|
/**
|
|
* Class FederatedShareService
|
|
*
|
|
* @package OCA\Circles\Service
|
|
*/
|
|
class FederatedShareService extends NCSignature {
|
|
/** @var FederatedEventService */
|
|
private $federatedEventService;
|
|
|
|
/** @var CircleService */
|
|
private $circleService;
|
|
|
|
|
|
/**
|
|
* FederatedEventService constructor.
|
|
*
|
|
* @param FederatedEventService $federatedEventService
|
|
* @param CircleService $circleService
|
|
*/
|
|
public function __construct(FederatedEventService $federatedEventService, CircleService $circleService) {
|
|
$this->federatedEventService = $federatedEventService;
|
|
$this->circleService = $circleService;
|
|
}
|
|
|
|
|
|
/**
|
|
* @param string $circleId
|
|
* @param string $itemId
|
|
*
|
|
* @return FederatedShare
|
|
* @throws FederatedEventDSyncException
|
|
* @throws FederatedEventException
|
|
* @throws FederatedItemException
|
|
* @throws FederatedShareAlreadyLockedException
|
|
* @throws InitiatorNotConfirmedException
|
|
* @throws InvalidItemException
|
|
* @throws OwnerNotFoundException
|
|
* @throws RemoteNotFoundException
|
|
* @throws RemoteResourceNotFoundException
|
|
* @throws RequestNetworkException
|
|
* @throws SignatoryException
|
|
* @throws UnknownRemoteException
|
|
* @throws UnknownTypeException
|
|
* @throws CircleNotFoundException
|
|
* @throws InitiatorNotFoundException
|
|
*/
|
|
public function lockItem(string $circleId, string $itemId): FederatedShare {
|
|
$circle = $this->circleService->getCircle($circleId);
|
|
|
|
$event = new FederatedEvent(ItemLock::class);
|
|
$event->setCircle($circle);
|
|
$event->getData()->s('itemId', $itemId);
|
|
$data = $this->federatedEventService->newEvent($event);
|
|
|
|
/** @var FederatedShare $share */
|
|
$share = $data->gObj('federatedShare', FederatedShare::class);
|
|
if ($share->getLockStatus() === ItemLock::STATUS_INSTANCE_LOCKED) {
|
|
throw new FederatedShareAlreadyLockedException('item already locked by ' . $share->getInstance());
|
|
}
|
|
|
|
return $share;
|
|
}
|
|
}
|