2011-06-24 00:51:25 +04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* ownCloud
|
|
|
|
*
|
|
|
|
* @author Dominik Schmidt
|
2012-05-04 15:25:52 +04:00
|
|
|
* @author Artuhr Schiwon
|
2011-06-24 00:51:25 +04:00
|
|
|
* @copyright 2011 Dominik Schmidt dev@dominik-schmidt.de
|
2012-05-04 15:25:52 +04:00
|
|
|
* @copyright 2012 Arthur Schiwon blizzz@owncloud.com
|
2011-06-24 00:51:25 +04:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 3 of the License, or any later version.
|
|
|
|
*
|
|
|
|
* This library 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 along with this library. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2012-07-20 19:43:44 +04:00
|
|
|
namespace OCA\user_ldap;
|
|
|
|
|
|
|
|
class USER_LDAP extends lib\Access implements \OCP\UserInterface {
|
2011-06-24 00:51:25 +04:00
|
|
|
|
2012-05-04 15:02:20 +04:00
|
|
|
private function updateQuota($dn) {
|
|
|
|
$quota = null;
|
2012-10-15 20:46:42 +04:00
|
|
|
$quotaDefault = $this->connection->ldapQuotaDefault;
|
|
|
|
$quotaAttribute = $this->connection->ldapQuotaAttribute;
|
|
|
|
if(!empty($quotaDefault)) {
|
|
|
|
$quota = $quotaDefault;
|
2012-05-04 15:02:20 +04:00
|
|
|
}
|
2012-10-15 20:46:42 +04:00
|
|
|
if(!empty($quotaAttribute)) {
|
|
|
|
$aQuota = $this->readAttribute($dn, $quotaAttribute);
|
2012-02-16 20:55:39 +04:00
|
|
|
|
2012-05-04 15:02:20 +04:00
|
|
|
if($aQuota && (count($aQuota) > 0)) {
|
|
|
|
$quota = $aQuota[0];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(!is_null($quota)) {
|
2012-07-25 14:37:39 +04:00
|
|
|
\OCP\Config::setUserValue($this->dn2username($dn), 'files', 'quota', \OCP\Util::computerFileSize($quota));
|
2012-03-01 17:31:06 +04:00
|
|
|
}
|
2012-02-16 20:55:39 +04:00
|
|
|
}
|
|
|
|
|
2012-05-04 15:02:20 +04:00
|
|
|
private function updateEmail($dn) {
|
|
|
|
$email = null;
|
2012-10-15 20:46:42 +04:00
|
|
|
$emailAttribute = $this->connection->ldapEmailAttribute;
|
|
|
|
if(!empty($emailAttribute)) {
|
|
|
|
$aEmail = $this->readAttribute($dn, $emailAttribute);
|
2012-05-04 15:02:20 +04:00
|
|
|
if($aEmail && (count($aEmail) > 0)) {
|
|
|
|
$email = $aEmail[0];
|
|
|
|
}
|
2012-07-25 15:13:01 +04:00
|
|
|
if(!is_null($email)) {
|
2012-07-25 14:37:39 +04:00
|
|
|
\OCP\Config::setUserValue($this->dn2username($dn), 'settings', 'email', $email);
|
2012-05-04 15:02:20 +04:00
|
|
|
}
|
|
|
|
}
|
2012-02-16 20:55:39 +04:00
|
|
|
}
|
|
|
|
|
2012-05-04 15:02:20 +04:00
|
|
|
/**
|
|
|
|
* @brief Check if the password is correct
|
|
|
|
* @param $uid The username
|
|
|
|
* @param $password The password
|
|
|
|
* @returns true/false
|
|
|
|
*
|
|
|
|
* Check if the password is correct without logging in the user
|
|
|
|
*/
|
2012-09-07 17:22:01 +04:00
|
|
|
public function checkPassword($uid, $password) {
|
2012-05-04 15:02:20 +04:00
|
|
|
//find out dn of the user name
|
2012-07-25 14:37:39 +04:00
|
|
|
$filter = \OCP\Util::mb_str_replace('%uid', $uid, $this->connection->ldapLoginFilter, 'UTF-8');
|
|
|
|
$ldap_users = $this->fetchListOfUsers($filter, 'dn');
|
2012-05-04 15:02:20 +04:00
|
|
|
if(count($ldap_users) < 1) {
|
2011-07-06 02:30:57 +04:00
|
|
|
return false;
|
|
|
|
}
|
2012-05-04 15:02:20 +04:00
|
|
|
$dn = $ldap_users[0];
|
2011-06-24 01:41:02 +04:00
|
|
|
|
2012-05-04 15:02:20 +04:00
|
|
|
//are the credentials OK?
|
2012-07-25 14:37:39 +04:00
|
|
|
if(!$this->areCredentialsValid($dn, $password)) {
|
2011-08-29 22:08:26 +04:00
|
|
|
return false;
|
2012-02-16 20:55:39 +04:00
|
|
|
}
|
|
|
|
|
2012-07-30 19:42:33 +04:00
|
|
|
//do we have a username for him/her?
|
|
|
|
$ocname = $this->dn2username($dn);
|
2012-02-16 20:55:39 +04:00
|
|
|
|
2012-09-07 17:22:01 +04:00
|
|
|
if($ocname) {
|
2012-07-30 19:42:33 +04:00
|
|
|
//update some settings, if necessary
|
|
|
|
$this->updateQuota($dn);
|
|
|
|
$this->updateEmail($dn);
|
|
|
|
|
|
|
|
//give back the display name
|
|
|
|
return $ocname;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
2011-06-24 01:41:02 +04:00
|
|
|
}
|
2011-06-24 00:51:25 +04:00
|
|
|
|
2012-05-04 01:41:08 +04:00
|
|
|
/**
|
|
|
|
* @brief Get a list of all users
|
|
|
|
* @returns array with all uids
|
|
|
|
*
|
|
|
|
* Get a list of all users.
|
|
|
|
*/
|
2012-09-07 17:22:01 +04:00
|
|
|
public function getUsers($search = '', $limit = 10, $offset = 0) {
|
2012-10-26 23:54:22 +04:00
|
|
|
$cachekey = 'getUsers-'.$search.'-'.$limit.'-'.$offset;
|
|
|
|
|
|
|
|
//check if users are cached, if so return
|
|
|
|
$ldap_users = $this->connection->getFromCache($cachekey);
|
|
|
|
if(!is_null($ldap_users)) {
|
|
|
|
return $ldap_users;
|
2012-08-14 16:14:20 +04:00
|
|
|
}
|
2012-10-26 23:54:22 +04:00
|
|
|
|
2013-02-15 01:16:48 +04:00
|
|
|
// if we'd pass -1 to LDAP search, we'd end up in a Protocol
|
|
|
|
// error. With a limit of 0, we get 0 results. So we pass null.
|
2012-10-27 19:32:55 +04:00
|
|
|
if($limit <= 0) {
|
|
|
|
$limit = null;
|
|
|
|
}
|
2012-10-26 23:54:22 +04:00
|
|
|
$filter = $this->combineFilterWithAnd(array(
|
|
|
|
$this->connection->ldapUserFilter,
|
2013-01-31 04:46:34 +04:00
|
|
|
$this->getFilterPartForUserSearch($search)
|
2012-10-26 23:54:22 +04:00
|
|
|
));
|
|
|
|
|
2013-02-15 01:16:48 +04:00
|
|
|
\OCP\Util::writeLog('user_ldap',
|
|
|
|
'getUsers: Options: search '.$search.' limit '.$limit.' offset '.$offset.' Filter: '.$filter,
|
|
|
|
\OCP\Util::DEBUG);
|
2012-10-26 23:54:22 +04:00
|
|
|
//do the search and translate results to owncloud names
|
2013-02-15 01:16:48 +04:00
|
|
|
$ldap_users = $this->fetchListOfUsers($filter, array($this->connection->ldapUserDisplayName, 'dn'),
|
|
|
|
$limit, $offset);
|
2012-10-26 23:54:22 +04:00
|
|
|
$ldap_users = $this->ownCloudUserNames($ldap_users);
|
2012-10-27 14:18:50 +04:00
|
|
|
\OCP\Util::writeLog('user_ldap', 'getUsers: '.count($ldap_users). ' Users found', \OCP\Util::DEBUG);
|
2012-08-14 16:14:20 +04:00
|
|
|
|
2012-10-26 23:54:22 +04:00
|
|
|
$this->connection->writeToCache($cachekey, $ldap_users);
|
|
|
|
return $ldap_users;
|
2011-11-30 02:11:42 +04:00
|
|
|
}
|
2011-06-24 01:41:02 +04:00
|
|
|
|
2012-05-04 01:44:12 +04:00
|
|
|
/**
|
|
|
|
* @brief check if a user exists
|
|
|
|
* @param string $uid the username
|
|
|
|
* @return boolean
|
|
|
|
*/
|
2012-09-07 17:22:01 +04:00
|
|
|
public function userExists($uid) {
|
2012-07-26 18:11:23 +04:00
|
|
|
if($this->connection->isCached('userExists'.$uid)) {
|
|
|
|
return $this->connection->getFromCache('userExists'.$uid);
|
|
|
|
}
|
|
|
|
|
2012-06-22 14:42:07 +04:00
|
|
|
//getting dn, if false the user does not exist. If dn, he may be mapped only, requires more checking.
|
2012-07-25 14:37:39 +04:00
|
|
|
$dn = $this->username2dn($uid);
|
2012-06-22 14:42:07 +04:00
|
|
|
if(!$dn) {
|
2012-07-26 18:11:23 +04:00
|
|
|
$this->connection->writeToCache('userExists'.$uid, false);
|
2012-06-22 14:42:07 +04:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2012-11-05 18:38:49 +04:00
|
|
|
//check if user really still exists by reading its entry
|
2012-11-05 20:35:09 +04:00
|
|
|
if(!is_array($this->readAttribute($dn, ''))) {
|
2012-07-26 18:11:23 +04:00
|
|
|
$this->connection->writeToCache('userExists'.$uid, false);
|
2012-06-22 14:42:07 +04:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2012-07-26 18:11:23 +04:00
|
|
|
$this->connection->writeToCache('userExists'.$uid, true);
|
2013-01-23 21:20:55 +04:00
|
|
|
$this->updateQuota($dn);
|
2012-06-22 14:42:07 +04:00
|
|
|
return true;
|
2012-05-04 01:44:12 +04:00
|
|
|
}
|
|
|
|
|
2012-07-20 18:28:20 +04:00
|
|
|
/**
|
|
|
|
* @brief delete a user
|
|
|
|
* @param $uid The username of the user to delete
|
|
|
|
* @returns true/false
|
|
|
|
*
|
|
|
|
* Deletes a user
|
|
|
|
*/
|
|
|
|
public function deleteUser($uid) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2013-02-06 05:28:09 +04:00
|
|
|
* @brief get the user's home directory
|
|
|
|
* @param string $uid the username
|
2012-08-28 16:24:31 +04:00
|
|
|
* @return boolean
|
|
|
|
*/
|
2013-02-06 05:28:09 +04:00
|
|
|
public function getHome($uid) {
|
2013-03-19 03:23:35 +04:00
|
|
|
// user Exists check required as it is not done in user proxy!
|
|
|
|
if(!$this->userExists($uid)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2013-02-06 05:28:09 +04:00
|
|
|
$cacheKey = 'getHome'.$uid;
|
|
|
|
if($this->connection->isCached($cacheKey)) {
|
|
|
|
return $this->connection->getFromCache($cacheKey);
|
|
|
|
}
|
2012-08-28 16:24:31 +04:00
|
|
|
if(strpos($this->connection->homeFolderNamingRule, 'attr:') === 0) {
|
|
|
|
$attr = substr($this->connection->homeFolderNamingRule, strlen('attr:'));
|
|
|
|
$homedir = $this->readAttribute($this->username2dn($uid), $attr);
|
2013-02-06 05:28:09 +04:00
|
|
|
if($homedir && isset($homedir[0])) {
|
|
|
|
$path = $homedir[0];
|
|
|
|
//if attribute's value is an absolute path take this, otherwise append it to data dir
|
|
|
|
//check for / at the beginning or pattern c:\ resp. c:/
|
|
|
|
if(
|
|
|
|
'/' == $path[0]
|
2013-02-15 01:16:48 +04:00
|
|
|
|| (3 < strlen($path) && ctype_alpha($path[0])
|
|
|
|
&& $path[1] == ':' && ('\\' == $path[2] || '/' == $path[2]))
|
2013-02-06 05:28:09 +04:00
|
|
|
) {
|
|
|
|
$homedir = $path;
|
|
|
|
} else {
|
2013-02-15 01:16:48 +04:00
|
|
|
$homedir = \OCP\Config::getSystemValue('datadirectory',
|
|
|
|
\OC::$SERVERROOT.'/data' ) . '/' . $homedir[0];
|
2013-02-06 05:28:09 +04:00
|
|
|
}
|
|
|
|
$this->connection->writeToCache($cacheKey, $homedir);
|
2012-08-28 16:24:31 +04:00
|
|
|
return $homedir;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-02-06 05:28:09 +04:00
|
|
|
//false will apply default behaviour as defined and done by OC_User
|
|
|
|
$this->connection->writeToCache($cacheKey, false);
|
2012-08-28 16:24:31 +04:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2013-01-29 23:41:48 +04:00
|
|
|
/**
|
|
|
|
* @brief get display name of the user
|
|
|
|
* @param $uid user ID of the user
|
|
|
|
* @return display name
|
|
|
|
*/
|
|
|
|
public function getDisplayName($uid) {
|
2013-03-19 14:16:57 +04:00
|
|
|
if(!$this->userExists($uid)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2013-01-29 23:41:48 +04:00
|
|
|
$cacheKey = 'getDisplayName'.$uid;
|
|
|
|
if(!is_null($displayName = $this->connection->getFromCache($cacheKey))) {
|
|
|
|
return $displayName;
|
|
|
|
}
|
|
|
|
|
|
|
|
$displayName = $this->readAttribute(
|
|
|
|
$this->username2dn($uid),
|
|
|
|
$this->connection->ldapUserDisplayName);
|
|
|
|
|
|
|
|
if($displayName && (count($displayName) > 0)) {
|
2013-02-16 05:06:45 +04:00
|
|
|
$this->connection->writeToCache($cacheKey, $displayName[0]);
|
2013-01-29 23:41:48 +04:00
|
|
|
return $displayName[0];
|
|
|
|
}
|
|
|
|
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Get a list of all display names
|
|
|
|
* @returns array with all displayNames (value) and the correspondig uids (key)
|
|
|
|
*
|
|
|
|
* Get a list of all display names and user ids.
|
|
|
|
*/
|
|
|
|
public function getDisplayNames($search = '', $limit = null, $offset = null) {
|
|
|
|
$cacheKey = 'getDisplayNames-'.$search.'-'.$limit.'-'.$offset;
|
|
|
|
if(!is_null($displayNames = $this->connection->getFromCache($cacheKey))) {
|
|
|
|
return $displayNames;
|
|
|
|
}
|
|
|
|
|
|
|
|
$displayNames = array();
|
|
|
|
$users = $this->getUsers($search, $limit, $offset);
|
|
|
|
foreach ($users as $user) {
|
|
|
|
$displayNames[$user] = $this->getDisplayName($user);
|
|
|
|
}
|
|
|
|
$this->connection->writeToCache($cacheKey, $displayNames);
|
|
|
|
return $displayNames;
|
|
|
|
}
|
|
|
|
|
2012-08-28 16:24:31 +04:00
|
|
|
/**
|
2012-07-20 18:28:20 +04:00
|
|
|
* @brief Check if backend implements actions
|
|
|
|
* @param $actions bitwise-or'ed actions
|
|
|
|
* @returns boolean
|
|
|
|
*
|
|
|
|
* Returns the supported actions as int to be
|
|
|
|
* compared with OC_USER_BACKEND_CREATE_USER etc.
|
|
|
|
*/
|
|
|
|
public function implementsActions($actions) {
|
2013-02-16 05:06:45 +04:00
|
|
|
return (bool)((OC_USER_BACKEND_CHECK_PASSWORD
|
|
|
|
| OC_USER_BACKEND_GET_HOME
|
|
|
|
| OC_USER_BACKEND_GET_DISPLAYNAME)
|
|
|
|
& $actions);
|
2012-07-20 18:28:20 +04:00
|
|
|
}
|
|
|
|
|
2013-02-12 01:01:52 +04:00
|
|
|
/**
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function hasUserListings() {
|
|
|
|
return true;
|
|
|
|
}
|
2013-02-15 01:16:48 +04:00
|
|
|
}
|