-
Notifications
You must be signed in to change notification settings - Fork 119
Expand file tree
/
Copy pathConfigService.php
More file actions
60 lines (48 loc) · 1.66 KB
/
ConfigService.php
File metadata and controls
60 lines (48 loc) · 1.66 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<?php
/**
* SPDX-FileCopyrightText: 2022 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
namespace OCA\Text\Service;
use OCA\Text\AppInfo\Application;
use OCP\Config\IUserConfig;
use OCP\IAppConfig;
use OCP\IConfig;
class ConfigService {
public function __construct(
private IAppConfig $appConfig,
private IUserConfig $userConfig,
private IConfig $config,
) {
}
public function getDefaultFileExtension(): string {
return $this->appConfig->getValueString(Application::APP_NAME, 'default_file_extension', 'md');
}
public function isOpenReadOnlyEnabled(): bool {
return $this->appConfig->getValueBool(Application::APP_NAME, 'open_read_only_enabled');
}
public function isRichEditingEnabled(): bool {
return $this->appConfig->getValueBool(Application::APP_NAME, 'rich_editing_enabled', true);
}
public function isRichWorkspaceAvailable(): bool {
if ($this->config->getSystemValueBool('enable_non-accessible_features', true) === false) {
return false;
}
return $this->appConfig->getValueBool(Application::APP_NAME, 'workspace_available', true);
}
public function isRichWorkspaceEnabledForUser(?string $userId): bool {
if ($userId === null) {
return true;
}
return $this->userConfig->getValueBool($userId, Application::APP_NAME, 'workspace_enabled', true);
}
public function isNotifyPushSyncEnabled(): bool {
return $this->appConfig->getValueBool(Application::APP_NAME, 'notify_push', true);
}
public function isFullWidthEditor(?string $userId): bool {
if ($userId === null) {
return false;
}
return $this->userConfig->getValueBool($userId, Application::APP_NAME, 'is_full_width_editor');
}
}