2013-01-20 21:02:44 +04:00
|
|
|
<?php
|
|
|
|
/**
|
2016-07-21 17:49:16 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
2016-05-26 20:56:05 +03:00
|
|
|
* @author Arthur Schiwon <blizzz@arthur-schiwon.de>
|
2020-03-31 11:49:10 +03:00
|
|
|
* @author Christoph Wurst <christoph@winzerhof-wurst.at>
|
2016-07-21 17:49:16 +03:00
|
|
|
* @author Joas Schilling <coding@schilljs.com>
|
2016-05-26 20:56:05 +03:00
|
|
|
* @author Lukas Reschke <lukas@statuscode.ch>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
2019-12-03 21:57:53 +03:00
|
|
|
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
2013-01-20 21:02:44 +04:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* @license AGPL-3.0
|
2013-01-20 21:02:44 +04:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* This code is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License, version 3,
|
|
|
|
* as published by the Free Software Foundation.
|
2013-01-20 21:02:44 +04:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* This program is distributed in the hope that it will be useful,
|
2013-01-20 21:02:44 +04:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2015-03-26 13:44:34 +03:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
2013-01-20 21:02:44 +04:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* You should have received a copy of the GNU Affero General Public License, version 3,
|
2019-12-03 21:57:53 +03:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
2013-01-20 21:02:44 +04:00
|
|
|
*
|
|
|
|
*/
|
2015-02-26 13:37:37 +03:00
|
|
|
|
2013-01-20 21:02:44 +04:00
|
|
|
// Check user and app status
|
2018-03-22 15:19:29 +03:00
|
|
|
\OC_JSON::checkAdminUser();
|
|
|
|
\OC_JSON::checkAppEnabled('user_ldap');
|
|
|
|
\OC_JSON::callCheck();
|
2013-01-20 21:02:44 +04:00
|
|
|
|
2015-02-13 15:33:20 +03:00
|
|
|
$prefix = (string)$_POST['ldap_serverconfig_chooser'];
|
2013-12-04 16:14:05 +04:00
|
|
|
|
|
|
|
// Checkboxes are not submitted, when they are unchecked. Set them manually.
|
|
|
|
// only legacy checkboxes (Advanced and Expert tab) need to be handled here,
|
|
|
|
// the Wizard-like tabs handle it on their own
|
2020-03-26 11:30:18 +03:00
|
|
|
$chkboxes = ['ldap_configuration_active', 'ldap_override_main_server',
|
2020-04-09 10:22:29 +03:00
|
|
|
'ldap_turn_off_cert_check'];
|
2020-04-10 15:19:56 +03:00
|
|
|
foreach ($chkboxes as $boxid) {
|
|
|
|
if (!isset($_POST[$boxid])) {
|
2013-12-04 16:14:05 +04:00
|
|
|
$_POST[$boxid] = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-05-12 17:21:28 +03:00
|
|
|
$ldapWrapper = new OCA\User_LDAP\LDAP();
|
2016-05-12 17:35:33 +03:00
|
|
|
$connection = new \OCA\User_LDAP\Connection($ldapWrapper, $prefix);
|
2013-01-20 21:02:44 +04:00
|
|
|
$connection->setConfiguration($_POST);
|
|
|
|
$connection->saveConfiguration();
|
2018-03-22 15:19:29 +03:00
|
|
|
\OC_JSON::success();
|