2011-06-24 00:51:25 +04: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 23:36:03 +04:00
|
|
|
class OC_USER_LDAP extends OC_User_Backend {
|
2011-06-24 00:51:25 +04:00
|
|
|
|
2011-06-24 01:41:02 +04:00
|
|
|
protected $ds;
|
2011-07-04 21:04:15 +04:00
|
|
|
protected $configured = false;
|
2011-06-24 01:17:10 +04:00
|
|
|
|
2011-06-24 01:41:02 +04:00
|
|
|
// cached settings
|
|
|
|
protected $ldap_host;
|
|
|
|
protected $ldap_port;
|
|
|
|
protected $ldap_dn;
|
|
|
|
protected $ldap_password;
|
|
|
|
protected $ldap_base;
|
|
|
|
protected $ldap_filter;
|
2011-06-24 01:17:10 +04:00
|
|
|
|
2011-06-24 01:41:02 +04:00
|
|
|
function __construct() {
|
2011-07-29 23:36:03 +04:00
|
|
|
$this->ldap_host = OC_Appconfig::getValue('user_ldap', 'ldap_host','');
|
|
|
|
$this->ldap_port = OC_Appconfig::getValue('user_ldap', 'ldap_port', OC_USER_BACKEND_LDAP_DEFAULT_PORT );
|
|
|
|
$this->ldap_dn = OC_Appconfig::getValue('user_ldap', 'ldap_dn','');
|
|
|
|
$this->ldap_password = OC_Appconfig::getValue('user_ldap', 'ldap_password','');
|
|
|
|
$this->ldap_base = OC_Appconfig::getValue('user_ldap', 'ldap_base','');
|
|
|
|
$this->ldap_filter = OC_Appconfig::getValue('user_ldap', 'ldap_filter','');
|
2011-07-04 21:04:15 +04:00
|
|
|
|
|
|
|
if( !empty($this->ldap_host)
|
|
|
|
&& !empty($this->ldap_port)
|
|
|
|
&& !empty($this->ldap_dn)
|
|
|
|
&& !empty($this->ldap_password)
|
|
|
|
&& !empty($this->ldap_base)
|
|
|
|
&& !empty($this->ldap_filter)
|
|
|
|
)
|
|
|
|
{
|
|
|
|
$this->configured = true;
|
|
|
|
}
|
2011-06-24 01:41:02 +04:00
|
|
|
}
|
2011-06-24 00:51:25 +04:00
|
|
|
|
2011-06-24 01:54:39 +04:00
|
|
|
function __destruct() {
|
|
|
|
// close the connection
|
|
|
|
if( $this->ds )
|
|
|
|
ldap_unbind($this->ds);
|
|
|
|
}
|
|
|
|
|
2011-06-24 01:41:02 +04:00
|
|
|
private function getDs() {
|
|
|
|
if(!$this->ds) {
|
|
|
|
$this->ds = ldap_connect( $this->ldap_host, $this->ldap_port );
|
2011-08-26 18:37:22 +04:00
|
|
|
if(ldap_set_option($this->ds, LDAP_OPT_PROTOCOL_VERSION, 3))
|
|
|
|
if(ldap_set_option($this->ds, LDAP_OPT_REFERRALS, 0))
|
|
|
|
ldap_start_tls($this->ds);
|
2011-06-24 01:41:02 +04:00
|
|
|
}
|
2011-06-24 00:51:25 +04:00
|
|
|
|
2011-06-24 01:41:02 +04:00
|
|
|
// login
|
|
|
|
if(!empty($this->ldap_dn)) {
|
|
|
|
$ldap_login = @ldap_bind( $this->ds, $this->ldap_dn, $this->ldap_password );
|
2011-06-24 00:51:25 +04:00
|
|
|
if(!$ldap_login)
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2011-06-24 01:41:02 +04:00
|
|
|
return $this->ds;
|
|
|
|
}
|
|
|
|
|
|
|
|
private function getDn( $uid ) {
|
2011-07-04 21:04:15 +04:00
|
|
|
if(!$this->configured)
|
|
|
|
return false;
|
|
|
|
|
2011-06-24 01:41:02 +04:00
|
|
|
// connect to server
|
|
|
|
$ds = $this->getDs();
|
|
|
|
if( !$ds )
|
|
|
|
return false;
|
|
|
|
|
2011-06-24 00:51:25 +04:00
|
|
|
// get dn
|
2011-06-24 01:41:02 +04:00
|
|
|
$filter = str_replace("%uid", $uid, $this->ldap_filter);
|
|
|
|
$sr = ldap_search( $this->getDs(), $this->ldap_base, $filter );
|
|
|
|
$entries = ldap_get_entries( $this->getDs(), $sr );
|
2011-06-24 00:51:25 +04:00
|
|
|
|
|
|
|
if( $entries["count"] == 0 )
|
|
|
|
return false;
|
|
|
|
|
2011-06-24 01:41:02 +04:00
|
|
|
return $entries[0]["dn"];
|
|
|
|
}
|
|
|
|
public function checkPassword( $uid, $password ) {
|
2011-07-18 20:50:21 +04:00
|
|
|
if(!$this->configured){
|
2011-07-06 02:30:57 +04:00
|
|
|
return false;
|
|
|
|
}
|
2011-06-24 01:41:02 +04:00
|
|
|
$dn = $this->getDn( $uid );
|
|
|
|
if( !$dn )
|
|
|
|
return false;
|
|
|
|
|
2011-08-29 22:08:26 +04:00
|
|
|
if (!@ldap_bind( $this->getDs(), $dn, $password ))
|
|
|
|
return false;
|
|
|
|
return $uid;
|
2011-06-24 01:41:02 +04:00
|
|
|
}
|
2011-06-24 00:51:25 +04:00
|
|
|
|
2011-06-24 01:41:02 +04:00
|
|
|
public function userExists( $uid ) {
|
2011-07-18 20:50:21 +04:00
|
|
|
if(!$this->configured){
|
2011-07-06 02:30:57 +04:00
|
|
|
return false;
|
|
|
|
}
|
2011-07-04 21:04:15 +04:00
|
|
|
$dn = $this->getDn($uid);
|
2011-06-24 01:41:02 +04:00
|
|
|
return !empty($dn);
|
2011-06-24 00:51:25 +04:00
|
|
|
}
|
2011-06-24 01:41:02 +04:00
|
|
|
|
2011-06-24 00:51:25 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
?>
|