ca5a5c72de9b99d93f94e16e9fad088f5af9f29a
[lhc/web/wiklou.git] / includes / api / ApiLogin.php
1 <?php
2
3
4 /*
5 * Created on Sep 19, 2006
6 *
7 * API for MediaWiki 1.8+
8 *
9 * Copyright (C) 2006 Yuri Astrakhan <FirstnameLastname@gmail.com>
10 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or
14 * (at your option) any later version.
15 *
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License along
22 * with this program; if not, write to the Free Software Foundation, Inc.,
23 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
24 * http://www.gnu.org/copyleft/gpl.html
25 */
26
27 if (!defined('MEDIAWIKI')) {
28 // Eclipse helper - will be ignored in production
29 require_once ("ApiBase.php");
30 }
31
32 class ApiLogin extends ApiBase {
33
34 public function __construct($main, $action) {
35 parent :: __construct($main);
36 }
37
38 public function Execute() {
39 $lgname = $lgpassword = $lgdomain = null;
40 extract($this->ExtractRequestParams());
41
42 $params = new FauxRequest(array (
43 'wpName' => $lgname,
44 'wpPassword' => $lgpassword,
45 'wpDomain' => $lgdomain,
46 'wpRemember' => ''
47 ));
48
49 $result = array ();
50
51 $loginForm = new LoginForm($params);
52 switch ($loginForm->authenticateUserData()) {
53 case (AuthSuccess) :
54 $result['result'] = 'Success';
55 $result['lguserid'] = $_SESSION['wsUserID'];
56 $result['lgusername'] = $_SESSION['wsUserName'];
57 $result['lgtoken'] = $_SESSION['wsToken'];
58 break;
59
60 case (AuthNoName) :
61 $result['result'] = 'AuthNoName';
62 break;
63 case (AuthIllegal) :
64 $result['result'] = 'AuthIllegal';
65 break;
66 case (AuthWrongPluginPass) :
67 $result['result'] = 'AuthWrongPluginPass';
68 break;
69 case (AuthNotExists) :
70 $result['result'] = 'AuthNotExists';
71 break;
72 case (AuthWrongPass) :
73 $result['result'] = 'AuthWrongPass';
74 break;
75 case (AuthEmptyPass) :
76 $result['result'] = 'AuthEmptyPass';
77 break;
78 default :
79 $this->DieDebug("Unhandled case value");
80 }
81
82 $this->GetResult()->AddMessage('login', null, $result);
83 }
84
85 protected function GetAllowedParams() {
86 return array (
87 'lgname' => '',
88 'lgpassword' => '',
89 'lgdomain' => null
90 );
91 }
92
93 protected function GetParamDescription() {
94 return array (
95 'lgname' => 'User Name',
96 'lgpassword' => 'Password',
97 'lgdomain' => 'Domain (optional)'
98 );
99 }
100
101 protected function GetDescription() {
102 return array (
103 'This module is used to login and get the authentication tokens.'
104 );
105 }
106 }
107 ?>