3 * Authentication plugin interface
5 * Copyright © 2004 Brion Vibber <brion@pobox.com>
6 * https://www.mediawiki.org/
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License along
19 * with this program; if not, write to the Free Software Foundation, Inc.,
20 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
21 * http://www.gnu.org/copyleft/gpl.html
27 * Authentication plugin interface. Instantiate a subclass of AuthPlugin
28 * and set $wgAuth to it to authenticate against some external tool.
30 * The default behavior is not to do anything, and use the local user
31 * database for all authentication. A subclass can require that all
32 * accounts authenticate externally, or use it only as a fallback; also
33 * you can transparently create internal wiki accounts the first time
34 * someone logs in who can be authenticated externally.
43 * Check whether there exists a user account with the given name.
44 * The name will be normalized to MediaWiki's requirements, so
45 * you might need to munge it (for instance, for lowercase initial
48 * @param string $username Username.
51 public function userExists( $username ) {
57 * Check if a username+password pair is a valid login.
58 * The name will be normalized to MediaWiki's requirements, so
59 * you might need to munge it (for instance, for lowercase initial
62 * @param string $username Username.
63 * @param string $password User password.
66 public function authenticate( $username, $password ) {
72 * Modify options in the login template.
74 * @param UserLoginTemplate $template
75 * @param string $type 'signup' or 'login'. Added in 1.16.
77 public function modifyUITemplate( &$template, &$type ) {
79 $template->set( 'usedomain', false );
83 * Set the domain this plugin is supposed to use when authenticating.
85 * @param string $domain Authentication domain.
87 public function setDomain( $domain ) {
88 $this->domain
= $domain;
92 * Get the user's domain
96 public function getDomain() {
97 if ( isset( $this->domain
) ) {
100 return 'invaliddomain';
105 * Check to see if the specific domain is a valid domain.
107 * @param string $domain Authentication domain.
110 public function validDomain( $domain ) {
116 * When a user logs in, optionally fill in preferences and such.
117 * For instance, you might pull the email address or real name from the
118 * external user database.
120 * The User object is passed by reference so it can be modified; don't
121 * forget the & on your function declaration.
126 public function updateUser( &$user ) {
127 # Override this and do something
132 * Return true if the wiki should create a new local account automatically
133 * when asked to login a user who doesn't exist locally but does in the
134 * external auth database.
136 * If you don't automatically create accounts, you must still create
137 * accounts in some way. It's not possible to authenticate without
140 * This is just a question, and shouldn't perform any actions.
144 public function autoCreate() {
149 * Allow a property change? Properties are the same as preferences
150 * and use the same keys. 'Realname' 'Emailaddress' and 'Nickname'
151 * all reference this.
153 * @param string $prop
157 public function allowPropChange( $prop = '' ) {
158 if ( $prop == 'realname' && is_callable( array( $this, 'allowRealNameChange' ) ) ) {
159 return $this->allowRealNameChange();
160 } elseif ( $prop == 'emailaddress' && is_callable( array( $this, 'allowEmailChange' ) ) ) {
161 return $this->allowEmailChange();
162 } elseif ( $prop == 'nickname' && is_callable( array( $this, 'allowNickChange' ) ) ) {
163 return $this->allowNickChange();
170 * Can users change their passwords?
174 public function allowPasswordChange() {
179 * Should MediaWiki store passwords in its local database?
183 public function allowSetLocalPassword() {
188 * Set the given password in the authentication database.
189 * As a special case, the password may be set to null to request
190 * locking the password to an unusable value, with the expectation
191 * that it will be set later through a mail reset or other method.
193 * Return true if successful.
196 * @param string $password Password.
199 public function setPassword( $user, $password ) {
204 * Update user information in the external authentication database.
205 * Return true if successful.
210 public function updateExternalDB( $user ) {
215 * Update user groups in the external authentication database.
216 * Return true if successful.
219 * @param array $addgroups Groups to add.
220 * @param array $delgroups Groups to remove.
223 public function updateExternalDBGroups( $user, $addgroups, $delgroups = array() ) {
228 * Check to see if external accounts can be created.
229 * Return true if external accounts can be created.
232 public function canCreateAccounts() {
237 * Add a user to the external authentication database.
238 * Return true if successful.
240 * @param User $user Only the name should be assumed valid at this point
241 * @param string $password
242 * @param string $email
243 * @param string $realname
246 public function addUser( $user, $password, $email = '', $realname = '' ) {
251 * Return true to prevent logins that don't authenticate here from being
252 * checked against the local database's password fields.
254 * This is just a question, and shouldn't perform any actions.
258 public function strict() {
263 * Check if a user should authenticate locally if the global authentication fails.
264 * If either this or strict() returns true, local authentication is not used.
266 * @param string $username Username.
269 public function strictUserAuth( $username ) {
274 * When creating a user account, optionally fill in preferences and such.
275 * For instance, you might pull the email address or real name from the
276 * external user database.
278 * The User object is passed by reference so it can be modified; don't
279 * forget the & on your function declaration.
282 * @param bool $autocreate True if user is being autocreated on login
284 public function initUser( &$user, $autocreate = false ) {
285 # Override this to do something.
289 * If you want to munge the case of an account name before the final
290 * check, now is your chance.
291 * @param string $username
294 public function getCanonicalName( $username ) {
299 * Get an instance of a User object
303 * @return AuthPluginUser
305 public function getUserInstance( User
&$user ) {
306 return new AuthPluginUser( $user );
310 * Get a list of domains (in HTMLForm options format) used.
314 public function domainList() {
319 class AuthPluginUser
{
320 function __construct( $user ) {
324 public function getId() {
329 public function isLocked() {
334 public function isHidden() {
339 public function resetAuthToken() {