Partially implement http://bugzilla.wikipedia.org/show_bug.cgi?id=770
[lhc/web/wiklou.git] / includes / SpecialListusers.php
1 <?php
2 # Copyright (C) 2004 Brion Vibber, lcrocker, Tim Starling,
3 # Domas Mituzas, Ashar Voultoiz, Jens Frank, Zhengzhu.
4 #
5 # http://www.mediawiki.org/
6 #
7 # This program is free software; you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 2 of the License, or
10 # (at your option) any later version.
11 #
12 # This program is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
16 #
17 # You should have received a copy of the GNU General Public License along
18 # with this program; if not, write to the Free Software Foundation, Inc.,
19 # 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
20 # http://www.gnu.org/copyleft/gpl.html
21 /**
22 *
23 * @package MediaWiki
24 * @subpackage SpecialPage
25 */
26
27 /**
28 *
29 */
30 require_once("QueryPage.php");
31
32 /**
33 * This class is used to get a list of user. The ones with specials
34 * rights (sysop, bureaucrat, developer) will have them displayed
35 * next to their names.
36 *
37 * @package MediaWiki
38 * @subpackage SpecialPage
39 */
40 class ListUsersPage extends QueryPage {
41 var $requestedGroup = '';
42 var $requestedUser = '';
43
44 function getName() {
45 return "Listusers";
46 }
47
48 /**
49 * Show a drop down list to select a group as well as a user name
50 * search box.
51 * @TODO: localize
52 */
53 function getPageHeader( ) {
54 global $wgScript;
55
56 // Various variables used for the form
57 $action = htmlspecialchars( $wgScript );
58 $title = Title::makeTitle( NS_SPECIAL, 'Listusers' );
59 $special = htmlspecialchars( $title->getPrefixedDBkey() );
60
61 // form header
62 $out = '<form method="get" action="'.$action.'">' .
63 '<input type="hidden" name="title" value="'.$special.'" />' .
64 'Group: <select name="group">' .
65
66 // get all group names and id
67 $dbr = & wfGetDB( DB_SLAVE );
68 $group = $dbr->tableName( 'group' );
69 $sql = "SELECT group_id, group_name FROM $group;";
70 $result = $dbr->query($sql);
71
72 // we want a default empty group
73 $out.= '<option value=""></option>';
74
75 // build the dropdown list menu using datas from the database
76 while($agroup = $dbr->fetchObject( $result )) {
77 $selected = ($agroup->group_id == $this->requestedGroup) ? " selected " : "" ;
78 $out.= '<option value="'.$agroup->group_id.'" '.$selected.'>'.$agroup->group_name.'</option>';
79 }
80 $out .= '</select> ';
81
82 $out .= 'User: <input type="text" name="username" /> ';
83
84 // OK button, end of form.
85 $out .= '<input type="submit" /></form>';
86 // congratulations the form is now build
87 return $out;
88 }
89
90 function getSQL() {
91 $dbr =& wfGetDB( DB_SLAVE );
92 /* system showing possible actions for users
93 $user = $dbr->tableName( 'user' );
94 $user_rights = $dbr->tableName( 'user_rights' );
95 $userspace = Namespace::getUser();
96 return "SELECT ur_rights as type, $userspace as namespace, user_name as title, " .
97 "user_name as value FROM $user LEFT JOIN $user_rights ON user_id = ur_user";
98 */
99 /** Show groups instead */
100 $user = $dbr->tableName( 'user' );
101 $group = $dbr->tableName( 'group' );
102 $user_groups = $dbr->tableName( 'user_groups' );
103
104 $userspace = Namespace::getUser();
105 $sql = "SELECT group_name as type, $userspace AS namespace, user_name AS title, user_name as value " .
106 "FROM $user LEFT JOIN $user_groups ON user_id =ug_user " .
107 "LEFT JOIN $group ON ug_group = group_id ";
108
109 if($this->requestedGroup != '') {
110 $sql .= "WHERE group_id= '$this->requestedGroup' ";
111 if($this->requestedUser != '') {
112 $sql .= "AND user_name = '$this->requestedUser' ";
113 }
114 } else {
115 if($this->requestedUser !='') {
116 $sql .= "WHERE user_name = '$this->requestedUser' ";
117 }
118 }
119
120 return $sql;
121 }
122
123 function sortDescending() {
124 return false;
125 }
126
127 function formatResult( $skin, $result ) {
128 global $wgContLang;
129 $name = $skin->makeLink( $wgContLang->getNsText($result->namespace) . ':' . $result->title, $result->title );
130 if( '' != $result->type ) {
131 $name .= ' (' .
132 $skin->makeLink( wfMsgForContent( 'administrators' ), $result->type) .
133 ')';
134 }
135 return $name;
136 }
137 }
138
139 /**
140 * constructor
141 */
142 function wfSpecialListusers() {
143 global $wgUser, $wgOut, $wgLang, $wgRequest;
144
145 list( $limit, $offset ) = wfCheckLimits();
146
147 $slu = new ListUsersPage();
148
149 /**
150 * Get some parameters
151 */
152 $slu->requestedGroup = $wgRequest->getVal('group');
153 $slu->requestedUser = $wgRequest->getVal('username');
154
155 return $slu->doQuery( $offset, $limit );
156 }
157
158 ?>