-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathAuth.pm
227 lines (158 loc) · 6.12 KB
/
Auth.pm
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
# Movable Type (r) Open Source (C) 2001-2010 Six Apart, Ltd.
# This program is distributed under the terms of the
# GNU General Public License, version 2.
#
# $Id$
package MT::Auth;
use strict;
use base 'MT::ErrorHandler';
sub SUCCESS () {1}
sub UNKNOWN () {2}
sub INACTIVE () {3}
sub INVALID_PASSWORD () {4}
sub DELETED () {5}
sub REDIRECT_NEEDED () {6}
sub NEW_LOGIN () {7}
sub NEW_USER () {8}
sub PENDING () {9}
{
my $auth_module;
sub _driver {
my @auth_modes = split( /\s+/, MT->config->AuthenticationModule );
foreach my $auth_mode (@auth_modes) {
my $auth_module_name = 'MT::Auth::' . $auth_mode;
eval 'require ' . $auth_module_name;
if ( my $err = $@ ) {
die(
MT->translate(
"Bad AuthenticationModule config '[_1]': [_2]",
$auth_mode, $err
)
);
}
my $auth_module = $auth_module_name->new;
die $auth_module_name->errstr
if ( !$auth_module || ( ref( \$auth_module ) eq 'SCALAR' ) );
return $auth_module;
}
die( MT->translate("Bad AuthenticationModule config") );
} ## end sub _driver
sub _handle {
my $method = shift;
my $mod = $auth_module ||= _driver();
return undef unless $mod->can($method);
$mod->$method(@_);
}
sub release {
undef $auth_module;
}
}
BEGIN {
my @methods = qw(
errstr sanity_check is_valid_password can_recover_password
is_profile_needed password_exists validate_credentials
invalidate_credentials delegate_auth can_logout
synchronize synchronize_author synchronize_group
new_user new_login login_form fetch_credentials
);
no strict 'refs';
foreach my $meth (@methods) {
*{"MT::Auth::$meth"} = sub { shift; _handle( $meth, @_ ) };
}
}
sub task_synchronize {
my $obj = shift;
# This task method is only invoked if ExternalUserManagement is enabled.
return
unless MT->config->ExternalUserManagement
|| MT->config->ExternalGroupManagement;
return $obj->synchronize(@_);
}
1;
__END__
=head1 NAME
MT::Auth
=head1 DESCRIPTION
=head1 CREATING AN AUTHENTICATION MODULE
=head1 METHODS
=head2 MT::Auth->invalidate_credentials(\%context)
A routine responsible for clearing the active logged-in user. Some
authentication modules may take advantage of this time to redirect the user
or synchronize other operations at this time.
=head2 MT::Auth->is_valid_password($author, $password, $crypted, \$error_ref)
A routine that determines whether the given password is valid for the
author object supplied. If the password is already processed by the
'crypt' function, the third parameter here will be positive. The \$error_ref
is a reference to a scalar variable for storing any error message to
be returned to the application. The routine itself should return 1 for
a valid password, 0 or undef for an invalid one.
=head2 MT::Auth->fetch_credentials(\%context)
A routine that gathers login credentials from the active request and
returns key elements in a hashref. The hashref should contain any of
the following applicable key fields:
=over 4
=item * app - The handle to the active application.
=item * username - The username of the active user.
=item * password - The user's password.
=item * session_id - If a session-based authenication is taking place,
store the session id with this key.
=item * permanent - A flag that identifies whether or not the credentials
should be indefinitely cached.
=back
=head2 MT::Auth->delegate_auth
A boolean flag that identifies whether this authentication module provides
a delegate authentication system. This would be the case where MT itself
does not ask for authentication information, but instead defers to another
web service or protocol. Typically, a delegated authentication also
involves using request redirects to the authentication service when
necessary.
=head2 MT::Auth->password_exists
A boolean flag that identifies whether this authentication module utilizes
a password or not (that is, whether one is required for an account and
stored with the user profile).
=head2 MT::Auth->validate_credentials(\%context)
A routine that takes the context returned by the 'fetch_credentials'
method and determines if they are valid or not. It is also responsible
for assigning the active user if the credentials are correct.
=head2 MT::Auth->can_logout
A boolean flag that identifies whether this authentication module allows
for a 'Logout' link and logout mechanism within the application interface.
=head2 MT::Auth->login_form
A method that returns a snippet of HTML code for displaying the necessary
fields for logging into the MT application.
=head2 MT::Auth->sanity_check
A method used by the MT application to determine if the form data provided
for creating a new user is valid or not.
=head2 MT::Auth->is_profile_needed
A boolean flag that identifies whether this authentication module expects
the local management of the user's profile.
=head2 MT::Auth->can_recover_password
A boolean flag that identifies whether this authentication module provides
a password recovery function. This is only valid when passwords are locally
stored and managed.
=head2 MT::Auth->new_user
A method used in the login attempt to give chance to each authentication
layer to process the user who is going to be created upon loggin in
for the first time. The method must return boolean value indicating
whether or not the method actually saved the new user to the database or not.
=head2 MT::Auth->new_login
A method used in the login attempt to give chance to each authentication
layer to process the existing user logging in.
=head2 DELETED
=head2 INACTIVE
=head2 INVALID_PASSWORD
=head2 NEW_LOGIN
=head2 NEW_USER
=head2 PENDING
=head2 REDIRECT_NEEDED
=head2 SUCCESS
=head2 UNKNOWN
=head2 errstr
=head2 release
=head2 synchronize
=head2 synchronize_author
=head2 synchronize_group
=head2 task_synchronize
=head1 AUTHOR & COPYRIGHT
Please see L<MT/AUTHOR & COPYRIGHT>.
=cut