3 * Authentication plugin interface
5 * Copyright © 2004 Brion Vibber <brion@pobox.com>
6 * http://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.
38 * Check whether there exists a user account with the given name.
39 * The name will be normalized to MediaWiki's requirements, so
40 * you might need to munge it (for instance, for lowercase initial
43 * @param $username String: username.
46 public function userExists( $username ) {
52 * Check if a username+password pair is a valid login.
53 * The name will be normalized to MediaWiki's requirements, so
54 * you might need to munge it (for instance, for lowercase initial
57 * @param $username String: username.
58 * @param $password String: user password.
61 public function authenticate( $username, $password ) {
67 * Modify options in the login template.
69 * @param $template UserLoginTemplate object.
70 * @param $type String 'signup' or 'login'. Added in 1.16.
72 public function modifyUITemplate( &$template, &$type ) {
74 $template->set( 'usedomain', false );
78 * Set the domain this plugin is supposed to use when authenticating.
80 * @param $domain String: authentication domain.
82 public function setDomain( $domain ) {
83 $this->domain
= $domain;
87 * Check to see if the specific domain is a valid domain.
89 * @param $domain String: authentication domain.
92 public function validDomain( $domain ) {
98 * When a user logs in, optionally fill in preferences and such.
99 * For instance, you might pull the email address or real name from the
100 * external user database.
102 * The User object is passed by reference so it can be modified; don't
103 * forget the & on your function declaration.
105 * @param $user User object
108 public function updateUser( &$user ) {
109 # Override this and do something
114 * Return true if the wiki should create a new local account automatically
115 * when asked to login a user who doesn't exist locally but does in the
116 * external auth database.
118 * If you don't automatically create accounts, you must still create
119 * accounts in some way. It's not possible to authenticate without
122 * This is just a question, and shouldn't perform any actions.
126 public function autoCreate() {
131 * Allow a property change? Properties are the same as preferences
132 * and use the same keys. 'Realname' 'Emailaddress' and 'Nickname'
133 * all reference this.
135 * @param $prop string
139 public function allowPropChange( $prop = '' ) {
140 if ( $prop == 'realname' && is_callable( array( $this, 'allowRealNameChange' ) ) ) {
141 return $this->allowRealNameChange();
142 } elseif ( $prop == 'emailaddress' && is_callable( array( $this, 'allowEmailChange' ) ) ) {
143 return $this->allowEmailChange();
144 } elseif ( $prop == 'nickname' && is_callable( array( $this, 'allowNickChange' ) ) ) {
145 return $this->allowNickChange();
152 * Can users change their passwords?
156 public function allowPasswordChange() {
161 * Set the given password in the authentication database.
162 * As a special case, the password may be set to null to request
163 * locking the password to an unusable value, with the expectation
164 * that it will be set later through a mail reset or other method.
166 * Return true if successful.
168 * @param $user User object.
169 * @param $password String: password.
172 public function setPassword( $user, $password ) {
177 * Update user information in the external authentication database.
178 * Return true if successful.
180 * @param $user User object.
183 public function updateExternalDB( $user ) {
188 * Check to see if external accounts can be created.
189 * Return true if external accounts can be created.
192 public function canCreateAccounts() {
197 * Add a user to the external authentication database.
198 * Return true if successful.
200 * @param $user User: only the name should be assumed valid at this point
201 * @param $password String
202 * @param $email String
203 * @param $realname String
206 public function addUser( $user, $password, $email = '', $realname = '' ) {
211 * Return true to prevent logins that don't authenticate here from being
212 * checked against the local database's password fields.
214 * This is just a question, and shouldn't perform any actions.
218 public function strict() {
223 * Check if a user should authenticate locally if the global authentication fails.
224 * If either this or strict() returns true, local authentication is not used.
226 * @param $username String: username.
229 public function strictUserAuth( $username ) {
234 * When creating a user account, optionally fill in preferences and such.
235 * For instance, you might pull the email address or real name from the
236 * external user database.
238 * The User object is passed by reference so it can be modified; don't
239 * forget the & on your function declaration.
241 * @param $user User object.
242 * @param $autocreate Boolean: True if user is being autocreated on login
244 public function initUser( &$user, $autocreate = false ) {
245 # Override this to do something.
249 * If you want to munge the case of an account name before the final
250 * check, now is your chance.
251 * @param $username string
254 public function getCanonicalName( $username ) {
259 * Get an instance of a User object
263 * @return AuthPluginUser
265 public function getUserInstance( User
&$user ) {
266 return new AuthPluginUser( $user );
270 * Get a list of domains (in HTMLForm options format) used.
274 public function domainList() {
279 class AuthPluginUser
{
280 function __construct( $user ) {
284 public function getId() {
289 public function isLocked() {
294 public function isHidden() {
299 public function resetAuthToken() {