aboutsummaryrefslogtreecommitdiffstats
path: root/apps/user_ldap/lib/ILDAPWrapper.php
diff options
context:
space:
mode:
Diffstat (limited to 'apps/user_ldap/lib/ILDAPWrapper.php')
-rw-r--r--apps/user_ldap/lib/ILDAPWrapper.php113
1 files changed, 44 insertions, 69 deletions
diff --git a/apps/user_ldap/lib/ILDAPWrapper.php b/apps/user_ldap/lib/ILDAPWrapper.php
index e72d85ac2b9..de2b9c50241 100644
--- a/apps/user_ldap/lib/ILDAPWrapper.php
+++ b/apps/user_ldap/lib/ILDAPWrapper.php
@@ -1,41 +1,18 @@
<?php
+
/**
- * @copyright Copyright (c) 2016, ownCloud, Inc.
- *
- * @author Arthur Schiwon <blizzz@arthur-schiwon.de>
- * @author J0WI <J0WI@users.noreply.github.com>
- * @author Joas Schilling <coding@schilljs.com>
- * @author Jörn Friedrich Dreyer <jfd@butonic.de>
- * @author Lukas Reschke <lukas@statuscode.ch>
- * @author Morris Jobke <hey@morrisjobke.de>
- * @author Robin McCorkell <robin@mccorkell.me.uk>
- * @author Roger Szabo <roger.szabo@web.de>
- * @author Vinicius Cubas Brand <vinicius@eita.org.br>
- *
- * @license AGPL-3.0
- *
- * 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.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Affero General Public License for more details.
- *
- * 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/>
- *
+ * SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
+ * SPDX-FileCopyrightText: 2016 ownCloud, Inc.
+ * SPDX-License-Identifier: AGPL-3.0-only
*/
namespace OCA\User_LDAP;
interface ILDAPWrapper {
-
//LDAP functions in use
/**
* Bind to LDAP directory
- * @param resource|\LDAP\Connection $link LDAP link resource
+ * @param \LDAP\Connection $link LDAP link resource
* @param string $dn an RDN to log in with
* @param string $password the password
* @return bool true on success, false otherwise
@@ -48,24 +25,14 @@ interface ILDAPWrapper {
* connect to an LDAP server
* @param string $host The host to connect to
* @param string $port The port to connect to
- * @return mixed a link resource on success, otherwise false
+ * @return \LDAP\Connection|false a link resource on success, otherwise false
*/
public function connect($host, $port);
/**
- * Send LDAP pagination control
- * @param resource|\LDAP\Connection $link LDAP link resource
- * @param int $pageSize number of results per page
- * @param bool $isCritical Indicates whether the pagination is critical of not.
- * @param string $cookie structure sent by LDAP server
- * @return bool true on success, false otherwise
- */
- public function controlPagedResult($link, $pageSize, $isCritical);
-
- /**
* Retrieve the LDAP pagination cookie
- * @param resource|\LDAP\Connection $link LDAP link resource
- * @param resource|\LDAP\Result $result LDAP result resource
+ * @param \LDAP\Connection $link LDAP link resource
+ * @param \LDAP\Result $result LDAP result resource
* @param string &$cookie structure sent by LDAP server
* @return bool true on success, false otherwise
*
@@ -75,22 +42,22 @@ interface ILDAPWrapper {
/**
* Count the number of entries in a search
- * @param resource|\LDAP\Connection $link LDAP link resource
- * @param resource|\LDAP\Result $result LDAP result resource
+ * @param \LDAP\Connection $link LDAP link resource
+ * @param \LDAP\Result $result LDAP result resource
* @return int|false number of results on success, false otherwise
*/
public function countEntries($link, $result);
/**
* Return the LDAP error number of the last LDAP command
- * @param resource|\LDAP\Connection $link LDAP link resource
+ * @param \LDAP\Connection $link LDAP link resource
* @return int error code
*/
public function errno($link);
/**
* Return the LDAP error message of the last LDAP command
- * @param resource|\LDAP\Connection $link LDAP link resource
+ * @param \LDAP\Connection $link LDAP link resource
* @return string error message
*/
public function error($link);
@@ -106,69 +73,69 @@ interface ILDAPWrapper {
/**
* Return first result id
- * @param resource|\LDAP\Connection $link LDAP link resource
- * @param resource|\LDAP\Result $result LDAP result resource
- * @return resource|\LDAP\ResultEntry an LDAP entry resource
+ * @param \LDAP\Connection $link LDAP link resource
+ * @param \LDAP\Result $result LDAP result resource
+ * @return \LDAP\ResultEntry an LDAP entry resource
* */
public function firstEntry($link, $result);
/**
* Get attributes from a search result entry
- * @param resource|\LDAP\Connection $link LDAP link resource
- * @param resource|\LDAP\ResultEntry $result LDAP result resource
- * @return array containing the results, false on error
+ * @param \LDAP\Connection $link LDAP link resource
+ * @param \LDAP\ResultEntry $result LDAP result resource
+ * @return array|false containing the results, false on error
* */
public function getAttributes($link, $result);
/**
* Get the DN of a result entry
- * @param resource|\LDAP\Connection $link LDAP link resource
- * @param resource|\LDAP\ResultEntry $result LDAP result resource
- * @return string containing the DN, false on error
+ * @param \LDAP\Connection $link LDAP link resource
+ * @param \LDAP\ResultEntry $result LDAP result resource
+ * @return string|false containing the DN, false on error
*/
public function getDN($link, $result);
/**
* Get all result entries
- * @param resource|\LDAP\Connection $link LDAP link resource
- * @param resource|\LDAP\Result $result LDAP result resource
- * @return array containing the results, false on error
+ * @param \LDAP\Connection $link LDAP link resource
+ * @param \LDAP\Result $result LDAP result resource
+ * @return array|false containing the results, false on error
*/
public function getEntries($link, $result);
/**
* Return next result id
- * @param resource|\LDAP\Connection $link LDAP link resource
- * @param resource|\LDAP\ResultEntry $result LDAP result resource
- * @return resource|\LDAP\ResultEntry an LDAP entry resource
+ * @param \LDAP\Connection $link LDAP link resource
+ * @param \LDAP\ResultEntry $result LDAP result resource
+ * @return \LDAP\ResultEntry an LDAP entry resource
* */
public function nextEntry($link, $result);
/**
* Read an entry
- * @param resource|\LDAP\Connection $link LDAP link resource
+ * @param \LDAP\Connection $link LDAP link resource
* @param string $baseDN The DN of the entry to read from
* @param string $filter An LDAP filter
* @param array $attr array of the attributes to read
- * @return resource|\LDAP\Result an LDAP search result resource
+ * @return \LDAP\Result an LDAP search result resource
*/
public function read($link, $baseDN, $filter, $attr);
/**
* Search LDAP tree
- * @param resource|\LDAP\Connection $link LDAP link resource
+ * @param \LDAP\Connection $link LDAP link resource
* @param string $baseDN The DN of the entry to read from
* @param string $filter An LDAP filter
* @param array $attr array of the attributes to read
* @param int $attrsOnly optional, 1 if only attribute types shall be returned
* @param int $limit optional, limits the result entries
- * @return resource|\LDAP\Result|false an LDAP search result resource, false on error
+ * @return \LDAP\Result|false an LDAP search result resource, false on error
*/
- public function search($link, $baseDN, $filter, $attr, $attrsOnly = 0, $limit = 0);
+ public function search($link, string $baseDN, string $filter, array $attr, int $attrsOnly = 0, int $limit = 0, int $pageSize = 0, string $cookie = '');
/**
* Replace the value of a userPassword by $password
- * @param resource|\LDAP\Connection $link LDAP link resource
+ * @param \LDAP\Connection $link LDAP link resource
* @param string $userDN the DN of the user whose password is to be replaced
* @param string $password the new value for the userPassword
* @return bool true on success, false otherwise
@@ -176,8 +143,15 @@ interface ILDAPWrapper {
public function modReplace($link, $userDN, $password);
/**
+ * Performs a PASSWD extended operation.
+ * @param \LDAP\Connection $link LDAP link resource
+ * @return bool|string The generated password if new_password is empty or omitted. Otherwise true on success and false on failure.
+ */
+ public function exopPasswd($link, string $userDN, string $oldPassword, string $password);
+
+ /**
* Sets the value of the specified option to be $value
- * @param resource|\LDAP\Connection $link LDAP link resource
+ * @param \LDAP\Connection $link LDAP link resource
* @param int $option a defined LDAP Server option
* @param mixed $value the new value for the option
* @return bool true on success, false otherwise
@@ -186,14 +160,14 @@ interface ILDAPWrapper {
/**
* establish Start TLS
- * @param resource|\LDAP\Connection $link LDAP link resource
+ * @param \LDAP\Connection $link LDAP link resource
* @return bool true on success, false otherwise
*/
public function startTls($link);
/**
* Unbind from LDAP directory
- * @param resource|\LDAP\Connection $link LDAP link resource
+ * @param \LDAP\Connection $link LDAP link resource
* @return bool true on success, false otherwise
*/
public function unbind($link);
@@ -209,6 +183,7 @@ interface ILDAPWrapper {
/**
* Checks whether the submitted parameter is a resource
* @param mixed $resource the resource variable to check
+ * @psalm-assert-if-true object $resource
* @return bool true if it is a resource or LDAP object, false otherwise
*/
public function isResource($resource);