mediawiki.toc: Clean up left overs
[mediawiki.git] / includes / AuthPlugin.php
blob45ad4d1bd1131c6e8567fe844565f21e64c168bb
1 <?php
2 /**
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
23 * @file
26 /**
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.
36 class AuthPlugin {
37 /**
38 * @var string
40 protected $domain;
42 /**
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
46 * letters).
48 * @param string $username Username.
49 * @return bool
51 public function userExists( $username ) {
52 # Override this!
53 return false;
56 /**
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
60 * letters).
62 * @param string $username Username.
63 * @param string $password User password.
64 * @return bool
66 public function authenticate( $username, $password ) {
67 # Override this!
68 return false;
71 /**
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 ) {
78 # Override this!
79 $template->set( 'usedomain', false );
82 /**
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;
91 /**
92 * Get the user's domain
94 * @return string
96 public function getDomain() {
97 if ( isset( $this->domain ) ) {
98 return $this->domain;
99 } else {
100 return 'invaliddomain';
105 * Check to see if the specific domain is a valid domain.
107 * @param string $domain Authentication domain.
108 * @return bool
110 public function validDomain( $domain ) {
111 # Override this!
112 return true;
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.
123 * @param User $user
124 * @return bool
126 public function updateUser( &$user ) {
127 # Override this and do something
128 return true;
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
138 * a local account.
140 * This is just a question, and shouldn't perform any actions.
142 * @return bool
144 public function autoCreate() {
145 return false;
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
155 * @return bool
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();
164 } else {
165 return true;
170 * Can users change their passwords?
172 * @return bool
174 public function allowPasswordChange() {
175 return true;
179 * Should MediaWiki store passwords in its local database?
181 * @return bool
183 public function allowSetLocalPassword() {
184 return true;
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.
195 * @param User $user
196 * @param string $password Password.
197 * @return bool
199 public function setPassword( $user, $password ) {
200 return true;
204 * Update user information in the external authentication database.
205 * Return true if successful.
207 * @param User $user
208 * @return bool
210 public function updateExternalDB( $user ) {
211 return true;
215 * Update user groups in the external authentication database.
216 * Return true if successful.
218 * @param User $user
219 * @param array $addgroups Groups to add.
220 * @param array $delgroups Groups to remove.
221 * @return bool
223 public function updateExternalDBGroups( $user, $addgroups, $delgroups = array() ) {
224 return true;
228 * Check to see if external accounts can be created.
229 * Return true if external accounts can be created.
230 * @return bool
232 public function canCreateAccounts() {
233 return false;
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
244 * @return bool
246 public function addUser( $user, $password, $email = '', $realname = '' ) {
247 return true;
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.
256 * @return bool
258 public function strict() {
259 return false;
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.
267 * @return bool
269 public function strictUserAuth( $username ) {
270 return false;
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.
281 * @param User $user
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
292 * @return string
294 public function getCanonicalName( $username ) {
295 return $username;
299 * Get an instance of a User object
301 * @param User $user
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.
312 * @return array
314 public function domainList() {
315 return array();
319 class AuthPluginUser {
320 function __construct( $user ) {
321 # Override this!
324 public function getId() {
325 # Override this!
326 return -1;
329 public function isLocked() {
330 # Override this!
331 return false;
334 public function isHidden() {
335 # Override this!
336 return false;
339 public function resetAuthToken() {
340 # Override this!
341 return true;