2015-03-09 18:20:18 +03:00
|
|
|
<?php
|
|
|
|
/**
|
2016-07-21 17:49:16 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
|
|
|
* @author Bjoern Schiessle <bjoern@schiessle.org>
|
2020-03-31 11:49:10 +03:00
|
|
|
* @author Christoph Wurst <christoph@winzerhof-wurst.at>
|
2016-07-21 17:49:16 +03:00
|
|
|
* @author Joas Schilling <coding@schilljs.com>
|
2019-12-03 21:57:53 +03:00
|
|
|
* @author John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
|
2020-01-13 16:23:49 +03:00
|
|
|
* @author Julius Härtl <jus@bitgrid.net>
|
2017-11-06 17:56:42 +03:00
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
2016-07-21 19:13:36 +03:00
|
|
|
* @author Robin Appelman <robin@icewind.nl>
|
2016-07-21 17:49:16 +03:00
|
|
|
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
2017-11-06 17:56:42 +03:00
|
|
|
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
2015-06-25 12:43:55 +03:00
|
|
|
*
|
|
|
|
* @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,
|
2019-12-03 21:57:53 +03:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
2015-06-25 12:43:55 +03:00
|
|
|
*
|
2015-03-09 18:20:18 +03:00
|
|
|
*/
|
|
|
|
|
2015-03-21 22:12:55 +03:00
|
|
|
namespace OCA\Files_Sharing\AppInfo;
|
2015-03-09 18:20:18 +03:00
|
|
|
|
2019-11-22 22:52:10 +03:00
|
|
|
use OC\AppFramework\Utility\SimpleContainer;
|
|
|
|
use OCA\Files_Sharing\Capabilities;
|
2020-07-13 17:05:11 +03:00
|
|
|
use OCA\Files_Sharing\Event\BeforeTemplateRenderedEvent;
|
2019-11-22 22:52:10 +03:00
|
|
|
use OCA\Files_Sharing\External\Manager;
|
2020-07-13 17:05:11 +03:00
|
|
|
use OCA\Files_Sharing\Listener\LegacyBeforeTemplateRenderedListener;
|
2019-11-05 17:10:54 +03:00
|
|
|
use OCA\Files_Sharing\Listener\LoadAdditionalListener;
|
|
|
|
use OCA\Files_Sharing\Listener\LoadSidebarListener;
|
2020-03-19 11:47:36 +03:00
|
|
|
use OCA\Files_Sharing\Listener\ShareInteractionListener;
|
2020-03-25 10:51:27 +03:00
|
|
|
use OCA\Files_Sharing\Listener\UserAddedToGroupListener;
|
2019-12-12 23:45:59 +03:00
|
|
|
use OCA\Files_Sharing\Listener\UserShareAcceptanceListener;
|
2016-07-20 11:11:01 +03:00
|
|
|
use OCA\Files_Sharing\Middleware\OCSShareAPIMiddleware;
|
2017-07-25 23:25:23 +03:00
|
|
|
use OCA\Files_Sharing\Middleware\ShareInfoMiddleware;
|
2019-11-22 22:52:10 +03:00
|
|
|
use OCA\Files_Sharing\Middleware\SharingCheckMiddleware;
|
2015-03-09 18:20:18 +03:00
|
|
|
use OCA\Files_Sharing\MountProvider;
|
2019-08-22 04:17:17 +03:00
|
|
|
use OCA\Files_Sharing\Notification\Listener;
|
2019-10-28 22:27:59 +03:00
|
|
|
use OCA\Files_Sharing\Notification\Notifier;
|
2019-11-05 17:10:54 +03:00
|
|
|
use OCA\Files\Event\LoadAdditionalScriptsEvent;
|
|
|
|
use OCA\Files\Event\LoadSidebar;
|
2015-03-09 18:20:18 +03:00
|
|
|
use OCP\AppFramework\App;
|
2019-11-05 17:10:54 +03:00
|
|
|
use OCP\EventDispatcher\IEventDispatcher;
|
2020-07-16 11:27:44 +03:00
|
|
|
use OCP\Federation\ICloudIdManager;
|
2019-11-05 17:10:54 +03:00
|
|
|
use OCP\Files\Config\IMountProviderCollection;
|
2020-03-25 10:51:27 +03:00
|
|
|
use OCP\Group\Events\UserAddedEvent;
|
2020-07-16 11:27:44 +03:00
|
|
|
use OCP\IDBConnection;
|
2019-09-06 14:06:21 +03:00
|
|
|
use OCP\IGroup;
|
2016-07-22 17:13:26 +03:00
|
|
|
use OCP\IServerContainer;
|
2019-12-12 23:38:52 +03:00
|
|
|
use OCP\Share\Events\ShareCreatedEvent;
|
2019-11-08 11:29:20 +03:00
|
|
|
use OCP\Util;
|
2020-07-16 11:27:44 +03:00
|
|
|
use Psr\Container\ContainerInterface;
|
2020-10-29 22:15:04 +03:00
|
|
|
use Symfony\Component\EventDispatcher\EventDispatcherInterface;
|
2019-08-22 04:17:17 +03:00
|
|
|
use Symfony\Component\EventDispatcher\GenericEvent;
|
2015-03-09 18:20:18 +03:00
|
|
|
|
|
|
|
class Application extends App {
|
2020-04-10 17:54:27 +03:00
|
|
|
public const APP_ID = 'files_sharing';
|
2019-11-05 17:10:54 +03:00
|
|
|
|
|
|
|
public function __construct(array $urlParams = []) {
|
|
|
|
parent::__construct(self::APP_ID, $urlParams);
|
2015-04-20 17:59:20 +03:00
|
|
|
|
2015-03-09 18:20:18 +03:00
|
|
|
$container = $this->getContainer();
|
2019-11-05 17:10:54 +03:00
|
|
|
|
2016-07-22 17:13:26 +03:00
|
|
|
/** @var IServerContainer $server */
|
2015-04-20 17:59:20 +03:00
|
|
|
$server = $container->getServer();
|
|
|
|
|
2019-11-05 17:10:54 +03:00
|
|
|
/** @var IEventDispatcher $dispatcher */
|
|
|
|
$dispatcher = $container->query(IEventDispatcher::class);
|
2020-10-29 22:15:04 +03:00
|
|
|
$oldDispatcher = $container->getServer()->getEventDispatcher();
|
2019-11-05 17:10:54 +03:00
|
|
|
$mountProviderCollection = $server->getMountProviderCollection();
|
|
|
|
$notifications = $server->getNotificationManager();
|
|
|
|
|
2015-04-20 17:59:20 +03:00
|
|
|
/**
|
|
|
|
* Core class wrappers
|
|
|
|
*/
|
2020-04-15 15:06:23 +03:00
|
|
|
$container->registerService(Manager::class, function (SimpleContainer $c) use ($server) {
|
2015-04-20 17:59:20 +03:00
|
|
|
$user = $server->getUserSession()->getUser();
|
|
|
|
$uid = $user ? $user->getUID() : null;
|
|
|
|
return new \OCA\Files_Sharing\External\Manager(
|
|
|
|
$server->getDatabaseConnection(),
|
|
|
|
\OC\Files\Filesystem::getMountManager(),
|
|
|
|
\OC\Files\Filesystem::getLoader(),
|
2016-08-23 10:10:53 +03:00
|
|
|
$server->getHTTPClientService(),
|
2015-09-01 19:56:09 +03:00
|
|
|
$server->getNotificationManager(),
|
2017-04-05 23:35:59 +03:00
|
|
|
$server->query(\OCP\OCS\IDiscoveryService::class),
|
2018-05-09 18:06:35 +03:00
|
|
|
$server->getCloudFederationProviderManager(),
|
|
|
|
$server->getCloudFederationFactory(),
|
2018-06-29 17:35:04 +03:00
|
|
|
$server->getGroupManager(),
|
|
|
|
$server->getUserManager(),
|
2020-07-13 16:43:42 +03:00
|
|
|
$uid,
|
|
|
|
$server->query(IEventDispatcher::class)
|
2015-04-20 17:59:20 +03:00
|
|
|
);
|
|
|
|
});
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Middleware
|
|
|
|
*/
|
2020-04-15 15:06:23 +03:00
|
|
|
$container->registerMiddleWare(SharingCheckMiddleware::class);
|
2019-10-16 23:53:09 +03:00
|
|
|
$container->registerMiddleWare(OCSShareAPIMiddleware::class);
|
2017-07-25 23:25:23 +03:00
|
|
|
$container->registerMiddleWare(ShareInfoMiddleware::class);
|
2015-03-09 18:20:18 +03:00
|
|
|
|
2020-07-16 11:27:44 +03:00
|
|
|
$container->registerService('ExternalMountProvider', function (ContainerInterface $c) {
|
2015-10-05 17:39:11 +03:00
|
|
|
return new \OCA\Files_Sharing\External\MountProvider(
|
2020-07-16 11:27:44 +03:00
|
|
|
$c->get(IDBConnection::class),
|
2020-04-09 14:53:40 +03:00
|
|
|
function () use ($c) {
|
2020-07-16 11:27:44 +03:00
|
|
|
return $c->get(Manager::class);
|
2017-01-27 14:52:17 +03:00
|
|
|
},
|
2020-07-16 11:27:44 +03:00
|
|
|
$c->get(ICloudIdManager::class)
|
2015-10-05 17:39:11 +03:00
|
|
|
);
|
|
|
|
});
|
|
|
|
|
2019-11-05 17:10:54 +03:00
|
|
|
/**
|
2015-03-21 22:12:55 +03:00
|
|
|
* Register capabilities
|
|
|
|
*/
|
2018-01-26 01:16:13 +03:00
|
|
|
$container->registerCapability(Capabilities::class);
|
2019-10-28 22:27:59 +03:00
|
|
|
|
|
|
|
$notifications->registerNotifierService(Notifier::class);
|
2019-11-05 17:10:54 +03:00
|
|
|
|
|
|
|
$this->registerMountProviders($mountProviderCollection);
|
2020-10-29 22:15:04 +03:00
|
|
|
$this->registerEventsScripts($dispatcher, $oldDispatcher);
|
2019-11-05 17:10:54 +03:00
|
|
|
$this->setupSharingMenus();
|
2019-11-08 11:29:20 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Always add main sharing script
|
|
|
|
*/
|
|
|
|
Util::addScript(self::APP_ID, 'dist/main');
|
2015-03-09 18:20:18 +03:00
|
|
|
}
|
|
|
|
|
2019-11-05 17:10:54 +03:00
|
|
|
protected function registerMountProviders(IMountProviderCollection $mountProviderCollection) {
|
2020-04-15 15:06:23 +03:00
|
|
|
$mountProviderCollection->registerProvider($this->getContainer()->query(MountProvider::class));
|
2015-10-05 17:39:11 +03:00
|
|
|
$mountProviderCollection->registerProvider($this->getContainer()->query('ExternalMountProvider'));
|
2015-03-09 18:20:18 +03:00
|
|
|
}
|
2019-08-22 04:17:17 +03:00
|
|
|
|
2020-10-29 22:15:04 +03:00
|
|
|
protected function registerEventsScripts(IEventDispatcher $dispatcher, EventDispatcherInterface $oldDispatcher) {
|
2019-11-05 17:10:54 +03:00
|
|
|
// sidebar and files scripts
|
|
|
|
$dispatcher->addServiceListener(LoadAdditionalScriptsEvent::class, LoadAdditionalListener::class);
|
2020-07-13 17:05:11 +03:00
|
|
|
$dispatcher->addServiceListener(BeforeTemplateRenderedEvent::class, LegacyBeforeTemplateRenderedListener::class);
|
2019-11-05 17:10:54 +03:00
|
|
|
$dispatcher->addServiceListener(LoadSidebar::class, LoadSidebarListener::class);
|
2020-03-19 11:47:36 +03:00
|
|
|
$dispatcher->addServiceListener(ShareCreatedEvent::class, ShareInteractionListener::class);
|
2020-04-09 14:53:40 +03:00
|
|
|
$dispatcher->addListener('\OCP\Collaboration\Resources::loadAdditionalScripts', function () {
|
2019-11-05 17:10:54 +03:00
|
|
|
\OCP\Util::addScript('files_sharing', 'dist/collaboration');
|
|
|
|
});
|
2019-12-12 23:45:59 +03:00
|
|
|
$dispatcher->addServiceListener(ShareCreatedEvent::class, UserShareAcceptanceListener::class);
|
2020-03-25 10:51:27 +03:00
|
|
|
$dispatcher->addServiceListener(UserAddedEvent::class, UserAddedToGroupListener::class);
|
2019-11-05 17:10:54 +03:00
|
|
|
|
|
|
|
// notifications api to accept incoming user shares
|
2020-10-29 22:15:04 +03:00
|
|
|
$oldDispatcher->addListener('OCP\Share::postShare', function (GenericEvent $event) {
|
2019-08-22 04:17:17 +03:00
|
|
|
/** @var Listener $listener */
|
|
|
|
$listener = $this->getContainer()->query(Listener::class);
|
|
|
|
$listener->shareNotification($event);
|
|
|
|
});
|
2020-10-29 22:15:04 +03:00
|
|
|
$oldDispatcher->addListener(IGroup::class . '::postAddUser', function (GenericEvent $event) {
|
2019-09-06 14:06:21 +03:00
|
|
|
/** @var Listener $listener */
|
|
|
|
$listener = $this->getContainer()->query(Listener::class);
|
|
|
|
$listener->userAddedToGroup($event);
|
|
|
|
});
|
2019-08-22 04:17:17 +03:00
|
|
|
}
|
2019-11-05 17:10:54 +03:00
|
|
|
|
|
|
|
protected function setupSharingMenus() {
|
|
|
|
$config = \OC::$server->getConfig();
|
|
|
|
|
2020-12-03 18:08:41 +03:00
|
|
|
if ($config->getAppValue('core', 'shareapi_enabled', 'yes') !== 'yes' || !class_exists('\OCA\Files\App')) {
|
2019-11-05 17:10:54 +03:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-07-09 10:48:09 +03:00
|
|
|
// show_Quick_Access stored as string
|
|
|
|
\OCA\Files\App::getNavigationManager()->add(function () {
|
|
|
|
$config = \OC::$server->getConfig();
|
|
|
|
$l = \OC::$server->getL10N('files_sharing');
|
2019-12-12 23:38:52 +03:00
|
|
|
|
2020-07-09 10:48:09 +03:00
|
|
|
$sharingSublistArray = [];
|
2019-12-12 23:38:52 +03:00
|
|
|
|
2020-07-09 10:48:09 +03:00
|
|
|
if (\OCP\Util::isSharingDisabledForUser() === false) {
|
|
|
|
$sharingSublistArray[] = [
|
|
|
|
'id' => 'sharingout',
|
2019-11-05 17:10:54 +03:00
|
|
|
'appname' => 'files_sharing',
|
|
|
|
'script' => 'list.php',
|
2020-07-09 10:48:09 +03:00
|
|
|
'order' => 16,
|
|
|
|
'name' => $l->t('Shared with others'),
|
|
|
|
];
|
2019-11-05 17:10:54 +03:00
|
|
|
}
|
2019-12-12 23:38:52 +03:00
|
|
|
|
2020-07-09 10:48:09 +03:00
|
|
|
$sharingSublistArray[] = [
|
|
|
|
'id' => 'sharingin',
|
|
|
|
'appname' => 'files_sharing',
|
|
|
|
'script' => 'list.php',
|
|
|
|
'order' => 15,
|
|
|
|
'name' => $l->t('Shared with you'),
|
|
|
|
];
|
|
|
|
|
|
|
|
if (\OCP\Util::isSharingDisabledForUser() === false) {
|
|
|
|
// Check if sharing by link is enabled
|
|
|
|
if ($config->getAppValue('core', 'shareapi_allow_links', 'yes') === 'yes') {
|
|
|
|
$sharingSublistArray[] = [
|
|
|
|
'id' => 'sharinglinks',
|
|
|
|
'appname' => 'files_sharing',
|
|
|
|
'script' => 'list.php',
|
|
|
|
'order' => 17,
|
|
|
|
'name' => $l->t('Shared by link'),
|
|
|
|
];
|
|
|
|
}
|
|
|
|
}
|
2019-12-12 23:38:52 +03:00
|
|
|
|
2020-07-09 10:48:09 +03:00
|
|
|
$sharingSublistArray[] = [
|
|
|
|
'id' => 'deletedshares',
|
|
|
|
'appname' => 'files_sharing',
|
|
|
|
'script' => 'list.php',
|
|
|
|
'order' => 19,
|
|
|
|
'name' => $l->t('Deleted shares'),
|
|
|
|
];
|
2020-01-07 14:57:57 +03:00
|
|
|
|
2020-07-09 10:48:09 +03:00
|
|
|
$sharingSublistArray[] = [
|
|
|
|
'id' => 'pendingshares',
|
|
|
|
'appname' => 'files_sharing',
|
|
|
|
'script' => 'list.php',
|
|
|
|
'order' => 19,
|
|
|
|
'name' => $l->t('Pending shares'),
|
|
|
|
];
|
2020-01-07 14:57:57 +03:00
|
|
|
|
2020-07-09 10:48:09 +03:00
|
|
|
return [
|
|
|
|
'id' => 'shareoverview',
|
|
|
|
'appname' => 'files_sharing',
|
|
|
|
'script' => 'list.php',
|
|
|
|
'order' => 18,
|
|
|
|
'name' => $l->t('Shares'),
|
|
|
|
'classes' => 'collapsible',
|
|
|
|
'sublist' => $sharingSublistArray,
|
|
|
|
'expandedState' => 'show_sharing_menu'
|
|
|
|
];
|
|
|
|
});
|
2019-11-05 17:10:54 +03:00
|
|
|
}
|
2015-03-09 18:20:18 +03:00
|
|
|
}
|