2015-02-07 10:07:53 +03:00
|
|
|
<?php
|
|
|
|
/**
|
2016-01-12 17:02:16 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
2016-07-21 17:49:16 +03:00
|
|
|
*
|
2017-11-06 17:56:42 +03:00
|
|
|
* @author Bjoern Schiessle <bjoern@schiessle.org>
|
2016-07-21 17:49:16 +03:00
|
|
|
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
|
|
|
*
|
2015-02-26 10:35:41 +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/>
|
|
|
|
*
|
2015-02-07 10:07:53 +03:00
|
|
|
*/
|
|
|
|
namespace OCA\Files_Sharing;
|
|
|
|
|
2015-03-21 22:12:55 +03:00
|
|
|
use OCP\Capabilities\ICapability;
|
2017-12-01 13:35:01 +03:00
|
|
|
use OCP\Constants;
|
2015-02-07 10:07:53 +03:00
|
|
|
use \OCP\IConfig;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Class Capabilities
|
|
|
|
*
|
|
|
|
* @package OCA\Files_Sharing
|
|
|
|
*/
|
2015-03-21 22:12:55 +03:00
|
|
|
class Capabilities implements ICapability {
|
2015-02-07 10:07:53 +03:00
|
|
|
|
|
|
|
/** @var IConfig */
|
|
|
|
private $config;
|
|
|
|
|
2017-04-10 12:00:19 +03:00
|
|
|
public function __construct(IConfig $config) {
|
2015-02-07 10:07:53 +03:00
|
|
|
$this->config = $config;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2015-03-21 22:12:55 +03:00
|
|
|
* Return this classes capabilities
|
|
|
|
*
|
|
|
|
* @return array
|
2015-02-07 10:07:53 +03:00
|
|
|
*/
|
2015-03-21 22:12:55 +03:00
|
|
|
public function getCapabilities() {
|
2015-02-26 10:39:55 +03:00
|
|
|
$res = [];
|
2015-02-07 10:07:53 +03:00
|
|
|
|
2015-09-25 12:24:23 +03:00
|
|
|
if ($this->config->getAppValue('core', 'shareapi_enabled', 'yes') !== 'yes') {
|
|
|
|
$res['api_enabled'] = false;
|
|
|
|
$res['public'] = ['enabled' => false];
|
|
|
|
$res['user'] = ['send_mail' => false];
|
|
|
|
$res['resharing'] = false;
|
|
|
|
} else {
|
|
|
|
$res['api_enabled'] = true;
|
2015-02-07 10:07:53 +03:00
|
|
|
|
2015-09-25 12:24:23 +03:00
|
|
|
$public = [];
|
|
|
|
$public['enabled'] = $this->config->getAppValue('core', 'shareapi_allow_links', 'yes') === 'yes';
|
|
|
|
if ($public['enabled']) {
|
|
|
|
$public['password'] = [];
|
|
|
|
$public['password']['enforced'] = ($this->config->getAppValue('core', 'shareapi_enforce_links_password', 'no') === 'yes');
|
2015-02-07 10:07:53 +03:00
|
|
|
|
2015-09-25 12:24:23 +03:00
|
|
|
$public['expire_date'] = [];
|
2018-11-26 16:44:59 +03:00
|
|
|
$public['multiple_links'] = true;
|
2015-09-25 12:24:23 +03:00
|
|
|
$public['expire_date']['enabled'] = $this->config->getAppValue('core', 'shareapi_default_expire_date', 'no') === 'yes';
|
|
|
|
if ($public['expire_date']['enabled']) {
|
|
|
|
$public['expire_date']['days'] = $this->config->getAppValue('core', 'shareapi_expire_after_n_days', '7');
|
|
|
|
$public['expire_date']['enforced'] = $this->config->getAppValue('core', 'shareapi_enforce_expire_date', 'no') === 'yes';
|
|
|
|
}
|
2015-02-07 10:07:53 +03:00
|
|
|
|
2015-09-25 12:24:23 +03:00
|
|
|
$public['send_mail'] = $this->config->getAppValue('core', 'shareapi_allow_public_notification', 'no') === 'yes';
|
|
|
|
$public['upload'] = $this->config->getAppValue('core', 'shareapi_allow_public_upload', 'yes') === 'yes';
|
2016-08-13 15:00:44 +03:00
|
|
|
$public['upload_files_drop'] = $public['upload'];
|
2015-09-25 12:24:23 +03:00
|
|
|
}
|
2017-07-24 08:44:09 +03:00
|
|
|
$res['public'] = $public;
|
2015-02-07 10:07:53 +03:00
|
|
|
|
2015-09-25 12:24:23 +03:00
|
|
|
$res['resharing'] = $this->config->getAppValue('core', 'shareapi_allow_resharing', 'yes') === 'yes';
|
2016-03-31 10:27:38 +03:00
|
|
|
|
2016-11-02 13:37:25 +03:00
|
|
|
$res['user']['send_mail'] = false;
|
2017-03-30 17:29:34 +03:00
|
|
|
$res['user']['expire_date']['enabled'] = true;
|
2016-11-02 13:37:25 +03:00
|
|
|
|
2017-03-30 17:29:34 +03:00
|
|
|
// deprecated in favour of 'group', but we need to keep it for now
|
|
|
|
// in order to stay compatible with older clients
|
2016-03-31 10:27:38 +03:00
|
|
|
$res['group_sharing'] = $this->config->getAppValue('core', 'shareapi_allow_group_sharing', 'yes') === 'yes';
|
2017-03-30 17:29:34 +03:00
|
|
|
|
|
|
|
$res['group'] = [];
|
|
|
|
$res['group']['enabled'] = $this->config->getAppValue('core', 'shareapi_allow_group_sharing', 'yes') === 'yes';
|
|
|
|
$res['group']['expire_date']['enabled'] = true;
|
2017-12-01 13:35:01 +03:00
|
|
|
$res['default_permissions'] = (int)$this->config->getAppValue('core', 'shareapi_default_permissions', Constants::PERMISSION_ALL);
|
2015-09-25 12:24:23 +03:00
|
|
|
}
|
2015-09-12 17:25:23 +03:00
|
|
|
|
|
|
|
//Federated sharing
|
|
|
|
$res['federation'] = [
|
|
|
|
'outgoing' => $this->config->getAppValue('files_sharing', 'outgoing_server2server_share_enabled', 'yes') === 'yes',
|
2017-03-30 17:29:34 +03:00
|
|
|
'incoming' => $this->config->getAppValue('files_sharing', 'incoming_server2server_share_enabled', 'yes') === 'yes',
|
|
|
|
'expire_date' => ['enabled' => true]
|
2015-09-12 17:25:23 +03:00
|
|
|
];
|
|
|
|
|
2019-11-28 12:50:48 +03:00
|
|
|
// Sharee searches
|
|
|
|
$res['sharee'] = [
|
|
|
|
'query_lookup_default' => $this->config->getSystemValueBool('gs.enabled', false)
|
|
|
|
];
|
|
|
|
|
2015-03-21 22:12:55 +03:00
|
|
|
return [
|
|
|
|
'files_sharing' => $res,
|
|
|
|
];
|
2015-02-07 10:07:53 +03:00
|
|
|
}
|
|
|
|
}
|