UserConfig.php 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  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. // Whether to show the files list in grid view or not
  50. 'key' => 'grid_view',
  51. 'default' => false,
  52. 'allowed' => [true, false],
  53. ],
  54. ];
  55. protected IConfig $config;
  56. protected ?IUser $user = null;
  57. public function __construct(IConfig $config, IUserSession $userSession) {
  58. $this->config = $config;
  59. $this->user = $userSession->getUser();
  60. }
  61. /**
  62. * Get the list of all allowed user config keys
  63. * @return string[]
  64. */
  65. public function getAllowedConfigKeys(): array {
  66. return array_map(function($config) {
  67. return $config['key'];
  68. }, self::ALLOWED_CONFIGS);
  69. }
  70. /**
  71. * Get the list of allowed config values for a given key
  72. *
  73. * @param string $key a valid config key
  74. * @return array
  75. */
  76. private function getAllowedConfigValues(string $key): array {
  77. foreach (self::ALLOWED_CONFIGS as $config) {
  78. if ($config['key'] === $key) {
  79. return $config['allowed'];
  80. }
  81. }
  82. return [];
  83. }
  84. /**
  85. * Get the default config value for a given key
  86. *
  87. * @param string $key a valid config key
  88. * @return string|bool
  89. */
  90. private function getDefaultConfigValue(string $key) {
  91. foreach (self::ALLOWED_CONFIGS as $config) {
  92. if ($config['key'] === $key) {
  93. return $config['default'];
  94. }
  95. }
  96. return '';
  97. }
  98. /**
  99. * Set a user config
  100. *
  101. * @param string $key
  102. * @param string|bool $value
  103. * @throws \Exception
  104. * @throws \InvalidArgumentException
  105. */
  106. public function setConfig(string $key, $value): void {
  107. if ($this->user === null) {
  108. throw new \Exception('No user logged in');
  109. }
  110. if (!in_array($key, $this->getAllowedConfigKeys())) {
  111. throw new \InvalidArgumentException('Unknown config key');
  112. }
  113. if (!in_array($value, $this->getAllowedConfigValues($key))) {
  114. throw new \InvalidArgumentException('Invalid config value');
  115. }
  116. if (is_bool($value)) {
  117. $value = $value ? '1' : '0';
  118. }
  119. $this->config->setUserValue($this->user->getUID(), Application::APP_ID, $key, $value);
  120. }
  121. /**
  122. * Get the current user configs array
  123. *
  124. * @return array
  125. */
  126. public function getConfigs(): array {
  127. if ($this->user === null) {
  128. throw new \Exception('No user logged in');
  129. }
  130. $userId = $this->user->getUID();
  131. $userConfigs = array_map(function(string $key) use ($userId) {
  132. $value = $this->config->getUserValue($userId, Application::APP_ID, $key, $this->getDefaultConfigValue($key));
  133. // If the default is expected to be a boolean, we need to cast the value
  134. if (is_bool($this->getDefaultConfigValue($key)) && is_string($value)) {
  135. return $value === '1';
  136. }
  137. return $value;
  138. }, $this->getAllowedConfigKeys());
  139. return array_combine($this->getAllowedConfigKeys(), $userConfigs);
  140. }
  141. }