2015-03-21 22:12:55 +03:00
|
|
|
<?php
|
|
|
|
/**
|
2016-07-21 17:49:16 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
|
|
|
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
2015-07-30 22:31:18 +03:00
|
|
|
* @author Victor Dubiniuk <dubiniuk@owncloud.com>
|
2015-03-21 22:12: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,
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace OCA\Files_Trashbin\AppInfo;
|
|
|
|
|
2019-08-06 14:40:52 +03:00
|
|
|
use OCA\DAV\CalDAV\Proxy\ProxyMapper;
|
2018-04-16 15:14:31 +03:00
|
|
|
use OCA\DAV\Connector\Sabre\Principal;
|
2019-11-22 22:52:10 +03:00
|
|
|
use OCA\Files_Trashbin\Capabilities;
|
|
|
|
use OCA\Files_Trashbin\Expiration;
|
2018-09-10 15:40:35 +03:00
|
|
|
use OCA\Files_Trashbin\Trash\ITrashManager;
|
|
|
|
use OCA\Files_Trashbin\Trash\TrashManager;
|
2015-03-21 22:12:55 +03:00
|
|
|
use OCP\AppFramework\App;
|
2018-09-10 15:40:35 +03:00
|
|
|
use OCP\AppFramework\IAppContainer;
|
2018-01-26 01:16:13 +03:00
|
|
|
use OCP\AppFramework\Utility\ITimeFactory;
|
2015-03-21 22:12:55 +03:00
|
|
|
|
|
|
|
class Application extends App {
|
2015-07-30 22:31:18 +03:00
|
|
|
public function __construct (array $urlParams = []) {
|
2015-03-21 22:12:55 +03:00
|
|
|
parent::__construct('files_trashbin', $urlParams);
|
|
|
|
|
|
|
|
$container = $this->getContainer();
|
|
|
|
/*
|
|
|
|
* Register capabilities
|
|
|
|
*/
|
2018-01-26 01:16:13 +03:00
|
|
|
$container->registerCapability(Capabilities::class);
|
2015-07-30 22:31:18 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Register expiration
|
|
|
|
*/
|
2019-11-04 18:54:22 +03:00
|
|
|
$container->registerAlias('Expiration', Expiration::class);
|
2018-04-16 15:14:31 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Register $principalBackend for the DAV collection
|
|
|
|
*/
|
|
|
|
$container->registerService('principalBackend', function () {
|
|
|
|
return new Principal(
|
|
|
|
\OC::$server->getUserManager(),
|
|
|
|
\OC::$server->getGroupManager(),
|
|
|
|
\OC::$server->getShareManager(),
|
2018-05-22 16:09:21 +03:00
|
|
|
\OC::$server->getUserSession(),
|
2019-08-06 14:40:52 +03:00
|
|
|
\OC::$server->getAppManager(),
|
|
|
|
\OC::$server->query(ProxyMapper::class)
|
2018-04-16 15:14:31 +03:00
|
|
|
);
|
|
|
|
});
|
2018-09-10 15:40:35 +03:00
|
|
|
|
|
|
|
$container->registerService(ITrashManager::class, function(IAppContainer $c) {
|
|
|
|
return new TrashManager();
|
|
|
|
});
|
|
|
|
|
|
|
|
$this->registerTrashBackends();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function registerTrashBackends() {
|
|
|
|
$server = $this->getContainer()->getServer();
|
|
|
|
$logger = $server->getLogger();
|
|
|
|
$appManager = $server->getAppManager();
|
|
|
|
/** @var ITrashManager $trashManager */
|
|
|
|
$trashManager = $this->getContainer()->getServer()->query(ITrashManager::class);
|
|
|
|
foreach($appManager->getInstalledApps() as $app) {
|
|
|
|
$appInfo = $appManager->getAppInfo($app);
|
|
|
|
if (isset($appInfo['trash'])) {
|
|
|
|
$backends = $appInfo['trash'];
|
|
|
|
foreach($backends as $backend) {
|
|
|
|
$class = $backend['@value'];
|
|
|
|
$for = $backend['@attributes']['for'];
|
|
|
|
|
|
|
|
try {
|
|
|
|
$backendObject = $server->query($class);
|
|
|
|
$trashManager->registerBackend($for, $backendObject);
|
|
|
|
} catch (\Exception $e) {
|
|
|
|
$logger->logException($e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-03-21 22:12:55 +03:00
|
|
|
}
|
|
|
|
}
|