From 90598c8e55553ba4b03b16fe4cccab637de47e6a Mon Sep 17 00:00:00 2001 From: Frederic Guillot Date: Sun, 13 Mar 2016 10:49:46 -0400 Subject: Add log message for API procedure createLdapUser() --- app/Api/User.php | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'app') diff --git a/app/Api/User.php b/app/Api/User.php index 21feb4fa..9b8081d6 100644 --- a/app/Api/User.php +++ b/app/Api/User.php @@ -66,8 +66,24 @@ class User extends \Kanboard\Core\Base return $valid ? $this->user->create($values) : false; } + /** + * Create LDAP user in the database + * + * Only "anonymous" and "proxy" LDAP authentication are supported by this method + * + * User information will be fetched from the LDAP server + * + * @access public + * @param string $username + * @return bool|int + */ public function createLdapUser($username) { + if (LDAP_BIND_TYPE === 'user') { + $this->logger->error('LDAP authentication "user" is not supported by this API call'); + return false; + } + try { $ldap = LdapClient::connect(); -- cgit v1.2.3