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>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Christopher Schäpers <kondou@ts.unde.re>
|
2016-07-21 17:49:16 +03:00
|
|
|
* @author Joas Schilling <coding@schilljs.com>
|
2015-10-05 21:54:56 +03:00
|
|
|
* @author Lennart Rosam <hello@takuto.de>
|
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>
|
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,
|
|
|
|
* 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
|
|
|
|
OCP\JSON::checkAdminUser();
|
|
|
|
OCP\JSON::checkAppEnabled('user_ldap');
|
|
|
|
OCP\JSON::callCheck();
|
|
|
|
|
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
|
|
|
|
$chkboxes = array('ldap_configuration_active', 'ldap_override_main_server',
|
2015-08-12 23:18:28 +03:00
|
|
|
'ldap_turn_off_cert_check');
|
2013-12-04 16:14:05 +04:00
|
|
|
foreach($chkboxes as $boxid) {
|
|
|
|
if(!isset($_POST[$boxid])) {
|
|
|
|
$_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();
|
2013-08-18 13:02:08 +04:00
|
|
|
OCP\JSON::success();
|