summaryrefslogtreecommitdiff
path: root/includes/extauth/Hardcoded.php
diff options
context:
space:
mode:
authorPierre Schmitz <pierre@archlinux.de>2010-07-28 11:52:48 +0200
committerPierre Schmitz <pierre@archlinux.de>2010-07-28 11:52:48 +0200
commit222b01f5169f1c7e69762e0e8904c24f78f71882 (patch)
tree8e932e12546bb991357ec48eb1638d1770be7a35 /includes/extauth/Hardcoded.php
parent00ab76a6b686e98a914afc1975812d2b1aaa7016 (diff)
update to MediaWiki 1.16.0
Diffstat (limited to 'includes/extauth/Hardcoded.php')
-rw-r--r--includes/extauth/Hardcoded.php79
1 files changed, 79 insertions, 0 deletions
diff --git a/includes/extauth/Hardcoded.php b/includes/extauth/Hardcoded.php
new file mode 100644
index 00000000..a9a60bea
--- /dev/null
+++ b/includes/extauth/Hardcoded.php
@@ -0,0 +1,79 @@
+<?php
+
+# Copyright (C) 2009 Aryeh Gregor
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License along
+# with this program; if not, write to the Free Software Foundation, Inc.,
+# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+# http://www.gnu.org/copyleft/gpl.html
+
+/**
+ * This class supports external authentication from a literal array dumped in
+ * LocalSettings.php. It's mostly useful for testing. Example configuration:
+ *
+ * $wgExternalAuthType = 'ExternalUser_Hardcoded';
+ * $wgExternalAuthConf = array(
+ * 'Bob Smith' => array(
+ * 'password' => 'literal string',
+ * 'emailaddress' => 'bob@example.com',
+ * ),
+ * );
+ *
+ * Multiple names may be provided. The keys of the inner arrays can be either
+ * 'password', or the name of any preference.
+ *
+ * @ingroup ExternalUser
+ */
+class ExternalUser_Hardcoded extends ExternalUser {
+ private $mName;
+
+ protected function initFromName( $name ) {
+ global $wgExternalAuthConf;
+
+ if ( isset( $wgExternalAuthConf[$name] ) ) {
+ $this->mName = $name;
+ return true;
+ }
+ return false;
+ }
+
+ protected function initFromId( $id ) {
+ return $this->initFromName( $id );
+ }
+
+ public function getId() {
+ return $this->mName;
+ }
+
+ public function getName() {
+ return $this->mName;
+ }
+
+ public function authenticate( $password ) {
+ global $wgExternalAuthConf;
+
+ return isset( $wgExternalAuthConf[$this->mName]['password'] )
+ && $wgExternalAuthConf[$this->mName]['password'] == $password;
+ }
+
+ public function getPref( $pref ) {
+ global $wgExternalAuthConf;
+
+ if ( isset( $wgExternalAuthConf[$this->mName][$pref] ) ) {
+ return $wgExternalAuthConf[$this->mName][$pref];
+ }
+ return null;
+ }
+
+ # TODO: Implement setPref() via regex on LocalSettings. (Just kidding.)
+}