API: (bug 17561) Recommit r44231 ("Added usprop=emailable to list=users"), which...
[lhc/web/wiklou.git] / includes / api / ApiQueryUsers.php
1 <?php
2
3 /*
4 * Created on July 30, 2007
5 *
6 * API for MediaWiki 1.8+
7 *
8 * Copyright (C) 2007 Roan Kattouw <Firstname>.<Lastname>@home.nl
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License along
21 * with this program; if not, write to the Free Software Foundation, Inc.,
22 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
23 * http://www.gnu.org/copyleft/gpl.html
24 */
25
26 if (!defined('MEDIAWIKI')) {
27 // Eclipse helper - will be ignored in production
28 require_once ('ApiQueryBase.php');
29 }
30
31 /**
32 * Query module to get information about a list of users
33 *
34 * @ingroup API
35 */
36
37 class ApiQueryUsers extends ApiQueryBase {
38
39 public function __construct($query, $moduleName) {
40 parent :: __construct($query, $moduleName, 'us');
41 }
42
43 public function execute() {
44 $params = $this->extractRequestParams();
45 $result = $this->getResult();
46 $r = array();
47
48 if (!is_null($params['prop'])) {
49 $this->prop = array_flip($params['prop']);
50 } else {
51 $this->prop = array();
52 }
53
54 $users = (array)$params['users'];
55 $goodNames = $done = array();
56 $result = $this->getResult();
57 // Canonicalize user names
58 foreach($users as $u) {
59 $n = User::getCanonicalName($u);
60 if($n === false || $n === '')
61 {
62 $vals = array('name' => $u, 'invalid' => '');
63 $fit = $result->addValue(array('query', $this->getModuleName()),
64 null, $vals);
65 if(!$fit)
66 {
67 $this->setContinueEnumParameter('users',
68 implode('|', array_diff($users, $done)));
69 $goodNames = array();
70 break;
71 }
72 $done[] = $u;
73 }
74 else
75 $goodNames[] = $n;
76 }
77 if(count($goodNames))
78 {
79 $db = $this->getDb();
80 $this->addTables('user', 'u1');
81 $this->addFields('u1.user_name');
82 $this->addWhereFld('u1.user_name', $goodNames);
83 $this->addFieldsIf('u1.user_editcount', isset($this->prop['editcount']));
84 $this->addFieldsIf('u1.user_registration', isset($this->prop['registration']));
85
86 if(isset($this->prop['groups'])) {
87 $this->addTables('user_groups');
88 $this->addJoinConds(array('user_groups' => array('LEFT JOIN', 'ug_user=u1.user_id')));
89 $this->addFields('ug_group');
90 }
91 if(isset($this->prop['blockinfo'])) {
92 $this->addTables('ipblocks');
93 $this->addTables('user', 'u2');
94 $u2 = $this->getAliasedName('user', 'u2');
95 $this->addJoinConds(array(
96 'ipblocks' => array('LEFT JOIN', 'ipb_user=u1.user_id'),
97 $u2 => array('LEFT JOIN', 'ipb_by=u2.user_id')));
98 $this->addFields(array('ipb_reason', 'u2.user_name AS blocker_name'));
99 }
100
101 $data = array();
102 $res = $this->select(__METHOD__);
103 while(($r = $db->fetchObject($res))) {
104 $user = User::newFromRow($r);
105 $name = $user->getName();
106 $data[$name]['name'] = $name;
107 if(isset($this->prop['editcount']))
108 // No proper member function in the User class for this
109 $data[$name]['editcount'] = $r->user_editcount;
110 if(isset($this->prop['registration']))
111 // Nor for this one
112 $data[$name]['registration'] = wfTimestampOrNull(TS_ISO_8601, $r->user_registration);
113 if(isset($this->prop['groups']) && !is_null($r->ug_group))
114 // This row contains only one group, others will be added from other rows
115 $data[$name]['groups'][] = $r->ug_group;
116 if(isset($this->prop['blockinfo']) && !is_null($r->blocker_name)) {
117 $data[$name]['blockedby'] = $r->blocker_name;
118 $data[$name]['blockreason'] = $r->ipb_reason;
119 }
120 if(isset($this->prop['emailable']) && $user->canReceiveEmail())
121 $data[$name]['emailable'] = '';
122 }
123 }
124 // Second pass: add result data to $retval
125 foreach($goodNames as $u) {
126 if(!isset($data[$u]))
127 $data[$u] = array('name' => $u, 'missing' => '');
128 else {
129 if(isset($this->prop['groups']) && isset($data[$u]['groups']))
130 $this->getResult()->setIndexedTagName($data[$u]['groups'], 'g');
131 }
132 $fit = $result->addValue(array('query', $this->getModuleName()),
133 null, $data[$u]);
134 if(!$fit)
135 {
136 $this->setContinueEnumParameter('users',
137 implode('|', array_diff($users, $done)));
138 break;
139 }
140 $done[] = $u;
141 }
142 return $this->getResult()->setIndexedTagName_internal(array('query', $this->getModuleName()), 'user');
143 }
144
145 public function getAllowedParams() {
146 return array (
147 'prop' => array (
148 ApiBase :: PARAM_DFLT => NULL,
149 ApiBase :: PARAM_ISMULTI => true,
150 ApiBase :: PARAM_TYPE => array (
151 'blockinfo',
152 'groups',
153 'editcount',
154 'registration',
155 'emailable',
156 )
157 ),
158 'users' => array(
159 ApiBase :: PARAM_ISMULTI => true
160 )
161 );
162 }
163
164 public function getParamDescription() {
165 return array (
166 'prop' => array(
167 'What pieces of information to include',
168 ' blockinfo - tags if the user is blocked, by whom, and for what reason',
169 ' groups - lists all the groups the user belongs to',
170 ' editcount - adds the user\'s edit count',
171 ' registration - adds the user\'s registration timestamp',
172 ' emailable - tags if the user can and wants to receive e-mail through [[Special:Emailuser]]',
173 ),
174 'users' => 'A list of users to obtain the same information for'
175 );
176 }
177
178 public function getDescription() {
179 return 'Get information about a list of users';
180 }
181
182 protected function getExamples() {
183 return 'api.php?action=query&list=users&ususers=brion|TimStarling&usprop=groups|editcount';
184 }
185
186 public function getVersion() {
187 return __CLASS__ . ': $Id$';
188 }
189 }