-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathLDAPAuthPlugin.inc.php
315 lines (287 loc) · 7.29 KB
/
LDAPAuthPlugin.inc.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
<?php
/**
* @file plugins/generic/ldap/LDAPAuthPlugin.inc.php
*
* Copyright (c) 2014-2019 Simon Fraser University
* Copyright (c) 2003-2019 John Willinsky
* Copyright (c) 2019 Shem Pasamba
* Distributed under the GNU GPL v2. For full terms see the file docs/COPYING.
*
* @class LDAPAuthPlugin
* @ingroup plugins_generic_ldap
*
* @brief LDAP authentication plugin.
*
*/
define('LDAPAUTH_LOCAL_BEFORE', "before");
define('LDAPAUTH_LOCAL_AFTER', "after");
define('LDAPAUTH_LOCAL_NEVER', "never");
import('lib.pkp.classes.plugins.GenericPlugin');
class LDAPAuthPlugin extends GenericPlugin {
// @@@ TODO: Is there a way to disable delete and upgrade actions
// when the user does not have permission to disable?
// @@@ TODO: The profile password tab should just be hidden
// completely when the plugin is enabled.
/** @var int */
var $_contextId;
/** @var bool */
var $_globallyEnabled;
/** @var bool */
var $_singleContext;
/**
* @copydoc Plugin::__construct()
*/
function __construct() {
parent::__construct();
$this->_contextId = $this->getCurrentContextId();
$this->_globallyEnabled = $this->getSetting(CONTEXT_SITE, 'enabled');
$this->_singleContext = true;
$contextDao = Application::getContextDAO();
$workingContexts = $contextDao->getAvailable();
if ($workingContexts && $workingContexts->getCount() > 1) {
$this->_singleContext = false;
}
if ($this->_singleContext) {
$this->_contextId = CONTEXT_SITE;
}
}
/**
* @copydoc Plugin::register()
*/
function register($category, $path, $mainContextId = null) {
if ($this->_singleContext) {
$mainContextId = CONTEXT_SITE;
}
$success = parent::register($category, $path, $mainContextId);
$this->addLocaleData();
if ($success && $this->getEnabled($mainContextId)) {
// Register pages to handle login.
HookRegistry::register(
'LoadHandler',
array($this, 'handleRequest')
);
}
return $success;
}
/**
* @copydoc LazyLoadPlugin::getName()
*/
function getName() {
return 'LDAPAuthPlugin';
}
/**
* @copydoc Plugin::getDisplayName()
*/
function getDisplayName() {
return __('plugins.generic.ldap.displayName');
}
/**
* @copydoc Plugin::getDescription()
*/
function getDescription() {
return __('plugins.generic.ldap.description');
}
/**
* @copydoc Plugin::isSitePlugin()
*/
function isSitePlugin() {
return true;
}
/**
* @copydoc Plugin::manage()
*/
function manage($args, $request) {
switch ($request->getUserVar('verb')) {
case 'settings':
AppLocale::requireComponents(
LOCALE_COMPONENT_APP_COMMON,
LOCALE_COMPONENT_PKP_MANAGER
);
$templateMgr = TemplateManager::getManager($request);
$templateMgr->register_function(
'plugin_url',
array($this, 'smartyPluginUrl')
);
$this->import('LDAPSettingsForm');
$form = new LDAPSettingsForm(
$this,
$this->_contextId
);
if ($request->getUserVar('save')) {
$form->readInputData();
if ($form->validate()) {
$form->execute();
return new JSONMessage(true);
}
} else {
$form->initData();
}
return new JSONMessage(true, $form->fetch($request));
}
return parent::manage($args, $request);
}
/**
* @copydoc Plugin::getSetting()
*/
function getSetting($contextId, $name) {
if ($this->_globallyEnabled || $this->_singleContext) {
return parent::getSetting(CONTEXT_SITE, $name);
} else {
return parent::getSetting($contextId, $name);
}
}
/**
* @copydoc Plugin::getActions()
*/
function getActions($request, $verb) {
// Don’t allow settings unless enabled in this context.
if (!$this->getEnabled() || !$this->getCanDisable()) {
return parent::getActions($request, $verb);
}
$router = $request->getRouter();
import('lib.pkp.classes.linkAction.request.AjaxModal');
return array_merge(
array(
new LinkAction(
'settings',
new AjaxModal(
$router->url(
$request,
null,
null,
'manage',
null,
array(
'verb' => 'settings',
'plugin' => $this->getName(),
'category' => 'generic'
)
),
$this->getDisplayName()
),
__('manager.plugins.settings'),
null
),
),
parent::getActions($request, $verb)
);
}
//
// Public methods required to support lazy load.
//
/**
* @copydoc LazyLoadPlugin::getCanEnable()
*/
function getCanEnable() {
return !$this->_globallyEnabled || $this->_contextId == CONTEXT_SITE || $this->_singleContext;
}
/**
* @copydoc LazyLoadPlugin::getCanDisable()
*/
function getCanDisable() {
return !$this->_globallyEnabled || $this->_contextId == CONTEXT_SITE || $this->_singleContext;
}
/**
* Override LazyLoadPlugin::setEnabled() to allow for enabling of
* this sitewide plugin within an individual context
* @param $enabled boolean
*/
function setEnabled($enabled) {
if ($this->_singleContext) {
// LazyLoadPlugin::setEnabled will force the context to CONTEXT_SITE when isSitePlugin returns true
parent::setEnabled($enabled);
} else {
// if there are multiple contexts, allow enabling/disabling at the context level
$this->updateSetting($this->_contextId, 'enabled', $enabled, 'bool');
}
}
/**
* Override LazyLoadPlugin::getEnabled() to allow for enabling of
* this sitewide plugin within an individual context
* @param $contextId integer
* @return boolean
*/
function getEnabled($contextId = null) {
if ($contextId === null) {
$contextId = $this->getCurrentContextId();
}
// LazyLoadPlugin::getEnabled just asks if this is a site plugin above
if ($this->_globallyEnabled || $this->_singleContext) {
$contextId = CONTEXT_SITE;
}
return $this->getSetting($contextId, 'enabled');
}
//
// Callback handler
//
/**
* Hook callback: register pages for each login method.
* This URL is of the form: ldap/{$ldaprequest}
* @see PKPPageRouter::route()
*/
function handleRequest($hookName, $params) {
$ldapSelfServiceUrl = $this->getSetting(
$this->_contextId,
'ldapSelfServiceUrl'
);
$overrideLoginPages = array(
'signIn'
);
$overrideUserPages = array();
if (trim($ldapSelfServiceUrl) != "")
{
$overrideLoginPages += array(
'changePassword',
'lostPassword',
'requestResetPassword',
'savePassword'
);
$overrideUserPages += array(
'activateUser',
'validate',
);
}
$page = $params[0];
$op = $params[1];
if ($this->getEnabled()
&& ($page == 'ldap'
|| ($page == 'login'
&& in_array(
$op,
$overrideLoginPages
))
|| ($page == 'user'
&& in_array(
$op,
$overrideUserPages
)
)
)
) {
$this->import('pages/LDAPHandler');
define('HANDLER_CLASS', 'LDAPHandler');
define('LDAP_PLUGIN_NAME', $this->getName());
return true;
}
return false;
}
/**
* Get a LDAP resource for a server URI
* @param $server string the server URI
* @return resource|false
*/
function _getLdapResource($server) {
$ldapConn = ldap_connect($server);
if ($ldapConn) {
// set settings for making it work with AD
ldap_set_option($ldapConn, LDAP_OPT_PROTOCOL_VERSION, 3);
ldap_set_option($ldapConn, LDAP_OPT_REFERRALS, 0);
// use tls if not using ldaps
if (!preg_match('/ldaps.*636/', $server)) {
ldap_start_tls($ldapConn);
}
return $ldapConn;
}
return false;
}
}