123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392 |
- <?php
- /**
- * @copyright Copyright (c) 2016, ownCloud, Inc.
- *
- * @author Bjoern Schiessle <bjoern@schiessle.org>
- * @author Björn Schießle <bjoern@schiessle.org>
- * @author Christoph Wurst <christoph@winzerhof-wurst.at>
- * @author Daniel Calviño Sánchez <danxuliu@gmail.com>
- * @author Joas Schilling <coding@schilljs.com>
- * @author John Molakvoæ <skjnldsv@protonmail.com>
- * @author Julius Härtl <jus@bitgrid.net>
- * @author Lukas Reschke <lukas@statuscode.ch>
- * @author Maxence Lange <maxence@nextcloud.com>
- * @author Morris Jobke <hey@morrisjobke.de>
- * @author Robin Appelman <robin@icewind.nl>
- * @author Roeland Jago Douma <roeland@famdouma.nl>
- * @author Samuel <faust64@gmail.com>
- *
- * @license AGPL-3.0
- *
- * This code is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Affero General Public License, version 3,
- * as published by the Free Software Foundation.
- *
- * 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, version 3,
- * along with this program. If not, see <http://www.gnu.org/licenses/>
- *
- */
- namespace OC\Share20;
- use OC\Share20\Exception\ProviderException;
- use OCA\FederatedFileSharing\AddressHandler;
- use OCA\FederatedFileSharing\FederatedShareProvider;
- use OCA\FederatedFileSharing\Notifications;
- use OCA\FederatedFileSharing\TokenHandler;
- use OCA\ShareByMail\Settings\SettingsManager;
- use OCA\ShareByMail\ShareByMailProvider;
- use OCA\Talk\Share\RoomShareProvider;
- use OCP\Defaults;
- use OCP\EventDispatcher\IEventDispatcher;
- use OCP\IServerContainer;
- use OCP\Share\IManager;
- use OCP\Share\IProviderFactory;
- use OCP\Share\IShare;
- use OCP\Share\IShareProvider;
- use Psr\Log\LoggerInterface;
- /**
- * Class ProviderFactory
- *
- * @package OC\Share20
- */
- class ProviderFactory implements IProviderFactory {
- /** @var IServerContainer */
- private $serverContainer;
- /** @var DefaultShareProvider */
- private $defaultProvider = null;
- /** @var FederatedShareProvider */
- private $federatedProvider = null;
- /** @var ShareByMailProvider */
- private $shareByMailProvider;
- /** @var \OCA\Circles\ShareByCircleProvider */
- private $shareByCircleProvider = null;
- /** @var bool */
- private $circlesAreNotAvailable = false;
- /** @var \OCA\Talk\Share\RoomShareProvider */
- private $roomShareProvider = null;
- private $registeredShareProviders = [];
- private $shareProviders = [];
- /**
- * IProviderFactory constructor.
- *
- * @param IServerContainer $serverContainer
- */
- public function __construct(IServerContainer $serverContainer) {
- $this->serverContainer = $serverContainer;
- }
- public function registerProvider(string $shareProviderClass): void {
- $this->registeredShareProviders[] = $shareProviderClass;
- }
- /**
- * Create the default share provider.
- *
- * @return DefaultShareProvider
- */
- protected function defaultShareProvider() {
- if ($this->defaultProvider === null) {
- $this->defaultProvider = new DefaultShareProvider(
- $this->serverContainer->getDatabaseConnection(),
- $this->serverContainer->getUserManager(),
- $this->serverContainer->getGroupManager(),
- $this->serverContainer->getLazyRootFolder(),
- $this->serverContainer->getMailer(),
- $this->serverContainer->query(Defaults::class),
- $this->serverContainer->getL10NFactory(),
- $this->serverContainer->getURLGenerator(),
- $this->serverContainer->getConfig()
- );
- }
- return $this->defaultProvider;
- }
- /**
- * Create the federated share provider
- *
- * @return FederatedShareProvider
- */
- protected function federatedShareProvider() {
- if ($this->federatedProvider === null) {
- /*
- * Check if the app is enabled
- */
- $appManager = $this->serverContainer->getAppManager();
- if (!$appManager->isEnabledForUser('federatedfilesharing')) {
- return null;
- }
- /*
- * TODO: add factory to federated sharing app
- */
- $l = $this->serverContainer->getL10N('federatedfilesharing');
- $addressHandler = new AddressHandler(
- $this->serverContainer->getURLGenerator(),
- $l,
- $this->serverContainer->getCloudIdManager()
- );
- $notifications = new Notifications(
- $addressHandler,
- $this->serverContainer->getHTTPClientService(),
- $this->serverContainer->query(\OCP\OCS\IDiscoveryService::class),
- $this->serverContainer->getLogger(),
- $this->serverContainer->getJobList(),
- \OC::$server->getCloudFederationProviderManager(),
- \OC::$server->getCloudFederationFactory(),
- $this->serverContainer->query(IEventDispatcher::class)
- );
- $tokenHandler = new TokenHandler(
- $this->serverContainer->getSecureRandom()
- );
- $this->federatedProvider = new FederatedShareProvider(
- $this->serverContainer->getDatabaseConnection(),
- $addressHandler,
- $notifications,
- $tokenHandler,
- $l,
- $this->serverContainer->getLogger(),
- $this->serverContainer->getLazyRootFolder(),
- $this->serverContainer->getConfig(),
- $this->serverContainer->getUserManager(),
- $this->serverContainer->getCloudIdManager(),
- $this->serverContainer->getGlobalScaleConfig(),
- $this->serverContainer->getCloudFederationProviderManager()
- );
- }
- return $this->federatedProvider;
- }
- /**
- * Create the federated share provider
- *
- * @return ShareByMailProvider
- */
- protected function getShareByMailProvider() {
- if ($this->shareByMailProvider === null) {
- /*
- * Check if the app is enabled
- */
- $appManager = $this->serverContainer->getAppManager();
- if (!$appManager->isEnabledForUser('sharebymail')) {
- return null;
- }
- $settingsManager = new SettingsManager($this->serverContainer->getConfig());
- $this->shareByMailProvider = new ShareByMailProvider(
- $this->serverContainer->getConfig(),
- $this->serverContainer->getDatabaseConnection(),
- $this->serverContainer->getSecureRandom(),
- $this->serverContainer->getUserManager(),
- $this->serverContainer->getLazyRootFolder(),
- $this->serverContainer->getL10N('sharebymail'),
- $this->serverContainer->getLogger(),
- $this->serverContainer->getMailer(),
- $this->serverContainer->getURLGenerator(),
- $this->serverContainer->getActivityManager(),
- $settingsManager,
- $this->serverContainer->query(Defaults::class),
- $this->serverContainer->getHasher(),
- $this->serverContainer->get(IEventDispatcher::class),
- $this->serverContainer->get(IManager::class)
- );
- }
- return $this->shareByMailProvider;
- }
- /**
- * Create the circle share provider
- *
- * @return FederatedShareProvider
- *
- * @suppress PhanUndeclaredClassMethod
- */
- protected function getShareByCircleProvider() {
- if ($this->circlesAreNotAvailable) {
- return null;
- }
- if (!$this->serverContainer->getAppManager()->isEnabledForUser('circles') ||
- !class_exists('\OCA\Circles\ShareByCircleProvider')
- ) {
- $this->circlesAreNotAvailable = true;
- return null;
- }
- if ($this->shareByCircleProvider === null) {
- $this->shareByCircleProvider = new \OCA\Circles\ShareByCircleProvider(
- $this->serverContainer->getDatabaseConnection(),
- $this->serverContainer->getSecureRandom(),
- $this->serverContainer->getUserManager(),
- $this->serverContainer->getLazyRootFolder(),
- $this->serverContainer->getL10N('circles'),
- $this->serverContainer->getLogger(),
- $this->serverContainer->getURLGenerator()
- );
- }
- return $this->shareByCircleProvider;
- }
- /**
- * Create the room share provider
- *
- * @return RoomShareProvider
- */
- protected function getRoomShareProvider() {
- if ($this->roomShareProvider === null) {
- /*
- * Check if the app is enabled
- */
- $appManager = $this->serverContainer->getAppManager();
- if (!$appManager->isEnabledForUser('spreed')) {
- return null;
- }
- try {
- /**
- * @psalm-suppress UndefinedClass
- */
- $this->roomShareProvider = $this->serverContainer->get(RoomShareProvider::class);
- } catch (\Throwable $e) {
- $this->serverContainer->get(LoggerInterface::class)->error(
- $e->getMessage(),
- ['exception' => $e]
- );
- return null;
- }
- }
- return $this->roomShareProvider;
- }
- /**
- * @inheritdoc
- */
- public function getProvider($id) {
- $provider = null;
- if (isset($this->shareProviders[$id])) {
- return $this->shareProviders[$id];
- }
- if ($id === 'ocinternal') {
- $provider = $this->defaultShareProvider();
- } elseif ($id === 'ocFederatedSharing') {
- $provider = $this->federatedShareProvider();
- } elseif ($id === 'ocMailShare') {
- $provider = $this->getShareByMailProvider();
- } elseif ($id === 'ocCircleShare') {
- $provider = $this->getShareByCircleProvider();
- } elseif ($id === 'ocRoomShare') {
- $provider = $this->getRoomShareProvider();
- }
- foreach ($this->registeredShareProviders as $shareProvider) {
- try {
- /** @var IShareProvider $instance */
- $instance = $this->serverContainer->get($shareProvider);
- $this->shareProviders[$instance->identifier()] = $instance;
- } catch (\Throwable $e) {
- $this->serverContainer->get(LoggerInterface::class)->error(
- $e->getMessage(),
- ['exception' => $e]
- );
- }
- }
- if (isset($this->shareProviders[$id])) {
- $provider = $this->shareProviders[$id];
- }
- if ($provider === null) {
- throw new ProviderException('No provider with id .' . $id . ' found.');
- }
- return $provider;
- }
- /**
- * @inheritdoc
- */
- public function getProviderForType($shareType) {
- $provider = null;
- if ($shareType === IShare::TYPE_USER ||
- $shareType === IShare::TYPE_GROUP ||
- $shareType === IShare::TYPE_LINK
- ) {
- $provider = $this->defaultShareProvider();
- } elseif ($shareType === IShare::TYPE_REMOTE || $shareType === IShare::TYPE_REMOTE_GROUP) {
- $provider = $this->federatedShareProvider();
- } elseif ($shareType === IShare::TYPE_EMAIL) {
- $provider = $this->getShareByMailProvider();
- } elseif ($shareType === IShare::TYPE_CIRCLE) {
- $provider = $this->getShareByCircleProvider();
- } elseif ($shareType === IShare::TYPE_ROOM) {
- $provider = $this->getRoomShareProvider();
- } elseif ($shareType === IShare::TYPE_DECK) {
- $provider = $this->getProvider('deck');
- } elseif ($shareType === IShare::TYPE_SCIENCEMESH) {
- $provider = $this->getProvider('sciencemesh');
- }
- if ($provider === null) {
- throw new ProviderException('No share provider for share type ' . $shareType);
- }
- return $provider;
- }
- public function getAllProviders() {
- $shares = [$this->defaultShareProvider(), $this->federatedShareProvider()];
- $shareByMail = $this->getShareByMailProvider();
- if ($shareByMail !== null) {
- $shares[] = $shareByMail;
- }
- $shareByCircle = $this->getShareByCircleProvider();
- if ($shareByCircle !== null) {
- $shares[] = $shareByCircle;
- }
- $roomShare = $this->getRoomShareProvider();
- if ($roomShare !== null) {
- $shares[] = $roomShare;
- }
- foreach ($this->registeredShareProviders as $shareProvider) {
- try {
- /** @var IShareProvider $instance */
- $instance = $this->serverContainer->get($shareProvider);
- } catch (\Throwable $e) {
- $this->serverContainer->get(LoggerInterface::class)->error(
- $e->getMessage(),
- ['exception' => $e]
- );
- continue;
- }
- if (!isset($this->shareProviders[$instance->identifier()])) {
- $this->shareProviders[$instance->identifier()] = $instance;
- }
- $shares[] = $this->shareProviders[$instance->identifier()];
- }
- return $shares;
- }
- }
|