2011-06-23 20:51:25 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* ownCloud
|
|
|
|
*
|
|
|
|
* @author Dominik Schmidt
|
|
|
|
* @copyright 2011 Dominik Schmidt dev@dominik-schmidt.de
|
|
|
|
*
|
|
|
|
* 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/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2011-07-29 19:36:03 +00:00
|
|
|
class OC_USER_LDAP extends OC_User_Backend {
|
2011-06-23 20:51:25 +00:00
|
|
|
|
2011-06-23 21:41:02 +00:00
|
|
|
protected $ds;
|
2011-07-04 17:04:15 +00:00
|
|
|
protected $configured = false;
|
2011-06-23 21:17:10 +00:00
|
|
|
|
2011-06-23 21:41:02 +00:00
|
|
|
// cached settings
|
|
|
|
protected $ldap_host;
|
|
|
|
protected $ldap_port;
|
|
|
|
protected $ldap_dn;
|
|
|
|
protected $ldap_password;
|
|
|
|
protected $ldap_base;
|
2012-02-28 13:11:51 +00:00
|
|
|
protected $ldap_login_filter;
|
|
|
|
protected $ldap_userlist_filter;
|
2011-11-29 22:11:42 +00:00
|
|
|
protected $ldap_tls;
|
|
|
|
protected $ldap_nocase;
|
|
|
|
protected $ldap_display_name;
|
2012-02-16 16:55:39 +00:00
|
|
|
protected $ldap_quota;
|
|
|
|
protected $ldap_quota_def;
|
|
|
|
protected $ldap_email;
|
|
|
|
|
2012-05-04 11:02:20 +00:00
|
|
|
protected $ldapUserFilter;
|
|
|
|
protected $ldapLoginFilter;
|
|
|
|
protected $ldapQuotaAttribute;
|
|
|
|
protected $ldapQuotaDefault;
|
|
|
|
protected $ldapEmailAttribute;
|
|
|
|
|
2012-02-16 16:55:39 +00:00
|
|
|
// will be retrieved from LDAP server
|
|
|
|
protected $ldap_dc = false;
|
2011-06-23 21:17:10 +00:00
|
|
|
|
2011-06-23 21:41:02 +00:00
|
|
|
function __construct() {
|
2012-05-02 12:11:29 +00:00
|
|
|
$this->ldap_host = OCP\Config::getAppValue('user_ldap', 'ldap_host','');
|
|
|
|
$this->ldap_port = OCP\Config::getAppValue('user_ldap', 'ldap_port', OC_USER_BACKEND_LDAP_DEFAULT_PORT );
|
|
|
|
$this->ldap_dn = OCP\Config::getAppValue('user_ldap', 'ldap_dn','');
|
|
|
|
$this->ldap_password = OCP\Config::getAppValue('user_ldap', 'ldap_password','');
|
|
|
|
$this->ldap_base = OCP\Config::getAppValue('user_ldap', 'ldap_base','');
|
|
|
|
$this->ldap_login_filter = OCP\Config::getAppValue('user_ldap', 'ldap_login_filter','');
|
|
|
|
$this->ldap_userlist_filter = OCP\Config::getAppValue('user_ldap', 'ldap_userlist_filter','objectClass=person');
|
|
|
|
$this->ldap_tls = OCP\Config::getAppValue('user_ldap', 'ldap_tls', 0);
|
|
|
|
$this->ldap_nocase = OCP\Config::getAppValue('user_ldap', 'ldap_nocase', 0);
|
|
|
|
$this->ldap_display_name = OCP\Config::getAppValue('user_ldap', 'ldap_display_name', OC_USER_BACKEND_LDAP_DEFAULT_DISPLAY_NAME);
|
|
|
|
$this->ldap_quota_attr = OCP\Config::getAppValue('user_ldap', 'ldap_quota_attr','');
|
|
|
|
$this->ldap_quota_def = OCP\Config::getAppValue('user_ldap', 'ldap_quota_def','');
|
|
|
|
$this->ldap_email_attr = OCP\Config::getAppValue('user_ldap', 'ldap_email_attr','');
|
2011-07-04 17:04:15 +00:00
|
|
|
|
2012-05-04 11:02:20 +00:00
|
|
|
$this->ldapUserFilter = OCP\Config::getAppValue('user_ldap', 'ldap_userlist_filter', '(objectClass=posixAccount)');
|
|
|
|
$this->ldapLoginFilter = OCP\Config::getAppValue('user_ldap', 'ldap_login_filter', '(uid=%uid)');
|
|
|
|
$this->ldapQuotaAttribute = OCP\Config::getAppValue('user_ldap', 'ldap_quota_attr', '');
|
|
|
|
$this->ldapQuotaDefault = OCP\Config::getAppValue('user_ldap', 'ldap_quota_def', '');
|
|
|
|
$this->ldapEmailAttribute = OCP\Config::getAppValue('user_ldap', 'ldap_email_attr', '');
|
|
|
|
|
2011-07-04 17:04:15 +00:00
|
|
|
if( !empty($this->ldap_host)
|
|
|
|
&& !empty($this->ldap_port)
|
2011-11-29 22:11:42 +00:00
|
|
|
&& ((!empty($this->ldap_dn) && !empty($this->ldap_password)) || (empty($this->ldap_dn) && empty($this->ldap_password)))
|
2011-07-04 17:04:15 +00:00
|
|
|
&& !empty($this->ldap_base)
|
2012-02-28 13:11:51 +00:00
|
|
|
&& !empty($this->ldap_login_filter)
|
2011-11-29 22:11:42 +00:00
|
|
|
&& !empty($this->ldap_display_name)
|
2011-07-04 17:04:15 +00:00
|
|
|
)
|
|
|
|
{
|
|
|
|
$this->configured = true;
|
|
|
|
}
|
2011-06-23 21:41:02 +00:00
|
|
|
}
|
2011-06-23 20:51:25 +00:00
|
|
|
|
2011-06-23 21:54:39 +00:00
|
|
|
function __destruct() {
|
|
|
|
// close the connection
|
|
|
|
if( $this->ds )
|
|
|
|
ldap_unbind($this->ds);
|
|
|
|
}
|
|
|
|
|
2012-05-04 11:02:20 +00:00
|
|
|
private function updateQuota($dn) {
|
|
|
|
$quota = null;
|
|
|
|
if(!empty($this->ldapQuotaDefault)) {
|
|
|
|
$quota = $this->ldapQuotaDefault;
|
|
|
|
}
|
|
|
|
if(!empty($this->ldapQuotaAttribute)) {
|
|
|
|
$aQuota = OC_LDAP::readAttribute($dn, $this->ldapQuotaAttribute);
|
2012-02-16 16:55:39 +00:00
|
|
|
|
2012-05-04 11:02:20 +00:00
|
|
|
if($aQuota && (count($aQuota) > 0)) {
|
|
|
|
$quota = $aQuota[0];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(!is_null($quota)) {
|
|
|
|
OCP\Config::setUserValue(OC_LDAP::dn2username($dn), 'files', 'quota', OCP\Util::computerFileSize($quota));
|
2012-03-01 13:31:06 +00:00
|
|
|
}
|
2012-02-16 16:55:39 +00:00
|
|
|
}
|
|
|
|
|
2012-05-04 11:02:20 +00:00
|
|
|
private function updateEmail($dn) {
|
|
|
|
$email = null;
|
|
|
|
if(!empty($this->ldapEmailAttribute)) {
|
|
|
|
$aEmail = OC_LDAP::readAttribute($dn, $this->ldapEmailAttribute);
|
|
|
|
if($aEmail && (count($aEmail) > 0)) {
|
|
|
|
$email = $aEmail[0];
|
|
|
|
}
|
|
|
|
if(!is_null($email)){
|
|
|
|
OCP\Config::setUserValue(OC_LDAP::dn2username($dn), 'settings', 'email', $email);
|
|
|
|
}
|
|
|
|
}
|
2012-02-16 16:55:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//Connect to LDAP and store the resource
|
2011-06-23 21:41:02 +00:00
|
|
|
private function getDs() {
|
|
|
|
if(!$this->ds) {
|
|
|
|
$this->ds = ldap_connect( $this->ldap_host, $this->ldap_port );
|
2011-11-29 22:11:42 +00:00
|
|
|
if(ldap_set_option($this->ds, LDAP_OPT_PROTOCOL_VERSION, 3))
|
|
|
|
if(ldap_set_option($this->ds, LDAP_OPT_REFERRALS, 0))
|
|
|
|
if($this->ldap_tls)
|
|
|
|
ldap_start_tls($this->ds);
|
2011-06-23 21:41:02 +00:00
|
|
|
}
|
2012-02-16 16:55:39 +00:00
|
|
|
//TODO: Not necessary to perform a bind each time, is it?
|
2011-06-23 21:41:02 +00:00
|
|
|
// login
|
|
|
|
if(!empty($this->ldap_dn)) {
|
|
|
|
$ldap_login = @ldap_bind( $this->ds, $this->ldap_dn, $this->ldap_password );
|
2012-02-16 16:55:39 +00:00
|
|
|
if(!$ldap_login) {
|
2011-06-23 20:51:25 +00:00
|
|
|
return false;
|
2012-02-16 16:55:39 +00:00
|
|
|
}
|
2011-06-23 20:51:25 +00:00
|
|
|
}
|
|
|
|
|
2011-06-23 21:41:02 +00:00
|
|
|
return $this->ds;
|
|
|
|
}
|
|
|
|
|
2012-02-16 16:55:39 +00:00
|
|
|
private function getDc( $uid ) {
|
2011-07-04 17:04:15 +00:00
|
|
|
if(!$this->configured)
|
|
|
|
return false;
|
|
|
|
|
2011-06-23 21:41:02 +00:00
|
|
|
// connect to server
|
|
|
|
$ds = $this->getDs();
|
|
|
|
if( !$ds )
|
|
|
|
return false;
|
|
|
|
|
2011-06-23 20:51:25 +00:00
|
|
|
// get dn
|
2012-02-28 13:11:51 +00:00
|
|
|
$filter = str_replace('%uid', $uid, $this->ldap_login_filter);
|
2011-06-23 21:41:02 +00:00
|
|
|
$sr = ldap_search( $this->getDs(), $this->ldap_base, $filter );
|
|
|
|
$entries = ldap_get_entries( $this->getDs(), $sr );
|
2011-06-23 20:51:25 +00:00
|
|
|
|
2012-02-16 16:55:39 +00:00
|
|
|
if( $entries['count'] == 0 ) {
|
2011-06-23 20:51:25 +00:00
|
|
|
return false;
|
2012-02-16 16:55:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
$this->ldap_dc = $entries[0];
|
2011-06-23 20:51:25 +00:00
|
|
|
|
2012-02-16 16:55:39 +00:00
|
|
|
return $this->ldap_dc;
|
2011-06-23 21:41:02 +00:00
|
|
|
}
|
2011-11-29 22:11:42 +00:00
|
|
|
|
2012-05-04 11:02:20 +00: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
|
|
|
|
*/
|
|
|
|
public static function checkPassword( $uid, $password ){
|
|
|
|
//find out dn of the user name
|
|
|
|
$filter = str_replace('%uid', $uid, $this->ldapLoginFilter);
|
|
|
|
$ldap_users = OC_LDAP::fetchListOfUsers($filter, 'dn');
|
|
|
|
if(count($ldap_users) < 1) {
|
2011-07-05 22:30:57 +00:00
|
|
|
return false;
|
|
|
|
}
|
2012-05-04 11:02:20 +00:00
|
|
|
$dn = $ldap_users[0];
|
2011-06-23 21:41:02 +00:00
|
|
|
|
2012-05-04 11:02:20 +00:00
|
|
|
//are the credentials OK?
|
|
|
|
if(!OC_LDAP::areCredentialsValid($dn, $password)) {
|
2011-08-29 18:08:26 +00:00
|
|
|
return false;
|
2012-02-16 16:55:39 +00:00
|
|
|
}
|
|
|
|
|
2012-05-04 11:02:20 +00:00
|
|
|
//update some settings, if necessary
|
|
|
|
$this->updateQuota($dn);
|
|
|
|
$this->updateEmail($dn);
|
2012-02-16 16:55:39 +00:00
|
|
|
|
2012-05-04 11:02:20 +00:00
|
|
|
//give back the display name
|
|
|
|
return OC_LDAP::dn2username($dn);
|
2011-06-23 21:41:02 +00:00
|
|
|
}
|
2011-06-23 20:51:25 +00:00
|
|
|
|
2012-05-03 21:41:08 +00:00
|
|
|
/**
|
|
|
|
* @brief Get a list of all users
|
|
|
|
* @returns array with all uids
|
|
|
|
*
|
|
|
|
* Get a list of all users.
|
|
|
|
*/
|
|
|
|
public static function getUsers(){
|
|
|
|
$ldap_users = OC_LDAP::fetchListOfUsers($this->ldapUserFilter, array(OC_LDAP::conf('ldapGroupDisplayName'), 'dn'));
|
|
|
|
$users = OC_LDAP::ownCloudUserNames($ldap_users);
|
|
|
|
return $users;
|
2011-11-29 22:11:42 +00:00
|
|
|
}
|
2011-06-23 21:41:02 +00:00
|
|
|
|
2012-05-03 21:44:12 +00:00
|
|
|
/**
|
|
|
|
* @brief check if a user exists
|
|
|
|
* @param string $uid the username
|
|
|
|
* @return boolean
|
|
|
|
*/
|
|
|
|
public static function userExists($uid){
|
|
|
|
return in_array($uid, self::getUsers());
|
|
|
|
}
|
|
|
|
|
2012-05-03 21:41:08 +00:00
|
|
|
|
2011-06-23 20:51:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
?>
|