3 * Implements Special:Activeusers
5 * Copyright © 2008 Aaron Schulz
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.
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.
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 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
20 * http://www.gnu.org/copyleft/gpl.html
23 * @ingroup SpecialPage
27 * This class is used to get a list of active users. The ones with specials
28 * rights (sysop, bureaucrat, developer) will have them displayed
29 * next to their names.
31 * @ingroup SpecialPage
33 class ActiveUsersPager
extends UsersPager
{
43 protected $hideGroups = array();
48 protected $hideRights = array();
51 * @param $context IContextSource
52 * @param $group null Unused
53 * @param $par string Parameter passed to the page
55 function __construct( IContextSource
$context = null, $group = null, $par = null ) {
56 global $wgActiveUserDays;
58 parent
::__construct( $context );
60 $this->RCMaxAge
= $wgActiveUserDays;
61 $un = $this->getRequest()->getText( 'username', $par );
62 $this->requestedUser
= '';
64 $username = Title
::makeTitleSafe( NS_USER
, $un );
65 if( !is_null( $username ) ) {
66 $this->requestedUser
= $username->getText();
70 $this->setupOptions();
73 public function setupOptions() {
74 $this->opts
= new FormOptions();
76 $this->opts
->add( 'hidebots', false, FormOptions
::BOOL );
77 $this->opts
->add( 'hidesysops', false, FormOptions
::BOOL );
79 $this->opts
->fetchValuesFromRequest( $this->getRequest() );
81 if ( $this->opts
->getValue( 'hidebots' ) == 1 ) {
82 $this->hideRights
[] = 'bot';
84 if ( $this->opts
->getValue( 'hidesysops' ) == 1 ) {
85 $this->hideGroups
[] = 'sysop';
89 function getIndexField() {
90 return 'rc_user_text';
93 function getQueryInfo() {
94 $dbr = wfGetDB( DB_SLAVE
);
95 $conds = array( 'rc_user > 0' ); // Users - no anons
96 if( !$this->getUser()->isAllowed( 'hideuser' ) ) {
97 $conds[] = 'ipb_deleted IS NULL OR ipb_deleted = 0'; // don't show hidden names
99 $conds[] = 'rc_log_type IS NULL OR rc_log_type != ' . $dbr->addQuotes( 'newusers' );
100 $conds[] = 'rc_timestamp >= ' . $dbr->addQuotes( $dbr->timestamp( wfTimestamp( TS_UNIX
) - $this->RCMaxAge
*24*3600 ) );
102 if( $this->requestedUser
!= '' ) {
103 $conds[] = 'rc_user_text >= ' . $dbr->addQuotes( $this->requestedUser
);
107 'tables' => array( 'recentchanges', 'user', 'ipblocks' ),
108 'fields' => array( 'user_name' => 'rc_user_text', // inheritance
109 'rc_user_text', // for Pager
111 'recentedits' => 'COUNT(*)',
112 'ipb_deleted' => 'MAX(ipb_deleted)'
115 'GROUP BY' => array( 'rc_user_text', 'user_id' ),
116 'USE INDEX' => array( 'recentchanges' => 'rc_user_text' )
118 'join_conds' => array(
119 'user' => array( 'INNER JOIN', 'rc_user_text=user_name' ),
120 'ipblocks' => array( 'LEFT JOIN', array(
130 function formatRow( $row ) {
131 $userName = $row->user_name
;
133 $ulinks = Linker
::userLink( $row->user_id
, $userName );
134 $ulinks .= Linker
::userToolLinks( $row->user_id
, $userName );
136 $lang = $this->getLanguage();
139 $user = User
::newFromId( $row->user_id
);
142 foreach( $this->hideRights
as $right ) {
143 // Calling User::getRights() within the loop so that
144 // if the hideRights() filter is empty, we don't have to
145 // trigger the lazy-init of the big userrights array in the
147 if ( in_array( $right, $user->getRights() ) ) {
153 // Note: This is a different loop than for user rights,
154 // because we're reusing it to build the group links
156 foreach( $user->getGroups() as $group ) {
157 if ( in_array( $group, $this->hideGroups
) ) {
160 $list[] = self
::buildGroupLink( $group, $userName );
163 $groups = $lang->commaList( $list );
165 $item = $lang->specialList( $ulinks, $groups );
166 if( $row->ipb_deleted
) {
167 $item = "<span class=\"deleted\">$item</span>";
169 $count = $this->msg( 'activeusers-count' )->numParams( $row->recentedits
)
170 ->params( $userName )->numParams( $this->RCMaxAge
)->escaped();
171 $blocked = !is_null( $row->ipb_deleted
) ?
' ' . $this->msg( 'listusers-blocked', $userName )->escaped() : '';
173 return Html
::rawElement( 'li', array(), "{$item} [{$count}]{$blocked}" );
176 function getPageHeader() {
179 $self = $this->getTitle();
180 $limit = $this->mLimit ? Html
::hidden( 'limit', $this->mLimit
) : '';
182 $out = Xml
::openElement( 'form', array( 'method' => 'get', 'action' => $wgScript ) ); # Form tag
183 $out .= Xml
::fieldset( $this->msg( 'activeusers' )->text() ) . "\n";
184 $out .= Html
::hidden( 'title', $self->getPrefixedDBkey() ) . $limit . "\n";
186 $out .= Xml
::inputLabel( $this->msg( 'activeusers-from' )->text(),
187 'username', 'offset', 20, $this->requestedUser
) . '<br />';# Username field
189 $out .= Xml
::checkLabel( $this->msg( 'activeusers-hidebots' )->text(),
190 'hidebots', 'hidebots', $this->opts
->getValue( 'hidebots' ) );
192 $out .= Xml
::checkLabel( $this->msg( 'activeusers-hidesysops' )->text(),
193 'hidesysops', 'hidesysops', $this->opts
->getValue( 'hidesysops' ) ) . '<br />';
195 $out .= Xml
::submitButton( $this->msg( 'allpagessubmit' )->text() ) . "\n";# Submit button and form bottom
196 $out .= Xml
::closeElement( 'fieldset' );
197 $out .= Xml
::closeElement( 'form' );
204 * @ingroup SpecialPage
206 class SpecialActiveUsers
extends SpecialPage
{
211 public function __construct() {
212 parent
::__construct( 'Activeusers' );
216 * Show the special page
218 * @param $par Mixed: parameter passed to the page or null
220 public function execute( $par ) {
221 global $wgActiveUserDays;
224 $this->outputHeader();
226 $out = $this->getOutput();
227 $out->wrapWikiMsg( "<div class='mw-activeusers-intro'>\n$1\n</div>",
228 array( 'activeusers-intro', $this->getLanguage()->formatNum( $wgActiveUserDays ) ) );
230 $up = new ActiveUsersPager( $this->getContext(), null, $par );
232 # getBody() first to check, if empty
233 $usersbody = $up->getBody();
235 $out->addHTML( $up->getPageHeader() );
238 $up->getNavigationBar() .
239 Html
::rawElement( 'ul', array(), $usersbody ) .
240 $up->getNavigationBar()
243 $out->addWikiMsg( 'activeusers-noresult' );