mirror of
https://github.com/nextcloud/server.git
synced 2026-06-11 09:42:09 -04:00
chore: Get rid of unused user_ldap AJAX endpoints
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com> Signed-off-by: Louis Chmn <louis@chmn.me>
This commit is contained in:
parent
a2a9550b01
commit
2dea21a532
4 changed files with 0 additions and 85 deletions
|
|
@ -1,24 +0,0 @@
|
|||
<?php
|
||||
|
||||
use OCA\User_LDAP\Helper;
|
||||
use OCP\Server;
|
||||
use OCP\Util;
|
||||
|
||||
/**
|
||||
* SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
|
||||
* SPDX-FileCopyrightText: 2016 ownCloud, Inc.
|
||||
* SPDX-License-Identifier: AGPL-3.0-only
|
||||
*/
|
||||
// Check user and app status
|
||||
\OC_JSON::checkAdminUser();
|
||||
\OC_JSON::checkAppEnabled('user_ldap');
|
||||
\OC_JSON::callCheck();
|
||||
|
||||
$prefix = (string)$_POST['ldap_serverconfig_chooser'];
|
||||
$helper = Server::get(Helper::class);
|
||||
if ($helper->deleteServerConfiguration($prefix)) {
|
||||
\OC_JSON::success();
|
||||
} else {
|
||||
$l = Util::getL10N('user_ldap');
|
||||
\OC_JSON::error(['message' => $l->t('Failed to delete the server configuration')]);
|
||||
}
|
||||
|
|
@ -1,23 +0,0 @@
|
|||
<?php
|
||||
|
||||
use OCA\User_LDAP\LDAP;
|
||||
|
||||
/**
|
||||
* SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
|
||||
* SPDX-FileCopyrightText: 2016 ownCloud, Inc.
|
||||
* SPDX-License-Identifier: AGPL-3.0-only
|
||||
*/
|
||||
// Check user and app status
|
||||
\OC_JSON::checkAdminUser();
|
||||
\OC_JSON::checkAppEnabled('user_ldap');
|
||||
\OC_JSON::callCheck();
|
||||
|
||||
$prefix = (string)$_POST['ldap_serverconfig_chooser'];
|
||||
$ldapWrapper = new LDAP();
|
||||
$connection = new \OCA\User_LDAP\Connection($ldapWrapper, $prefix);
|
||||
$configuration = $connection->getConfiguration();
|
||||
if (isset($configuration['ldap_agent_password']) && $configuration['ldap_agent_password'] !== '') {
|
||||
// hide password
|
||||
$configuration['ldap_agent_password'] = '**PASSWORD SET**';
|
||||
}
|
||||
\OC_JSON::success(['configuration' => $configuration]);
|
||||
|
|
@ -1,32 +0,0 @@
|
|||
<?php
|
||||
|
||||
use OCA\User_LDAP\LDAP;
|
||||
|
||||
/**
|
||||
* SPDX-FileCopyrightText: 2018-2024 Nextcloud GmbH and Nextcloud contributors
|
||||
* SPDX-FileCopyrightText: 2016 ownCloud, Inc.
|
||||
* SPDX-License-Identifier: AGPL-3.0-only
|
||||
*/
|
||||
// Check user and app status
|
||||
\OC_JSON::checkAdminUser();
|
||||
\OC_JSON::checkAppEnabled('user_ldap');
|
||||
\OC_JSON::callCheck();
|
||||
|
||||
$prefix = (string)$_POST['ldap_serverconfig_chooser'];
|
||||
|
||||
// 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 = ['ldap_configuration_active', 'ldap_override_main_server',
|
||||
'ldap_turn_off_cert_check'];
|
||||
foreach ($chkboxes as $boxid) {
|
||||
if (!isset($_POST[$boxid])) {
|
||||
$_POST[$boxid] = 0;
|
||||
}
|
||||
}
|
||||
|
||||
$ldapWrapper = new LDAP();
|
||||
$connection = new \OCA\User_LDAP\Connection($ldapWrapper, $prefix);
|
||||
$connection->setConfiguration($_POST);
|
||||
$connection->saveConfiguration();
|
||||
\OC_JSON::success();
|
||||
|
|
@ -9,14 +9,8 @@ declare(strict_types=1);
|
|||
*/
|
||||
$this->create('user_ldap_ajax_clearMappings', 'apps/user_ldap/ajax/clearMappings.php')
|
||||
->actionInclude('user_ldap/ajax/clearMappings.php');
|
||||
$this->create('user_ldap_ajax_deleteConfiguration', 'apps/user_ldap/ajax/deleteConfiguration.php')
|
||||
->actionInclude('user_ldap/ajax/deleteConfiguration.php');
|
||||
$this->create('user_ldap_ajax_getConfiguration', 'apps/user_ldap/ajax/getConfiguration.php')
|
||||
->actionInclude('user_ldap/ajax/getConfiguration.php');
|
||||
$this->create('user_ldap_ajax_getNewServerConfigPrefix', 'apps/user_ldap/ajax/getNewServerConfigPrefix.php')
|
||||
->actionInclude('user_ldap/ajax/getNewServerConfigPrefix.php');
|
||||
$this->create('user_ldap_ajax_setConfiguration', 'apps/user_ldap/ajax/setConfiguration.php')
|
||||
->actionInclude('user_ldap/ajax/setConfiguration.php');
|
||||
$this->create('user_ldap_ajax_testConfiguration', 'apps/user_ldap/ajax/testConfiguration.php')
|
||||
->actionInclude('user_ldap/ajax/testConfiguration.php');
|
||||
$this->create('user_ldap_ajax_wizard', 'apps/user_ldap/ajax/wizard.php')
|
||||
|
|
|
|||
Loading…
Reference in a new issue