setlanguage.php 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <?php
  2. /**
  3. * @copyright Copyright (c) 2016, ownCloud, Inc.
  4. *
  5. * @author Bart Visscher <bartv@thisnet.nl>
  6. * @author Christopher Schäpers <kondou@ts.unde.re>
  7. * @author Joas Schilling <coding@schilljs.com>
  8. * @author Lukas Reschke <lukas@statuscode.ch>
  9. * @author Morris Jobke <hey@morrisjobke.de>
  10. * @author Robin Appelman <robin@icewind.nl>
  11. * @author Thomas Müller <thomas.mueller@tmit.eu>
  12. *
  13. * @license AGPL-3.0
  14. *
  15. * This code is free software: you can redistribute it and/or modify
  16. * it under the terms of the GNU Affero General Public License, version 3,
  17. * as published by the Free Software Foundation.
  18. *
  19. * This program is distributed in the hope that it will be useful,
  20. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  21. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  22. * GNU Affero General Public License for more details.
  23. *
  24. * You should have received a copy of the GNU Affero General Public License, version 3,
  25. * along with this program. If not, see <http://www.gnu.org/licenses/>
  26. *
  27. */
  28. $l = \OC::$server->getL10N('settings');
  29. OC_JSON::checkLoggedIn();
  30. OCP\JSON::callCheck();
  31. // Get data
  32. if( isset( $_POST['lang'] ) ) {
  33. $languageCodes = \OC::$server->getL10NFactory()->findAvailableLanguages();
  34. $lang = (string)$_POST['lang'];
  35. if(array_search($lang, $languageCodes) or $lang === 'en') {
  36. \OC::$server->getConfig()->setUserValue( OC_User::getUser(), 'core', 'lang', $lang );
  37. OC_JSON::success(array("data" => array( "message" => $l->t("Language changed") )));
  38. }else{
  39. OC_JSON::error(array("data" => array( "message" => $l->t("Invalid request") )));
  40. }
  41. }else{
  42. OC_JSON::error(array("data" => array( "message" => $l->t("Invalid request") )));
  43. }