2013-02-10 17:42:23 +04:00
|
|
|
<?php
|
|
|
|
/**
|
2016-07-21 17:49:16 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Christopher Schäpers <kondou@ts.unde.re>
|
2016-07-21 17:49:16 +03:00
|
|
|
* @author Joas Schilling <coding@schilljs.com>
|
2019-12-03 21:57:53 +03:00
|
|
|
* @author Julius Härtl <jus@bitgrid.net>
|
2016-07-21 17:49:16 +03:00
|
|
|
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Tom Needham <tom@owncloud.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,
|
2019-12-03 21:57:53 +03:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
2015-03-26 13:44:34 +03:00
|
|
|
*
|
2013-02-10 17:42:23 +04:00
|
|
|
*/
|
|
|
|
|
2015-03-21 22:12:55 +03:00
|
|
|
namespace OCA\Files;
|
|
|
|
|
2019-11-27 16:36:07 +03:00
|
|
|
use OCA\Files\Service\DirectEditingService;
|
2015-03-21 22:12:55 +03:00
|
|
|
use OCP\Capabilities\ICapability;
|
2016-02-24 13:00:20 +03:00
|
|
|
use OCP\IConfig;
|
2019-11-27 16:36:07 +03:00
|
|
|
use OCP\IURLGenerator;
|
2015-03-21 22:12:55 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Class Capabilities
|
|
|
|
*
|
|
|
|
* @package OCA\Files
|
|
|
|
*/
|
|
|
|
class Capabilities implements ICapability {
|
2019-11-25 16:09:38 +03:00
|
|
|
|
2016-02-24 13:00:20 +03:00
|
|
|
/** @var IConfig */
|
|
|
|
protected $config;
|
|
|
|
|
2019-11-27 16:36:07 +03:00
|
|
|
/** @var DirectEditingService */
|
|
|
|
protected $directEditingService;
|
2019-11-25 16:09:38 +03:00
|
|
|
|
2019-11-27 16:36:07 +03:00
|
|
|
/** @var IURLGenerator */
|
|
|
|
private $urlGenerator;
|
2019-11-25 16:09:38 +03:00
|
|
|
|
2016-02-24 13:00:20 +03:00
|
|
|
/**
|
|
|
|
* Capabilities constructor.
|
|
|
|
*
|
|
|
|
* @param IConfig $config
|
|
|
|
*/
|
2019-11-27 16:36:07 +03:00
|
|
|
public function __construct(IConfig $config, DirectEditingService $directEditingService, IURLGenerator $urlGenerator) {
|
2016-02-24 13:00:20 +03:00
|
|
|
$this->config = $config;
|
2019-11-27 16:36:07 +03:00
|
|
|
$this->directEditingService = $directEditingService;
|
|
|
|
$this->urlGenerator = $urlGenerator;
|
2016-02-24 13:00:20 +03:00
|
|
|
}
|
2015-03-21 22:12:55 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Return this classes capabilities
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function getCapabilities() {
|
|
|
|
return [
|
|
|
|
'files' => [
|
|
|
|
'bigfilechunking' => true,
|
2016-02-24 13:00:20 +03:00
|
|
|
'blacklisted_files' => $this->config->getSystemValue('blacklisted_files', ['.htaccess']),
|
2019-11-27 16:36:07 +03:00
|
|
|
'directEditing' => [
|
|
|
|
'url' => $this->urlGenerator->linkToOCSRouteAbsolute('files.DirectEditing.info'),
|
|
|
|
'etag' => $this->directEditingService->getDirectEditingETag()
|
|
|
|
]
|
2015-03-21 22:12:55 +03:00
|
|
|
],
|
|
|
|
];
|
2013-02-10 17:42:23 +04:00
|
|
|
}
|
2013-08-18 13:02:08 +04:00
|
|
|
}
|