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
{
46 private $blockStatusByUid;
49 * @param IContextSource $context
50 * @param FormOptions $opts
52 function __construct( IContextSource
$context = null, FormOptions
$opts ) {
53 parent
::__construct( $context );
55 $this->RCMaxAge
= $this->getConfig()->get( 'ActiveUserDays' );
56 $this->requestedUser
= '';
58 $un = $opts->getValue( 'username' );
60 $username = Title
::makeTitleSafe( NS_USER
, $un );
61 if ( !is_null( $username ) ) {
62 $this->requestedUser
= $username->getText();
66 $this->groups
= $opts->getValue( 'groups' );
69 function getIndexField() {
73 function getQueryInfo() {
74 $dbr = $this->getDatabase();
76 $activeUserSeconds = $this->getConfig()->get( 'ActiveUserDays' ) * 86400;
77 $timestamp = $dbr->timestamp( wfTimestamp( TS_UNIX
) - $activeUserSeconds );
78 $tables = [ 'querycachetwo', 'user', 'recentchanges' ];
80 'qcc_type' => 'activeusers',
81 'qcc_namespace' => NS_USER
,
82 'user_name = qcc_title',
83 'rc_user_text = qcc_title',
84 'rc_type != ' . $dbr->addQuotes( RC_EXTERNAL
), // Don't count wikidata.
85 'rc_type != ' . $dbr->addQuotes( RC_CATEGORIZE
), // Don't count categorization changes.
86 'rc_log_type IS NULL OR rc_log_type != ' . $dbr->addQuotes( 'newusers' ),
87 'rc_timestamp >= ' . $dbr->addQuotes( $timestamp ),
89 if ( $this->requestedUser
!= '' ) {
90 $conds[] = 'qcc_title >= ' . $dbr->addQuotes( $this->requestedUser
);
92 if ( $this->groups
!== [] ) {
93 $tables[] = 'user_groups';
94 $conds[] = 'ug_user = user_id';
95 $conds['ug_group'] = $this->groups
;
97 if ( !$this->getUser()->isAllowed( 'hideuser' ) ) {
98 $conds[] = 'NOT EXISTS (' . $dbr->selectSQLText(
99 'ipblocks', '1', [ 'ipb_user=user_id', 'ipb_deleted' => 1 ]
103 if ( $dbr->implicitGroupby() ) {
104 $options = [ 'GROUP BY' => [ 'qcc_title' ] ];
106 $options = [ 'GROUP BY' => [ 'user_name', 'user_id', 'qcc_title' ] ];
111 'fields' => [ 'user_name', 'user_id', 'recentedits' => 'COUNT(*)', 'qcc_title' ],
112 'options' => $options,
117 function doBatchLookups() {
118 parent
::doBatchLookups();
121 foreach ( $this->mResult
as $row ) {
122 $uids[] = $row->user_id
;
124 // Fetch the block status of the user for showing "(blocked)" text and for
125 // striking out names of suppressed users when privileged user views the list.
126 // Although the first query already hits the block table for un-privileged, this
127 // is done in two queries to avoid huge quicksorts and to make COUNT(*) correct.
128 $dbr = $this->getDatabase();
129 $res = $dbr->select( 'ipblocks',
130 [ 'ipb_user', 'MAX(ipb_deleted) AS block_status' ],
131 [ 'ipb_user' => $uids ],
133 [ 'GROUP BY' => [ 'ipb_user' ] ]
135 $this->blockStatusByUid
= [];
136 foreach ( $res as $row ) {
137 $this->blockStatusByUid
[$row->ipb_user
] = $row->block_status
; // 0 or 1
139 $this->mResult
->seek( 0 );
142 function formatRow( $row ) {
143 $userName = $row->user_name
;
145 $ulinks = Linker
::userLink( $row->user_id
, $userName );
146 $ulinks .= Linker
::userToolLinks( $row->user_id
, $userName );
148 $lang = $this->getLanguage();
151 $user = User
::newFromId( $row->user_id
);
153 $groups_list = self
::getGroups( intval( $row->user_id
), $this->userGroupCache
);
154 foreach ( $groups_list as $group ) {
155 $list[] = self
::buildGroupLink( $group, $userName );
158 $groups = $lang->commaList( $list );
160 $item = $lang->specialList( $ulinks, $groups );
162 $isBlocked = isset( $this->blockStatusByUid
[$row->user_id
] );
163 if ( $isBlocked && $this->blockStatusByUid
[$row->user_id
] == 1 ) {
164 $item = "<span class=\"deleted\">$item</span>";
166 $count = $this->msg( 'activeusers-count' )->numParams( $row->recentedits
)
167 ->params( $userName )->numParams( $this->RCMaxAge
)->escaped();
168 $blocked = $isBlocked ?
' ' . $this->msg( 'listusers-blocked', $userName )->escaped() : '';
170 return Html
::rawElement( 'li', [], "{$item} [{$count}]{$blocked}" );