mirror of
https://github.com/YunoHost-Apps/mediawiki_ynh.git
synced 2024-09-03 19:46:05 +02:00
723 lines
19 KiB
PHP
723 lines
19 KiB
PHP
<?php
|
|
/**
|
|
* @defgroup Watchlist Users watchlist handling
|
|
*/
|
|
|
|
/**
|
|
* Implements Special:EditWatchlist
|
|
*
|
|
* 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
|
|
* @ingroup Watchlist
|
|
*/
|
|
|
|
/**
|
|
* Provides the UI through which users can perform editing
|
|
* operations on their watchlist
|
|
*
|
|
* @ingroup SpecialPage
|
|
* @ingroup Watchlist
|
|
* @author Rob Church <robchur@gmail.com>
|
|
*/
|
|
class SpecialEditWatchlist extends UnlistedSpecialPage {
|
|
/**
|
|
* Editing modes
|
|
*/
|
|
const EDIT_CLEAR = 1;
|
|
const EDIT_RAW = 2;
|
|
const EDIT_NORMAL = 3;
|
|
|
|
protected $successMessage;
|
|
|
|
protected $toc;
|
|
|
|
private $badItems = array();
|
|
|
|
public function __construct() {
|
|
parent::__construct( 'EditWatchlist', 'editmywatchlist' );
|
|
}
|
|
|
|
/**
|
|
* Main execution point
|
|
*
|
|
* @param $mode int
|
|
*/
|
|
public function execute( $mode ) {
|
|
$this->setHeaders();
|
|
|
|
$out = $this->getOutput();
|
|
|
|
# Anons don't get a watchlist
|
|
if ( $this->getUser()->isAnon() ) {
|
|
$out->setPageTitle( $this->msg( 'watchnologin' ) );
|
|
$llink = Linker::linkKnown(
|
|
SpecialPage::getTitleFor( 'Userlogin' ),
|
|
$this->msg( 'loginreqlink' )->escaped(),
|
|
array(),
|
|
array( 'returnto' => $this->getTitle()->getPrefixedText() )
|
|
);
|
|
$out->addHTML( $this->msg( 'watchlistanontext' )->rawParams( $llink )->parse() );
|
|
|
|
return;
|
|
}
|
|
|
|
$this->checkPermissions();
|
|
$this->checkReadOnly();
|
|
|
|
$this->outputHeader();
|
|
|
|
$out->addSubtitle( $this->msg( 'watchlistfor2', $this->getUser()->getName() )
|
|
->rawParams( SpecialEditWatchlist::buildTools( null ) ) );
|
|
|
|
# B/C: $mode used to be waaay down the parameter list, and the first parameter
|
|
# was $wgUser
|
|
if ( $mode instanceof User ) {
|
|
$args = func_get_args();
|
|
if ( count( $args ) >= 4 ) {
|
|
$mode = $args[3];
|
|
}
|
|
}
|
|
$mode = self::getMode( $this->getRequest(), $mode );
|
|
|
|
switch ( $mode ) {
|
|
case self::EDIT_CLEAR:
|
|
// The "Clear" link scared people too much.
|
|
// Pass on to the raw editor, from which it's very easy to clear.
|
|
|
|
case self::EDIT_RAW:
|
|
$out->setPageTitle( $this->msg( 'watchlistedit-raw-title' ) );
|
|
$form = $this->getRawForm();
|
|
if ( $form->show() ) {
|
|
$out->addHTML( $this->successMessage );
|
|
$out->addReturnTo( SpecialPage::getTitleFor( 'Watchlist' ) );
|
|
}
|
|
break;
|
|
|
|
case self::EDIT_NORMAL:
|
|
default:
|
|
$out->setPageTitle( $this->msg( 'watchlistedit-normal-title' ) );
|
|
$form = $this->getNormalForm();
|
|
if ( $form->show() ) {
|
|
$out->addHTML( $this->successMessage );
|
|
$out->addReturnTo( SpecialPage::getTitleFor( 'Watchlist' ) );
|
|
} elseif ( $this->toc !== false ) {
|
|
$out->prependHTML( $this->toc );
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Extract a list of titles from a blob of text, returning
|
|
* (prefixed) strings; unwatchable titles are ignored
|
|
*
|
|
* @param $list String
|
|
* @return array
|
|
*/
|
|
private function extractTitles( $list ) {
|
|
$list = explode( "\n", trim( $list ) );
|
|
if ( !is_array( $list ) ) {
|
|
return array();
|
|
}
|
|
|
|
$titles = array();
|
|
|
|
foreach ( $list as $text ) {
|
|
$text = trim( $text );
|
|
if ( strlen( $text ) > 0 ) {
|
|
$title = Title::newFromText( $text );
|
|
if ( $title instanceof Title && $title->isWatchable() ) {
|
|
$titles[] = $title;
|
|
}
|
|
}
|
|
}
|
|
|
|
GenderCache::singleton()->doTitlesArray( $titles );
|
|
|
|
$list = array();
|
|
/** @var Title $title */
|
|
foreach ( $titles as $title ) {
|
|
$list[] = $title->getPrefixedText();
|
|
}
|
|
|
|
return array_unique( $list );
|
|
}
|
|
|
|
public function submitRaw( $data ) {
|
|
$wanted = $this->extractTitles( $data['Titles'] );
|
|
$current = $this->getWatchlist();
|
|
|
|
if ( count( $wanted ) > 0 ) {
|
|
$toWatch = array_diff( $wanted, $current );
|
|
$toUnwatch = array_diff( $current, $wanted );
|
|
$this->watchTitles( $toWatch );
|
|
$this->unwatchTitles( $toUnwatch );
|
|
$this->getUser()->invalidateCache();
|
|
|
|
if ( count( $toWatch ) > 0 || count( $toUnwatch ) > 0 ) {
|
|
$this->successMessage = $this->msg( 'watchlistedit-raw-done' )->parse();
|
|
} else {
|
|
return false;
|
|
}
|
|
|
|
if ( count( $toWatch ) > 0 ) {
|
|
$this->successMessage .= ' ' . $this->msg( 'watchlistedit-raw-added'
|
|
)->numParams( count( $toWatch ) )->parse();
|
|
$this->showTitles( $toWatch, $this->successMessage );
|
|
}
|
|
|
|
if ( count( $toUnwatch ) > 0 ) {
|
|
$this->successMessage .= ' ' . $this->msg( 'watchlistedit-raw-removed'
|
|
)->numParams( count( $toUnwatch ) )->parse();
|
|
$this->showTitles( $toUnwatch, $this->successMessage );
|
|
}
|
|
} else {
|
|
$this->clearWatchlist();
|
|
$this->getUser()->invalidateCache();
|
|
|
|
if ( count( $current ) > 0 ) {
|
|
$this->successMessage = $this->msg( 'watchlistedit-raw-done' )->parse();
|
|
} else {
|
|
return false;
|
|
}
|
|
|
|
$this->successMessage .= ' ' . $this->msg( 'watchlistedit-raw-removed' )
|
|
->numParams( count( $current ) )->parse();
|
|
$this->showTitles( $current, $this->successMessage );
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* Print out a list of linked titles
|
|
*
|
|
* $titles can be an array of strings or Title objects; the former
|
|
* is preferred, since Titles are very memory-heavy
|
|
*
|
|
* @param array $titles of strings, or Title objects
|
|
* @param $output String
|
|
*/
|
|
private function showTitles( $titles, &$output ) {
|
|
$talk = $this->msg( 'talkpagelinktext' )->escaped();
|
|
// Do a batch existence check
|
|
$batch = new LinkBatch();
|
|
foreach ( $titles as $title ) {
|
|
if ( !$title instanceof Title ) {
|
|
$title = Title::newFromText( $title );
|
|
}
|
|
|
|
if ( $title instanceof Title ) {
|
|
$batch->addObj( $title );
|
|
$batch->addObj( $title->getTalkPage() );
|
|
}
|
|
}
|
|
|
|
$batch->execute();
|
|
|
|
// Print out the list
|
|
$output .= "<ul>\n";
|
|
|
|
foreach ( $titles as $title ) {
|
|
if ( !$title instanceof Title ) {
|
|
$title = Title::newFromText( $title );
|
|
}
|
|
|
|
if ( $title instanceof Title ) {
|
|
$output .= "<li>"
|
|
. Linker::link( $title )
|
|
. ' (' . Linker::link( $title->getTalkPage(), $talk )
|
|
. ")</li>\n";
|
|
}
|
|
}
|
|
|
|
$output .= "</ul>\n";
|
|
}
|
|
|
|
/**
|
|
* Prepare a list of titles on a user's watchlist (excluding talk pages)
|
|
* and return an array of (prefixed) strings
|
|
*
|
|
* @return array
|
|
*/
|
|
private function getWatchlist() {
|
|
$list = array();
|
|
$dbr = wfGetDB( DB_MASTER );
|
|
|
|
$res = $dbr->select(
|
|
'watchlist',
|
|
array(
|
|
'wl_namespace', 'wl_title'
|
|
), array(
|
|
'wl_user' => $this->getUser()->getId(),
|
|
),
|
|
__METHOD__
|
|
);
|
|
|
|
if ( $res->numRows() > 0 ) {
|
|
$titles = array();
|
|
foreach ( $res as $row ) {
|
|
$title = Title::makeTitleSafe( $row->wl_namespace, $row->wl_title );
|
|
|
|
if ( $this->checkTitle( $title, $row->wl_namespace, $row->wl_title )
|
|
&& !$title->isTalkPage()
|
|
) {
|
|
$titles[] = $title;
|
|
}
|
|
}
|
|
$res->free();
|
|
|
|
GenderCache::singleton()->doTitlesArray( $titles );
|
|
|
|
foreach ( $titles as $title ) {
|
|
$list[] = $title->getPrefixedText();
|
|
}
|
|
}
|
|
|
|
$this->cleanupWatchlist();
|
|
|
|
return $list;
|
|
}
|
|
|
|
/**
|
|
* Get a list of titles on a user's watchlist, excluding talk pages,
|
|
* and return as a two-dimensional array with namespace and title.
|
|
*
|
|
* @return array
|
|
*/
|
|
private function getWatchlistInfo() {
|
|
$titles = array();
|
|
$dbr = wfGetDB( DB_MASTER );
|
|
|
|
$res = $dbr->select(
|
|
array( 'watchlist' ),
|
|
array( 'wl_namespace', 'wl_title' ),
|
|
array( 'wl_user' => $this->getUser()->getId() ),
|
|
__METHOD__,
|
|
array( 'ORDER BY' => array( 'wl_namespace', 'wl_title' ) )
|
|
);
|
|
|
|
$lb = new LinkBatch();
|
|
|
|
foreach ( $res as $row ) {
|
|
$lb->add( $row->wl_namespace, $row->wl_title );
|
|
if ( !MWNamespace::isTalk( $row->wl_namespace ) ) {
|
|
$titles[$row->wl_namespace][$row->wl_title] = 1;
|
|
}
|
|
}
|
|
|
|
$lb->execute();
|
|
|
|
return $titles;
|
|
}
|
|
|
|
/**
|
|
* Validates watchlist entry
|
|
*
|
|
* @param Title $title
|
|
* @param int $namespace
|
|
* @param string $dbKey
|
|
* @return bool: Whether this item is valid
|
|
*/
|
|
private function checkTitle( $title, $namespace, $dbKey ) {
|
|
if ( $title
|
|
&& ( $title->isExternal()
|
|
|| $title->getNamespace() < 0
|
|
)
|
|
) {
|
|
$title = false; // unrecoverable
|
|
}
|
|
|
|
if ( !$title
|
|
|| $title->getNamespace() != $namespace
|
|
|| $title->getDBkey() != $dbKey
|
|
) {
|
|
$this->badItems[] = array( $title, $namespace, $dbKey );
|
|
}
|
|
|
|
return (bool)$title;
|
|
}
|
|
|
|
/**
|
|
* Attempts to clean up broken items
|
|
*/
|
|
private function cleanupWatchlist() {
|
|
if ( !count( $this->badItems ) ) {
|
|
return; //nothing to do
|
|
}
|
|
|
|
$dbw = wfGetDB( DB_MASTER );
|
|
$user = $this->getUser();
|
|
|
|
foreach ( $this->badItems as $row ) {
|
|
list( $title, $namespace, $dbKey ) = $row;
|
|
$action = $title ? 'cleaning up' : 'deleting';
|
|
wfDebug( "User {$user->getName()} has broken watchlist item ns($namespace):$dbKey, $action.\n" );
|
|
|
|
$dbw->delete( 'watchlist',
|
|
array(
|
|
'wl_user' => $user->getId(),
|
|
'wl_namespace' => $namespace,
|
|
'wl_title' => $dbKey,
|
|
),
|
|
__METHOD__
|
|
);
|
|
|
|
// Can't just do an UPDATE instead of DELETE/INSERT due to unique index
|
|
if ( $title ) {
|
|
$user->addWatch( $title );
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Remove all titles from a user's watchlist
|
|
*/
|
|
private function clearWatchlist() {
|
|
$dbw = wfGetDB( DB_MASTER );
|
|
$dbw->delete(
|
|
'watchlist',
|
|
array( 'wl_user' => $this->getUser()->getId() ),
|
|
__METHOD__
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Add a list of titles to a user's watchlist
|
|
*
|
|
* $titles can be an array of strings or Title objects; the former
|
|
* is preferred, since Titles are very memory-heavy
|
|
*
|
|
* @param array $titles of strings, or Title objects
|
|
*/
|
|
private function watchTitles( $titles ) {
|
|
$dbw = wfGetDB( DB_MASTER );
|
|
$rows = array();
|
|
|
|
foreach ( $titles as $title ) {
|
|
if ( !$title instanceof Title ) {
|
|
$title = Title::newFromText( $title );
|
|
}
|
|
|
|
if ( $title instanceof Title ) {
|
|
$rows[] = array(
|
|
'wl_user' => $this->getUser()->getId(),
|
|
'wl_namespace' => MWNamespace::getSubject( $title->getNamespace() ),
|
|
'wl_title' => $title->getDBkey(),
|
|
'wl_notificationtimestamp' => null,
|
|
);
|
|
$rows[] = array(
|
|
'wl_user' => $this->getUser()->getId(),
|
|
'wl_namespace' => MWNamespace::getTalk( $title->getNamespace() ),
|
|
'wl_title' => $title->getDBkey(),
|
|
'wl_notificationtimestamp' => null,
|
|
);
|
|
}
|
|
}
|
|
|
|
$dbw->insert( 'watchlist', $rows, __METHOD__, 'IGNORE' );
|
|
}
|
|
|
|
/**
|
|
* Remove a list of titles from a user's watchlist
|
|
*
|
|
* $titles can be an array of strings or Title objects; the former
|
|
* is preferred, since Titles are very memory-heavy
|
|
*
|
|
* @param array $titles of strings, or Title objects
|
|
*/
|
|
private function unwatchTitles( $titles ) {
|
|
$dbw = wfGetDB( DB_MASTER );
|
|
|
|
foreach ( $titles as $title ) {
|
|
if ( !$title instanceof Title ) {
|
|
$title = Title::newFromText( $title );
|
|
}
|
|
|
|
if ( $title instanceof Title ) {
|
|
$dbw->delete(
|
|
'watchlist',
|
|
array(
|
|
'wl_user' => $this->getUser()->getId(),
|
|
'wl_namespace' => MWNamespace::getSubject( $title->getNamespace() ),
|
|
'wl_title' => $title->getDBkey(),
|
|
),
|
|
__METHOD__
|
|
);
|
|
|
|
$dbw->delete(
|
|
'watchlist',
|
|
array(
|
|
'wl_user' => $this->getUser()->getId(),
|
|
'wl_namespace' => MWNamespace::getTalk( $title->getNamespace() ),
|
|
'wl_title' => $title->getDBkey(),
|
|
),
|
|
__METHOD__
|
|
);
|
|
|
|
$page = WikiPage::factory( $title );
|
|
wfRunHooks( 'UnwatchArticleComplete', array( $this->getUser(), &$page ) );
|
|
}
|
|
}
|
|
}
|
|
|
|
public function submitNormal( $data ) {
|
|
$removed = array();
|
|
|
|
foreach ( $data as $titles ) {
|
|
$this->unwatchTitles( $titles );
|
|
$removed = array_merge( $removed, $titles );
|
|
}
|
|
|
|
if ( count( $removed ) > 0 ) {
|
|
$this->successMessage = $this->msg( 'watchlistedit-normal-done'
|
|
)->numParams( count( $removed ) )->parse();
|
|
$this->showTitles( $removed, $this->successMessage );
|
|
|
|
return true;
|
|
} else {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Get the standard watchlist editing form
|
|
*
|
|
* @return HTMLForm
|
|
*/
|
|
protected function getNormalForm() {
|
|
global $wgContLang;
|
|
|
|
$fields = array();
|
|
$count = 0;
|
|
|
|
foreach ( $this->getWatchlistInfo() as $namespace => $pages ) {
|
|
if ( $namespace >= 0 ) {
|
|
$fields['TitlesNs' . $namespace] = array(
|
|
'class' => 'EditWatchlistCheckboxSeriesField',
|
|
'options' => array(),
|
|
'section' => "ns$namespace",
|
|
);
|
|
}
|
|
|
|
foreach ( array_keys( $pages ) as $dbkey ) {
|
|
$title = Title::makeTitleSafe( $namespace, $dbkey );
|
|
|
|
if ( $this->checkTitle( $title, $namespace, $dbkey ) ) {
|
|
$text = $this->buildRemoveLine( $title );
|
|
$fields['TitlesNs' . $namespace]['options'][$text] = $title->getPrefixedText();
|
|
$count++;
|
|
}
|
|
}
|
|
}
|
|
$this->cleanupWatchlist();
|
|
|
|
if ( count( $fields ) > 1 && $count > 30 ) {
|
|
$this->toc = Linker::tocIndent();
|
|
$tocLength = 0;
|
|
|
|
foreach ( $fields as $data ) {
|
|
# strip out the 'ns' prefix from the section name:
|
|
$ns = substr( $data['section'], 2 );
|
|
|
|
$nsText = ( $ns == NS_MAIN )
|
|
? $this->msg( 'blanknamespace' )->escaped()
|
|
: htmlspecialchars( $wgContLang->getFormattedNsText( $ns ) );
|
|
$this->toc .= Linker::tocLine( "editwatchlist-{$data['section']}", $nsText,
|
|
$this->getLanguage()->formatNum( ++$tocLength ), 1 ) . Linker::tocLineEnd();
|
|
}
|
|
|
|
$this->toc = Linker::tocList( $this->toc );
|
|
} else {
|
|
$this->toc = false;
|
|
}
|
|
|
|
$context = new DerivativeContext( $this->getContext() );
|
|
$context->setTitle( $this->getTitle() ); // Remove subpage
|
|
$form = new EditWatchlistNormalHTMLForm( $fields, $context );
|
|
$form->setSubmitTextMsg( 'watchlistedit-normal-submit' );
|
|
# Used message keys: 'accesskey-watchlistedit-normal-submit', 'tooltip-watchlistedit-normal-submit'
|
|
$form->setSubmitTooltip( 'watchlistedit-normal-submit' );
|
|
$form->setWrapperLegendMsg( 'watchlistedit-normal-legend' );
|
|
$form->addHeaderText( $this->msg( 'watchlistedit-normal-explain' )->parse() );
|
|
$form->setSubmitCallback( array( $this, 'submitNormal' ) );
|
|
|
|
return $form;
|
|
}
|
|
|
|
/**
|
|
* Build the label for a checkbox, with a link to the title, and various additional bits
|
|
*
|
|
* @param $title Title
|
|
* @return string
|
|
*/
|
|
private function buildRemoveLine( $title ) {
|
|
$link = Linker::link( $title );
|
|
|
|
if ( $title->isRedirect() ) {
|
|
// Linker already makes class mw-redirect, so this is redundant
|
|
$link = '<span class="watchlistredir">' . $link . '</span>';
|
|
}
|
|
|
|
$tools[] = Linker::link( $title->getTalkPage(), $this->msg( 'talkpagelinktext' )->escaped() );
|
|
|
|
if ( $title->exists() ) {
|
|
$tools[] = Linker::linkKnown(
|
|
$title,
|
|
$this->msg( 'history_short' )->escaped(),
|
|
array(),
|
|
array( 'action' => 'history' )
|
|
);
|
|
}
|
|
|
|
if ( $title->getNamespace() == NS_USER && !$title->isSubpage() ) {
|
|
$tools[] = Linker::linkKnown(
|
|
SpecialPage::getTitleFor( 'Contributions', $title->getText() ),
|
|
$this->msg( 'contributions' )->escaped()
|
|
);
|
|
}
|
|
|
|
wfRunHooks( 'WatchlistEditorBuildRemoveLine', array( &$tools, $title, $title->isRedirect(), $this->getSkin() ) );
|
|
|
|
return $link . " (" . $this->getLanguage()->pipeList( $tools ) . ")";
|
|
}
|
|
|
|
/**
|
|
* Get a form for editing the watchlist in "raw" mode
|
|
*
|
|
* @return HTMLForm
|
|
*/
|
|
protected function getRawForm() {
|
|
$titles = implode( $this->getWatchlist(), "\n" );
|
|
$fields = array(
|
|
'Titles' => array(
|
|
'type' => 'textarea',
|
|
'label-message' => 'watchlistedit-raw-titles',
|
|
'default' => $titles,
|
|
),
|
|
);
|
|
$context = new DerivativeContext( $this->getContext() );
|
|
$context->setTitle( $this->getTitle( 'raw' ) ); // Reset subpage
|
|
$form = new HTMLForm( $fields, $context );
|
|
$form->setSubmitTextMsg( 'watchlistedit-raw-submit' );
|
|
# Used message keys: 'accesskey-watchlistedit-raw-submit', 'tooltip-watchlistedit-raw-submit'
|
|
$form->setSubmitTooltip( 'watchlistedit-raw-submit' );
|
|
$form->setWrapperLegendMsg( 'watchlistedit-raw-legend' );
|
|
$form->addHeaderText( $this->msg( 'watchlistedit-raw-explain' )->parse() );
|
|
$form->setSubmitCallback( array( $this, 'submitRaw' ) );
|
|
|
|
return $form;
|
|
}
|
|
|
|
/**
|
|
* Determine whether we are editing the watchlist, and if so, what
|
|
* kind of editing operation
|
|
*
|
|
* @param $request WebRequest
|
|
* @param $par mixed
|
|
* @return int
|
|
*/
|
|
public static function getMode( $request, $par ) {
|
|
$mode = strtolower( $request->getVal( 'action', $par ) );
|
|
|
|
switch ( $mode ) {
|
|
case 'clear':
|
|
case self::EDIT_CLEAR:
|
|
return self::EDIT_CLEAR;
|
|
case 'raw':
|
|
case self::EDIT_RAW:
|
|
return self::EDIT_RAW;
|
|
case 'edit':
|
|
case self::EDIT_NORMAL:
|
|
return self::EDIT_NORMAL;
|
|
default:
|
|
return false;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Build a set of links for convenient navigation
|
|
* between watchlist viewing and editing modes
|
|
*
|
|
* @param $unused
|
|
* @return string
|
|
*/
|
|
public static function buildTools( $unused ) {
|
|
global $wgLang;
|
|
|
|
$tools = array();
|
|
$modes = array(
|
|
'view' => array( 'Watchlist', false ),
|
|
'edit' => array( 'EditWatchlist', false ),
|
|
'raw' => array( 'EditWatchlist', 'raw' ),
|
|
);
|
|
|
|
foreach ( $modes as $mode => $arr ) {
|
|
// can use messages 'watchlisttools-view', 'watchlisttools-edit', 'watchlisttools-raw'
|
|
$tools[] = Linker::linkKnown(
|
|
SpecialPage::getTitleFor( $arr[0], $arr[1] ),
|
|
wfMessage( "watchlisttools-{$mode}" )->escaped()
|
|
);
|
|
}
|
|
|
|
return Html::rawElement(
|
|
'span',
|
|
array( 'class' => 'mw-watchlist-toollinks' ),
|
|
wfMessage( 'parentheses', $wgLang->pipeList( $tools ) )->text()
|
|
);
|
|
}
|
|
}
|
|
|
|
# B/C since 1.18
|
|
class WatchlistEditor extends SpecialEditWatchlist {
|
|
}
|
|
|
|
/**
|
|
* Extend HTMLForm purely so we can have a more sane way of getting the section headers
|
|
*/
|
|
class EditWatchlistNormalHTMLForm extends HTMLForm {
|
|
public function getLegend( $namespace ) {
|
|
$namespace = substr( $namespace, 2 );
|
|
|
|
return $namespace == NS_MAIN
|
|
? $this->msg( 'blanknamespace' )->escaped()
|
|
: htmlspecialchars( $this->getContext()->getLanguage()->getFormattedNsText( $namespace ) );
|
|
}
|
|
|
|
public function getBody() {
|
|
return $this->displaySection( $this->mFieldTree, '', 'editwatchlist-' );
|
|
}
|
|
}
|
|
|
|
class EditWatchlistCheckboxSeriesField extends HTMLMultiSelectField {
|
|
/**
|
|
* HTMLMultiSelectField throws validation errors if we get input data
|
|
* that doesn't match the data set in the form setup. This causes
|
|
* problems if something gets removed from the watchlist while the
|
|
* form is open (bug 32126), but we know that invalid items will
|
|
* be harmless so we can override it here.
|
|
*
|
|
* @param string $value the value the field was submitted with
|
|
* @param array $alldata the data collected from the form
|
|
* @return Mixed Bool true on success, or String error to display.
|
|
*/
|
|
function validate( $value, $alldata ) {
|
|
// Need to call into grandparent to be a good citizen. :)
|
|
return HTMLFormField::validate( $value, $alldata );
|
|
}
|
|
}
|