3 * Copyright © 2008 Aaron Schulz
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
25 * This class is used to get a list of active users. The ones with specials
26 * rights (sysop, bureaucrat, developer) will have them displayed
27 * next to their names.
31 class ActiveUsersPager
extends UsersPager
{
41 protected $hideGroups = [];
46 protected $hideRights = [];
51 private $blockStatusByUid;
54 * @param IContextSource $context
55 * @param FormOptions $opts
57 function __construct( IContextSource
$context = null, FormOptions
$opts ) {
58 parent
::__construct( $context );
60 $this->RCMaxAge
= $this->getConfig()->get( 'ActiveUserDays' );
61 $this->requestedUser
= '';
63 $un = $opts->getValue( 'username' );
65 $username = Title
::makeTitleSafe( NS_USER
, $un );
66 if ( !is_null( $username ) ) {
67 $this->requestedUser
= $username->getText();
71 if ( $opts->getValue( 'hidebots' ) == 1 ) {
72 $this->hideRights
[] = 'bot';
74 if ( $opts->getValue( 'hidesysops' ) == 1 ) {
75 $this->hideGroups
[] = 'sysop';
79 function getIndexField() {
83 function getQueryInfo() {
84 $dbr = $this->getDatabase();
86 $activeUserSeconds = $this->getConfig()->get( 'ActiveUserDays' ) * 86400;
87 $timestamp = $dbr->timestamp( wfTimestamp( TS_UNIX
) - $activeUserSeconds );
89 'qcc_type' => 'activeusers',
90 'qcc_namespace' => NS_USER
,
91 'user_name = qcc_title',
92 'rc_user_text = qcc_title',
93 'rc_type != ' . $dbr->addQuotes( RC_EXTERNAL
), // Don't count wikidata.
94 'rc_type != ' . $dbr->addQuotes( RC_CATEGORIZE
), // Don't count categorization changes.
95 'rc_log_type IS NULL OR rc_log_type != ' . $dbr->addQuotes( 'newusers' ),
96 'rc_timestamp >= ' . $dbr->addQuotes( $timestamp ),
98 if ( $this->requestedUser
!= '' ) {
99 $conds[] = 'qcc_title >= ' . $dbr->addQuotes( $this->requestedUser
);
101 if ( !$this->getUser()->isAllowed( 'hideuser' ) ) {
102 $conds[] = 'NOT EXISTS (' . $dbr->selectSQLText(
103 'ipblocks', '1', [ 'ipb_user=user_id', 'ipb_deleted' => 1 ]
107 if ( $dbr->implicitGroupby() ) {
108 $options = [ 'GROUP BY' => [ 'qcc_title' ] ];
110 $options = [ 'GROUP BY' => [ 'user_name', 'user_id', 'qcc_title' ] ];
114 'tables' => [ 'querycachetwo', 'user', 'recentchanges' ],
115 'fields' => [ 'user_name', 'user_id', 'recentedits' => 'COUNT(*)', 'qcc_title' ],
116 'options' => $options,
121 function doBatchLookups() {
122 parent
::doBatchLookups();
125 foreach ( $this->mResult
as $row ) {
126 $uids[] = $row->user_id
;
128 // Fetch the block status of the user for showing "(blocked)" text and for
129 // striking out names of suppressed users when privileged user views the list.
130 // Although the first query already hits the block table for un-privileged, this
131 // is done in two queries to avoid huge quicksorts and to make COUNT(*) correct.
132 $dbr = $this->getDatabase();
133 $res = $dbr->select( 'ipblocks',
134 [ 'ipb_user', 'MAX(ipb_deleted) AS block_status' ],
135 [ 'ipb_user' => $uids ],
137 [ 'GROUP BY' => [ 'ipb_user' ] ]
139 $this->blockStatusByUid
= [];
140 foreach ( $res as $row ) {
141 $this->blockStatusByUid
[$row->ipb_user
] = $row->block_status
; // 0 or 1
143 $this->mResult
->seek( 0 );
146 function formatRow( $row ) {
147 $userName = $row->user_name
;
149 $ulinks = Linker
::userLink( $row->user_id
, $userName );
150 $ulinks .= Linker
::userToolLinks( $row->user_id
, $userName );
152 $lang = $this->getLanguage();
155 $user = User
::newFromId( $row->user_id
);
158 foreach ( $this->hideRights
as $right ) {
159 // Calling User::getRights() within the loop so that
160 // if the hideRights() filter is empty, we don't have to
161 // trigger the lazy-init of the big userrights array in the
163 if ( in_array( $right, $user->getRights() ) ) {
169 // Note: This is a different loop than for user rights,
170 // because we're reusing it to build the group links
172 $groups_list = self
::getGroups( intval( $row->user_id
), $this->userGroupCache
);
173 foreach ( $groups_list as $group ) {
174 if ( in_array( $group, $this->hideGroups
) ) {
177 $list[] = self
::buildGroupLink( $group, $userName );
180 $groups = $lang->commaList( $list );
182 $item = $lang->specialList( $ulinks, $groups );
184 $isBlocked = isset( $this->blockStatusByUid
[$row->user_id
] );
185 if ( $isBlocked && $this->blockStatusByUid
[$row->user_id
] == 1 ) {
186 $item = "<span class=\"deleted\">$item</span>";
188 $count = $this->msg( 'activeusers-count' )->numParams( $row->recentedits
)
189 ->params( $userName )->numParams( $this->RCMaxAge
)->escaped();
190 $blocked = $isBlocked ?
' ' . $this->msg( 'listusers-blocked', $userName )->escaped() : '';
192 return Html
::rawElement( 'li', [], "{$item} [{$count}]{$blocked}" );