127 lines
3.2 KiB
PHP
127 lines
3.2 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
/**
|
|
* Circles - Bring cloud-users closer together.
|
|
*
|
|
* This file is licensed under the Affero General Public License version 3 or
|
|
* later. See the COPYING file.
|
|
*
|
|
* @author Maxence Lange <maxence@artificial-owl.com>
|
|
* @copyright 2021
|
|
* @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\Circles\FederatedItems\Files;
|
|
|
|
use OCA\Circles\Tools\Exceptions\InvalidItemException;
|
|
use OCA\Circles\Tools\Exceptions\ItemNotFoundException;
|
|
use OCA\Circles\Tools\Exceptions\UnknownTypeException;
|
|
use OCA\Circles\Tools\Traits\TNCLogger;
|
|
use OCA\Circles\Tools\Traits\TStringTools;
|
|
use OCA\Circles\Db\MountRequest;
|
|
use OCA\Circles\IFederatedItem;
|
|
use OCA\Circles\IFederatedItemAsyncProcess;
|
|
use OCA\Circles\IFederatedItemHighSeverity;
|
|
use OCA\Circles\IFederatedItemMemberEmpty;
|
|
use OCA\Circles\Model\Federated\FederatedEvent;
|
|
use OCA\Circles\Model\ShareWrapper;
|
|
use OCA\Circles\Service\ConfigService;
|
|
use OCA\Circles\Service\EventService;
|
|
|
|
/**
|
|
* Class FileUnshare
|
|
*
|
|
* @package OCA\Circles\FederatedItems
|
|
*/
|
|
class FileUnshare implements
|
|
IFederatedItem,
|
|
IFederatedItemHighSeverity,
|
|
IFederatedItemAsyncProcess,
|
|
IFederatedItemMemberEmpty {
|
|
use TStringTools;
|
|
use TNCLogger;
|
|
|
|
|
|
/** @var MountRequest */
|
|
private $mountRequest;
|
|
|
|
/** @var EventService */
|
|
private $eventService;
|
|
|
|
/** @var ConfigService */
|
|
private $configService;
|
|
|
|
|
|
/**
|
|
* FileUnshare constructor.
|
|
*
|
|
* @param MountRequest $mountRequest
|
|
* @param EventService $eventService
|
|
* @param ConfigService $configService
|
|
*/
|
|
public function __construct(
|
|
MountRequest $mountRequest,
|
|
EventService $eventService,
|
|
ConfigService $configService
|
|
) {
|
|
$this->mountRequest = $mountRequest;
|
|
$this->eventService = $eventService;
|
|
$this->configService = $configService;
|
|
}
|
|
|
|
|
|
/**
|
|
* @param FederatedEvent $event
|
|
*/
|
|
public function verify(FederatedEvent $event): void {
|
|
// TODO: check and improve
|
|
// TODO: Could we use a share lock ?
|
|
}
|
|
|
|
|
|
/**
|
|
* @param FederatedEvent $event
|
|
*
|
|
* @throws InvalidItemException
|
|
* @throws UnknownTypeException
|
|
* @throws ItemNotFoundException
|
|
*/
|
|
public function manage(FederatedEvent $event): void {
|
|
if ($this->configService->isLocalInstance($event->getOrigin())) {
|
|
return;
|
|
}
|
|
|
|
/** @var ShareWrapper $wrappedShare */
|
|
$wrappedShare = $event->getParams()->gObj('wrappedShare', ShareWrapper::class);
|
|
|
|
$this->mountRequest->delete($wrappedShare->getToken());
|
|
$this->eventService->federatedShareDeleted($wrappedShare);
|
|
}
|
|
|
|
|
|
/**
|
|
* @param FederatedEvent $event
|
|
* @param array $results
|
|
*/
|
|
public function result(FederatedEvent $event, array $results): void {
|
|
}
|
|
}
|