ConfigController.php 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. <?php
  2. /**
  3. * @copyright Copyright (c) 2016, ownCloud, Inc.
  4. *
  5. * @author Joas Schilling <coding@schilljs.com>
  6. * @author Roeland Jago Douma <roeland@famdouma.nl>
  7. *
  8. * @license AGPL-3.0
  9. *
  10. * This code is free software: you can redistribute it and/or modify
  11. * it under the terms of the GNU Affero General Public License, version 3,
  12. * as published by the Free Software Foundation.
  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, version 3,
  20. * along with this program. If not, see <http://www.gnu.org/licenses/>
  21. *
  22. */
  23. namespace OCA\Testing\Controller;
  24. use OCP\AppFramework\Http\DataResponse;
  25. use OCP\AppFramework\OCSController;
  26. use OCP\IConfig;
  27. use OCP\IRequest;
  28. class ConfigController extends OCSController {
  29. /** @var IConfig */
  30. private $config;
  31. /**
  32. * @param string $appName
  33. * @param IRequest $request
  34. * @param IConfig $config
  35. */
  36. public function __construct($appName,
  37. IRequest $request,
  38. IConfig $config) {
  39. parent::__construct($appName, $request);
  40. $this->config = $config;
  41. }
  42. /**
  43. * @param string $appid
  44. * @param string $configkey
  45. * @param string $value
  46. * @return DataResponse
  47. */
  48. public function setAppValue($appid, $configkey, $value) {
  49. $this->config->setAppValue($appid, $configkey, $value);
  50. return new DataResponse();
  51. }
  52. /**
  53. * @param string $appid
  54. * @param string $configkey
  55. * @return DataResponse
  56. */
  57. public function deleteAppValue($appid, $configkey) {
  58. $this->config->deleteAppValue($appid, $configkey);
  59. return new DataResponse();
  60. }
  61. }