首页 > 代码库 > simple-LDAP-auth
simple-LDAP-auth
1 <?php 2 /** 3 * simple class for LDAP authentification 4 * 5 Copyright (C) 2013 Petr Palas 6 7 This program is free software; you can redistribute it and/or 8 modify it under the terms of the GNU General Public License 9 as published by the Free Software Foundation; either version 2 10 of the License, or (at your option) any later version. 11 12 This program is distributed in the hope that it will be useful, 13 but WITHOUT ANY WARRANTY; without even the implied warranty of 14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15 GNU General Public License for more details. 16 17 You should have received a copy of the GNU General Public License 18 along with this program; if not, write to the Free Software 19 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. 20 * inspired by http://samjlevy.com/2010/09/php-login-script-using-ldap-verify-group-membership/ 21 */ 22 23 namespace LDAP; 24 25 use Exception; 26 27 class auth { 28 /** 29 * url or ip of ldap server 30 * @var type string 31 */ 32 protected $ldap_host; 33 /** 34 * active directory DN 35 * @var type string 36 */ 37 protected $ldap_dn; 38 /** 39 * target user group 40 * @var type string 41 */ 42 protected $ldap_user_group; 43 /** 44 * manager group (shud contain users with management access) 45 * @var type string 46 */ 47 protected $ldap_manager_group; 48 /** 49 * contains email domain like "@somedomain.com" 50 * @var type string 51 */ 52 protected $ldap_usr_dom; 53 54 /** 55 * countains connection resource 56 * @var type resource 57 */ 58 protected $ldap; 59 60 /** 61 * contains status text 62 * if exeption is thrown msg contains this string 63 * @var type string 64 */ 65 public $status; 66 /** 67 * contains result array if ldap_search is succesfull 68 * @var type array 69 */ 70 public $result; 71 /** 72 * contains auth state 0=unathrized 1=authorized 73 * @var type int 74 */ 75 public $auth=0; 76 /** 77 * contains access level 0=none or unathorized 1=user 2=managment acc 78 * @var type int 79 */ 80 public $access=0; 81 82 /** 83 * contains username after user init 84 * @var type string 85 */ 86 public $user; 87 88 /** 89 * contain user password after user init 90 * @var type string 91 */ 92 protected $password; 93 94 /** 95 * Exeptions code constants 96 */ 97 const ERROR_WRONG_USER_GROUP=2; 98 const ERROR_CANT_AUTH=1; 99 const ERROR_CANT_SEARCH=3;100 const ERROR_IMG_DECODE=4;101 const ERROR_CANT_CONNECT=5;102 103 /**104 * loads passed configuration in case of the ldap_usr_dom it makes sure that this strings begins with ‘@‘ 105 * @param type $ldap_host106 * @param type $ldap_dn107 * @param type $ldap_user_group108 * @param type $ldap_manager_group109 * @param type $ldap_usr_dom110 */111 function __construct($ldap_host,$ldap_dn,$ldap_user_group,$ldap_manager_group,$ldap_usr_dom) {112 $this->ldap_host=$ldap_host;113 $this->ldap_dn=$ldap_dn;114 $this->ldap_user_group=$ldap_user_group;115 $this->ldap_manager_group=$ldap_manager_group;116 $this->ldap_usr_dom= ‘@‘.trim($ldap_usr_dom,‘@‘);117 }118 119 /**120 * well destructor :P121 * just in case there is opened connection to LDAP while destructing this class122 */123 public function __destruct() {124 @ldap_unbind($this->ldap);125 }126 127 /**128 * dumps result array for debug enclosed in pre tag129 * Wont terminate script!130 */131 public function dump_resut() {132 echo ‘<pre>‘;133 print_r($this->result,FALSE);134 echo ‘</pre>‘;135 }136 137 /**138 * Inits connection to LDAP server throws exeption on failure139 * @return boolean140 * @throws Exception141 */142 protected function init_connection(){143 $this->ldap=ldap_connect($this->ldap_host,3268);144 if($this->ldap){145 $this->status=‘connected :)‘;146 ldap_set_option($this->ldap, LDAP_OPT_PROTOCOL_VERSION,3);147 ldap_set_option($this->ldap, LDAP_OPT_REFERRALS,0);148 }149 else {150 //TODO: PHP actualy dont check if there is LDAP present on the other end nor it will fail if target host is unreachable. So I need some work around that :(151 $this->status=‘Cant connect to LDAP‘;152 throw new Exception($this->status, self::ERROR_CANT_CONNECT);153 }154 return TRUE;155 }156 157 public function userInit($user,$password) {158 $this->user=$user;159 $this->password=$password;160 161 return TRUE;162 }163 164 /**165 * Converts Binary string (like thumbnail from LDAP to base64 datastring for display166 * @param type $file167 * @param type $mime168 * @return type base64 datastring169 */170 protected function data_uri($file, $mime) { 171 $base64 = base64_encode($file); 172 return (‘data:‘ . $mime . ‘;base64,‘ . $base64);173 }174 175 /**176 * Gets LDAP thumbnail img177 * @param type $user178 * @param type $password179 * @param type $raw if TRUE method will return raw binary string instead of base64 encoded with mime180 * @return type base64 datatring of the thumbnail181 * @throws Exception182 */183 public function getLDAPimg($user=null,$password=null,$raw=FALSE) {184 $this->refreshCredentials($user, $password);185 //since conection is one off we need to get it186 $this->init_connection();187 188 $bind = @ldap_bind($this->ldap, $user . $this->ldap_usr_dom, $password);//ldap_bind($this->ldap, $this->ldap_dn, $password);189 190 if($bind){191 $filter = "(sAMAccountName=" . $user . ")";192 $attr = array("thumbnailphoto");193 $result = @ldap_search($this->ldap, $this->ldap_dn, $filter, $attr);194 if($result==FALSE){195 throw new Exception("Unable to search LDAP server. Reason: ". ldap_error($this->ldap), self::ERROR_CANT_SEARCH);196 } 197 $entry= ldap_first_entry($this->ldap, $result);198 199 if ($entry) {200 $info = @ldap_get_values_len($this->ldap, $entry, "thumbnailphoto");201 if(!$info){202 throw new Exception("Unable to decode thumbnail. Error: ". ldap_error($this->ldap), self::ERROR_IMG_DECODE);203 }204 //echo ‘<img src="http://www.mamicode.com/‘.$this->data_uri($info[0], ‘image/png‘).‘">‘;205 }206 207 208 if(!$raw){209 return $this->data_uri($info[0], ‘image/png‘);210 }211 else{212 return $info[0];213 }214 }215 else {216 // invalid name or password217 $this->status=‘Cant authenticate for search on LDAP‘;218 throw new Exception($this->status.‘ ‘. ldap_error($this->ldap), self::ERROR_CANT_AUTH);219 }220 ldap_unbind($this->ldap);221 }222 223 /**224 * Tries to authenticate suplied user with suplied pass225 * @param type $user226 * @param type $password227 * @return boolean228 * @throws Exception229 */230 public function authenticate($user=null, $password=null) {231 $this->refreshCredentials($user, $password);232 //since conection is one off we need to get it233 $this->init_connection();234 235 // verify user and password236 $bind = @ldap_bind($this->ldap, $user . $this->ldap_usr_dom, $password);237 238 239 if($bind) {240 // valid241 // check presence in groups242 $filter = "(sAMAccountName=" . $user . ")";243 $attr = array("memberof");244 $result = @ldap_search($this->ldap, $this->ldap_dn, $filter, $attr);245 if($result==FALSE){246 throw new Exception("Unable to search LDAP server. Reason: ". ldap_error($this->ldap), self::ERROR_CANT_SEARCH);247 } 248 $entries = ldap_get_entries($this->ldap, $result);249 250 //save result for future use251 $this->result=$entries;252 253 254 255 $access = 0;256 257 // check groups258 foreach($entries[0][‘memberof‘] as $grps) {259 // is manager, break loop260 if (strpos($grps, $this->ldap_manager_group)) { $access = 2; break; }261 262 // is user263 if (strpos($grps, $this->ldap_user_group)) $access = 1;264 }265 266 if ($access != 0) {267 // establish result vars268 269 $this->status=‘Authenticated‘;270 $this->access=$access;271 $this->user= $user;272 $this->auth=1;273 return true;274 } else {275 // user has no rights276 $this->access=$access;277 $this->user= $user;278 $this->auth=1;279 $this->status=‘User exists but not part of the target group‘;280 throw new Exception($this->status.‘ ‘. ldap_error($this->ldap), self::ERROR_WRONG_USER_GROUP);281 }282 283 } else {284 // invalid name or password285 $this->status=‘Cant authenticate for search on LDAP‘;286 throw new Exception($this->status.‘ ‘. ldap_error($this->ldap), self::ERROR_CANT_AUTH);287 }288 ldap_unbind($this->ldap);289 }290 291 /**292 * Saves new credentials if we got new or sets the old ones into referenced vars293 * @param type $user Reference to var that shuld contain username or null294 * @param type $password Reference to var that shuld contain password or null295 */296 private function refreshCredentials(&$user,&$password) {297 $newCredentials=TRUE;298 //since we cant set those in param def299 if($password===null){$password= $this->password;$newCredentials=FALSE;}300 if($user===null){$user= $this->user;$newCredentials=FALSE;}301 //store user pass and name for future use302 if($newCredentials){$this->userInit($user, $password);}303 }304 305 }
simple-LDAP-auth
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。