Don't pass $this by reference
[lhc/web/wiklou.git] / includes / api / ApiQueryUserInfo.php
1 <?php
2 /**
3 *
4 *
5 * Created on July 30, 2007
6 *
7 * Copyright © 2007 Yuri Astrakhan <Firstname><Lastname>@gmail.com
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License along
20 * with this program; if not, write to the Free Software Foundation, Inc.,
21 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
22 * http://www.gnu.org/copyleft/gpl.html
23 *
24 * @file
25 */
26
27 if ( !defined( 'MEDIAWIKI' ) ) {
28 // Eclipse helper - will be ignored in production
29 require_once( 'ApiQueryBase.php' );
30 }
31
32 /**
33 * Query module to get information about the currently logged-in user
34 *
35 * @ingroup API
36 */
37 class ApiQueryUserInfo extends ApiQueryBase {
38
39 private $prop = array();
40
41 public function __construct( $query, $moduleName ) {
42 parent::__construct( $query, $moduleName, 'ui' );
43 }
44
45 public function execute() {
46 $params = $this->extractRequestParams();
47 $result = $this->getResult();
48
49 if ( !is_null( $params['prop'] ) ) {
50 $this->prop = array_flip( $params['prop'] );
51 }
52
53 $r = $this->getCurrentUserInfo();
54 $result->addValue( 'query', $this->getModuleName(), $r );
55 }
56
57 protected function getCurrentUserInfo() {
58 global $wgUser, $wgRequest;
59 $result = $this->getResult();
60 $vals = array();
61 $vals['id'] = intval( $wgUser->getId() );
62 $vals['name'] = $wgUser->getName();
63
64 if ( $wgUser->isAnon() ) {
65 $vals['anon'] = '';
66 }
67
68 if ( isset( $this->prop['blockinfo'] ) ) {
69 if ( $wgUser->isBlocked() ) {
70 $vals['blockedby'] = User::whoIs( $wgUser->blockedBy() );
71 $vals['blockreason'] = $wgUser->blockedFor();
72 }
73 }
74
75 if ( isset( $this->prop['hasmsg'] ) && $wgUser->getNewtalk() ) {
76 $vals['messages'] = '';
77 }
78
79 if ( isset( $this->prop['groups'] ) ) {
80 $autolist = ApiQueryUsers::getAutoGroups( $wgUser );
81
82 $vals['groups'] = array_merge( $autolist, $wgUser->getGroups() );
83 $result->setIndexedTagName( $vals['groups'], 'g' ); // even if empty
84 }
85
86 if ( isset( $this->prop['rights'] ) ) {
87 // User::getRights() may return duplicate values, strip them
88 $vals['rights'] = array_values( array_unique( $wgUser->getRights() ) );
89 $result->setIndexedTagName( $vals['rights'], 'r' ); // even if empty
90 }
91
92 if ( isset( $this->prop['changeablegroups'] ) ) {
93 $vals['changeablegroups'] = $wgUser->changeableGroups();
94 $result->setIndexedTagName( $vals['changeablegroups']['add'], 'g' );
95 $result->setIndexedTagName( $vals['changeablegroups']['remove'], 'g' );
96 $result->setIndexedTagName( $vals['changeablegroups']['add-self'], 'g' );
97 $result->setIndexedTagName( $vals['changeablegroups']['remove-self'], 'g' );
98 }
99
100 if ( isset( $this->prop['options'] ) ) {
101 $vals['options'] = $wgUser->getOptions();
102 }
103
104 if ( isset( $this->prop['preferencestoken'] ) &&
105 is_null( $this->getMain()->getRequest()->getVal( 'callback' ) )
106 ) {
107 $vals['preferencestoken'] = $wgUser->editToken( '', $this->getMain()->getRequest() );
108 }
109
110 if ( isset( $this->prop['editcount'] ) ) {
111 $vals['editcount'] = intval( $wgUser->getEditCount() );
112 }
113
114 if ( isset( $this->prop['ratelimits'] ) ) {
115 $vals['ratelimits'] = $this->getRateLimits();
116 }
117
118 if ( isset( $this->prop['realname'] ) ) {
119 $vals['realname'] = $wgUser->getRealName();
120 }
121
122 if ( isset( $this->prop['email'] ) ) {
123 $vals['email'] = $wgUser->getEmail();
124 $auth = $wgUser->getEmailAuthenticationTimestamp();
125 if ( !is_null( $auth ) ) {
126 $vals['emailauthenticated'] = wfTimestamp( TS_ISO_8601, $auth );
127 }
128 }
129
130 if ( isset( $this->prop['acceptlang'] ) ) {
131 $langs = $wgRequest->getAcceptLang();
132 $acceptLang = array();
133 foreach ( $langs as $lang => $val ) {
134 $r = array( 'q' => $val );
135 ApiResult::setContent( $r, $lang );
136 $acceptLang[] = $r;
137 }
138 $result->setIndexedTagName( $acceptLang, 'lang' );
139 $vals['acceptlang'] = $acceptLang;
140 }
141 return $vals;
142 }
143
144 protected function getRateLimits() {
145 global $wgUser, $wgRateLimits;
146 if ( !$wgUser->isPingLimitable() ) {
147 return array(); // No limits
148 }
149
150 // Find out which categories we belong to
151 $categories = array();
152 if ( $wgUser->isAnon() ) {
153 $categories[] = 'anon';
154 } else {
155 $categories[] = 'user';
156 }
157 if ( $wgUser->isNewbie() ) {
158 $categories[] = 'ip';
159 $categories[] = 'subnet';
160 if ( !$wgUser->isAnon() )
161 $categories[] = 'newbie';
162 }
163 $categories = array_merge( $categories, $wgUser->getGroups() );
164
165 // Now get the actual limits
166 $retval = array();
167 foreach ( $wgRateLimits as $action => $limits ) {
168 foreach ( $categories as $cat ) {
169 if ( isset( $limits[$cat] ) && !is_null( $limits[$cat] ) ) {
170 $retval[$action][$cat]['hits'] = intval( $limits[$cat][0] );
171 $retval[$action][$cat]['seconds'] = intval( $limits[$cat][1] );
172 }
173 }
174 }
175 return $retval;
176 }
177
178 public function getAllowedParams() {
179 return array(
180 'prop' => array(
181 ApiBase::PARAM_DFLT => null,
182 ApiBase::PARAM_ISMULTI => true,
183 ApiBase::PARAM_TYPE => array(
184 'blockinfo',
185 'hasmsg',
186 'groups',
187 'rights',
188 'changeablegroups',
189 'options',
190 'preferencestoken',
191 'editcount',
192 'ratelimits',
193 'email',
194 'realname',
195 'acceptlang',
196 )
197 )
198 );
199 }
200
201 public function getParamDescription() {
202 return array(
203 'prop' => array(
204 'What pieces of information to include',
205 ' blockinfo - Tags if the current user is blocked, by whom, and for what reason',
206 ' hasmsg - Adds a tag "message" if the current user has pending messages',
207 ' groups - Lists all the groups the current user belongs to',
208 ' rights - Lists all the rights the current user has',
209 ' changeablegroups - Lists the groups the current user can add to and remove from',
210 ' options - Lists all preferences the current user has set',
211 ' editcount - Adds the current user\'s edit count',
212 ' ratelimits - Lists all rate limits applying to the current user',
213 ' realname - Adds the user\'s real name',
214 ' email - Adds the user\'s email address and email authentication date',
215 ' acceptlang - Echoes the Accept-Language header sent by the client in a structured format',
216 )
217 );
218 }
219
220 public function getDescription() {
221 return 'Get information about the current user';
222 }
223
224 protected function getExamples() {
225 return array(
226 'api.php?action=query&meta=userinfo',
227 'api.php?action=query&meta=userinfo&uiprop=blockinfo|groups|rights|hasmsg',
228 );
229 }
230
231 public function getVersion() {
232 return __CLASS__ . ': $Id$';
233 }
234 }