5 * Copyright © 2005 Brooke Vibber <bvibber@wikimedia.org>
6 * https://www.mediawiki.org/
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License along
19 * with this program; if not, write to the Free Software Foundation, Inc.,
20 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
21 * http://www.gnu.org/copyleft/gpl.html
26 namespace MediaWiki\Page
;
32 use MediaWiki\CommentStore\CommentStore
;
33 use MediaWiki\Context\IContextSource
;
34 use MediaWiki\HookContainer\HookRunner
;
35 use MediaWiki\Html\Html
;
36 use MediaWiki\HTMLForm\HTMLForm
;
37 use MediaWiki\Language\Language
;
38 use MediaWiki\MediaWikiServices
;
39 use MediaWiki\Output\OutputPage
;
40 use MediaWiki\Permissions\Authority
;
41 use MediaWiki\Permissions\PermissionManager
;
42 use MediaWiki\Permissions\PermissionStatus
;
43 use MediaWiki\Permissions\RestrictionStore
;
44 use MediaWiki\Request\WebRequest
;
45 use MediaWiki\Title\Title
;
46 use MediaWiki\Title\TitleFormatter
;
47 use MediaWiki\Watchlist\WatchlistManager
;
48 use MediaWiki\Xml\Xml
;
49 use MediaWiki\Xml\XmlSelect
;
52 * Handles the page protection UI and backend
54 class ProtectionForm
{
55 /** @var array A map of action to restriction level, from request or default */
56 protected $mRestrictions = [];
58 /** @var string The custom/additional protection reason */
59 protected $mReason = '';
61 /** @var string The reason selected from the list, blank for other/additional */
62 protected $mReasonSelection = '';
64 /** @var bool True if the restrictions are cascading, from request or existing protection */
65 protected $mCascade = false;
67 /** @var array Map of action to "other" expiry time. Used in preference to mExpirySelection. */
68 protected $mExpiry = [];
71 * @var array Map of action to value selected in expiry drop-down list.
72 * Will be set to 'othertime' whenever mExpiry is set.
74 protected $mExpirySelection = [];
76 /** @var PermissionStatus Permissions errors for the protect action */
77 protected $mPermStatus;
79 /** @var array Types (i.e. actions) for which levels can be selected */
80 protected $mApplicableTypes = [];
82 /** @var array Map of action to the expiry time of the existing protection */
83 protected $mExistingExpiry = [];
85 protected Article
$mArticle;
86 protected Title
$mTitle;
87 protected bool $disabled;
88 protected array $disabledAttrib;
89 private IContextSource
$mContext;
90 private WebRequest
$mRequest;
91 private Authority
$mPerformer;
92 private Language
$mLang;
93 private OutputPage
$mOut;
94 private PermissionManager
$permManager;
95 private HookRunner
$hookRunner;
96 private WatchlistManager
$watchlistManager;
97 private TitleFormatter
$titleFormatter;
98 private RestrictionStore
$restrictionStore;
100 public function __construct( Article
$article ) {
101 // Set instance variables.
102 $this->mArticle
= $article;
103 $this->mTitle
= $article->getTitle();
104 $this->mContext
= $article->getContext();
105 $this->mRequest
= $this->mContext
->getRequest();
106 $this->mPerformer
= $this->mContext
->getAuthority();
107 $this->mOut
= $this->mContext
->getOutput();
108 $this->mLang
= $this->mContext
->getLanguage();
110 $services = MediaWikiServices
::getInstance();
111 $this->permManager
= $services->getPermissionManager();
112 $this->hookRunner
= new HookRunner( $services->getHookContainer() );
113 $this->watchlistManager
= $services->getWatchlistManager();
114 $this->titleFormatter
= $services->getTitleFormatter();
115 $this->restrictionStore
= $services->getRestrictionStore();
116 $this->mApplicableTypes
= $this->restrictionStore
->listApplicableRestrictionTypes( $this->mTitle
);
118 // Check if the form should be disabled.
119 // If it is, the form will be available in read-only to show levels.
120 $this->mPermStatus
= PermissionStatus
::newEmpty();
121 if ( $this->mRequest
->wasPosted() ) {
122 $this->mPerformer
->authorizeWrite( 'protect', $this->mTitle
, $this->mPermStatus
);
124 $this->mPerformer
->authorizeRead( 'protect', $this->mTitle
, $this->mPermStatus
);
126 $readOnlyMode = $services->getReadOnlyMode();
127 if ( $readOnlyMode->isReadOnly() ) {
128 $this->mPermStatus
->fatal( 'readonlytext', $readOnlyMode->getReason() );
130 $this->disabled
= !$this->mPermStatus
->isGood();
131 $this->disabledAttrib
= $this->disabled ?
[ 'disabled' => 'disabled' ] : [];
137 * Loads the current state of protection into the object.
139 private function loadData() {
140 $levels = $this->permManager
->getNamespaceRestrictionLevels(
141 $this->mTitle
->getNamespace(), $this->mPerformer
->getUser()
144 $this->mCascade
= $this->restrictionStore
->areRestrictionsCascading( $this->mTitle
);
145 $this->mReason
= $this->mRequest
->getText( 'mwProtect-reason' );
146 $this->mReasonSelection
= $this->mRequest
->getText( 'wpProtectReasonSelection' );
147 $this->mCascade
= $this->mRequest
->getBool( 'mwProtect-cascade', $this->mCascade
);
149 foreach ( $this->mApplicableTypes
as $action ) {
150 // @todo FIXME: This form currently requires individual selections,
151 // but the db allows multiples separated by commas.
153 // Pull the actual restriction from the DB
154 $this->mRestrictions
[$action] = implode( '',
155 $this->restrictionStore
->getRestrictions( $this->mTitle
, $action ) );
157 if ( !$this->mRestrictions
[$action] ) {
158 // No existing expiry
159 $existingExpiry = '';
161 $existingExpiry = $this->restrictionStore
->getRestrictionExpiry( $this->mTitle
, $action );
163 $this->mExistingExpiry
[$action] = $existingExpiry;
165 $requestExpiry = $this->mRequest
->getText( "mwProtect-expiry-$action" );
166 $requestExpirySelection = $this->mRequest
->getVal( "wpProtectExpirySelection-$action" );
168 if ( $requestExpiry ) {
169 // Custom expiry takes precedence
170 $this->mExpiry
[$action] = $requestExpiry;
171 $this->mExpirySelection
[$action] = 'othertime';
172 } elseif ( $requestExpirySelection ) {
173 // Expiry selected from list
174 $this->mExpiry
[$action] = '';
175 $this->mExpirySelection
[$action] = $requestExpirySelection;
176 } elseif ( $existingExpiry ) {
177 // Use existing expiry in its own list item
178 $this->mExpiry
[$action] = '';
179 $this->mExpirySelection
[$action] = $existingExpiry;
181 // Catches 'infinity' - Existing expiry is infinite, use "infinite" in drop-down
182 // Final default: infinite
183 $this->mExpiry
[$action] = '';
184 $this->mExpirySelection
[$action] = 'infinite';
187 $val = $this->mRequest
->getVal( "mwProtect-level-$action" );
188 if ( $val !== null && in_array( $val, $levels ) ) {
189 $this->mRestrictions
[$action] = $val;
195 * Get the expiry time for a given action, by combining the relevant inputs.
197 * @param string $action
199 * @return string|false 14-char timestamp or "infinity", or false if the input was invalid
201 private function getExpiry( $action ) {
202 if ( $this->mExpirySelection
[$action] == 'existing' ) {
203 return $this->mExistingExpiry
[$action];
204 } elseif ( $this->mExpirySelection
[$action] == 'othertime' ) {
205 $value = $this->mExpiry
[$action];
207 $value = $this->mExpirySelection
[$action];
209 if ( wfIsInfinity( $value ) ) {
212 $unix = strtotime( $value );
214 if ( !$unix ||
$unix === -1 ) {
218 // @todo FIXME: Non-qualified absolute times are not in users specified timezone
219 // and there isn't notice about it in the ui
220 $time = wfTimestamp( TS_MW
, $unix );
226 * Main entry point for action=protect and action=unprotect
228 public function execute() {
230 $this->permManager
->getNamespaceRestrictionLevels(
231 $this->mTitle
->getNamespace()
234 throw new ErrorPageError( 'protect-badnamespace-title', 'protect-badnamespace-text' );
237 if ( $this->mRequest
->wasPosted() ) {
238 if ( $this->save() ) {
239 $q = $this->mArticle
->getPage()->isRedirect() ?
'redirect=no' : '';
240 $this->mOut
->redirect( $this->mTitle
->getFullURL( $q ) );
248 * Show the input form with optional error message
250 * @param string|string[]|null $err Error message or null if there's no error
251 * @phan-param string|non-empty-array|null $err
253 private function show( $err = null ) {
255 $out->setRobotPolicy( 'noindex,nofollow' );
256 $out->addBacklinkSubtitle( $this->mTitle
);
258 if ( is_array( $err ) ) {
259 $out->addHTML( Html
::errorBox( $out->msg( ...$err )->parse() ) );
260 } elseif ( is_string( $err ) ) {
261 $out->addHTML( Html
::errorBox( $err ) );
264 if ( $this->mApplicableTypes
=== [] ) {
265 // No restriction types available for the current title
266 // this might happen if an extension alters the available types
267 $out->setPageTitleMsg( $this->mContext
->msg(
268 'protect-norestrictiontypes-title'
270 $this->mTitle
->getPrefixedText()
272 $out->addWikiTextAsInterface(
273 $this->mContext
->msg( 'protect-norestrictiontypes-text' )->plain()
276 // Show the log in case protection was possible once
277 $this->showLogExtract();
278 // return as there isn't anything else we can do
282 [ $cascadeSources, /* $restrictions */ ] =
283 $this->restrictionStore
->getCascadeProtectionSources( $this->mTitle
);
284 if ( count( $cascadeSources ) > 0 ) {
287 foreach ( $cascadeSources as $pageIdentity ) {
288 $titles .= '* [[:' . $this->titleFormatter
->getPrefixedText( $pageIdentity ) . "]]\n";
291 /** @todo FIXME: i18n issue, should use formatted number. */
293 "<div id=\"mw-protect-cascadeon\">\n$1\n" . $titles . "</div>",
294 [ 'protect-cascadeon', count( $cascadeSources ) ]
298 # Show an appropriate message if the user isn't allowed or able to change
299 # the protection settings at this time
300 if ( $this->disabled
) {
301 $out->setPageTitleMsg(
302 $this->mContext
->msg( 'protect-title-notallowed' )->plaintextParams( $this->mTitle
->getPrefixedText() )
304 $out->addWikiTextAsInterface(
305 $out->formatPermissionStatus( $this->mPermStatus
, 'protect' )
308 $out->setPageTitleMsg(
309 $this->mContext
->msg( 'protect-title' )->plaintextParams( $this->mTitle
->getPrefixedText() )
311 $out->addWikiMsg( 'protect-text',
312 wfEscapeWikiText( $this->mTitle
->getPrefixedText() ) );
315 $out->addHTML( $this->buildForm() );
316 $this->showLogExtract();
320 * Save submitted protection form
322 * @return bool Success
324 private function save() {
326 if ( $this->disabled
) {
331 $token = $this->mRequest
->getVal( 'wpEditToken' );
332 $legacyUser = MediaWikiServices
::getInstance()
334 ->newFromAuthority( $this->mPerformer
);
335 if ( !$legacyUser->matchEditToken( $token, [ 'protect', $this->mTitle
->getPrefixedDBkey() ] ) ) {
336 $this->show( [ 'sessionfailure' ] );
340 # Create reason string. Use list and/or custom string.
341 $reasonstr = $this->mReasonSelection
;
342 if ( $reasonstr != 'other' && $this->mReason
!= '' ) {
343 // Entry from drop down menu + additional comment
344 $reasonstr .= $this->mContext
->msg( 'colon-separator' )->text() . $this->mReason
;
345 } elseif ( $reasonstr == 'other' ) {
346 $reasonstr = $this->mReason
;
350 foreach ( $this->mApplicableTypes
as $action ) {
351 $expiry[$action] = $this->getExpiry( $action );
352 if ( empty( $this->mRestrictions
[$action] ) ) {
356 if ( !$expiry[$action] ) {
357 $this->show( [ 'protect_expiry_invalid' ] );
360 if ( $expiry[$action] < wfTimestampNow() ) {
361 $this->show( [ 'protect_expiry_old' ] );
366 $this->mCascade
= $this->mRequest
->getBool( 'mwProtect-cascade' );
368 $status = $this->mArticle
->getPage()->doUpdateRestrictions(
369 $this->mRestrictions
,
373 $this->mPerformer
->getUser()
376 if ( !$status->isOK() ) {
377 $this->show( $this->mOut
->parseInlineAsInterface(
378 $status->getWikiText( false, false, $this->mLang
)
384 * Give extensions a change to handle added form items
386 * @since 1.19 you can (and you should) return false to abort saving;
387 * you can also return an array of message name and its parameters
390 if ( !$this->hookRunner
->onProtectionForm__save( $this->mArticle
, $errorMsg, $reasonstr ) ) {
391 if ( $errorMsg == '' ) {
392 $errorMsg = [ 'hookaborted' ];
395 if ( $errorMsg != '' ) {
396 $this->show( $errorMsg );
400 $this->watchlistManager
->setWatch(
401 $this->mRequest
->getCheck( 'mwProtectWatch' ),
410 * Build the input form
412 * @return string HTML form
414 private function buildForm() {
415 $this->mOut
->enableOOUI();
418 if ( !$this->disabled
) {
419 $this->mOut
->addModules( 'mediawiki.action.protect' );
420 $this->mOut
->addModuleStyles( 'mediawiki.action.styles' );
422 $scExpiryOptions = $this->mContext
->msg( 'protect-expiry-options' )->inContentLanguage()->text();
423 $levels = $this->permManager
->getNamespaceRestrictionLevels(
424 $this->mTitle
->getNamespace(),
425 $this->disabled ?
null : $this->mPerformer
->getUser()
428 // Not all languages have V_x <-> N_x relation
429 foreach ( $this->mRestrictions
as $action => $selected ) {
431 // restriction-edit, restriction-move, restriction-create, restriction-upload
432 $section = 'restriction-' . $action;
433 $id = 'mwProtect-level-' . $action;
435 foreach ( $levels as $key ) {
436 $options[$this->getOptionLabel( $key )] = $key;
442 'default' => $selected,
444 'size' => count( $levels ),
445 'options' => $options,
446 'disabled' => $this->disabled
,
447 'section' => $section,
452 if ( $this->mExistingExpiry
[$action] ) {
453 if ( $this->mExistingExpiry
[$action] == 'infinity' ) {
454 $existingExpiryMessage = $this->mContext
->msg( 'protect-existing-expiry-infinity' );
456 $existingExpiryMessage = $this->mContext
->msg( 'protect-existing-expiry' )
457 ->dateTimeParams( $this->mExistingExpiry
[$action] )
458 ->dateParams( $this->mExistingExpiry
[$action] )
459 ->timeParams( $this->mExistingExpiry
[$action] );
461 $expiryOptions[$existingExpiryMessage->text()] = 'existing';
464 $expiryOptions[$this->mContext
->msg( 'protect-othertime-op' )->text()] = 'othertime';
466 $expiryOptions = array_merge( $expiryOptions, XmlSelect
::parseOptionsMessage( $scExpiryOptions ) );
468 # Add expiry dropdown
469 $fields["wpProtectExpirySelection-$action"] = [
471 'name' => "wpProtectExpirySelection-$action",
472 'id' => "mwProtectExpirySelection-$action",
474 'disabled' => $this->disabled
,
475 'label' => $this->mContext
->msg( 'protectexpiry' )->text(),
476 'options' => $expiryOptions,
477 'default' => $this->mExpirySelection
[$action],
478 'section' => $section,
481 # Add custom expiry field
482 if ( !$this->disabled
) {
483 $fields["mwProtect-expiry-$action"] = [
485 'label' => $this->mContext
->msg( 'protect-othertime' )->text(),
486 'name' => "mwProtect-expiry-$action",
487 'id' => "mwProtect-$action-expires",
489 'default' => $this->mExpiry
[$action],
490 'disabled' => $this->disabled
,
491 'section' => $section,
496 # Give extensions a chance to add items to the form
498 $hookFormOptions = [];
500 $this->hookRunner
->onProtectionForm__buildForm( $this->mArticle
, $hookFormRaw );
501 $this->hookRunner
->onProtectionFormAddFormFields( $this->mArticle
, $hookFormOptions );
503 # Merge forms added from addFormFields
504 $fields = array_merge( $fields, $hookFormOptions );
506 # Add raw sections added in buildForm
507 if ( $hookFormRaw ) {
508 $fields['rawinfo'] = [
510 'default' => $hookFormRaw,
512 'section' => 'restriction-blank'
516 # JavaScript will add another row with a value-chaining checkbox
517 if ( $this->mTitle
->exists() ) {
518 $fields['mwProtect-cascade'] = [
520 'label' => $this->mContext
->msg( 'protect-cascade' )->text(),
521 'id' => 'mwProtect-cascade',
522 'name' => 'mwProtect-cascade',
523 'default' => $this->mCascade
,
524 'disabled' => $this->disabled
,
528 # Add manual and custom reason field/selects as well as submit
529 if ( !$this->disabled
) {
530 // HTML maxlength uses "UTF-16 code units", which means that characters outside BMP
531 // (e.g. emojis) count for two each. This limit is overridden in JS to instead count
532 // Unicode codepoints.
533 // Subtract arbitrary 75 to leave some space for the autogenerated null edit's summary
534 // and other texts chosen by dropdown menus on this page.
535 $maxlength = CommentStore
::COMMENT_CHARACTER_LIMIT
- 75;
536 $fields['wpProtectReasonSelection'] = [
538 'cssclass' => 'mwProtect-reason',
539 'label' => $this->mContext
->msg( 'protectcomment' )->text(),
541 'id' => 'wpProtectReasonSelection',
542 'name' => 'wpProtectReasonSelection',
544 'options' => Html
::listDropdownOptions(
545 $this->mContext
->msg( 'protect-dropdown' )->inContentLanguage()->text(),
546 [ 'other' => $this->mContext
->msg( 'protect-otherreason-op' )->text() ]
548 'default' => $this->mReasonSelection
,
550 $fields['mwProtect-reason'] = [
552 'id' => 'mwProtect-reason',
553 'label' => $this->mContext
->msg( 'protect-otherreason' )->text(),
554 'name' => 'mwProtect-reason',
556 'maxlength' => $maxlength,
557 'default' => $this->mReason
,
559 # Disallow watching if user is not logged in
560 if ( $this->mPerformer
->getUser()->isRegistered() ) {
561 $fields['mwProtectWatch'] = [
563 'id' => 'mwProtectWatch',
564 'label' => $this->mContext
->msg( 'watchthis' )->text(),
565 'name' => 'mwProtectWatch',
567 $this->watchlistManager
->isWatched( $this->mPerformer
, $this->mTitle
)
568 || MediaWikiServices
::getInstance()->getUserOptionsLookup()->getOption(
569 $this->mPerformer
->getUser(),
577 if ( $this->mPerformer
->isAllowed( 'editinterface' ) ) {
578 $linkRenderer = MediaWikiServices
::getInstance()->getLinkRenderer();
579 $link = $linkRenderer->makeKnownLink(
580 $this->mContext
->msg( 'protect-dropdown' )->inContentLanguage()->getTitle(),
581 $this->mContext
->msg( 'protect-edit-reasonlist' )->text(),
583 [ 'action' => 'edit' ]
585 $out .= '<p class="mw-protect-editreasons">' . $link . '</p>';
588 $htmlForm = HTMLForm
::factory( 'ooui', $fields, $this->mContext
);
590 ->setMethod( 'post' )
591 ->setId( 'mw-Protect-Form' )
592 ->setTableId( 'mw-protect-table2' )
593 ->setAction( $this->mTitle
->getLocalURL( 'action=protect' ) )
594 ->setSubmitID( 'mw-Protect-submit' )
595 ->setSubmitTextMsg( 'confirm' )
596 ->setTokenSalt( [ 'protect', $this->mTitle
->getPrefixedDBkey() ] )
597 ->suppressDefaultSubmit( $this->disabled
)
598 ->setWrapperLegendMsg( 'protect-legend' )
601 return $htmlForm->getHTML( false ) . $out;
605 * Prepare the label for a protection selector option
607 * @param string $permission Permission required
610 private function getOptionLabel( $permission ) {
611 if ( $permission == '' ) {
612 return $this->mContext
->msg( 'protect-default' )->text();
614 // Messages: protect-level-autoconfirmed, protect-level-sysop
615 $msg = $this->mContext
->msg( "protect-level-{$permission}" );
616 if ( $msg->exists() ) {
619 return $this->mContext
->msg( 'protect-fallback', $permission )->text();
624 * Show protection long extracts for this page
626 private function showLogExtract() {
627 # Show relevant lines from the protection log:
628 $protectLogPage = new LogPage( 'protect' );
629 $this->mOut
->addHTML( Xml
::element( 'h2', null, $protectLogPage->getName()->text() ) );
630 /** @phan-suppress-next-line PhanTypeMismatchPropertyByRef */
631 LogEventsList
::showLogExtract( $this->mOut
, 'protect', $this->mTitle
);
632 # Let extensions add other relevant log extracts
633 $this->hookRunner
->onProtectionForm__showLogExtract( $this->mArticle
, $this->mOut
);
637 /** @deprecated class alias since 1.40 */
638 class_alias( ProtectionForm
::class, 'ProtectionForm' );