]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/LdapAuthorization/LdapAuthorizationPlugin.php
1049c5610aa918057d777cc5f51e808213d6bfd8
[quix0rs-gnu-social.git] / plugins / LdapAuthorization / LdapAuthorizationPlugin.php
1 <?php
2 /**
3  * StatusNet, the distributed open-source microblogging tool
4  *
5  * Plugin to enable LDAP Authorization
6  *
7  * PHP version 5
8  *
9  * LICENCE: This program is free software: you can redistribute it and/or modify
10  * it under the terms of the GNU Affero General Public License as published by
11  * the Free Software Foundation, either version 3 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU Affero General Public License for more details.
18  *
19  * You should have received a copy of the GNU Affero General Public License
20  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
21  *
22  * @category  Plugin
23  * @package   StatusNet
24  * @author    Craig Andrews <candrews@integralblue.com>
25  * @copyright 2009 Free Software Foundation, Inc http://www.fsf.org
26  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
27  * @link      http://status.net/
28  */
29
30 if (!defined('STATUSNET') && !defined('LACONICA')) {
31     exit(1);
32 }
33
34 class LdapAuthorizationPlugin extends AuthorizationPlugin
35 {
36     public $roles_to_groups = array();
37     public $login_group = null;
38
39     function onInitializePlugin(){
40         if(!isset($this->provider_name)){
41             // TRANS: Exception thrown when initialising the LDAP Auth plugin fails because of an incorrect configuration.
42             throw new Exception(_m('provider_name must be set. Use the provider_name from the LDAP Authentication plugin.'));
43         }
44         if(!isset($this->uniqueMember_attribute)){
45             // TRANS: Exception thrown when initialising the LDAP Auth plugin fails because of an incorrect configuration.
46             throw new Exception(_m('uniqueMember_attribute must be set.'));
47         }
48         $this->ldapCommon = new LdapCommon(get_object_vars($this));
49     }
50
51     function onAutoload($cls)
52     {
53         switch ($cls)
54         {
55          case 'LdapCommon':
56             require_once(INSTALLDIR.'/plugins/LdapCommon/LdapCommon.php');
57             return false;
58         }
59     }
60
61     //---interface implementation---//
62     function loginAllowed($user) {
63         $user_username = new User_username();
64         $user_username->user_id=$user->id;
65         $user_username->provider_name=$this->provider_name;
66         if($user_username->find() && $user_username->fetch()){
67             $entry = $this->ldapCommon->get_user($user_username->username);
68             if($entry){
69                 if(isset($this->login_group)){
70                     if(is_array($this->login_group)){
71                         foreach($this->login_group as $group){
72                             if($this->ldapCommon->is_dn_member_of_group($entry->dn(),$group)){
73                                 return true;
74                             }
75                         }
76                     }else{
77                         if($this->ldapCommon->is_dn_member_of_group($entry->dn(),$this->login_group)){
78                             return true;
79                         }
80                     }
81                     return null;
82                 }else{
83                     //if a user exists, we can assume he's allowed to login
84                     return true;
85                 }
86             }else{
87                 return null;
88             }
89         }else{
90             return null;
91         }
92     }
93
94     function hasRole($profile, $name) {
95         $user_username = new User_username();
96         $user_username->user_id=$profile->id;
97         $user_username->provider_name=$this->provider_name;
98         if($user_username->find() && $user_username->fetch()){
99             $entry = $this->ldapCommon->get_user($user_username->username);
100             if($entry){
101                 if(isset($this->roles_to_groups[$name])){
102                     if(is_array($this->roles_to_groups[$name])){
103                         foreach($this->roles_to_groups[$name] as $group){
104                             if($this->ldapCommon->is_dn_member_of_group($entry->dn(),$group)){
105                                 return true;
106                             }
107                         }
108                     }else{
109                         if($this->ldapCommon->is_dn_member_of_group($entry->dn(),$this->roles_to_groups[$name])){
110                             return true;
111                         }
112                     }
113                 }
114             }
115         }
116         return false;
117     }
118
119     function onPluginVersion(&$versions)
120     {
121         $versions[] = array('name' => 'LDAP Authorization',
122                             'version' => STATUSNET_VERSION,
123                             'author' => 'Craig Andrews',
124                             'homepage' => 'http://status.net/wiki/Plugin:LdapAuthorization',
125                             'rawdescription' =>
126                             // TRANS: Plugin description.
127                             _m('The LDAP Authorization plugin allows for StatusNet to handle authorization through LDAP.'));
128         return true;
129     }
130 }