SecuritySettingsController.php 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. <?php
  2. /**
  3. * @copyright Copyright (c) 2016, ownCloud, Inc.
  4. *
  5. * @author Lukas Reschke <lukas@statuscode.ch>
  6. * @author Morris Jobke <hey@morrisjobke.de>
  7. * @author Roeland Jago Douma <roeland@famdouma.nl>
  8. *
  9. * @license AGPL-3.0
  10. *
  11. * This code is free software: you can redistribute it and/or modify
  12. * it under the terms of the GNU Affero General Public License, version 3,
  13. * as published by the Free Software Foundation.
  14. *
  15. * This program is distributed in the hope that it will be useful,
  16. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  18. * GNU Affero General Public License for more details.
  19. *
  20. * You should have received a copy of the GNU Affero General Public License, version 3,
  21. * along with this program. If not, see <http://www.gnu.org/licenses/>
  22. *
  23. */
  24. namespace OC\Settings\Controller;
  25. use \OCP\AppFramework\Controller;
  26. use OCP\IRequest;
  27. use OCP\IConfig;
  28. /**
  29. * @package OC\Settings\Controller
  30. */
  31. class SecuritySettingsController extends Controller {
  32. /** @var \OCP\IConfig */
  33. private $config;
  34. /**
  35. * @param string $appName
  36. * @param IRequest $request
  37. * @param IConfig $config
  38. */
  39. public function __construct($appName,
  40. IRequest $request,
  41. IConfig $config) {
  42. parent::__construct($appName, $request);
  43. $this->config = $config;
  44. }
  45. /**
  46. * @return array
  47. */
  48. protected function returnSuccess() {
  49. return array(
  50. 'status' => 'success'
  51. );
  52. }
  53. /**
  54. * Add a new trusted domain
  55. * @param string $newTrustedDomain The newly to add trusted domain
  56. * @return array
  57. */
  58. public function trustedDomains($newTrustedDomain) {
  59. $trustedDomains = $this->config->getSystemValue('trusted_domains', []);
  60. $trustedDomains[] = $newTrustedDomain;
  61. $this->config->setSystemValue('trusted_domains', $trustedDomains);
  62. return $this->returnSuccess();
  63. }
  64. }