123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118 |
- <?php
- /**
- * SPDX-FileCopyrightText: 2016 Nextcloud GmbH and Nextcloud contributors
- * SPDX-License-Identifier: AGPL-3.0-or-later
- */
- namespace OCA\Settings\Settings\Admin;
- use OCP\App\IAppManager;
- use OCP\AppFramework\Http\TemplateResponse;
- use OCP\AppFramework\Services\IInitialState;
- use OCP\Constants;
- use OCP\IConfig;
- use OCP\IL10N;
- use OCP\IURLGenerator;
- use OCP\Settings\IDelegatedSettings;
- use OCP\Share\IManager;
- use OCP\Util;
- class Sharing implements IDelegatedSettings {
- public function __construct(
- private IConfig $config,
- private IL10N $l,
- private IManager $shareManager,
- private IAppManager $appManager,
- private IURLGenerator $urlGenerator,
- private IInitialState $initialState,
- private string $appName,
- ) {
- }
- /**
- * @return TemplateResponse
- */
- public function getForm() {
- $excludedGroups = $this->config->getAppValue('core', 'shareapi_exclude_groups_list', '');
- $linksExcludedGroups = $this->config->getAppValue('core', 'shareapi_allow_links_exclude_groups', '');
- $excludedPasswordGroups = $this->config->getAppValue('core', 'shareapi_enforce_links_password_excluded_groups', '');
- $onlyShareWithGroupMembersExcludeGroupList = $this->config->getAppValue('core', 'shareapi_only_share_with_group_members_exclude_group_list', '');
- $parameters = [
- // Built-In Sharing
- 'enabled' => $this->getHumanBooleanConfig('core', 'shareapi_enabled', true),
- 'allowGroupSharing' => $this->getHumanBooleanConfig('core', 'shareapi_allow_group_sharing', true),
- 'allowLinks' => $this->getHumanBooleanConfig('core', 'shareapi_allow_links', true),
- 'allowLinksExcludeGroups' => json_decode($linksExcludedGroups, true) ?? [],
- 'allowPublicUpload' => $this->getHumanBooleanConfig('core', 'shareapi_allow_public_upload', true),
- 'allowResharing' => $this->getHumanBooleanConfig('core', 'shareapi_allow_resharing', true),
- 'allowShareDialogUserEnumeration' => $this->getHumanBooleanConfig('core', 'shareapi_allow_share_dialog_user_enumeration', true),
- 'restrictUserEnumerationToGroup' => $this->getHumanBooleanConfig('core', 'shareapi_restrict_user_enumeration_to_group'),
- 'restrictUserEnumerationToPhone' => $this->getHumanBooleanConfig('core', 'shareapi_restrict_user_enumeration_to_phone'),
- 'restrictUserEnumerationFullMatch' => $this->getHumanBooleanConfig('core', 'shareapi_restrict_user_enumeration_full_match', true),
- 'restrictUserEnumerationFullMatchUserId' => $this->getHumanBooleanConfig('core', 'shareapi_restrict_user_enumeration_full_match_userid', true),
- 'restrictUserEnumerationFullMatchEmail' => $this->getHumanBooleanConfig('core', 'shareapi_restrict_user_enumeration_full_match_email', true),
- 'restrictUserEnumerationFullMatchIgnoreSecondDN' => $this->getHumanBooleanConfig('core', 'shareapi_restrict_user_enumeration_full_match_ignore_second_dn'),
- 'enforceLinksPassword' => Util::isPublicLinkPasswordRequired(false),
- 'enforceLinksPasswordExcludedGroups' => json_decode($excludedPasswordGroups) ?? [],
- 'enforceLinksPasswordExcludedGroupsEnabled' => $this->config->getSystemValueBool('sharing.allow_disabled_password_enforcement_groups', false),
- 'onlyShareWithGroupMembers' => $this->shareManager->shareWithGroupMembersOnly(),
- 'onlyShareWithGroupMembersExcludeGroupList' => json_decode($onlyShareWithGroupMembersExcludeGroupList) ?? [],
- 'defaultExpireDate' => $this->getHumanBooleanConfig('core', 'shareapi_default_expire_date'),
- 'expireAfterNDays' => $this->config->getAppValue('core', 'shareapi_expire_after_n_days', '7'),
- 'enforceExpireDate' => $this->getHumanBooleanConfig('core', 'shareapi_enforce_expire_date'),
- 'excludeGroups' => $this->config->getAppValue('core', 'shareapi_exclude_groups', 'no'),
- 'excludeGroupsList' => json_decode($excludedGroups, true) ?? [],
- 'publicShareDisclaimerText' => $this->config->getAppValue('core', 'shareapi_public_link_disclaimertext'),
- 'enableLinkPasswordByDefault' => $this->getHumanBooleanConfig('core', 'shareapi_enable_link_password_by_default'),
- 'defaultPermissions' => (int)$this->config->getAppValue('core', 'shareapi_default_permissions', (string)Constants::PERMISSION_ALL),
- 'defaultInternalExpireDate' => $this->getHumanBooleanConfig('core', 'shareapi_default_internal_expire_date'),
- 'internalExpireAfterNDays' => $this->config->getAppValue('core', 'shareapi_internal_expire_after_n_days', '7'),
- 'enforceInternalExpireDate' => $this->getHumanBooleanConfig('core', 'shareapi_enforce_internal_expire_date'),
- 'defaultRemoteExpireDate' => $this->getHumanBooleanConfig('core', 'shareapi_default_remote_expire_date'),
- 'remoteExpireAfterNDays' => $this->config->getAppValue('core', 'shareapi_remote_expire_after_n_days', '7'),
- 'enforceRemoteExpireDate' => $this->getHumanBooleanConfig('core', 'shareapi_enforce_remote_expire_date'),
- ];
- $this->initialState->provideInitialState('sharingAppEnabled', $this->appManager->isEnabledForUser('files_sharing'));
- $this->initialState->provideInitialState('sharingDocumentation', $this->urlGenerator->linkToDocs('admin-sharing'));
- $this->initialState->provideInitialState('sharingSettings', $parameters);
- Util::addScript($this->appName, 'vue-settings-admin-sharing');
- return new TemplateResponse($this->appName, 'settings/admin/sharing', [], '');
- }
- /**
- * Helper function to retrive boolean values from human readable strings ('yes' / 'no')
- */
- private function getHumanBooleanConfig(string $app, string $key, bool $default = false): bool {
- return $this->config->getAppValue($app, $key, $default ? 'yes' : 'no') === 'yes';
- }
- /**
- * @return string the section ID, e.g. 'sharing'
- */
- public function getSection() {
- return 'sharing';
- }
- /**
- * @return int whether the form should be rather on the top or bottom of
- * the admin section. The forms are arranged in ascending order of the
- * priority values. It is required to return a value between 0 and 100.
- *
- * E.g.: 70
- */
- public function getPriority() {
- return 0;
- }
- public function getAuthorizedAppConfig(): array {
- return [
- 'core' => ['/shareapi_.*/'],
- ];
- }
- public function getName(): ?string {
- return null;
- }
- }
|