Move comment about groups potentially returning less results from server.
[mediawiki.git] / includes / api / ApiQueryUserInfo.php
blob112fbb339a766a6a55a3eacdd80a8d450a687e3f
1 <?php
2 /**
5 * Created on July 30, 2007
7 * Copyright © 2007 Yuri Astrakhan <Firstname><Lastname>@gmail.com
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.
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.
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
24 * @file
27 if ( !defined( 'MEDIAWIKI' ) ) {
28 // Eclipse helper - will be ignored in production
29 require_once( 'ApiQueryBase.php' );
32 /**
33 * Query module to get information about the currently logged-in user
35 * @ingroup API
37 class ApiQueryUserInfo extends ApiQueryBase {
39 private $prop = array();
41 public function __construct( $query, $moduleName ) {
42 parent::__construct( $query, $moduleName, 'ui' );
45 public function execute() {
46 $params = $this->extractRequestParams();
47 $result = $this->getResult();
49 if ( !is_null( $params['prop'] ) ) {
50 $this->prop = array_flip( $params['prop'] );
53 $r = $this->getCurrentUserInfo();
54 $result->addValue( 'query', $this->getModuleName(), $r );
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();
64 if ( $wgUser->isAnon() ) {
65 $vals['anon'] = '';
68 if ( isset( $this->prop['blockinfo'] ) ) {
69 if ( $wgUser->isBlocked() ) {
70 $vals['blockedby'] = User::whoIs( $wgUser->blockedBy() );
71 $vals['blockreason'] = $wgUser->blockedFor();
75 if ( isset( $this->prop['hasmsg'] ) && $wgUser->getNewtalk() ) {
76 $vals['messages'] = '';
79 if ( isset( $this->prop['groups'] ) ) {
80 $autolist = ApiQueryUsers::getAutoGroups( $wgUser );
82 $vals['groups'] = array_merge( $autolist, $wgUser->getGroups() );
83 $result->setIndexedTagName( $vals['groups'], 'g' ); // even if empty
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
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' );
100 if ( isset( $this->prop['options'] ) ) {
101 $vals['options'] = $wgUser->getOptions();
104 if (
105 isset( $this->prop['preferencestoken'] ) &&
106 is_null( $this->getMain()->getRequest()->getVal( 'callback' ) )
109 $vals['preferencestoken'] = $wgUser->editToken();
112 if ( isset( $this->prop['editcount'] ) ) {
113 $vals['editcount'] = intval( $wgUser->getEditCount() );
116 if ( isset( $this->prop['ratelimits'] ) ) {
117 $vals['ratelimits'] = $this->getRateLimits();
120 if ( isset( $this->prop['realname'] ) ) {
121 $vals['realname'] = $wgUser->getRealName();
124 if ( isset( $this->prop['email'] ) ) {
125 $vals['email'] = $wgUser->getEmail();
126 $auth = $wgUser->getEmailAuthenticationTimestamp();
127 if ( !is_null( $auth ) ) {
128 $vals['emailauthenticated'] = wfTimestamp( TS_ISO_8601, $auth );
132 if ( isset( $this->prop['acceptlang'] ) ) {
133 $langs = $wgRequest->getAcceptLang();
134 $acceptLang = array();
135 foreach ( $langs as $lang => $val ) {
136 $r = array( 'q' => $val );
137 ApiResult::setContent( $r, $lang );
138 $acceptLang[] = $r;
140 $result->setIndexedTagName( $acceptLang, 'lang' );
141 $vals['acceptlang'] = $acceptLang;
143 return $vals;
146 protected function getRateLimits() {
147 global $wgUser, $wgRateLimits;
148 if ( !$wgUser->isPingLimitable() ) {
149 return array(); // No limits
152 // Find out which categories we belong to
153 $categories = array();
154 if ( $wgUser->isAnon() ) {
155 $categories[] = 'anon';
156 } else {
157 $categories[] = 'user';
159 if ( $wgUser->isNewbie() ) {
160 $categories[] = 'ip';
161 $categories[] = 'subnet';
162 if ( !$wgUser->isAnon() )
163 $categories[] = 'newbie';
165 $categories = array_merge( $categories, $wgUser->getGroups() );
167 // Now get the actual limits
168 $retval = array();
169 foreach ( $wgRateLimits as $action => $limits ) {
170 foreach ( $categories as $cat ) {
171 if ( isset( $limits[$cat] ) && !is_null( $limits[$cat] ) ) {
172 $retval[$action][$cat]['hits'] = intval( $limits[$cat][0] );
173 $retval[$action][$cat]['seconds'] = intval( $limits[$cat][1] );
177 return $retval;
180 public function getAllowedParams() {
181 return array(
182 'prop' => array(
183 ApiBase::PARAM_DFLT => null,
184 ApiBase::PARAM_ISMULTI => true,
185 ApiBase::PARAM_TYPE => array(
186 'blockinfo',
187 'hasmsg',
188 'groups',
189 'rights',
190 'changeablegroups',
191 'options',
192 'preferencestoken',
193 'editcount',
194 'ratelimits',
195 'email',
196 'realname',
197 'acceptlang',
203 public function getParamDescription() {
204 return array(
205 'prop' => array(
206 'What pieces of information to include',
207 ' blockinfo - Tags if the current user is blocked, by whom, and for what reason',
208 ' hasmsg - Adds a tag "message" if the current user has pending messages',
209 ' groups - Lists all the groups the current user belongs to',
210 ' rights - Lists all the rights the current user has',
211 ' changeablegroups - Lists the groups the current user can add to and remove from',
212 ' options - Lists all preferences the current user has set',
213 ' editcount - Adds the current user\'s edit count',
214 ' ratelimits - Lists all rate limits applying to the current user',
215 ' realname - Adds the user\'s real name',
216 ' email - Adds the user\'s email address and email authentication date',
217 ' acceptlang - Echoes the Accept-Language header sent by the client in a structured format',
222 public function getDescription() {
223 return 'Get information about the current user';
226 protected function getExamples() {
227 return array(
228 'api.php?action=query&meta=userinfo',
229 'api.php?action=query&meta=userinfo&uiprop=blockinfo|groups|rights|hasmsg',
233 public function getVersion() {
234 return __CLASS__ . ': $Id$';