Demon has uploaded a new change for review.
https://gerrit.wikimedia.org/r/55807
Change subject: Remove Special:ActiveUsers
......................................................................
Remove Special:ActiveUsers
This feature was poorly thought out from the start. It's a huge
performance drain when used, for a mimimally useful set of data
Change-Id: I138622e1c184f74e2a7ce13a9a544ab4e610d7a0
---
M includes/AutoLoader.php
M includes/SpecialPageFactory.php
D includes/specials/SpecialActiveusers.php
M languages/messages/MessagesEn.php
M maintenance/language/messageTypes.inc
M maintenance/language/messages.inc
6 files changed, 0 insertions(+), 277 deletions(-)
git pull ssh://gerrit.wikimedia.org:29418/mediawiki/core
refs/changes/07/55807/1
diff --git a/includes/AutoLoader.php b/includes/AutoLoader.php
index 42cea7a..ad12fbc 100644
--- a/includes/AutoLoader.php
+++ b/includes/AutoLoader.php
@@ -891,7 +891,6 @@
'SiteStore' => 'includes/site/SiteStore.php',
# includes/specials
- 'ActiveUsersPager' => 'includes/specials/SpecialActiveusers.php',
'AllmessagesTablePager' => 'includes/specials/SpecialAllmessages.php',
'AncientPagesPage' => 'includes/specials/SpecialAncientpages.php',
'BlockListPager' => 'includes/specials/SpecialBlockList.php',
@@ -936,7 +935,6 @@
'ProtectedTitlesPager' =>
'includes/specials/SpecialProtectedtitles.php',
'RandomPage' => 'includes/specials/SpecialRandompage.php',
'ShortPagesPage' => 'includes/specials/SpecialShortpages.php',
- 'SpecialActiveUsers' => 'includes/specials/SpecialActiveusers.php',
'SpecialAllmessages' => 'includes/specials/SpecialAllmessages.php',
'SpecialAllpages' => 'includes/specials/SpecialAllpages.php',
'SpecialBlankpage' => 'includes/specials/SpecialBlankpage.php',
diff --git a/includes/SpecialPageFactory.php b/includes/SpecialPageFactory.php
index 7368ab7..7c639d0 100644
--- a/includes/SpecialPageFactory.php
+++ b/includes/SpecialPageFactory.php
@@ -99,7 +99,6 @@
'Listusers' => 'SpecialListUsers',
'Listadmins' => 'SpecialListAdmins',
'Listbots' => 'SpecialListBots',
- 'Activeusers' => 'SpecialActiveUsers',
'Userrights' => 'UserrightsPage',
'EditWatchlist' => 'SpecialEditWatchlist',
diff --git a/includes/specials/SpecialActiveusers.php
b/includes/specials/SpecialActiveusers.php
deleted file mode 100644
index c9c82ad..0000000
--- a/includes/specials/SpecialActiveusers.php
+++ /dev/null
@@ -1,250 +0,0 @@
-<?php
-/**
- * Implements Special:Activeusers
- *
- * Copyright © 2008 Aaron Schulz
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License along
- * with this program; if not, write to the Free Software Foundation, Inc.,
- * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
- * http://www.gnu.org/copyleft/gpl.html
- *
- * @file
- * @ingroup SpecialPage
- */
-
-/**
- * This class is used to get a list of active users. The ones with specials
- * rights (sysop, bureaucrat, developer) will have them displayed
- * next to their names.
- *
- * @ingroup SpecialPage
- */
-class ActiveUsersPager extends UsersPager {
-
- /**
- * @var FormOptions
- */
- protected $opts;
-
- /**
- * @var Array
- */
- protected $hideGroups = array();
-
- /**
- * @var Array
- */
- protected $hideRights = array();
-
- /**
- * @param $context IContextSource
- * @param $group null Unused
- * @param string $par Parameter passed to the page
- */
- function __construct( IContextSource $context = null, $group = null,
$par = null ) {
- global $wgActiveUserDays;
-
- parent::__construct( $context );
-
- $this->RCMaxAge = $wgActiveUserDays;
- $un = $this->getRequest()->getText( 'username', $par );
- $this->requestedUser = '';
- if ( $un != '' ) {
- $username = Title::makeTitleSafe( NS_USER, $un );
- if( !is_null( $username ) ) {
- $this->requestedUser = $username->getText();
- }
- }
-
- $this->setupOptions();
- }
-
- public function setupOptions() {
- $this->opts = new FormOptions();
-
- $this->opts->add( 'hidebots', false, FormOptions::BOOL );
- $this->opts->add( 'hidesysops', false, FormOptions::BOOL );
-
- $this->opts->fetchValuesFromRequest( $this->getRequest() );
-
- if ( $this->opts->getValue( 'hidebots' ) == 1 ) {
- $this->hideRights[] = 'bot';
- }
- if ( $this->opts->getValue( 'hidesysops' ) == 1 ) {
- $this->hideGroups[] = 'sysop';
- }
- }
-
- function getIndexField() {
- return 'rc_user_text';
- }
-
- function getQueryInfo() {
- $dbr = wfGetDB( DB_SLAVE );
- $conds = array( 'rc_user > 0' ); // Users - no anons
- if( !$this->getUser()->isAllowed( 'hideuser' ) ) {
- $conds[] = 'ipb_deleted IS NULL OR ipb_deleted = 0'; //
don't show hidden names
- }
- $conds[] = 'rc_log_type IS NULL OR rc_log_type != ' .
$dbr->addQuotes( 'newusers' );
- $conds[] = 'rc_timestamp >= ' . $dbr->addQuotes(
- $dbr->timestamp( wfTimestamp( TS_UNIX ) -
$this->RCMaxAge*24*3600 ) );
-
- if( $this->requestedUser != '' ) {
- $conds[] = 'rc_user_text >= ' . $dbr->addQuotes(
$this->requestedUser );
- }
-
- return array(
- 'tables' => array( 'recentchanges', 'ipblocks' ),
- 'fields' => array(
- 'user_name' => 'rc_user_text', // for Pager
inheritance
- 'rc_user_text', // for Pager
- 'user_id' => 'rc_user',
- 'recentedits' => 'COUNT(*)',
- 'ipb_deleted' => 'MAX(ipb_deleted)'
- ),
- 'options' => array(
- 'GROUP BY' => array( 'rc_user_text', 'user_id'
),
- 'USE INDEX' => array( 'recentchanges' =>
'rc_user_text' )
- ),
- 'join_conds' => array( // check for suppression blocks
- 'ipblocks' => array( 'LEFT JOIN', array(
- 'rc_user=ipb_user',
- 'ipb_auto' => 0 # avoid duplicate blocks
- )),
- ),
- 'conds' => $conds
- );
- }
-
- function formatRow( $row ) {
- $userName = $row->user_name;
-
- $ulinks = Linker::userLink( $row->user_id, $userName );
- $ulinks .= Linker::userToolLinks( $row->user_id, $userName );
-
- $lang = $this->getLanguage();
-
- $list = array();
- $user = User::newFromId( $row->user_id );
-
- // User right filter
- foreach( $this->hideRights as $right ) {
- // Calling User::getRights() within the loop so that
- // if the hideRights() filter is empty, we don't have to
- // trigger the lazy-init of the big userrights array in
the
- // User object
- if ( in_array( $right, $user->getRights() ) ) {
- return '';
- }
- }
-
- // User group filter
- // Note: This is a different loop than for user rights,
- // because we're reusing it to build the group links
- // at the same time
- foreach( $user->getGroups() as $group ) {
- if ( in_array( $group, $this->hideGroups ) ) {
- return '';
- }
- $list[] = self::buildGroupLink( $group, $userName );
- }
-
- $groups = $lang->commaList( $list );
-
- $item = $lang->specialList( $ulinks, $groups );
- if( $row->ipb_deleted ) {
- $item = "<span class=\"deleted\">$item</span>";
- }
- $count = $this->msg( 'activeusers-count' )->numParams(
$row->recentedits )
- ->params( $userName )->numParams( $this->RCMaxAge
)->escaped();
- $blocked = !is_null( $row->ipb_deleted ) ? ' ' . $this->msg(
'listusers-blocked', $userName )->escaped() : '';
-
- return Html::rawElement( 'li', array(), "{$item}
[{$count}]{$blocked}" );
- }
-
- function getPageHeader() {
- global $wgScript;
-
- $self = $this->getTitle();
- $limit = $this->mLimit ? Html::hidden( 'limit', $this->mLimit )
: '';
-
- $out = Xml::openElement( 'form', array( 'method' => 'get',
'action' => $wgScript ) ); # Form tag
- $out .= Xml::fieldset( $this->msg( 'activeusers' )->text() ) .
"\n";
- $out .= Html::hidden( 'title', $self->getPrefixedDBkey() ) .
$limit . "\n";
-
- $out .= Xml::inputLabel( $this->msg( 'activeusers-from'
)->text(),
- 'username', 'offset', 20, $this->requestedUser ) . '<br
/>';# Username field
-
- $out .= Xml::checkLabel( $this->msg( 'activeusers-hidebots'
)->text(),
- 'hidebots', 'hidebots', $this->opts->getValue(
'hidebots' ) );
-
- $out .= Xml::checkLabel( $this->msg( 'activeusers-hidesysops'
)->text(),
- 'hidesysops', 'hidesysops', $this->opts->getValue(
'hidesysops' ) ) . '<br />';
-
- $out .= Xml::submitButton( $this->msg( 'allpagessubmit'
)->text() ) . "\n";# Submit button and form bottom
- $out .= Xml::closeElement( 'fieldset' );
- $out .= Xml::closeElement( 'form' );
-
- return $out;
- }
-}
-
-/**
- * @ingroup SpecialPage
- */
-class SpecialActiveUsers extends SpecialPage {
-
- /**
- * Constructor
- */
- public function __construct() {
- parent::__construct( 'Activeusers' );
- }
-
- /**
- * Show the special page
- *
- * @param $par Mixed: parameter passed to the page or null
- */
- public function execute( $par ) {
- global $wgActiveUserDays;
-
- $this->setHeaders();
- $this->outputHeader();
-
- $out = $this->getOutput();
- $out->wrapWikiMsg( "<div
class='mw-activeusers-intro'>\n$1\n</div>",
- array( 'activeusers-intro',
$this->getLanguage()->formatNum( $wgActiveUserDays ) ) );
-
- $up = new ActiveUsersPager( $this->getContext(), null, $par );
-
- # getBody() first to check, if empty
- $usersbody = $up->getBody();
-
- $out->addHTML( $up->getPageHeader() );
- if ( $usersbody ) {
- $out->addHTML(
- $up->getNavigationBar() .
- Html::rawElement( 'ul', array(), $usersbody ) .
- $up->getNavigationBar()
- );
- } else {
- $out->addWikiMsg( 'activeusers-noresult' );
- }
- }
-
- protected function getGroupName() {
- return 'users';
- }
-}
diff --git a/languages/messages/MessagesEn.php
b/languages/messages/MessagesEn.php
index 52082af..adac7e9 100644
--- a/languages/messages/MessagesEn.php
+++ b/languages/messages/MessagesEn.php
@@ -372,7 +372,6 @@
* hook.
*/
$specialPageAliases = array(
- 'Activeusers' => array( 'ActiveUsers' ),
'Allmessages' => array( 'AllMessages' ),
'Allpages' => array( 'AllPages' ),
'Ancientpages' => array( 'AncientPages' ),
@@ -2779,16 +2778,6 @@
'listusers-submit' => 'Show',
'listusers-noresult' => 'No user found.',
'listusers-blocked' => '(blocked)',
-
-# Special:ActiveUsers
-'activeusers' => 'Active users list',
-'activeusers-summary' => '', # do not translate or duplicate this message
to other languages
-'activeusers-intro' => 'This is a list of users who had some kind of
activity within the last $1 {{PLURAL:$1|day|days}}.',
-'activeusers-count' => '$1 {{PLURAL:$1|action|actions}} in the last
{{PLURAL:$3|day|$3 days}}',
-'activeusers-from' => 'Display users starting at:',
-'activeusers-hidebots' => 'Hide bots',
-'activeusers-hidesysops' => 'Hide administrators',
-'activeusers-noresult' => 'No users found.',
# Special:ListGroupRights
'listgrouprights' => 'User group rights',
diff --git a/maintenance/language/messageTypes.inc
b/maintenance/language/messageTypes.inc
index 66cc1dc..5eb8c5c 100644
--- a/maintenance/language/messageTypes.inc
+++ b/maintenance/language/messageTypes.inc
@@ -188,7 +188,6 @@
'fewestrevisions-summary',
'upload-summary',
'wantedtemplates-summary',
- 'activeusers-summary',
'search-summary',
'editpage-head-copy-warn',
'editpage-tos-summary',
diff --git a/maintenance/language/messages.inc
b/maintenance/language/messages.inc
index 7c16df6..077b7fd 100644
--- a/maintenance/language/messages.inc
+++ b/maintenance/language/messages.inc
@@ -1845,17 +1845,6 @@
'listusers-noresult',
'listusers-blocked',
),
- 'activeusers' => array(
- 'activeusers',
- 'activeusers-summary',
- 'activeusers-intro',
- 'activeusers-count',
- 'activeusers-from',
- 'activeusers-hidebots',
- 'activeusers-hidesysops',
- 'activeusers-submit',
- 'activeusers-noresult',
- ),
'listgrouprights' => array(
'listgrouprights',
'listgrouprights-summary',
@@ -3953,7 +3942,6 @@
'deletedcontribs' => 'Special:DeletedContributions',
'linksearch' => 'Special:LinkSearch',
'listusers' => 'Special:ListUsers',
- 'activeusers' => 'Special:ActiveUsers',
'newuserlog' => 'Special:Log/newusers',
'listgrouprights' => 'Special:ListGroupRights',
'emailuser' => 'Email user',
--
To view, visit https://gerrit.wikimedia.org/r/55807
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings
Gerrit-MessageType: newchange
Gerrit-Change-Id: I138622e1c184f74e2a7ce13a9a544ab4e610d7a0
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/core
Gerrit-Branch: master
Gerrit-Owner: Demon <[email protected]>
_______________________________________________
MediaWiki-commits mailing list
[email protected]
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits