-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Maxence Lange <[email protected]>
- Loading branch information
1 parent
a1941d1
commit ed589ed
Showing
8 changed files
with
507 additions
and
105 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,189 @@ | ||
<?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 <[email protected]> | ||
* @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; | ||
|
||
|
||
use daita\MySmallPhpTools\Exceptions\InvalidItemException; | ||
use daita\MySmallPhpTools\Exceptions\UnknownTypeException; | ||
use daita\MySmallPhpTools\Traits\Nextcloud\nc22\TNC22Logger; | ||
use daita\MySmallPhpTools\Traits\TStringTools; | ||
use OCA\Circles\Db\MountRequest; | ||
use OCA\Circles\Exceptions\CircleNotFoundException; | ||
use OCA\Circles\IFederatedItem; | ||
use OCA\Circles\IFederatedItemAsyncProcess; | ||
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; | ||
|
||
|
||
/** | ||
* Class FileShare | ||
* | ||
* @package OCA\Circles\FederatedItems | ||
*/ | ||
class FileShare implements | ||
IFederatedItem, | ||
IFederatedItemAsyncProcess, | ||
IFederatedItemMemberEmpty { | ||
|
||
|
||
use TStringTools; | ||
use TNC22Logger; | ||
|
||
|
||
/** @var MountRequest */ | ||
private $mountRequest; | ||
|
||
/** @var ConfigService */ | ||
private $configService; | ||
|
||
|
||
/** | ||
* FileShare constructor. | ||
* | ||
* @param MountRequest $mountRequest | ||
* @param ConfigService $configService | ||
*/ | ||
public function __construct(MountRequest $mountRequest, ConfigService $configService) { | ||
$this->mountRequest = $mountRequest; | ||
$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 CircleNotFoundException | ||
*/ | ||
public function manage(FederatedEvent $event): void { | ||
if ($this->configService->isLocalInstance($event->getSource())) { | ||
return; | ||
} | ||
|
||
/** @var ShareWrapper $wrappedShare */ | ||
$wrappedShare = $event->getData()->gObj('wrappedShare', ShareWrapper::class); | ||
$mount = new Mount(); | ||
$mount->fromShare($wrappedShare); | ||
$mount->setMountId($this->token(15)); | ||
|
||
$this->mountRequest->save($mount); | ||
|
||
// $this->mountRequest->create($mount); | ||
// $circle = $event->getDeprecatedCircle(); | ||
// | ||
// // if event is not local, we create a federated file to the right instance of Nextcloud, using the right token | ||
// if (!$this->configService->isLocalInstance($event->getSource())) { | ||
// try { | ||
// $share = $this->getShareFromData($event->getData()); | ||
// } catch (Exception $e) { | ||
// return; | ||
// } | ||
// | ||
// $data = $event->getData(); | ||
// $token = $data->g('gs_federated'); | ||
// $filename = $data->g('gs_filename'); | ||
// | ||
// $gsShare = new GSShare($share->getSharedWith(), $token); | ||
// $gsShare->setOwner($share->getShareOwner()); | ||
// $gsShare->setInstance($event->getSource()); | ||
// $gsShare->setParent(-1); | ||
// $gsShare->setMountPoint($filename); | ||
// | ||
// $this->gsSharesRequest->create($gsShare); | ||
// } else { | ||
// // if the event is local, we send mail to mail-as-members | ||
// $members = $this->membersRequest->forceGetMembers( | ||
// $circle->getUniqueId(), DeprecatedMember::LEVEL_MEMBER, DeprecatedMember::TYPE_MAIL, true | ||
// ); | ||
// | ||
// foreach ($members as $member) { | ||
// $this->sendShareToContact($event, $circle, $member->getMemberId(), [$member->getUserId()]); | ||
// } | ||
// } | ||
// | ||
// // we also fill the event's result for further things, like contact-as-members | ||
// $members = $this->membersRequest->forceGetMembers( | ||
// $circle->getUniqueId(), DeprecatedMember::LEVEL_MEMBER, DeprecatedMember::TYPE_CONTACT, true | ||
// ); | ||
// | ||
// $accounts = []; | ||
// foreach ($members as $member) { | ||
// if ($member->getInstance() === '') { | ||
// $accounts[] = $this->miscService->getInfosFromContact($member); | ||
// } | ||
// } | ||
// | ||
// $event->setResult(new SimpleDataStore(['contacts' => $accounts])); | ||
} | ||
|
||
|
||
/** | ||
* @param FederatedEvent $event | ||
* @param array $results | ||
*/ | ||
public function result(FederatedEvent $event, array $results): void { | ||
// $event = null; | ||
// $contacts = []; | ||
// foreach (array_keys($events) as $instance) { | ||
// $event = $events[$instance]; | ||
// $contacts = array_merge( | ||
// $contacts, $event->getResult() | ||
// ->gArray('contacts') | ||
// ); | ||
// } | ||
// | ||
// if ($event === null || !$event->hasCircle()) { | ||
// return; | ||
// } | ||
// | ||
// $circle = $event->getDeprecatedCircle(); | ||
// | ||
// foreach ($contacts as $contact) { | ||
// $this->sendShareToContact($event, $circle, $contact['memberId'], $contact['emails']); | ||
// } | ||
} | ||
|
||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.