You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

getConfiguration.php 1.6KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <?php
  2. /**
  3. * @copyright Copyright (c) 2016, ownCloud, Inc.
  4. *
  5. * @author Arthur Schiwon <blizzz@arthur-schiwon.de>
  6. * @author Christoph Wurst <christoph@winzerhof-wurst.at>
  7. * @author Joas Schilling <coding@schilljs.com>
  8. * @author Juan Pablo Villafáñez <jvillafanez@solidgear.es>
  9. * @author Lukas Reschke <lukas@statuscode.ch>
  10. * @author Roeland Jago Douma <roeland@famdouma.nl>
  11. *
  12. * @license AGPL-3.0
  13. *
  14. * This code is free software: you can redistribute it and/or modify
  15. * it under the terms of the GNU Affero General Public License, version 3,
  16. * as published by the Free Software Foundation.
  17. *
  18. * This program is distributed in the hope that it will be useful,
  19. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  20. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  21. * GNU Affero General Public License for more details.
  22. *
  23. * You should have received a copy of the GNU Affero General Public License, version 3,
  24. * along with this program. If not, see <http://www.gnu.org/licenses/>
  25. *
  26. */
  27. // Check user and app status
  28. \OC_JSON::checkAdminUser();
  29. \OC_JSON::checkAppEnabled('user_ldap');
  30. \OC_JSON::callCheck();
  31. $prefix = (string)$_POST['ldap_serverconfig_chooser'];
  32. $ldapWrapper = new OCA\User_LDAP\LDAP();
  33. $connection = new \OCA\User_LDAP\Connection($ldapWrapper, $prefix);
  34. $configuration = $connection->getConfiguration();
  35. if (isset($configuration['ldap_agent_password']) && $configuration['ldap_agent_password'] !== '') {
  36. // hide password
  37. $configuration['ldap_agent_password'] = '**PASSWORD SET**';
  38. }
  39. \OC_JSON::success(['configuration' => $configuration]);