3 * @defgroup Watchlist Users watchlist handling
7 * Implements Special:EditWatchlist
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License along
20 * with this program; if not, write to the Free Software Foundation, Inc.,
21 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
22 * http://www.gnu.org/copyleft/gpl.html
25 * @ingroup SpecialPage
30 * Provides the UI through which users can perform editing
31 * operations on their watchlist
33 * @ingroup SpecialPage
35 * @author Rob Church <robchur@gmail.com>
37 class SpecialEditWatchlist
extends UnlistedSpecialPage
{
39 * Editing modes. EDIT_CLEAR is no longer used; the "Clear" link scared people
40 * too much. Now it's passed on to the raw editor, from which it's very easy to clear.
44 const EDIT_NORMAL
= 3;
46 protected $successMessage;
50 private $badItems = array();
52 public function __construct() {
53 parent
::__construct( 'EditWatchlist', 'editmywatchlist' );
56 public function doesWrites() {
61 * Main execution point
65 public function execute( $mode ) {
68 # Anons don't get a watchlist
69 $this->requireLogin( 'watchlistanontext' );
71 $out = $this->getOutput();
73 $this->checkPermissions();
74 $this->checkReadOnly();
76 $this->outputHeader();
77 $this->outputSubtitle();
78 $out->addModuleStyles( 'mediawiki.special' );
80 # B/C: $mode used to be waaay down the parameter list, and the first parameter
82 if ( $mode instanceof User
) {
83 $args = func_get_args();
84 if ( count( $args ) >= 4 ) {
88 $mode = self
::getMode( $this->getRequest(), $mode );
92 $out->setPageTitle( $this->msg( 'watchlistedit-raw-title' ) );
93 $form = $this->getRawForm();
94 if ( $form->show() ) {
95 $out->addHTML( $this->successMessage
);
96 $out->addReturnTo( SpecialPage
::getTitleFor( 'Watchlist' ) );
99 case self
::EDIT_CLEAR
:
100 $out->setPageTitle( $this->msg( 'watchlistedit-clear-title' ) );
101 $form = $this->getClearForm();
102 if ( $form->show() ) {
103 $out->addHTML( $this->successMessage
);
104 $out->addReturnTo( SpecialPage
::getTitleFor( 'Watchlist' ) );
108 case self
::EDIT_NORMAL
:
110 $this->executeViewEditWatchlist();
116 * Renders a subheader on the watchlist page.
118 protected function outputSubtitle() {
119 $out = $this->getOutput();
120 $out->addSubtitle( $this->msg( 'watchlistfor2', $this->getUser()->getName() )
121 ->rawParams( SpecialEditWatchlist
::buildTools( null ) ) );
125 * Executes an edit mode for the watchlist view, from which you can manage your watchlist
128 protected function executeViewEditWatchlist() {
129 $out = $this->getOutput();
130 $out->setPageTitle( $this->msg( 'watchlistedit-normal-title' ) );
131 $form = $this->getNormalForm();
132 if ( $form->show() ) {
133 $out->addHTML( $this->successMessage
);
134 $out->addReturnTo( SpecialPage
::getTitleFor( 'Watchlist' ) );
135 } elseif ( $this->toc
!== false ) {
136 $out->prependHTML( $this->toc
);
137 $out->addModules( 'mediawiki.toc' );
142 * Return an array of subpages that this special page will accept.
144 * @see also SpecialWatchlist::getSubpagesForPrefixSearch
145 * @return string[] subpages
147 public function getSubpagesForPrefixSearch() {
148 // SpecialWatchlist uses SpecialEditWatchlist::getMode, so new types should be added
149 // here and there - no 'edit' here, because that the default for this page
157 * Extract a list of titles from a blob of text, returning
158 * (prefixed) strings; unwatchable titles are ignored
160 * @param string $list
163 private function extractTitles( $list ) {
164 $list = explode( "\n", trim( $list ) );
165 if ( !is_array( $list ) ) {
171 foreach ( $list as $text ) {
172 $text = trim( $text );
173 if ( strlen( $text ) > 0 ) {
174 $title = Title
::newFromText( $text );
175 if ( $title instanceof Title
&& $title->isWatchable() ) {
181 GenderCache
::singleton()->doTitlesArray( $titles );
184 /** @var Title $title */
185 foreach ( $titles as $title ) {
186 $list[] = $title->getPrefixedText();
189 return array_unique( $list );
192 public function submitRaw( $data ) {
193 $wanted = $this->extractTitles( $data['Titles'] );
194 $current = $this->getWatchlist();
196 if ( count( $wanted ) > 0 ) {
197 $toWatch = array_diff( $wanted, $current );
198 $toUnwatch = array_diff( $current, $wanted );
199 $this->watchTitles( $toWatch );
200 $this->unwatchTitles( $toUnwatch );
201 $this->getUser()->invalidateCache();
203 if ( count( $toWatch ) > 0 ||
count( $toUnwatch ) > 0 ) {
204 $this->successMessage
= $this->msg( 'watchlistedit-raw-done' )->parse();
209 if ( count( $toWatch ) > 0 ) {
210 $this->successMessage
.= ' ' . $this->msg( 'watchlistedit-raw-added' )
211 ->numParams( count( $toWatch ) )->parse();
212 $this->showTitles( $toWatch, $this->successMessage
);
215 if ( count( $toUnwatch ) > 0 ) {
216 $this->successMessage
.= ' ' . $this->msg( 'watchlistedit-raw-removed' )
217 ->numParams( count( $toUnwatch ) )->parse();
218 $this->showTitles( $toUnwatch, $this->successMessage
);
221 $this->clearWatchlist();
222 $this->getUser()->invalidateCache();
224 if ( count( $current ) > 0 ) {
225 $this->successMessage
= $this->msg( 'watchlistedit-raw-done' )->parse();
230 $this->successMessage
.= ' ' . $this->msg( 'watchlistedit-raw-removed' )
231 ->numParams( count( $current ) )->parse();
232 $this->showTitles( $current, $this->successMessage
);
238 public function submitClear( $data ) {
239 $current = $this->getWatchlist();
240 $this->clearWatchlist();
241 $this->getUser()->invalidateCache();
242 $this->successMessage
= $this->msg( 'watchlistedit-clear-done' )->parse();
243 $this->successMessage
.= ' ' . $this->msg( 'watchlistedit-clear-removed' )
244 ->numParams( count( $current ) )->parse();
245 $this->showTitles( $current, $this->successMessage
);
251 * Print out a list of linked titles
253 * $titles can be an array of strings or Title objects; the former
254 * is preferred, since Titles are very memory-heavy
256 * @param array $titles Array of strings, or Title objects
257 * @param string $output
259 private function showTitles( $titles, &$output ) {
260 $talk = $this->msg( 'talkpagelinktext' )->escaped();
261 // Do a batch existence check
262 $batch = new LinkBatch();
263 if ( count( $titles ) >= 100 ) {
264 $output = $this->msg( 'watchlistedit-too-many' )->parse();
267 foreach ( $titles as $title ) {
268 if ( !$title instanceof Title
) {
269 $title = Title
::newFromText( $title );
272 if ( $title instanceof Title
) {
273 $batch->addObj( $title );
274 $batch->addObj( $title->getTalkPage() );
280 // Print out the list
283 foreach ( $titles as $title ) {
284 if ( !$title instanceof Title
) {
285 $title = Title
::newFromText( $title );
288 if ( $title instanceof Title
) {
290 Linker
::link( $title ) . ' ' .
291 $this->msg( 'parentheses' )->rawParams(
292 Linker
::link( $title->getTalkPage(), $talk )
298 $output .= "</ul>\n";
302 * Prepare a list of titles on a user's watchlist (excluding talk pages)
303 * and return an array of (prefixed) strings
307 private function getWatchlist() {
310 $index = $this->getRequest()->wasPosted() ? DB_MASTER
: DB_SLAVE
;
311 $dbr = wfGetDB( $index );
316 'wl_namespace', 'wl_title'
318 'wl_user' => $this->getUser()->getId(),
323 if ( $res->numRows() > 0 ) {
324 /** @var Title[] $titles */
326 foreach ( $res as $row ) {
327 $title = Title
::makeTitleSafe( $row->wl_namespace
, $row->wl_title
);
329 if ( $this->checkTitle( $title, $row->wl_namespace
, $row->wl_title
)
330 && !$title->isTalkPage()
337 GenderCache
::singleton()->doTitlesArray( $titles );
339 foreach ( $titles as $title ) {
340 $list[] = $title->getPrefixedText();
344 $this->cleanupWatchlist();
350 * Get a list of titles on a user's watchlist, excluding talk pages,
351 * and return as a two-dimensional array with namespace and title.
355 protected function getWatchlistInfo() {
357 $dbr = wfGetDB( DB_SLAVE
);
360 array( 'watchlist' ),
361 array( 'wl_namespace', 'wl_title' ),
362 array( 'wl_user' => $this->getUser()->getId() ),
364 array( 'ORDER BY' => array( 'wl_namespace', 'wl_title' ) )
367 $lb = new LinkBatch();
369 foreach ( $res as $row ) {
370 $lb->add( $row->wl_namespace
, $row->wl_title
);
371 if ( !MWNamespace
::isTalk( $row->wl_namespace
) ) {
372 $titles[$row->wl_namespace
][$row->wl_title
] = 1;
382 * Validates watchlist entry
384 * @param Title $title
385 * @param int $namespace
386 * @param string $dbKey
387 * @return bool Whether this item is valid
389 private function checkTitle( $title, $namespace, $dbKey ) {
391 && ( $title->isExternal()
392 ||
$title->getNamespace() < 0
395 $title = false; // unrecoverable
399 ||
$title->getNamespace() != $namespace
400 ||
$title->getDBkey() != $dbKey
402 $this->badItems
[] = array( $title, $namespace, $dbKey );
409 * Attempts to clean up broken items
411 private function cleanupWatchlist() {
412 if ( !count( $this->badItems
) ) {
413 return; // nothing to do
416 $dbw = wfGetDB( DB_MASTER
);
417 $user = $this->getUser();
419 foreach ( $this->badItems
as $row ) {
420 list( $title, $namespace, $dbKey ) = $row;
421 $action = $title ?
'cleaning up' : 'deleting';
422 wfDebug( "User {$user->getName()} has broken watchlist item ns($namespace):$dbKey, $action.\n" );
424 $dbw->delete( 'watchlist',
426 'wl_user' => $user->getId(),
427 'wl_namespace' => $namespace,
428 'wl_title' => $dbKey,
433 // Can't just do an UPDATE instead of DELETE/INSERT due to unique index
435 $user->addWatch( $title );
441 * Remove all titles from a user's watchlist
443 private function clearWatchlist() {
444 $dbw = wfGetDB( DB_MASTER
);
447 array( 'wl_user' => $this->getUser()->getId() ),
453 * Add a list of titles to a user's watchlist
455 * $titles can be an array of strings or Title objects; the former
456 * is preferred, since Titles are very memory-heavy
458 * @param array $titles Array of strings, or Title objects
460 private function watchTitles( $titles ) {
461 $dbw = wfGetDB( DB_MASTER
);
464 foreach ( $titles as $title ) {
465 if ( !$title instanceof Title
) {
466 $title = Title
::newFromText( $title );
469 if ( $title instanceof Title
) {
471 'wl_user' => $this->getUser()->getId(),
472 'wl_namespace' => MWNamespace
::getSubject( $title->getNamespace() ),
473 'wl_title' => $title->getDBkey(),
474 'wl_notificationtimestamp' => null,
477 'wl_user' => $this->getUser()->getId(),
478 'wl_namespace' => MWNamespace
::getTalk( $title->getNamespace() ),
479 'wl_title' => $title->getDBkey(),
480 'wl_notificationtimestamp' => null,
485 $dbw->insert( 'watchlist', $rows, __METHOD__
, 'IGNORE' );
489 * Remove a list of titles from a user's watchlist
491 * $titles can be an array of strings or Title objects; the former
492 * is preferred, since Titles are very memory-heavy
494 * @param array $titles Array of strings, or Title objects
496 private function unwatchTitles( $titles ) {
497 $dbw = wfGetDB( DB_MASTER
);
499 foreach ( $titles as $title ) {
500 if ( !$title instanceof Title
) {
501 $title = Title
::newFromText( $title );
504 if ( $title instanceof Title
) {
508 'wl_user' => $this->getUser()->getId(),
509 'wl_namespace' => MWNamespace
::getSubject( $title->getNamespace() ),
510 'wl_title' => $title->getDBkey(),
518 'wl_user' => $this->getUser()->getId(),
519 'wl_namespace' => MWNamespace
::getTalk( $title->getNamespace() ),
520 'wl_title' => $title->getDBkey(),
525 $page = WikiPage
::factory( $title );
526 Hooks
::run( 'UnwatchArticleComplete', array( $this->getUser(), &$page ) );
531 public function submitNormal( $data ) {
534 foreach ( $data as $titles ) {
535 $this->unwatchTitles( $titles );
536 $removed = array_merge( $removed, $titles );
539 if ( count( $removed ) > 0 ) {
540 $this->successMessage
= $this->msg( 'watchlistedit-normal-done'
541 )->numParams( count( $removed ) )->parse();
542 $this->showTitles( $removed, $this->successMessage
);
551 * Get the standard watchlist editing form
555 protected function getNormalForm() {
561 // Allow subscribers to manipulate the list of watched pages (or use it
562 // to preload lots of details at once)
563 $watchlistInfo = $this->getWatchlistInfo();
565 'WatchlistEditorBeforeFormRender',
566 array( &$watchlistInfo )
569 foreach ( $watchlistInfo as $namespace => $pages ) {
572 foreach ( array_keys( $pages ) as $dbkey ) {
573 $title = Title
::makeTitleSafe( $namespace, $dbkey );
575 if ( $this->checkTitle( $title, $namespace, $dbkey ) ) {
576 $text = $this->buildRemoveLine( $title );
577 $options[$text] = $title->getPrefixedText();
582 // checkTitle can filter some options out, avoid empty sections
583 if ( count( $options ) > 0 ) {
584 $fields['TitlesNs' . $namespace] = array(
585 'class' => 'EditWatchlistCheckboxSeriesField',
586 'options' => $options,
587 'section' => "ns$namespace",
591 $this->cleanupWatchlist();
593 if ( count( $fields ) > 1 && $count > 30 ) {
594 $this->toc
= Linker
::tocIndent();
597 foreach ( $fields as $data ) {
598 # strip out the 'ns' prefix from the section name:
599 $ns = substr( $data['section'], 2 );
601 $nsText = ( $ns == NS_MAIN
)
602 ?
$this->msg( 'blanknamespace' )->escaped()
603 : htmlspecialchars( $wgContLang->getFormattedNsText( $ns ) );
604 $this->toc
.= Linker
::tocLine( "editwatchlist-{$data['section']}", $nsText,
605 $this->getLanguage()->formatNum( ++
$tocLength ), 1 ) . Linker
::tocLineEnd();
608 $this->toc
= Linker
::tocList( $this->toc
);
613 $context = new DerivativeContext( $this->getContext() );
614 $context->setTitle( $this->getPageTitle() ); // Remove subpage
615 $form = new EditWatchlistNormalHTMLForm( $fields, $context );
616 $form->setSubmitTextMsg( 'watchlistedit-normal-submit' );
617 $form->setSubmitDestructive();
619 # 'accesskey-watchlistedit-normal-submit', 'tooltip-watchlistedit-normal-submit'
620 $form->setSubmitTooltip( 'watchlistedit-normal-submit' );
621 $form->setWrapperLegendMsg( 'watchlistedit-normal-legend' );
622 $form->addHeaderText( $this->msg( 'watchlistedit-normal-explain' )->parse() );
623 $form->setSubmitCallback( array( $this, 'submitNormal' ) );
629 * Build the label for a checkbox, with a link to the title, and various additional bits
631 * @param Title $title
634 private function buildRemoveLine( $title ) {
635 $link = Linker
::link( $title );
637 $tools['talk'] = Linker
::link(
638 $title->getTalkPage(),
639 $this->msg( 'talkpagelinktext' )->escaped()
642 if ( $title->exists() ) {
643 $tools['history'] = Linker
::linkKnown(
645 $this->msg( 'history_short' )->escaped(),
647 array( 'action' => 'history' )
651 if ( $title->getNamespace() == NS_USER
&& !$title->isSubpage() ) {
652 $tools['contributions'] = Linker
::linkKnown(
653 SpecialPage
::getTitleFor( 'Contributions', $title->getText() ),
654 $this->msg( 'contributions' )->escaped()
659 'WatchlistEditorBuildRemoveLine',
660 array( &$tools, $title, $title->isRedirect(), $this->getSkin(), &$link )
663 if ( $title->isRedirect() ) {
664 // Linker already makes class mw-redirect, so this is redundant
665 $link = '<span class="watchlistredir">' . $link . '</span>';
669 $this->msg( 'parentheses' )->rawParams( $this->getLanguage()->pipeList( $tools ) )->escaped();
673 * Get a form for editing the watchlist in "raw" mode
677 protected function getRawForm() {
678 $titles = implode( $this->getWatchlist(), "\n" );
681 'type' => 'textarea',
682 'label-message' => 'watchlistedit-raw-titles',
683 'default' => $titles,
686 $context = new DerivativeContext( $this->getContext() );
687 $context->setTitle( $this->getPageTitle( 'raw' ) ); // Reset subpage
688 $form = new HTMLForm( $fields, $context );
689 $form->setSubmitTextMsg( 'watchlistedit-raw-submit' );
690 # Used message keys: 'accesskey-watchlistedit-raw-submit', 'tooltip-watchlistedit-raw-submit'
691 $form->setSubmitTooltip( 'watchlistedit-raw-submit' );
692 $form->setWrapperLegendMsg( 'watchlistedit-raw-legend' );
693 $form->addHeaderText( $this->msg( 'watchlistedit-raw-explain' )->parse() );
694 $form->setSubmitCallback( array( $this, 'submitRaw' ) );
700 * Get a form for clearing the watchlist
704 protected function getClearForm() {
705 $context = new DerivativeContext( $this->getContext() );
706 $context->setTitle( $this->getPageTitle( 'clear' ) ); // Reset subpage
707 $form = new HTMLForm( array(), $context );
708 $form->setSubmitTextMsg( 'watchlistedit-clear-submit' );
709 # Used message keys: 'accesskey-watchlistedit-clear-submit', 'tooltip-watchlistedit-clear-submit'
710 $form->setSubmitTooltip( 'watchlistedit-clear-submit' );
711 $form->setWrapperLegendMsg( 'watchlistedit-clear-legend' );
712 $form->addHeaderText( $this->msg( 'watchlistedit-clear-explain' )->parse() );
713 $form->setSubmitCallback( array( $this, 'submitClear' ) );
714 $form->setSubmitDestructive();
720 * Determine whether we are editing the watchlist, and if so, what
721 * kind of editing operation
723 * @param WebRequest $request
727 public static function getMode( $request, $par ) {
728 $mode = strtolower( $request->getVal( 'action', $par ) );
732 case self
::EDIT_CLEAR
:
733 return self
::EDIT_CLEAR
;
736 return self
::EDIT_RAW
;
738 case self
::EDIT_NORMAL
:
739 return self
::EDIT_NORMAL
;
746 * Build a set of links for convenient navigation
747 * between watchlist viewing and editing modes
749 * @param null $unused
752 public static function buildTools( $unused ) {
757 'view' => array( 'Watchlist', false ),
758 'edit' => array( 'EditWatchlist', false ),
759 'raw' => array( 'EditWatchlist', 'raw' ),
760 'clear' => array( 'EditWatchlist', 'clear' ),
763 foreach ( $modes as $mode => $arr ) {
764 // can use messages 'watchlisttools-view', 'watchlisttools-edit', 'watchlisttools-raw'
765 $tools[] = Linker
::linkKnown(
766 SpecialPage
::getTitleFor( $arr[0], $arr[1] ),
767 wfMessage( "watchlisttools-{$mode}" )->escaped()
771 return Html
::rawElement(
773 array( 'class' => 'mw-watchlist-toollinks' ),
774 wfMessage( 'parentheses' )->rawParams( $wgLang->pipeList( $tools ) )->escaped()
780 * Extend HTMLForm purely so we can have a more sane way of getting the section headers
782 class EditWatchlistNormalHTMLForm
extends HTMLForm
{
783 public function getLegend( $namespace ) {
784 $namespace = substr( $namespace, 2 );
786 return $namespace == NS_MAIN
787 ?
$this->msg( 'blanknamespace' )->escaped()
788 : htmlspecialchars( $this->getContext()->getLanguage()->getFormattedNsText( $namespace ) );
791 public function getBody() {
792 return $this->displaySection( $this->mFieldTree
, '', 'editwatchlist-' );
796 class EditWatchlistCheckboxSeriesField
extends HTMLMultiSelectField
{
798 * HTMLMultiSelectField throws validation errors if we get input data
799 * that doesn't match the data set in the form setup. This causes
800 * problems if something gets removed from the watchlist while the
801 * form is open (bug 32126), but we know that invalid items will
802 * be harmless so we can override it here.
804 * @param string $value The value the field was submitted with
805 * @param array $alldata The data collected from the form
806 * @return bool|string Bool true on success, or String error to display.
808 function validate( $value, $alldata ) {
809 // Need to call into grandparent to be a good citizen. :)
810 return HTMLFormField
::validate( $value, $alldata );