UserConfig.php 3.8 KB

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