UserConfig.php 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  1. <?php
  2. /**
  3. * @copyright Copyright (c) 2022 John Molakvoæ <skjnldsv@protonmail.com>
  4. *
  5. * @author John Molakvoæ <skjnldsv@protonmail.com>
  6. *
  7. * @license GNU AGPL version 3 or any later version
  8. *
  9. * This program is free software: you can redistribute it and/or modify
  10. * it under the terms of the GNU Affero General Public License as
  11. * published by the Free Software Foundation, either version 3 of the
  12. * License, or (at your option) any later version.
  13. *
  14. * This program is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. * GNU Affero General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU Affero General Public License
  20. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  21. *
  22. */
  23. namespace OCA\Files\Service;
  24. use OCA\Files\AppInfo\Application;
  25. use OCP\IConfig;
  26. use OCP\IUser;
  27. use OCP\IUserSession;
  28. class UserConfig {
  29. const ALLOWED_CONFIGS = [
  30. [
  31. // Whether to crop the files previews or not in the files list
  32. 'key' => 'crop_image_previews',
  33. 'default' => true,
  34. 'allowed' => [true, false],
  35. ],
  36. [
  37. // Whether to show the hidden files or not in the files list
  38. 'key' => 'show_hidden',
  39. 'default' => false,
  40. 'allowed' => [true, false],
  41. ],
  42. [
  43. // Whether to sort favorites first in the list or not
  44. 'key' => 'sort_favorites_first',
  45. 'default' => true,
  46. 'allowed' => [true, false],
  47. ],
  48. ];
  49. protected IConfig $config;
  50. protected ?IUser $user = null;
  51. public function __construct(IConfig $config, IUserSession $userSession) {
  52. $this->config = $config;
  53. $this->user = $userSession->getUser();
  54. }
  55. /**
  56. * Get the list of all allowed user config keys
  57. * @return string[]
  58. */
  59. public function getAllowedConfigKeys(): array {
  60. return array_map(function($config) {
  61. return $config['key'];
  62. }, self::ALLOWED_CONFIGS);
  63. }
  64. /**
  65. * Get the list of allowed config values for a given key
  66. *
  67. * @param string $key a valid config key
  68. * @return array
  69. */
  70. private function getAllowedConfigValues(string $key): array {
  71. foreach (self::ALLOWED_CONFIGS as $config) {
  72. if ($config['key'] === $key) {
  73. return $config['allowed'];
  74. }
  75. }
  76. return [];
  77. }
  78. /**
  79. * Get the default config value for a given key
  80. *
  81. * @param string $key a valid config key
  82. * @return string|bool
  83. */
  84. private function getDefaultConfigValue(string $key) {
  85. foreach (self::ALLOWED_CONFIGS as $config) {
  86. if ($config['key'] === $key) {
  87. return $config['default'];
  88. }
  89. }
  90. return '';
  91. }
  92. /**
  93. * Set a user config
  94. *
  95. * @param string $key
  96. * @param string|bool $value
  97. * @throws \Exception
  98. * @throws \InvalidArgumentException
  99. */
  100. public function setConfig(string $key, $value): void {
  101. if ($this->user === null) {
  102. throw new \Exception('No user logged in');
  103. }
  104. if (!in_array($key, $this->getAllowedConfigKeys())) {
  105. throw new \InvalidArgumentException('Unknown config key');
  106. }
  107. if (!in_array($value, $this->getAllowedConfigValues($key))) {
  108. throw new \InvalidArgumentException('Invalid config value');
  109. }
  110. if (is_bool($value)) {
  111. $value = $value ? '1' : '0';
  112. }
  113. $this->config->setUserValue($this->user->getUID(), Application::APP_ID, $key, $value);
  114. }
  115. /**
  116. * Get the current user configs array
  117. *
  118. * @return array
  119. */
  120. public function getConfigs(): array {
  121. if ($this->user === null) {
  122. throw new \Exception('No user logged in');
  123. }
  124. $userId = $this->user->getUID();
  125. $userConfigs = array_map(function(string $key) use ($userId) {
  126. $value = $this->config->getUserValue($userId, Application::APP_ID, $key, $this->getDefaultConfigValue($key));
  127. // If the default is expected to be a boolean, we need to cast the value
  128. if (is_bool($this->getDefaultConfigValue($key)) && is_string($value)) {
  129. return $value === '1';
  130. }
  131. return $value;
  132. }, $this->getAllowedConfigKeys());
  133. return array_combine($this->getAllowedConfigKeys(), $userConfigs);
  134. }
  135. }