* @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 . * */ namespace OCA\Circles\FederatedItems\Files; use OCA\Circles\Tools\Exceptions\InvalidItemException; 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\Exceptions\CircleNotFoundException; 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\Mount; use OCA\Circles\Model\ShareWrapper; use OCA\Circles\Service\ConfigService; use OCA\Circles\Service\EventService; /** * Class FileShare * * @package OCA\Circles\FederatedItems\Files */ class FileShare implements IFederatedItem, IFederatedItemHighSeverity, IFederatedItemAsyncProcess, IFederatedItemMemberEmpty { use TStringTools; use TNCLogger; /** @var MountRequest */ private $mountRequest; /** @var EventService */ private $eventService; /** @var ConfigService */ private $configService; /** * FileShare 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 (origin of file ?) and improve // TODO: Use a share lock $this->eventService->fileSharePreparing($event); } /** * @param FederatedEvent $event * * @throws CircleNotFoundException * @throws InvalidItemException * @throws UnknownTypeException */ public function manage(FederatedEvent $event): void { $mount = null; if (!$this->configService->isLocalInstance($event->getOrigin())) { /** @var ShareWrapper $wrappedShare */ $wrappedShare = $event->getParams()->gObj('wrappedShare', ShareWrapper::class); $mount = new Mount(); $mount->fromShare($wrappedShare); $mount->setMountId($this->token(15)); $this->mountRequest->save($mount); } $this->eventService->fileShareCreating($event, $mount); } /** * @param FederatedEvent $event * @param array $results */ public function result(FederatedEvent $event, array $results): void { $this->eventService->fileShareCreated($event, $results); } }