3 * User interface for page editing.
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
23 use MediaWiki\Logger\LoggerFactory
;
26 * The edit page/HTML interface (split from Article)
27 * The actual database and text munging is still in Article,
28 * but it should get easier to call those from alternate
31 * EditPage cares about two distinct titles:
32 * $this->mContextTitle is the page that forms submit to, links point to,
33 * redirects go to, etc. $this->mTitle (as well as $mArticle) is the
34 * page in the database that is actually being edited. These are
35 * usually the same, but they are now allowed to be different.
37 * Surgeon General's Warning: prolonged exposure to this class is known to cause
38 * headaches, which may be fatal.
42 * Status: Article successfully updated
44 const AS_SUCCESS_UPDATE
= 200;
47 * Status: Article successfully created
49 const AS_SUCCESS_NEW_ARTICLE
= 201;
52 * Status: Article update aborted by a hook function
54 const AS_HOOK_ERROR
= 210;
57 * Status: A hook function returned an error
59 const AS_HOOK_ERROR_EXPECTED
= 212;
62 * Status: User is blocked from editing this page
64 const AS_BLOCKED_PAGE_FOR_USER
= 215;
67 * Status: Content too big (> $wgMaxArticleSize)
69 const AS_CONTENT_TOO_BIG
= 216;
72 * Status: this anonymous user is not allowed to edit this page
74 const AS_READ_ONLY_PAGE_ANON
= 218;
77 * Status: this logged in user is not allowed to edit this page
79 const AS_READ_ONLY_PAGE_LOGGED
= 219;
82 * Status: wiki is in readonly mode (wfReadOnly() == true)
84 const AS_READ_ONLY_PAGE
= 220;
87 * Status: rate limiter for action 'edit' was tripped
89 const AS_RATE_LIMITED
= 221;
92 * Status: article was deleted while editing and param wpRecreate == false or form
95 const AS_ARTICLE_WAS_DELETED
= 222;
98 * Status: user tried to create this page, but is not allowed to do that
99 * ( Title->userCan('create') == false )
101 const AS_NO_CREATE_PERMISSION
= 223;
104 * Status: user tried to create a blank page and wpIgnoreBlankArticle == false
106 const AS_BLANK_ARTICLE
= 224;
109 * Status: (non-resolvable) edit conflict
111 const AS_CONFLICT_DETECTED
= 225;
114 * Status: no edit summary given and the user has forceeditsummary set and the user is not
115 * editing in his own userspace or talkspace and wpIgnoreBlankSummary == false
117 const AS_SUMMARY_NEEDED
= 226;
120 * Status: user tried to create a new section without content
122 const AS_TEXTBOX_EMPTY
= 228;
125 * Status: article is too big (> $wgMaxArticleSize), after merging in the new section
127 const AS_MAX_ARTICLE_SIZE_EXCEEDED
= 229;
130 * Status: WikiPage::doEdit() was unsuccessful
135 * Status: summary contained spam according to one of the regexes in $wgSummarySpamRegex
137 const AS_SPAM_ERROR
= 232;
140 * Status: anonymous user is not allowed to upload (User::isAllowed('upload') == false)
142 const AS_IMAGE_REDIRECT_ANON
= 233;
145 * Status: logged in user is not allowed to upload (User::isAllowed('upload') == false)
147 const AS_IMAGE_REDIRECT_LOGGED
= 234;
150 * Status: user tried to modify the content model, but is not allowed to do that
151 * ( User::isAllowed('editcontentmodel') == false )
153 const AS_NO_CHANGE_CONTENT_MODEL
= 235;
156 * Status: user tried to create self-redirect (redirect to the same article) and
157 * wpIgnoreSelfRedirect == false
159 const AS_SELF_REDIRECT
= 236;
162 * Status: an error relating to change tagging. Look at the message key for
165 const AS_CHANGE_TAG_ERROR
= 237;
168 * Status: can't parse content
170 const AS_PARSE_ERROR
= 240;
173 * Status: when changing the content model is disallowed due to
174 * $wgContentHandlerUseDB being false
176 const AS_CANNOT_USE_CUSTOM_MODEL
= 241;
179 * HTML id and name for the beginning of the edit form.
181 const EDITFORM_ID
= 'editform';
184 * Prefix of key for cookie used to pass post-edit state.
185 * The revision id edited is added after this
187 const POST_EDIT_COOKIE_KEY_PREFIX
= 'PostEditRevision';
190 * Duration of PostEdit cookie, in seconds.
191 * The cookie will be removed instantly if the JavaScript runs.
193 * Otherwise, though, we don't want the cookies to accumulate.
194 * RFC 2109 ( https://www.ietf.org/rfc/rfc2109.txt ) specifies a possible
195 * limit of only 20 cookies per domain. This still applies at least to some
196 * versions of IE without full updates:
197 * https://blogs.msdn.com/b/ieinternals/archive/2009/08/20/wininet-ie-cookie-internals-faq.aspx
199 * A value of 20 minutes should be enough to take into account slow loads and minor
200 * clock skew while still avoiding cookie accumulation when JavaScript is turned off.
202 const POST_EDIT_COOKIE_DURATION
= 1200;
212 /** @var null|Title */
213 private $mContextTitle = null;
216 public $action = 'submit';
219 public $isConflict = false;
222 public $isCssJsSubpage = false;
225 public $isCssSubpage = false;
228 public $isJsSubpage = false;
231 public $isWrongCaseCssJsPage = false;
233 /** @var bool New page or new section */
234 public $isNew = false;
237 public $deletedSinceEdit;
245 /** @var bool|stdClass */
249 public $mTokenOk = false;
252 public $mTokenOkExceptSuffix = false;
255 public $mTriedSave = false;
258 public $incompleteForm = false;
261 public $tooBig = false;
264 public $missingComment = false;
267 public $missingSummary = false;
270 public $allowBlankSummary = false;
273 protected $blankArticle = false;
276 protected $allowBlankArticle = false;
279 protected $selfRedirect = false;
282 protected $allowSelfRedirect = false;
285 public $autoSumm = '';
288 public $hookError = '';
290 /** @var ParserOutput */
291 public $mParserOutput;
293 /** @var bool Has a summary been preset using GET parameter &summary= ? */
294 public $hasPresetSummary = false;
297 public $mBaseRevision = false;
300 public $mShowSummaryField = true;
305 public $save = false;
308 public $preview = false;
311 public $diff = false;
314 public $minoredit = false;
317 public $watchthis = false;
320 public $recreate = false;
323 public $textbox1 = '';
326 public $textbox2 = '';
329 public $summary = '';
332 public $nosummary = false;
335 public $edittime = '';
338 private $editRevId = null;
341 public $section = '';
344 public $sectiontitle = '';
347 public $starttime = '';
353 public $parentRevId = 0;
356 public $editintro = '';
359 public $scrolltop = null;
364 /** @var null|string */
365 public $contentModel = null;
367 /** @var null|string */
368 public $contentFormat = null;
370 /** @var null|array */
371 private $changeTags = null;
373 # Placeholders for text injection by hooks (must be HTML)
374 # extensions should take care to _append_ to the present value
376 /** @var string Before even the preview */
377 public $editFormPageTop = '';
378 public $editFormTextTop = '';
379 public $editFormTextBeforeContent = '';
380 public $editFormTextAfterWarn = '';
381 public $editFormTextAfterTools = '';
382 public $editFormTextBottom = '';
383 public $editFormTextAfterContent = '';
384 public $previewTextAfterContent = '';
385 public $mPreloadContent = null;
387 /* $didSave should be set to true whenever an article was successfully altered. */
388 public $didSave = false;
389 public $undidRev = 0;
391 public $suppressIntro = false;
397 protected $contentLength = false;
400 * @var bool Set in ApiEditPage, based on ContentHandler::allowsDirectApiEditing
402 private $enableApiEditOverride = false;
405 * @var IContextSource
410 * @param Article $article
412 public function __construct( Article
$article ) {
413 $this->mArticle
= $article;
414 $this->page
= $article->getPage(); // model object
415 $this->mTitle
= $article->getTitle();
416 $this->context
= $article->getContext();
418 $this->contentModel
= $this->mTitle
->getContentModel();
420 $handler = ContentHandler
::getForModelID( $this->contentModel
);
421 $this->contentFormat
= $handler->getDefaultFormat();
427 public function getArticle() {
428 return $this->mArticle
;
433 * @return IContextSource
435 public function getContext() {
436 return $this->context
;
443 public function getTitle() {
444 return $this->mTitle
;
448 * Set the context Title object
450 * @param Title|null $title Title object or null
452 public function setContextTitle( $title ) {
453 $this->mContextTitle
= $title;
457 * Get the context title object.
458 * If not set, $wgTitle will be returned. This behavior might change in
459 * the future to return $this->mTitle instead.
463 public function getContextTitle() {
464 if ( is_null( $this->mContextTitle
) ) {
468 return $this->mContextTitle
;
473 * Returns if the given content model is editable.
475 * @param string $modelId The ID of the content model to test. Use CONTENT_MODEL_XXX constants.
477 * @throws MWException If $modelId has no known handler
479 public function isSupportedContentModel( $modelId ) {
480 return $this->enableApiEditOverride
=== true ||
481 ContentHandler
::getForModelID( $modelId )->supportsDirectEditing();
485 * Allow editing of content that supports API direct editing, but not general
486 * direct editing. Set to false by default.
488 * @param bool $enableOverride
490 public function setApiEditOverride( $enableOverride ) {
491 $this->enableApiEditOverride
= $enableOverride;
499 * This is the function that gets called for "action=edit". It
500 * sets up various member variables, then passes execution to
501 * another function, usually showEditForm()
503 * The edit form is self-submitting, so that when things like
504 * preview and edit conflicts occur, we get the same form back
505 * with the extra stuff added. Only when the final submission
506 * is made and all is well do we actually save and redirect to
507 * the newly-edited page.
510 // Allow extensions to modify/prevent this form or submission
511 if ( !Hooks
::run( 'AlternateEdit', [ $this ] ) ) {
515 wfDebug( __METHOD__
. ": enter\n" );
517 $request = $this->context
->getRequest();
518 $out = $this->context
->getOutput();
519 // If they used redlink=1 and the page exists, redirect to the main article
520 if ( $request->getBool( 'redlink' ) && $this->mTitle
->exists() ) {
521 $out->redirect( $this->mTitle
->getFullURL() );
525 $this->importFormData( $request );
526 $this->firsttime
= false;
528 if ( wfReadOnly() && $this->save
) {
531 $this->preview
= true;
535 $this->formtype
= 'save';
536 } elseif ( $this->preview
) {
537 $this->formtype
= 'preview';
538 } elseif ( $this->diff
) {
539 $this->formtype
= 'diff';
540 } else { # First time through
541 $this->firsttime
= true;
542 if ( $this->previewOnOpen() ) {
543 $this->formtype
= 'preview';
545 $this->formtype
= 'initial';
549 $permErrors = $this->getEditPermissionErrors( $this->save ?
'secure' : 'full' );
551 wfDebug( __METHOD__
. ": User can't edit\n" );
552 // Auto-block user's IP if the account was "hard" blocked
553 if ( !wfReadOnly() ) {
554 $user = $this->context
->getUser();
555 DeferredUpdates
::addCallableUpdate( function () use ( $user ) {
556 $user->spreadAnyEditBlock();
559 $this->displayPermissionsError( $permErrors );
564 $revision = $this->mArticle
->getRevisionFetched();
565 // Disallow editing revisions with content models different from the current one
566 if ( $revision && $revision->getContentModel() !== $this->contentModel
) {
567 $this->displayViewSourcePage(
568 $this->getContentObject(),
570 'contentmodelediterror',
571 $revision->getContentModel(),
578 $this->isConflict
= false;
579 // css / js subpages of user pages get a special treatment
580 $this->isCssJsSubpage
= $this->mTitle
->isCssJsSubpage();
581 $this->isCssSubpage
= $this->mTitle
->isCssSubpage();
582 $this->isJsSubpage
= $this->mTitle
->isJsSubpage();
583 // @todo FIXME: Silly assignment.
584 $this->isWrongCaseCssJsPage
= $this->isWrongCaseCssJsPage();
586 # Show applicable editing introductions
587 if ( $this->formtype
== 'initial' ||
$this->firsttime
) {
591 # Attempt submission here. This will check for edit conflicts,
592 # and redundantly check for locked database, blocked IPs, etc.
593 # that edit() already checked just in case someone tries to sneak
594 # in the back door with a hand-edited submission URL.
596 if ( 'save' == $this->formtype
) {
597 $resultDetails = null;
598 $status = $this->attemptSave( $resultDetails );
599 if ( !$this->handleStatus( $status, $resultDetails ) ) {
604 # First time through: get contents, set time for conflict
606 if ( 'initial' == $this->formtype ||
$this->firsttime
) {
607 if ( $this->initialiseForm() === false ) {
608 $this->noSuchSectionPage();
612 if ( !$this->mTitle
->getArticleID() ) {
613 Hooks
::run( 'EditFormPreloadText', [ &$this->textbox1
, &$this->mTitle
] );
615 Hooks
::run( 'EditFormInitialText', [ $this ] );
620 $this->showEditForm();
624 * @param string $rigor Same format as Title::getUserPermissionErrors()
627 protected function getEditPermissionErrors( $rigor = 'secure' ) {
628 $user = $this->context
->getUser();
629 $permErrors = $this->mTitle
->getUserPermissionsErrors( 'edit', $user, $rigor );
630 # Can this title be created?
631 if ( !$this->mTitle
->exists() ) {
632 $permErrors = array_merge(
635 $this->mTitle
->getUserPermissionsErrors( 'create', $user, $rigor ),
640 # Ignore some permissions errors when a user is just previewing/viewing diffs
642 foreach ( $permErrors as $error ) {
643 if ( ( $this->preview ||
$this->diff
)
644 && ( $error[0] == 'blockedtext' ||
$error[0] == 'autoblockedtext' )
649 $permErrors = wfArrayDiff2( $permErrors, $remove );
655 * Display a permissions error page, like OutputPage::showPermissionsErrorPage(),
656 * but with the following differences:
657 * - If redlink=1, the user will be redirected to the page
658 * - If there is content to display or the error occurs while either saving,
659 * previewing or showing the difference, it will be a
660 * "View source for ..." page displaying the source code after the error message.
663 * @param array $permErrors Array of permissions errors, as returned by
664 * Title::getUserPermissionsErrors().
665 * @throws PermissionsError
667 protected function displayPermissionsError( array $permErrors ) {
668 $out = $this->context
->getOutput();
669 if ( $this->context
->getRequest()->getBool( 'redlink' ) ) {
670 // The edit page was reached via a red link.
671 // Redirect to the article page and let them click the edit tab if
672 // they really want a permission error.
673 $out->redirect( $this->mTitle
->getFullURL() );
677 $content = $this->getContentObject();
679 # Use the normal message if there's nothing to display
680 if ( $this->firsttime
&& ( !$content ||
$content->isEmpty() ) ) {
681 $action = $this->mTitle
->exists() ?
'edit' :
682 ( $this->mTitle
->isTalkPage() ?
'createtalk' : 'createpage' );
683 throw new PermissionsError( $action, $permErrors );
686 $this->displayViewSourcePage(
688 $out->formatPermissionsErrorMessage( $permErrors, 'edit' )
693 * Display a read-only View Source page
694 * @param Content $content content object
695 * @param string $errorMessage additional wikitext error message to display
697 protected function displayViewSourcePage( Content
$content, $errorMessage = '' ) {
698 $out = $this->context
->getOutput();
699 Hooks
::run( 'EditPage::showReadOnlyForm:initial', [ $this, &$out ] );
701 $out->setRobotPolicy( 'noindex,nofollow' );
702 $out->setPageTitle( wfMessage(
704 $this->getContextTitle()->getPrefixedText()
706 $out->addBacklinkSubtitle( $this->getContextTitle() );
707 $out->addHTML( $this->editFormPageTop
);
708 $out->addHTML( $this->editFormTextTop
);
710 if ( $errorMessage !== '' ) {
711 $out->addWikiText( $errorMessage );
712 $out->addHTML( "<hr />\n" );
715 # If the user made changes, preserve them when showing the markup
716 # (This happens when a user is blocked during edit, for instance)
717 if ( !$this->firsttime
) {
718 $text = $this->textbox1
;
719 $out->addWikiMsg( 'viewyourtext' );
722 $text = $this->toEditText( $content );
723 } catch ( MWException
$e ) {
724 # Serialize using the default format if the content model is not supported
725 # (e.g. for an old revision with a different model)
726 $text = $content->serialize();
728 $out->addWikiMsg( 'viewsourcetext' );
731 $out->addHTML( $this->editFormTextBeforeContent
);
732 $this->showTextbox( $text, 'wpTextbox1', [ 'readonly' ] );
733 $out->addHTML( $this->editFormTextAfterContent
);
735 $out->addHTML( Html
::rawElement( 'div', [ 'class' => 'templatesUsed' ],
736 Linker
::formatTemplates( $this->getTemplates() ) ) );
738 $out->addModules( 'mediawiki.action.edit.collapsibleFooter' );
740 $out->addHTML( $this->editFormTextBottom
);
741 if ( $this->mTitle
->exists() ) {
742 $out->returnToMain( null, $this->mTitle
);
747 * Should we show a preview when the edit form is first shown?
751 protected function previewOnOpen() {
752 global $wgPreviewOnOpenNamespaces;
753 $request = $this->context
->getRequest();
754 if ( $request->getVal( 'preview' ) == 'yes' ) {
755 // Explicit override from request
757 } elseif ( $request->getVal( 'preview' ) == 'no' ) {
758 // Explicit override from request
760 } elseif ( $this->section
== 'new' ) {
761 // Nothing *to* preview for new sections
763 } elseif ( ( $request->getVal( 'preload' ) !== null ||
$this->mTitle
->exists() )
764 && $this->context
->getUser()->getOption( 'previewonfirst' )
766 // Standard preference behavior
768 } elseif ( !$this->mTitle
->exists()
769 && isset( $wgPreviewOnOpenNamespaces[$this->mTitle
->getNamespace()] )
770 && $wgPreviewOnOpenNamespaces[$this->mTitle
->getNamespace()]
772 // Categories are special
780 * Checks whether the user entered a skin name in uppercase,
781 * e.g. "User:Example/Monobook.css" instead of "monobook.css"
785 protected function isWrongCaseCssJsPage() {
786 if ( $this->mTitle
->isCssJsSubpage() ) {
787 $name = $this->mTitle
->getSkinFromCssJsSubpage();
788 $skins = array_merge(
789 array_keys( Skin
::getSkinNames() ),
792 return !in_array( $name, $skins )
793 && in_array( strtolower( $name ), $skins );
800 * Returns whether section editing is supported for the current page.
801 * Subclasses may override this to replace the default behavior, which is
802 * to check ContentHandler::supportsSections.
804 * @return bool True if this edit page supports sections, false otherwise.
806 protected function isSectionEditSupported() {
807 $contentHandler = ContentHandler
::getForTitle( $this->mTitle
);
808 return $contentHandler->supportsSections();
812 * This function collects the form data and uses it to populate various member variables.
813 * @param WebRequest $request
814 * @throws ErrorPageError
816 function importFormData( &$request ) {
819 # Section edit can come from either the form or a link
820 $this->section
= $request->getVal( 'wpSection', $request->getVal( 'section' ) );
822 if ( $this->section
!== null && $this->section
!== '' && !$this->isSectionEditSupported() ) {
823 throw new ErrorPageError( 'sectioneditnotsupported-title', 'sectioneditnotsupported-text' );
826 $this->isNew
= !$this->mTitle
->exists() ||
$this->section
== 'new';
828 if ( $request->wasPosted() ) {
829 # These fields need to be checked for encoding.
830 # Also remove trailing whitespace, but don't remove _initial_
831 # whitespace from the text boxes. This may be significant formatting.
832 $this->textbox1
= $this->safeUnicodeInput( $request, 'wpTextbox1' );
833 if ( !$request->getCheck( 'wpTextbox2' ) ) {
834 // Skip this if wpTextbox2 has input, it indicates that we came
835 // from a conflict page with raw page text, not a custom form
836 // modified by subclasses
837 $textbox1 = $this->importContentFormData( $request );
838 if ( $textbox1 !== null ) {
839 $this->textbox1
= $textbox1;
843 # Truncate for whole multibyte characters
844 $this->summary
= $wgContLang->truncate( $request->getText( 'wpSummary' ), 255 );
846 # If the summary consists of a heading, e.g. '==Foobar==', extract the title from the
847 # header syntax, e.g. 'Foobar'. This is mainly an issue when we are using wpSummary for
849 $this->summary
= preg_replace( '/^\s*=+\s*(.*?)\s*=+\s*$/', '$1', $this->summary
);
851 # Treat sectiontitle the same way as summary.
852 # Note that wpSectionTitle is not yet a part of the actual edit form, as wpSummary is
853 # currently doing double duty as both edit summary and section title. Right now this
854 # is just to allow API edits to work around this limitation, but this should be
855 # incorporated into the actual edit form when EditPage is rewritten (Bugs 18654, 26312).
856 $this->sectiontitle
= $wgContLang->truncate( $request->getText( 'wpSectionTitle' ), 255 );
857 $this->sectiontitle
= preg_replace( '/^\s*=+\s*(.*?)\s*=+\s*$/', '$1', $this->sectiontitle
);
859 $this->edittime
= $request->getVal( 'wpEdittime' );
860 $this->editRevId
= $request->getIntOrNull( 'editRevId' );
861 $this->starttime
= $request->getVal( 'wpStarttime' );
863 $undidRev = $request->getInt( 'wpUndidRevision' );
865 $this->undidRev
= $undidRev;
868 $this->scrolltop
= $request->getIntOrNull( 'wpScrolltop' );
870 if ( $this->textbox1
=== '' && $request->getVal( 'wpTextbox1' ) === null ) {
871 // wpTextbox1 field is missing, possibly due to being "too big"
872 // according to some filter rules such as Suhosin's setting for
873 // suhosin.request.max_value_length (d'oh)
874 $this->incompleteForm
= true;
876 // If we receive the last parameter of the request, we can fairly
877 // claim the POST request has not been truncated.
879 // TODO: softened the check for cutover. Once we determine
880 // that it is safe, we should complete the transition by
881 // removing the "edittime" clause.
882 $this->incompleteForm
= ( !$request->getVal( 'wpUltimateParam' )
883 && is_null( $this->edittime
) );
885 if ( $this->incompleteForm
) {
886 # If the form is incomplete, force to preview.
887 wfDebug( __METHOD__
. ": Form data appears to be incomplete\n" );
888 wfDebug( "POST DATA: " . var_export( $_POST, true ) . "\n" );
889 $this->preview
= true;
891 $this->preview
= $request->getCheck( 'wpPreview' );
892 $this->diff
= $request->getCheck( 'wpDiff' );
894 // Remember whether a save was requested, so we can indicate
895 // if we forced preview due to session failure.
896 $this->mTriedSave
= !$this->preview
;
898 if ( $this->tokenOk( $request ) ) {
899 # Some browsers will not report any submit button
900 # if the user hits enter in the comment box.
901 # The unmarked state will be assumed to be a save,
902 # if the form seems otherwise complete.
903 wfDebug( __METHOD__
. ": Passed token check.\n" );
904 } elseif ( $this->diff
) {
905 # Failed token check, but only requested "Show Changes".
906 wfDebug( __METHOD__
. ": Failed token check; Show Changes requested.\n" );
908 # Page might be a hack attempt posted from
909 # an external site. Preview instead of saving.
910 wfDebug( __METHOD__
. ": Failed token check; forcing preview\n" );
911 $this->preview
= true;
914 $this->save
= !$this->preview
&& !$this->diff
;
915 if ( !preg_match( '/^\d{14}$/', $this->edittime
) ) {
916 $this->edittime
= null;
919 if ( !preg_match( '/^\d{14}$/', $this->starttime
) ) {
920 $this->starttime
= null;
923 $this->recreate
= $request->getCheck( 'wpRecreate' );
925 $this->minoredit
= $request->getCheck( 'wpMinoredit' );
926 $this->watchthis
= $request->getCheck( 'wpWatchthis' );
928 # Don't force edit summaries when a user is editing their own user or talk page
929 $user = $this->context
->getUser();
930 if ( ( $this->mTitle
->mNamespace
== NS_USER ||
$this->mTitle
->mNamespace
== NS_USER_TALK
)
931 && $this->mTitle
->getText() == $user->getName()
933 $this->allowBlankSummary
= true;
935 $this->allowBlankSummary
= $request->getBool( 'wpIgnoreBlankSummary' )
936 ||
!$user->getOption( 'forceeditsummary' );
939 $this->autoSumm
= $request->getText( 'wpAutoSummary' );
941 $this->allowBlankArticle
= $request->getBool( 'wpIgnoreBlankArticle' );
942 $this->allowSelfRedirect
= $request->getBool( 'wpIgnoreSelfRedirect' );
944 $changeTags = $request->getVal( 'wpChangeTags' );
945 if ( is_null( $changeTags ) ||
$changeTags === '' ) {
946 $this->changeTags
= [];
948 $this->changeTags
= array_filter( array_map( 'trim', explode( ',',
952 # Not a posted form? Start with nothing.
953 wfDebug( __METHOD__
. ": Not a posted form.\n" );
954 $this->textbox1
= '';
956 $this->sectiontitle
= '';
957 $this->edittime
= '';
958 $this->editRevId
= null;
959 $this->starttime
= wfTimestampNow();
961 $this->preview
= false;
964 $this->minoredit
= false;
965 // Watch may be overridden by request parameters
966 $this->watchthis
= $request->getBool( 'watchthis', false );
967 $this->recreate
= false;
969 // When creating a new section, we can preload a section title by passing it as the
970 // preloadtitle parameter in the URL (Bug 13100)
971 if ( $this->section
== 'new' && $request->getVal( 'preloadtitle' ) ) {
972 $this->sectiontitle
= $request->getVal( 'preloadtitle' );
973 // Once wpSummary isn't being use for setting section titles, we should delete this.
974 $this->summary
= $request->getVal( 'preloadtitle' );
975 } elseif ( $this->section
!= 'new' && $request->getVal( 'summary' ) ) {
976 $this->summary
= $request->getText( 'summary' );
977 if ( $this->summary
!== '' ) {
978 $this->hasPresetSummary
= true;
982 if ( $request->getVal( 'minor' ) ) {
983 $this->minoredit
= true;
987 $this->oldid
= $request->getInt( 'oldid' );
988 $this->parentRevId
= $request->getInt( 'parentRevId' );
990 $this->bot
= $request->getBool( 'bot', true );
991 $this->nosummary
= $request->getBool( 'nosummary' );
993 // May be overridden by revision.
994 $this->contentModel
= $request->getText( 'model', $this->contentModel
);
995 // May be overridden by revision.
996 $this->contentFormat
= $request->getText( 'format', $this->contentFormat
);
998 if ( !ContentHandler
::getForModelID( $this->contentModel
)
999 ->isSupportedFormat( $this->contentFormat
)
1001 throw new ErrorPageError(
1002 'editpage-notsupportedcontentformat-title',
1003 'editpage-notsupportedcontentformat-text',
1004 [ $this->contentFormat
, ContentHandler
::getLocalizedName( $this->contentModel
) ]
1009 * @todo Check if the desired model is allowed in this namespace, and if
1010 * a transition from the page's current model to the new model is
1014 $this->editintro
= $request->getText( 'editintro',
1015 // Custom edit intro for new sections
1016 $this->section
=== 'new' ?
'MediaWiki:addsection-editintro' : '' );
1018 // Allow extensions to modify form data
1019 Hooks
::run( 'EditPage::importFormData', [ $this, $request ] );
1024 * Subpage overridable method for extracting the page content data from the
1025 * posted form to be placed in $this->textbox1, if using customized input
1026 * this method should be overridden and return the page text that will be used
1027 * for saving, preview parsing and so on...
1029 * @param WebRequest $request
1030 * @return string|null
1032 protected function importContentFormData( &$request ) {
1033 return; // Don't do anything, EditPage already extracted wpTextbox1
1037 * Initialise form fields in the object
1038 * Called on the first invocation, e.g. when a user clicks an edit link
1039 * @return bool If the requested section is valid
1041 function initialiseForm() {
1042 $this->edittime
= $this->page
->getTimestamp();
1043 $this->editRevId
= $this->page
->getLatest();
1045 $content = $this->getContentObject( false ); # TODO: track content object?!
1046 if ( $content === false ) {
1049 $this->textbox1
= $this->toEditText( $content );
1050 $user = $this->context
->getUser();
1052 // activate checkboxes if user wants them to be always active
1053 # Sort out the "watch" checkbox
1054 if ( $user->getOption( 'watchdefault' ) ) {
1056 $this->watchthis
= true;
1057 } elseif ( $user->getOption( 'watchcreations' ) && !$this->mTitle
->exists() ) {
1059 $this->watchthis
= true;
1060 } elseif ( $user->isWatched( $this->mTitle
) ) {
1062 $this->watchthis
= true;
1064 if ( $user->getOption( 'minordefault' ) && !$this->isNew
) {
1065 $this->minoredit
= true;
1067 if ( $this->textbox1
=== false ) {
1074 * @param Content|null $def_content The default value to return
1076 * @return Content|null Content on success, $def_content for invalid sections
1080 protected function getContentObject( $def_content = null ) {
1084 $request = $this->context
->getRequest();
1085 $user = $this->context
->getUser();
1087 // For message page not locally set, use the i18n message.
1088 // For other non-existent articles, use preload text if any.
1089 if ( !$this->mTitle
->exists() ||
$this->section
== 'new' ) {
1090 if ( $this->mTitle
->getNamespace() == NS_MEDIAWIKI
&& $this->section
!= 'new' ) {
1091 # If this is a system message, get the default text.
1092 $msg = $this->mTitle
->getDefaultMessageText();
1094 $content = $this->toEditContent( $msg );
1096 if ( $content === false ) {
1097 # If requested, preload some text.
1098 $preload = $request->getVal( 'preload',
1099 // Custom preload text for new sections
1100 $this->section
=== 'new' ?
'MediaWiki:addsection-preload' : '' );
1101 $params = $request->getArray( 'preloadparams', [] );
1103 $content = $this->getPreloadedContent( $preload, $params );
1105 // For existing pages, get text based on "undo" or section parameters.
1107 if ( $this->section
!= '' ) {
1108 // Get section edit text (returns $def_text for invalid sections)
1109 $orig = $this->getOriginalContent( $user );
1110 $content = $orig ?
$orig->getSection( $this->section
) : null;
1113 $content = $def_content;
1116 $undoafter = $request->getInt( 'undoafter' );
1117 $undo = $request->getInt( 'undo' );
1119 if ( $undo > 0 && $undoafter > 0 ) {
1120 $undorev = Revision
::newFromId( $undo );
1121 $oldrev = Revision
::newFromId( $undoafter );
1123 # Sanity check, make sure it's the right page,
1124 # the revisions exist and they were not deleted.
1125 # Otherwise, $content will be left as-is.
1126 if ( !is_null( $undorev ) && !is_null( $oldrev ) &&
1127 !$undorev->isDeleted( Revision
::DELETED_TEXT
) &&
1128 !$oldrev->isDeleted( Revision
::DELETED_TEXT
)
1130 $content = $this->page
->getUndoContent( $undorev, $oldrev );
1132 if ( $content === false ) {
1133 # Warn the user that something went wrong
1134 $undoMsg = 'failure';
1136 $oldContent = $this->page
->getContent( Revision
::RAW
);
1137 $popts = ParserOptions
::newFromUserAndLang( $user, $wgContLang );
1138 $newContent = $content->preSaveTransform( $this->mTitle
, $user, $popts );
1140 if ( $newContent->equals( $oldContent ) ) {
1141 # Tell the user that the undo results in no change,
1142 # i.e. the revisions were already undone.
1143 $undoMsg = 'nochange';
1146 # Inform the user of our success and set an automatic edit summary
1147 $undoMsg = 'success';
1149 # If we just undid one rev, use an autosummary
1150 $firstrev = $oldrev->getNext();
1151 if ( $firstrev && $firstrev->getId() == $undo ) {
1152 $userText = $undorev->getUserText();
1153 if ( $userText === '' ) {
1154 $undoSummary = wfMessage(
1155 'undo-summary-username-hidden',
1157 )->inContentLanguage()->text();
1159 $undoSummary = wfMessage(
1163 )->inContentLanguage()->text();
1165 if ( $this->summary
=== '' ) {
1166 $this->summary
= $undoSummary;
1168 $this->summary
= $undoSummary . wfMessage( 'colon-separator' )
1169 ->inContentLanguage()->text() . $this->summary
;
1171 $this->undidRev
= $undo;
1173 $this->formtype
= 'diff';
1177 // Failed basic sanity checks.
1178 // Older revisions may have been removed since the link
1179 // was created, or we may simply have got bogus input.
1183 // Messages: undo-success, undo-failure, undo-norev, undo-nochange
1184 $class = ( $undoMsg == 'success' ?
'' : 'error ' ) . "mw-undo-{$undoMsg}";
1185 $this->editFormPageTop
.= $this->context
->getOutput()->parse(
1186 "<div class=\"{$class}\">" .
1187 wfMessage( 'undo-' . $undoMsg )->plain() . '</div>', true, /* interface */true );
1190 if ( $content === false ) {
1191 $content = $this->getOriginalContent( $user );
1200 * Get the content of the wanted revision, without section extraction.
1202 * The result of this function can be used to compare user's input with
1203 * section replaced in its context (using WikiPage::replaceSectionAtRev())
1204 * to the original text of the edit.
1206 * This differs from Article::getContent() that when a missing revision is
1207 * encountered the result will be null and not the
1208 * 'missing-revision' message.
1211 * @param User $user The user to get the revision for
1212 * @return Content|null
1214 private function getOriginalContent( User
$user ) {
1215 if ( $this->section
== 'new' ) {
1216 return $this->getCurrentContent();
1218 $revision = $this->mArticle
->getRevisionFetched();
1219 if ( $revision === null ) {
1220 if ( !$this->contentModel
) {
1221 $this->contentModel
= $this->getTitle()->getContentModel();
1223 $handler = ContentHandler
::getForModelID( $this->contentModel
);
1225 return $handler->makeEmptyContent();
1227 $content = $revision->getContent( Revision
::FOR_THIS_USER
, $user );
1232 * Get the edit's parent revision ID
1234 * The "parent" revision is the ancestor that should be recorded in this
1235 * page's revision history. It is either the revision ID of the in-memory
1236 * article content, or in the case of a 3-way merge in order to rebase
1237 * across a recoverable edit conflict, the ID of the newer revision to
1238 * which we have rebased this page.
1241 * @return int Revision ID
1243 public function getParentRevId() {
1244 if ( $this->parentRevId
) {
1245 return $this->parentRevId
;
1247 return $this->mArticle
->getRevIdFetched();
1252 * Get the current content of the page. This is basically similar to
1253 * WikiPage::getContent( Revision::RAW ) except that when the page doesn't exist an empty
1254 * content object is returned instead of null.
1259 protected function getCurrentContent() {
1260 $rev = $this->page
->getRevision();
1261 $content = $rev ?
$rev->getContent( Revision
::RAW
) : null;
1263 if ( $content === false ||
$content === null ) {
1264 if ( !$this->contentModel
) {
1265 $this->contentModel
= $this->getTitle()->getContentModel();
1267 $handler = ContentHandler
::getForModelID( $this->contentModel
);
1269 return $handler->makeEmptyContent();
1271 // Content models should always be the same since we error
1272 // out if they are different before this point.
1273 $logger = LoggerFactory
::getInstance( 'editpage' );
1274 if ( $this->contentModel
!== $rev->getContentModel() ) {
1275 $logger->warning( "Overriding content model from current edit {prev} to {new}", [
1276 'prev' => $this->contentModel
,
1277 'new' => $rev->getContentModel(),
1278 'title' => $this->getTitle()->getPrefixedDBkey(),
1279 'method' => __METHOD__
1281 $this->contentModel
= $rev->getContentModel();
1284 // Given that the content models should match, the current selected
1285 // format should be supported.
1286 if ( !$content->isSupportedFormat( $this->contentFormat
) ) {
1287 $logger->warning( "Current revision content format unsupported. Overriding {prev} to {new}", [
1289 'prev' => $this->contentFormat
,
1290 'new' => $rev->getContentFormat(),
1291 'title' => $this->getTitle()->getPrefixedDBkey(),
1292 'method' => __METHOD__
1294 $this->contentFormat
= $rev->getContentFormat();
1302 * Use this method before edit() to preload some content into the edit box
1304 * @param Content $content
1308 public function setPreloadedContent( Content
$content ) {
1309 $this->mPreloadContent
= $content;
1313 * Get the contents to be preloaded into the box, either set by
1314 * an earlier setPreloadText() or by loading the given page.
1316 * @param string $preload Representing the title to preload from.
1317 * @param array $params Parameters to use (interface-message style) in the preloaded text
1323 protected function getPreloadedContent( $preload, $params = [] ) {
1326 if ( !empty( $this->mPreloadContent
) ) {
1327 return $this->mPreloadContent
;
1330 $handler = ContentHandler
::getForModelID( $this->contentModel
);
1332 if ( $preload === '' ) {
1333 return $handler->makeEmptyContent();
1336 $title = Title
::newFromText( $preload );
1337 # Check for existence to avoid getting MediaWiki:Noarticletext
1338 if ( $title === null ||
!$title->exists() ||
!$title->userCan( 'read', $wgUser ) ) {
1339 // TODO: somehow show a warning to the user!
1340 return $handler->makeEmptyContent();
1343 $page = WikiPage
::factory( $title );
1344 if ( $page->isRedirect() ) {
1345 $title = $page->getRedirectTarget();
1347 if ( $title === null ||
!$title->exists() ||
!$title->userCan( 'read', $wgUser ) ) {
1348 // TODO: somehow show a warning to the user!
1349 return $handler->makeEmptyContent();
1351 $page = WikiPage
::factory( $title );
1354 $parserOptions = ParserOptions
::newFromUser( $wgUser );
1355 $content = $page->getContent( Revision
::RAW
);
1358 // TODO: somehow show a warning to the user!
1359 return $handler->makeEmptyContent();
1362 if ( $content->getModel() !== $handler->getModelID() ) {
1363 $converted = $content->convert( $handler->getModelID() );
1365 if ( !$converted ) {
1366 // TODO: somehow show a warning to the user!
1367 wfDebug( "Attempt to preload incompatible content: " .
1368 "can't convert " . $content->getModel() .
1369 " to " . $handler->getModelID() );
1371 return $handler->makeEmptyContent();
1374 $content = $converted;
1377 return $content->preloadTransform( $title, $parserOptions, $params );
1381 * Make sure the form isn't faking a user's credentials.
1383 * @param WebRequest $request
1387 function tokenOk( &$request ) {
1388 $token = $request->getVal( 'wpEditToken' );
1389 $user = $this->context
->getUser();
1390 $this->mTokenOk
= $user->matchEditToken( $token );
1391 $this->mTokenOkExceptSuffix
= $user->matchEditTokenNoSuffix( $token );
1392 return $this->mTokenOk
;
1396 * Sets post-edit cookie indicating the user just saved a particular revision.
1398 * This uses a temporary cookie for each revision ID so separate saves will never
1399 * interfere with each other.
1401 * The cookie is deleted in the mediawiki.action.view.postEdit JS module after
1402 * the redirect. It must be clearable by JavaScript code, so it must not be
1403 * marked HttpOnly. The JavaScript code converts the cookie to a wgPostEdit config
1406 * If the variable were set on the server, it would be cached, which is unwanted
1407 * since the post-edit state should only apply to the load right after the save.
1409 * @param int $statusValue The status value (to check for new article status)
1411 protected function setPostEditCookie( $statusValue ) {
1412 $revisionId = $this->page
->getLatest();
1413 $postEditKey = self
::POST_EDIT_COOKIE_KEY_PREFIX
. $revisionId;
1416 if ( $statusValue == self
::AS_SUCCESS_NEW_ARTICLE
) {
1418 } elseif ( $this->oldid
) {
1422 $response = $this->context
->getRequest()->response();
1423 $response->setCookie( $postEditKey, $val, time() + self
::POST_EDIT_COOKIE_DURATION
, [
1424 'httpOnly' => false,
1429 * Attempt submission
1430 * @param array|bool $resultDetails See docs for $result in internalAttemptSave
1431 * @throws UserBlockedError|ReadOnlyError|ThrottledError|PermissionsError
1432 * @return Status The resulting status object.
1434 public function attemptSave( &$resultDetails = false ) {
1435 # Allow bots to exempt some edits from bot flagging
1436 $bot = $this->context
->getUser()->isAllowed( 'bot' ) && $this->bot
;
1437 $status = $this->internalAttemptSave( $resultDetails, $bot );
1439 Hooks
::run( 'EditPage::attemptSave:after', [ $this, $status, $resultDetails ] );
1445 * Handle status, such as after attempt save
1447 * @param Status $status
1448 * @param array|bool $resultDetails
1450 * @throws ErrorPageError
1451 * @return bool False, if output is done, true if rest of the form should be displayed
1453 private function handleStatus( Status
$status, $resultDetails ) {
1455 * @todo FIXME: once the interface for internalAttemptSave() is made
1456 * nicer, this should use the message in $status
1458 if ( $status->value
== self
::AS_SUCCESS_UPDATE
1459 ||
$status->value
== self
::AS_SUCCESS_NEW_ARTICLE
1461 $this->didSave
= true;
1462 if ( !$resultDetails['nullEdit'] ) {
1463 $this->setPostEditCookie( $status->value
);
1467 $out = $this->context
->getOutput();
1469 // "wpExtraQueryRedirect" is a hidden input to modify
1470 // after save URL and is not used by actual edit form
1471 $request = $this->context
->getRequest();
1472 $extraQueryRedirect = $request->getVal( 'wpExtraQueryRedirect' );
1474 switch ( $status->value
) {
1475 case self
::AS_HOOK_ERROR_EXPECTED
:
1476 case self
::AS_CONTENT_TOO_BIG
:
1477 case self
::AS_ARTICLE_WAS_DELETED
:
1478 case self
::AS_CONFLICT_DETECTED
:
1479 case self
::AS_SUMMARY_NEEDED
:
1480 case self
::AS_TEXTBOX_EMPTY
:
1481 case self
::AS_MAX_ARTICLE_SIZE_EXCEEDED
:
1483 case self
::AS_BLANK_ARTICLE
:
1484 case self
::AS_SELF_REDIRECT
:
1487 case self
::AS_HOOK_ERROR
:
1490 case self
::AS_CANNOT_USE_CUSTOM_MODEL
:
1491 case self
::AS_PARSE_ERROR
:
1492 $out->addWikiText( '<div class="error">' . "\n" . $status->getWikiText() . '</div>' );
1495 case self
::AS_SUCCESS_NEW_ARTICLE
:
1496 $query = $resultDetails['redirect'] ?
'redirect=no' : '';
1497 if ( $extraQueryRedirect ) {
1498 if ( $query === '' ) {
1499 $query = $extraQueryRedirect;
1501 $query = $query . '&' . $extraQueryRedirect;
1504 $anchor = isset( $resultDetails['sectionanchor'] ) ?
$resultDetails['sectionanchor'] : '';
1505 $out->redirect( $this->mTitle
->getFullURL( $query ) . $anchor );
1508 case self
::AS_SUCCESS_UPDATE
:
1510 $sectionanchor = $resultDetails['sectionanchor'];
1512 // Give extensions a chance to modify URL query on update
1514 'ArticleUpdateBeforeRedirect',
1515 [ $this->mArticle
, &$sectionanchor, &$extraQuery ]
1518 if ( $resultDetails['redirect'] ) {
1519 if ( $extraQuery == '' ) {
1520 $extraQuery = 'redirect=no';
1522 $extraQuery = 'redirect=no&' . $extraQuery;
1525 if ( $extraQueryRedirect ) {
1526 if ( $extraQuery === '' ) {
1527 $extraQuery = $extraQueryRedirect;
1529 $extraQuery = $extraQuery . '&' . $extraQueryRedirect;
1533 $out->redirect( $this->mTitle
->getFullURL( $extraQuery ) . $sectionanchor );
1536 case self
::AS_SPAM_ERROR
:
1537 $this->spamPageWithContent( $resultDetails['spam'] );
1540 case self
::AS_BLOCKED_PAGE_FOR_USER
:
1541 throw new UserBlockedError( $this->context
->getUser()->getBlock() );
1543 case self
::AS_IMAGE_REDIRECT_ANON
:
1544 case self
::AS_IMAGE_REDIRECT_LOGGED
:
1545 throw new PermissionsError( 'upload' );
1547 case self
::AS_READ_ONLY_PAGE_ANON
:
1548 case self
::AS_READ_ONLY_PAGE_LOGGED
:
1549 throw new PermissionsError( 'edit' );
1551 case self
::AS_READ_ONLY_PAGE
:
1552 throw new ReadOnlyError
;
1554 case self
::AS_RATE_LIMITED
:
1555 throw new ThrottledError();
1557 case self
::AS_NO_CREATE_PERMISSION
:
1558 $permission = $this->mTitle
->isTalkPage() ?
'createtalk' : 'createpage';
1559 throw new PermissionsError( $permission );
1561 case self
::AS_NO_CHANGE_CONTENT_MODEL
:
1562 throw new PermissionsError( 'editcontentmodel' );
1565 // We don't recognize $status->value. The only way that can happen
1566 // is if an extension hook aborted from inside ArticleSave.
1567 // Render the status object into $this->hookError
1568 // FIXME this sucks, we should just use the Status object throughout
1569 $this->hookError
= '<div class="error">' ."\n" . $status->getWikiText() .
1576 * Run hooks that can filter edits just before they get saved.
1578 * @param Content $content The Content to filter.
1579 * @param Status $status For reporting the outcome to the caller
1580 * @param User $user The user performing the edit
1584 protected function runPostMergeFilters( Content
$content, Status
$status, User
$user ) {
1585 // Run old style post-section-merge edit filter
1586 if ( !ContentHandler
::runLegacyHooks( 'EditFilterMerged',
1587 [ $this, $content, &$this->hookError
, $this->summary
] )
1589 # Error messages etc. could be handled within the hook...
1590 $status->fatal( 'hookaborted' );
1591 $status->value
= self
::AS_HOOK_ERROR
;
1593 } elseif ( $this->hookError
!= '' ) {
1594 # ...or the hook could be expecting us to produce an error
1595 $status->fatal( 'hookaborted' );
1596 $status->value
= self
::AS_HOOK_ERROR_EXPECTED
;
1600 // Run new style post-section-merge edit filter
1601 if ( !Hooks
::run( 'EditFilterMergedContent',
1602 [ $this->context
, $content, $status, $this->summary
,
1603 $user, $this->minoredit
] )
1605 # Error messages etc. could be handled within the hook...
1606 if ( $status->isGood() ) {
1607 $status->fatal( 'hookaborted' );
1608 // Not setting $this->hookError here is a hack to allow the hook
1609 // to cause a return to the edit page without $this->hookError
1610 // being set. This is used by ConfirmEdit to display a captcha
1611 // without any error message cruft.
1613 $this->hookError
= $status->getWikiText();
1615 // Use the existing $status->value if the hook set it
1616 if ( !$status->value
) {
1617 $status->value
= self
::AS_HOOK_ERROR
;
1620 } elseif ( !$status->isOK() ) {
1621 # ...or the hook could be expecting us to produce an error
1622 // FIXME this sucks, we should just use the Status object throughout
1623 $this->hookError
= $status->getWikiText();
1624 $status->fatal( 'hookaborted' );
1625 $status->value
= self
::AS_HOOK_ERROR_EXPECTED
;
1633 * Return the summary to be used for a new section.
1635 * @param string $sectionanchor Set to the section anchor text
1638 private function newSectionSummary( &$sectionanchor = null ) {
1641 if ( $this->sectiontitle
!== '' ) {
1642 $sectionanchor = $wgParser->guessLegacySectionNameFromWikiText( $this->sectiontitle
);
1643 // If no edit summary was specified, create one automatically from the section
1644 // title and have it link to the new section. Otherwise, respect the summary as
1646 if ( $this->summary
=== '' ) {
1647 $cleanSectionTitle = $wgParser->stripSectionName( $this->sectiontitle
);
1648 return wfMessage( 'newsectionsummary' )
1649 ->rawParams( $cleanSectionTitle )->inContentLanguage()->text();
1651 } elseif ( $this->summary
!== '' ) {
1652 $sectionanchor = $wgParser->guessLegacySectionNameFromWikiText( $this->summary
);
1653 # This is a new section, so create a link to the new section
1654 # in the revision summary.
1655 $cleanSummary = $wgParser->stripSectionName( $this->summary
);
1656 return wfMessage( 'newsectionsummary' )
1657 ->rawParams( $cleanSummary )->inContentLanguage()->text();
1659 return $this->summary
;
1663 * Attempt submission (no UI)
1665 * @param array $result Array to add statuses to, currently with the
1667 * - spam (string): Spam string from content if any spam is detected by
1669 * - sectionanchor (string): Section anchor for a section save.
1670 * - nullEdit (boolean): Set if doEditContent is OK. True if null edit,
1672 * - redirect (bool): Set if doEditContent is OK. True if resulting
1673 * revision is a redirect.
1674 * @param bool $bot True if edit is being made under the bot right.
1676 * @return Status Status object, possibly with a message, but always with
1677 * one of the AS_* constants in $status->value,
1679 * @todo FIXME: This interface is TERRIBLE, but hard to get rid of due to
1680 * various error display idiosyncrasies. There are also lots of cases
1681 * where error metadata is set in the object and retrieved later instead
1682 * of being returned, e.g. AS_CONTENT_TOO_BIG and
1683 * AS_BLOCKED_PAGE_FOR_USER. All that stuff needs to be cleaned up some
1686 function internalAttemptSave( &$result, $bot = false ) {
1687 global $wgParser, $wgMaxArticleSize, $wgContentHandlerUseDB;
1689 $status = Status
::newGood();
1690 $user = $this->context
->getUser();
1691 $request = $this->context
->getRequest();
1693 if ( !Hooks
::run( 'EditPage::attemptSave', [ $this ] ) ) {
1694 wfDebug( "Hook 'EditPage::attemptSave' aborted article saving\n" );
1695 $status->fatal( 'hookaborted' );
1696 $status->value
= self
::AS_HOOK_ERROR
;
1700 $spam = $request->getText( 'wpAntispam' );
1701 if ( $spam !== '' ) {
1706 $this->mTitle
->getPrefixedText() .
1707 '" submitted bogus field "' .
1711 $status->fatal( 'spamprotectionmatch', false );
1712 $status->value
= self
::AS_SPAM_ERROR
;
1717 # Construct Content object
1718 $textbox_content = $this->toEditContent( $this->textbox1
);
1719 } catch ( MWContentSerializationException
$ex ) {
1721 'content-failed-to-parse',
1722 $this->contentModel
,
1723 $this->contentFormat
,
1726 $status->value
= self
::AS_PARSE_ERROR
;
1730 # Check image redirect
1731 if ( $this->mTitle
->getNamespace() == NS_FILE
&&
1732 $textbox_content->isRedirect() &&
1733 !$user->isAllowed( 'upload' )
1735 $code = $user->isAnon() ? self
::AS_IMAGE_REDIRECT_ANON
: self
::AS_IMAGE_REDIRECT_LOGGED
;
1736 $status->setResult( false, $code );
1742 $match = self
::matchSummarySpamRegex( $this->summary
);
1743 if ( $match === false && $this->section
== 'new' ) {
1744 # $wgSpamRegex is enforced on this new heading/summary because, unlike
1745 # regular summaries, it is added to the actual wikitext.
1746 if ( $this->sectiontitle
!== '' ) {
1747 # This branch is taken when the API is used with the 'sectiontitle' parameter.
1748 $match = self
::matchSpamRegex( $this->sectiontitle
);
1750 # This branch is taken when the "Add Topic" user interface is used, or the API
1751 # is used with the 'summary' parameter.
1752 $match = self
::matchSpamRegex( $this->summary
);
1755 if ( $match === false ) {
1756 $match = self
::matchSpamRegex( $this->textbox1
);
1758 if ( $match !== false ) {
1759 $result['spam'] = $match;
1760 $ip = $request->getIP();
1761 $pdbk = $this->mTitle
->getPrefixedDBkey();
1762 $match = str_replace( "\n", '', $match );
1763 wfDebugLog( 'SpamRegex', "$ip spam regex hit [[$pdbk]]: \"$match\"" );
1764 $status->fatal( 'spamprotectionmatch', $match );
1765 $status->value
= self
::AS_SPAM_ERROR
;
1770 [ $this, $this->textbox1
, $this->section
, &$this->hookError
, $this->summary
] )
1772 # Error messages etc. could be handled within the hook...
1773 $status->fatal( 'hookaborted' );
1774 $status->value
= self
::AS_HOOK_ERROR
;
1776 } elseif ( $this->hookError
!= '' ) {
1777 # ...or the hook could be expecting us to produce an error
1778 $status->fatal( 'hookaborted' );
1779 $status->value
= self
::AS_HOOK_ERROR_EXPECTED
;
1783 if ( $user->isBlockedFrom( $this->mTitle
, false ) ) {
1784 // Auto-block user's IP if the account was "hard" blocked
1785 if ( !wfReadOnly() ) {
1786 $user->spreadAnyEditBlock();
1788 # Check block state against master, thus 'false'.
1789 $status->setResult( false, self
::AS_BLOCKED_PAGE_FOR_USER
);
1793 $this->contentLength
= strlen( $this->textbox1
);
1794 if ( $this->contentLength
> $wgMaxArticleSize * 1024 ) {
1795 // Error will be displayed by showEditForm()
1796 $this->tooBig
= true;
1797 $status->setResult( false, self
::AS_CONTENT_TOO_BIG
);
1801 if ( !$user->isAllowed( 'edit' ) ) {
1802 if ( $user->isAnon() ) {
1803 $status->setResult( false, self
::AS_READ_ONLY_PAGE_ANON
);
1806 $status->fatal( 'readonlytext' );
1807 $status->value
= self
::AS_READ_ONLY_PAGE_LOGGED
;
1812 $changingContentModel = false;
1813 if ( $this->contentModel
!== $this->mTitle
->getContentModel() ) {
1814 if ( !$wgContentHandlerUseDB ) {
1815 $status->fatal( 'editpage-cannot-use-custom-model' );
1816 $status->value
= self
::AS_CANNOT_USE_CUSTOM_MODEL
;
1818 } elseif ( !$user->isAllowed( 'editcontentmodel' ) ) {
1819 $status->setResult( false, self
::AS_NO_CHANGE_CONTENT_MODEL
);
1823 $changingContentModel = true;
1824 $oldContentModel = $this->mTitle
->getContentModel();
1827 if ( $this->changeTags
) {
1828 $changeTagsStatus = ChangeTags
::canAddTagsAccompanyingChange(
1829 $this->changeTags
, $user );
1830 if ( !$changeTagsStatus->isOK() ) {
1831 $changeTagsStatus->value
= self
::AS_CHANGE_TAG_ERROR
;
1832 return $changeTagsStatus;
1836 if ( wfReadOnly() ) {
1837 $status->fatal( 'readonlytext' );
1838 $status->value
= self
::AS_READ_ONLY_PAGE
;
1841 if ( $user->pingLimiter() ||
$user->pingLimiter( 'linkpurge', 0 ) ) {
1842 $status->fatal( 'actionthrottledtext' );
1843 $status->value
= self
::AS_RATE_LIMITED
;
1847 # If the article has been deleted while editing, don't save it without
1849 if ( $this->wasDeletedSinceLastEdit() && !$this->recreate
) {
1850 $status->setResult( false, self
::AS_ARTICLE_WAS_DELETED
);
1854 # Load the page data from the master. If anything changes in the meantime,
1855 # we detect it by using page_latest like a token in a 1 try compare-and-swap.
1856 $this->page
->loadPageData( 'fromdbmaster' );
1857 $new = !$this->page
->exists();
1860 // Late check for create permission, just in case *PARANOIA*
1861 if ( !$this->mTitle
->userCan( 'create', $user ) ) {
1862 $status->fatal( 'nocreatetext' );
1863 $status->value
= self
::AS_NO_CREATE_PERMISSION
;
1864 wfDebug( __METHOD__
. ": no create permission\n" );
1868 // Don't save a new page if it's blank or if it's a MediaWiki:
1869 // message with content equivalent to default (allow empty pages
1870 // in this case to disable messages, see bug 50124)
1871 $defaultMessageText = $this->mTitle
->getDefaultMessageText();
1872 if ( $this->mTitle
->getNamespace() === NS_MEDIAWIKI
&& $defaultMessageText !== false ) {
1873 $defaultText = $defaultMessageText;
1878 if ( !$this->allowBlankArticle
&& $this->textbox1
=== $defaultText ) {
1879 $this->blankArticle
= true;
1880 $status->fatal( 'blankarticle' );
1881 $status->setResult( false, self
::AS_BLANK_ARTICLE
);
1885 if ( !$this->runPostMergeFilters( $textbox_content, $status, $user ) ) {
1889 $content = $textbox_content;
1891 $result['sectionanchor'] = '';
1892 if ( $this->section
== 'new' ) {
1893 if ( $this->sectiontitle
!== '' ) {
1894 // Insert the section title above the content.
1895 $content = $content->addSectionHeader( $this->sectiontitle
);
1896 } elseif ( $this->summary
!== '' ) {
1897 // Insert the section title above the content.
1898 $content = $content->addSectionHeader( $this->summary
);
1900 $this->summary
= $this->newSectionSummary( $result['sectionanchor'] );
1903 $status->value
= self
::AS_SUCCESS_NEW_ARTICLE
;
1907 # Article exists. Check for edit conflict.
1909 $this->page
->clear(); # Force reload of dates, etc.
1910 $timestamp = $this->page
->getTimestamp();
1911 $latest = $this->page
->getLatest();
1913 wfDebug( "timestamp: {$timestamp}, edittime: {$this->edittime}\n" );
1915 // Check editRevId if set, which handles same-second timestamp collisions
1916 if ( $timestamp != $this->edittime
1917 ||
( $this->editRevId
!== null && $this->editRevId
!= $latest )
1919 $this->isConflict
= true;
1920 if ( $this->section
== 'new' ) {
1921 if ( $this->page
->getUserText() == $user->getName() &&
1922 $this->page
->getComment() == $this->newSectionSummary()
1924 // Probably a duplicate submission of a new comment.
1925 // This can happen when CDN resends a request after
1926 // a timeout but the first one actually went through.
1928 . ": duplicate new section submission; trigger edit conflict!\n" );
1930 // New comment; suppress conflict.
1931 $this->isConflict
= false;
1932 wfDebug( __METHOD__
. ": conflict suppressed; new section\n" );
1934 } elseif ( $this->section
== ''
1935 && Revision
::userWasLastToEdit(
1936 DB_MASTER
, $this->mTitle
->getArticleID(),
1937 $user->getId(), $this->edittime
1940 # Suppress edit conflict with self, except for section edits where merging is required.
1941 wfDebug( __METHOD__
. ": Suppressing edit conflict, same user.\n" );
1942 $this->isConflict
= false;
1946 // If sectiontitle is set, use it, otherwise use the summary as the section title.
1947 if ( $this->sectiontitle
!== '' ) {
1948 $sectionTitle = $this->sectiontitle
;
1950 $sectionTitle = $this->summary
;
1955 if ( $this->isConflict
) {
1957 . ": conflict! getting section '{$this->section}' for time '{$this->edittime}'"
1958 . " (id '{$this->editRevId}') (article time '{$timestamp}')\n" );
1959 // @TODO: replaceSectionAtRev() with base ID (not prior current) for ?oldid=X case
1960 // ...or disable section editing for non-current revisions (not exposed anyway).
1961 if ( $this->editRevId
!== null ) {
1962 $content = $this->page
->replaceSectionAtRev(
1969 $content = $this->page
->replaceSectionContent(
1977 wfDebug( __METHOD__
. ": getting section '{$this->section}'\n" );
1978 $content = $this->page
->replaceSectionContent(
1985 if ( is_null( $content ) ) {
1986 wfDebug( __METHOD__
. ": activating conflict; section replace failed.\n" );
1987 $this->isConflict
= true;
1988 $content = $textbox_content; // do not try to merge here!
1989 } elseif ( $this->isConflict
) {
1991 if ( $this->mergeChangesIntoContent( $content ) ) {
1992 // Successful merge! Maybe we should tell the user the good news?
1993 $this->isConflict
= false;
1994 wfDebug( __METHOD__
. ": Suppressing edit conflict, successful merge.\n" );
1996 $this->section
= '';
1997 $this->textbox1
= ContentHandler
::getContentText( $content );
1998 wfDebug( __METHOD__
. ": Keeping edit conflict, failed merge.\n" );
2002 if ( $this->isConflict
) {
2003 $status->setResult( false, self
::AS_CONFLICT_DETECTED
);
2007 if ( !$this->runPostMergeFilters( $content, $status, $user ) ) {
2011 if ( $this->section
== 'new' ) {
2012 // Handle the user preference to force summaries here
2013 if ( !$this->allowBlankSummary
&& trim( $this->summary
) == '' ) {
2014 $this->missingSummary
= true;
2015 $status->fatal( 'missingsummary' ); // or 'missingcommentheader' if $section == 'new'. Blegh
2016 $status->value
= self
::AS_SUMMARY_NEEDED
;
2020 // Do not allow the user to post an empty comment
2021 if ( $this->textbox1
== '' ) {
2022 $this->missingComment
= true;
2023 $status->fatal( 'missingcommenttext' );
2024 $status->value
= self
::AS_TEXTBOX_EMPTY
;
2027 } elseif ( !$this->allowBlankSummary
2028 && !$content->equals( $this->getOriginalContent( $user ) )
2029 && !$content->isRedirect()
2030 && md5( $this->summary
) == $this->autoSumm
2032 $this->missingSummary
= true;
2033 $status->fatal( 'missingsummary' );
2034 $status->value
= self
::AS_SUMMARY_NEEDED
;
2039 $sectionanchor = '';
2040 if ( $this->section
== 'new' ) {
2041 $this->summary
= $this->newSectionSummary( $sectionanchor );
2042 } elseif ( $this->section
!= '' ) {
2043 # Try to get a section anchor from the section source, redirect
2044 # to edited section if header found.
2045 # XXX: Might be better to integrate this into Article::replaceSectionAtRev
2046 # for duplicate heading checking and maybe parsing.
2047 $hasmatch = preg_match( "/^ *([=]{1,6})(.*?)(\\1) *\\n/i", $this->textbox1
, $matches );
2048 # We can't deal with anchors, includes, html etc in the header for now,
2049 # headline would need to be parsed to improve this.
2050 if ( $hasmatch && strlen( $matches[2] ) > 0 ) {
2051 $sectionanchor = $wgParser->guessLegacySectionNameFromWikiText( $matches[2] );
2054 $result['sectionanchor'] = $sectionanchor;
2056 // Save errors may fall down to the edit form, but we've now
2057 // merged the section into full text. Clear the section field
2058 // so that later submission of conflict forms won't try to
2059 // replace that into a duplicated mess.
2060 $this->textbox1
= $this->toEditText( $content );
2061 $this->section
= '';
2063 $status->value
= self
::AS_SUCCESS_UPDATE
;
2066 if ( !$this->allowSelfRedirect
2067 && $content->isRedirect()
2068 && $content->getRedirectTarget()->equals( $this->getTitle() )
2070 // If the page already redirects to itself, don't warn.
2071 $currentTarget = $this->getCurrentContent()->getRedirectTarget();
2072 if ( !$currentTarget ||
!$currentTarget->equals( $this->getTitle() ) ) {
2073 $this->selfRedirect
= true;
2074 $status->fatal( 'selfredirect' );
2075 $status->value
= self
::AS_SELF_REDIRECT
;
2080 // Check for length errors again now that the section is merged in
2081 $this->contentLength
= strlen( $this->toEditText( $content ) );
2082 if ( $this->contentLength
> $wgMaxArticleSize * 1024 ) {
2083 $this->tooBig
= true;
2084 $status->setResult( false, self
::AS_MAX_ARTICLE_SIZE_EXCEEDED
);
2088 $flags = EDIT_AUTOSUMMARY |
2089 ( $new ? EDIT_NEW
: EDIT_UPDATE
) |
2090 ( ( $this->minoredit
&& !$this->isNew
) ? EDIT_MINOR
: 0 ) |
2091 ( $bot ? EDIT_FORCE_BOT
: 0 );
2093 $doEditStatus = $this->page
->doEditContent(
2099 $content->getDefaultFormat(),
2103 if ( !$doEditStatus->isOK() ) {
2104 // Failure from doEdit()
2105 // Show the edit conflict page for certain recognized errors from doEdit(),
2106 // but don't show it for errors from extension hooks
2107 $errors = $doEditStatus->getErrorsArray();
2108 if ( in_array( $errors[0][0],
2109 [ 'edit-gone-missing', 'edit-conflict', 'edit-already-exists' ] )
2111 $this->isConflict
= true;
2112 // Destroys data doEdit() put in $status->value but who cares
2113 $doEditStatus->value
= self
::AS_END
;
2115 return $doEditStatus;
2118 $result['nullEdit'] = $doEditStatus->hasMessage( 'edit-no-change' );
2119 if ( $result['nullEdit'] ) {
2120 // We don't know if it was a null edit until now, so increment here
2121 $user->pingLimiter( 'linkpurge' );
2123 $result['redirect'] = $content->isRedirect();
2125 $this->updateWatchlist();
2127 // If the content model changed, add a log entry
2128 if ( $changingContentModel ) {
2129 $this->addContentModelChangeLogEntry(
2131 $new ?
false : $oldContentModel,
2132 $this->contentModel
,
2142 * @param string|false $oldModel false if the page is being newly created
2143 * @param string $newModel
2144 * @param string $reason
2146 protected function addContentModelChangeLogEntry( User
$user, $oldModel, $newModel, $reason ) {
2147 $new = $oldModel === false;
2148 $log = new ManualLogEntry( 'contentmodel', $new ?
'new' : 'change' );
2149 $log->setPerformer( $user );
2150 $log->setTarget( $this->mTitle
);
2151 $log->setComment( $reason );
2152 $log->setParameters( [
2153 '4::oldmodel' => $oldModel,
2154 '5::newmodel' => $newModel
2156 $logid = $log->insert();
2157 $log->publish( $logid );
2161 * Register the change of watch status
2163 protected function updateWatchlist() {
2164 $user = $this->context
->getUser();
2166 if ( !$user->isLoggedIn() ) {
2170 $title = $this->mTitle
;
2171 $watch = $this->watchthis
;
2172 // Do this in its own transaction to reduce contention...
2173 DeferredUpdates
::addCallableUpdate( function () use ( $user, $title, $watch ) {
2174 if ( $watch == $user->isWatched( $title, User
::IGNORE_USER_RIGHTS
) ) {
2175 return; // nothing to change
2177 WatchAction
::doWatchOrUnwatch( $watch, $title, $user );
2182 * Attempts to do 3-way merge of edit content with a base revision
2183 * and current content, in case of edit conflict, in whichever way appropriate
2184 * for the content type.
2188 * @param Content $editContent
2192 private function mergeChangesIntoContent( &$editContent ) {
2194 $db = wfGetDB( DB_MASTER
);
2196 // This is the revision the editor started from
2197 $baseRevision = $this->getBaseRevision();
2198 $baseContent = $baseRevision ?
$baseRevision->getContent() : null;
2200 if ( is_null( $baseContent ) ) {
2204 // The current state, we want to merge updates into it
2205 $currentRevision = Revision
::loadFromTitle( $db, $this->mTitle
);
2206 $currentContent = $currentRevision ?
$currentRevision->getContent() : null;
2208 if ( is_null( $currentContent ) ) {
2212 $handler = ContentHandler
::getForModelID( $baseContent->getModel() );
2214 $result = $handler->merge3( $baseContent, $editContent, $currentContent );
2217 $editContent = $result;
2218 // Update parentRevId to what we just merged.
2219 $this->parentRevId
= $currentRevision->getId();
2227 * @note: this method is very poorly named. If the user opened the form with ?oldid=X,
2228 * one might think of X as the "base revision", which is NOT what this returns.
2229 * @return Revision Current version when the edit was started
2231 function getBaseRevision() {
2232 if ( !$this->mBaseRevision
) {
2233 $db = wfGetDB( DB_MASTER
);
2234 $this->mBaseRevision
= $this->editRevId
2235 ? Revision
::newFromId( $this->editRevId
, Revision
::READ_LATEST
)
2236 : Revision
::loadFromTimestamp( $db, $this->mTitle
, $this->edittime
);
2238 return $this->mBaseRevision
;
2242 * Check given input text against $wgSpamRegex, and return the text of the first match.
2244 * @param string $text
2246 * @return string|bool Matching string or false
2248 public static function matchSpamRegex( $text ) {
2249 global $wgSpamRegex;
2250 // For back compatibility, $wgSpamRegex may be a single string or an array of regexes.
2251 $regexes = (array)$wgSpamRegex;
2252 return self
::matchSpamRegexInternal( $text, $regexes );
2256 * Check given input text against $wgSummarySpamRegex, and return the text of the first match.
2258 * @param string $text
2260 * @return string|bool Matching string or false
2262 public static function matchSummarySpamRegex( $text ) {
2263 global $wgSummarySpamRegex;
2264 $regexes = (array)$wgSummarySpamRegex;
2265 return self
::matchSpamRegexInternal( $text, $regexes );
2269 * @param string $text
2270 * @param array $regexes
2271 * @return bool|string
2273 protected static function matchSpamRegexInternal( $text, $regexes ) {
2274 foreach ( $regexes as $regex ) {
2276 if ( preg_match( $regex, $text, $matches ) ) {
2283 function setHeaders() {
2284 global $wgAjaxEditStash;
2286 $out = $this->context
->getOutput();
2287 $user = $this->context
->getUser();
2289 $out->addModules( 'mediawiki.action.edit' );
2290 $out->addModuleStyles( 'mediawiki.action.edit.styles' );
2292 if ( $user->getOption( 'showtoolbar' ) ) {
2293 // The addition of default buttons is handled by getEditToolbar() which
2294 // has its own dependency on this module. The call here ensures the module
2295 // is loaded in time (it has position "top") for other modules to register
2296 // buttons (e.g. extensions, gadgets, user scripts).
2297 $out->addModules( 'mediawiki.toolbar' );
2300 if ( $user->getOption( 'uselivepreview' ) ) {
2301 $out->addModules( 'mediawiki.action.edit.preview' );
2304 if ( $user->getOption( 'useeditwarning' ) ) {
2305 $out->addModules( 'mediawiki.action.edit.editWarning' );
2308 # Enabled article-related sidebar, toplinks, etc.
2309 $out->setArticleRelated( true );
2311 $contextTitle = $this->getContextTitle();
2312 if ( $this->isConflict
) {
2313 $msg = 'editconflict';
2314 } elseif ( $contextTitle->exists() && $this->section
!= '' ) {
2315 $msg = $this->section
== 'new' ?
'editingcomment' : 'editingsection';
2317 $msg = $contextTitle->exists()
2318 ||
( $contextTitle->getNamespace() == NS_MEDIAWIKI
2319 && $contextTitle->getDefaultMessageText() !== false
2325 # Use the title defined by DISPLAYTITLE magic word when present
2326 # NOTE: getDisplayTitle() returns HTML while getPrefixedText() returns plain text.
2327 # setPageTitle() treats the input as wikitext, which should be safe in either case.
2328 $displayTitle = isset( $this->mParserOutput
) ?
$this->mParserOutput
->getDisplayTitle() : false;
2329 if ( $displayTitle === false ) {
2330 $displayTitle = $contextTitle->getPrefixedText();
2332 $out->setPageTitle( wfMessage( $msg, $displayTitle ) );
2333 # Transmit the name of the message to JavaScript for live preview
2334 # Keep Resources.php/mediawiki.action.edit.preview in sync with the possible keys
2335 $out->addJsConfigVars( [
2336 'wgEditMessage' => $msg,
2337 'wgAjaxEditStash' => $wgAjaxEditStash,
2342 * Show all applicable editing introductions
2344 protected function showIntro() {
2345 if ( $this->suppressIntro
) {
2349 $out = $this->context
->getOutput();
2350 $namespace = $this->mTitle
->getNamespace();
2352 if ( $namespace == NS_MEDIAWIKI
) {
2353 # Show a warning if editing an interface message
2354 $out->wrapWikiMsg( "<div class='mw-editinginterface'>\n$1\n</div>", 'editinginterface' );
2355 # If this is a default message (but not css or js),
2356 # show a hint that it is translatable on translatewiki.net
2357 if ( !$this->mTitle
->hasContentModel( CONTENT_MODEL_CSS
)
2358 && !$this->mTitle
->hasContentModel( CONTENT_MODEL_JAVASCRIPT
)
2360 $defaultMessageText = $this->mTitle
->getDefaultMessageText();
2361 if ( $defaultMessageText !== false ) {
2362 $out->wrapWikiMsg( "<div class='mw-translateinterface'>\n$1\n</div>",
2363 'translateinterface' );
2366 } elseif ( $namespace == NS_FILE
) {
2367 # Show a hint to shared repo
2368 $file = wfFindFile( $this->mTitle
);
2369 if ( $file && !$file->isLocal() ) {
2370 $descUrl = $file->getDescriptionUrl();
2371 # there must be a description url to show a hint to shared repo
2373 if ( !$this->mTitle
->exists() ) {
2374 $out->wrapWikiMsg( "<div class=\"mw-sharedupload-desc-create\">\n$1\n</div>", [
2375 'sharedupload-desc-create', $file->getRepo()->getDisplayName(), $descUrl
2378 $out->wrapWikiMsg( "<div class=\"mw-sharedupload-desc-edit\">\n$1\n</div>", [
2379 'sharedupload-desc-edit', $file->getRepo()->getDisplayName(), $descUrl
2386 # Show a warning message when someone creates/edits a user (talk) page but the user does not exist
2387 # Show log extract when the user is currently blocked
2388 if ( $namespace == NS_USER ||
$namespace == NS_USER_TALK
) {
2389 $username = explode( '/', $this->mTitle
->getText(), 2 )[0];
2390 $user = User
::newFromName( $username, false /* allow IP users*/ );
2391 $ip = User
::isIP( $username );
2392 $block = Block
::newFromTarget( $user, $user );
2393 if ( !( $user && $user->isLoggedIn() ) && !$ip ) { # User does not exist
2394 $out->wrapWikiMsg( "<div class=\"mw-userpage-userdoesnotexist error\">\n$1\n</div>",
2395 [ 'userpage-userdoesnotexist', wfEscapeWikiText( $username ) ] );
2396 } elseif ( !is_null( $block ) && $block->getType() != Block
::TYPE_AUTO
) {
2397 # Show log extract if the user is currently blocked
2398 LogEventsList
::showLogExtract(
2401 MWNamespace
::getCanonicalName( NS_USER
) . ':' . $block->getTarget(),
2405 'showIfEmpty' => false,
2407 'blocked-notice-logextract',
2408 $user->getName() # Support GENDER in notice
2414 # Try to add a custom edit intro, or use the standard one if this is not possible.
2415 if ( !$this->showCustomIntro() && !$this->mTitle
->exists() ) {
2416 $helpLink = wfExpandUrl( Skin
::makeInternalOrExternalUrl(
2417 wfMessage( 'helppage' )->inContentLanguage()->text()
2419 if ( $this->context
->getUser()->isLoggedIn() ) {
2421 // Suppress the external link icon, consider the help url an internal one
2422 "<div class=\"mw-newarticletext plainlinks\">\n$1\n</div>",
2430 // Suppress the external link icon, consider the help url an internal one
2431 "<div class=\"mw-newarticletextanon plainlinks\">\n$1\n</div>",
2433 'newarticletextanon',
2439 # Give a notice if the user is editing a deleted/moved page...
2440 if ( !$this->mTitle
->exists() ) {
2441 LogEventsList
::showLogExtract( $out, [ 'delete', 'move' ], $this->mTitle
,
2445 'conds' => [ "log_action != 'revision'" ],
2446 'showIfEmpty' => false,
2447 'msgKey' => [ 'recreate-moveddeleted-warn' ]
2454 * Attempt to show a custom editing introduction, if supplied
2458 protected function showCustomIntro() {
2459 if ( $this->editintro
) {
2460 $title = Title
::newFromText( $this->editintro
);
2461 if ( $title instanceof Title
&& $title->exists() && $title->userCan( 'read' ) ) {
2462 // Added using template syntax, to take <noinclude>'s into account.
2463 $this->context
->getOutput()->addWikiTextTitleTidy(
2464 '<div class="mw-editintro">{{:' . $title->getFullText() . '}}</div>',
2474 * Gets an editable textual representation of $content.
2475 * The textual representation can be turned by into a Content object by the
2476 * toEditContent() method.
2478 * If $content is null or false or a string, $content is returned unchanged.
2480 * If the given Content object is not of a type that can be edited using
2481 * the text base EditPage, an exception will be raised. Set
2482 * $this->allowNonTextContent to true to allow editing of non-textual
2485 * @param Content|null|bool|string $content
2486 * @return string The editable text form of the content.
2488 * @throws MWException If $content is not an instance of TextContent and
2489 * $this->allowNonTextContent is not true.
2491 protected function toEditText( $content ) {
2492 if ( $content === null ||
$content === false ||
is_string( $content ) ) {
2496 if ( !$this->isSupportedContentModel( $content->getModel() ) ) {
2497 throw new MWException( 'This content model is not supported: '
2498 . ContentHandler
::getLocalizedName( $content->getModel() ) );
2501 return $content->serialize( $this->contentFormat
);
2505 * Turns the given text into a Content object by unserializing it.
2507 * If the resulting Content object is not of a type that can be edited using
2508 * the text base EditPage, an exception will be raised. Set
2509 * $this->allowNonTextContent to true to allow editing of non-textual
2512 * @param string|null|bool $text Text to unserialize
2513 * @return Content|bool|null The content object created from $text. If $text was false
2514 * or null, false resp. null will be returned instead.
2516 * @throws MWException If unserializing the text results in a Content
2517 * object that is not an instance of TextContent and
2518 * $this->allowNonTextContent is not true.
2520 protected function toEditContent( $text ) {
2521 if ( $text === false ||
$text === null ) {
2525 $content = ContentHandler
::makeContent( $text, $this->getTitle(),
2526 $this->contentModel
, $this->contentFormat
);
2528 if ( !$this->isSupportedContentModel( $content->getModel() ) ) {
2529 throw new MWException( 'This content model is not supported: '
2530 . ContentHandler
::getLocalizedName( $content->getModel() ) );
2537 * Send the edit form and related headers to $wgOut
2538 * @param callable|null $formCallback That takes an OutputPage parameter; will be called
2539 * during form output near the top, for captchas and the like.
2541 * The $formCallback parameter is deprecated since MediaWiki 1.25. Please
2542 * use the EditPage::showEditForm:fields hook instead.
2544 function showEditForm( $formCallback = null ) {
2545 # need to parse the preview early so that we know which templates are used,
2546 # otherwise users with "show preview after edit box" will get a blank list
2547 # we parse this near the beginning so that setHeaders can do the title
2548 # setting work instead of leaving it in getPreviewText
2549 $previewOutput = '';
2550 if ( $this->formtype
== 'preview' ) {
2551 $previewOutput = $this->getPreviewText();
2554 $out = $this->context
->getOutput();
2555 Hooks
::run( 'EditPage::showEditForm:initial', [ &$this, &$out ] );
2557 $this->setHeaders();
2559 if ( $this->showHeader() === false ) {
2563 $out->addHTML( $this->editFormPageTop
);
2565 $user = $this->context
->getUser();
2566 if ( $user->getOption( 'previewontop' ) ) {
2567 $this->displayPreviewArea( $previewOutput, true );
2570 $out->addHTML( $this->editFormTextTop
);
2572 $showToolbar = true;
2573 if ( $this->wasDeletedSinceLastEdit() ) {
2574 if ( $this->formtype
== 'save' ) {
2575 // Hide the toolbar and edit area, user can click preview to get it back
2576 // Add an confirmation checkbox and explanation.
2577 $showToolbar = false;
2579 $out->wrapWikiMsg( "<div class='error mw-deleted-while-editing'>\n$1\n</div>",
2580 'deletedwhileediting' );
2584 // @todo add EditForm plugin interface and use it here!
2585 // search for textarea1 and textares2, and allow EditForm to override all uses.
2586 $out->addHTML( Html
::openElement(
2589 'id' => self
::EDITFORM_ID
,
2590 'name' => self
::EDITFORM_ID
,
2592 'action' => $this->getActionURL( $this->getContextTitle() ),
2593 'enctype' => 'multipart/form-data'
2597 if ( is_callable( $formCallback ) ) {
2598 wfWarn( 'The $formCallback parameter to ' . __METHOD__
. 'is deprecated' );
2599 call_user_func_array( $formCallback, [ &$out ] );
2602 // Add an empty field to trip up spambots
2604 Xml
::openElement( 'div', [ 'id' => 'antispam-container', 'style' => 'display: none;' ] )
2607 [ 'for' => 'wpAntispam' ],
2608 wfMessage( 'simpleantispam-label' )->parse()
2614 'name' => 'wpAntispam',
2615 'id' => 'wpAntispam',
2619 . Xml
::closeElement( 'div' )
2622 Hooks
::run( 'EditPage::showEditForm:fields', [ &$this, &$out ] );
2624 // Put these up at the top to ensure they aren't lost on early form submission
2625 $this->showFormBeforeText();
2627 if ( $this->wasDeletedSinceLastEdit() && 'save' == $this->formtype
) {
2628 $username = $this->lastDelete
->user_name
;
2629 $comment = $this->lastDelete
->log_comment
;
2631 // It is better to not parse the comment at all than to have templates expanded in the middle
2632 // TODO: can the checkLabel be moved outside of the div so that wrapWikiMsg could be used?
2633 $key = $comment === ''
2634 ?
'confirmrecreate-noreason'
2635 : 'confirmrecreate';
2637 '<div class="mw-confirm-recreate">' .
2638 wfMessage( $key, $username, "<nowiki>$comment</nowiki>" )->parse() .
2639 Xml
::checkLabel( wfMessage( 'recreate' )->text(), 'wpRecreate', 'wpRecreate', false,
2640 [ 'title' => Linker
::titleAttrib( 'recreate' ), 'tabindex' => 1, 'id' => 'wpRecreate' ]
2646 # When the summary is hidden, also hide them on preview/show changes
2647 if ( $this->nosummary
) {
2648 $out->addHTML( Html
::hidden( 'nosummary', true ) );
2651 # If a blank edit summary was previously provided, and the appropriate
2652 # user preference is active, pass a hidden tag as wpIgnoreBlankSummary. This will stop the
2653 # user being bounced back more than once in the event that a summary
2656 # For a bit more sophisticated detection of blank summaries, hash the
2657 # automatic one and pass that in the hidden field wpAutoSummary.
2658 if ( $this->missingSummary ||
( $this->section
== 'new' && $this->nosummary
) ) {
2659 $out->addHTML( Html
::hidden( 'wpIgnoreBlankSummary', true ) );
2662 if ( $this->undidRev
) {
2663 $out->addHTML( Html
::hidden( 'wpUndidRevision', $this->undidRev
) );
2666 if ( $this->selfRedirect
) {
2667 $out->addHTML( Html
::hidden( 'wpIgnoreSelfRedirect', true ) );
2670 if ( $this->hasPresetSummary
) {
2671 // If a summary has been preset using &summary= we don't want to prompt for
2672 // a different summary. Only prompt for a summary if the summary is blanked.
2674 $this->autoSumm
= md5( '' );
2677 $autosumm = $this->autoSumm ?
$this->autoSumm
: md5( $this->summary
);
2678 $out->addHTML( Html
::hidden( 'wpAutoSummary', $autosumm ) );
2680 $out->addHTML( Html
::hidden( 'oldid', $this->oldid
) );
2681 $out->addHTML( Html
::hidden( 'parentRevId', $this->getParentRevId() ) );
2683 $out->addHTML( Html
::hidden( 'format', $this->contentFormat
) );
2684 $out->addHTML( Html
::hidden( 'model', $this->contentModel
) );
2686 if ( $this->section
== 'new' ) {
2687 $this->showSummaryInput( true, $this->summary
);
2688 $out->addHTML( $this->getSummaryPreview( true, $this->summary
) );
2691 $out->addHTML( $this->editFormTextBeforeContent
);
2693 if ( !$this->isCssJsSubpage
&& $showToolbar && $user->getOption( 'showtoolbar' ) ) {
2694 $out->addHTML( EditPage
::getEditToolbar( $this->mTitle
) );
2697 if ( $this->blankArticle
) {
2698 $out->addHTML( Html
::hidden( 'wpIgnoreBlankArticle', true ) );
2701 if ( $this->isConflict
) {
2702 // In an edit conflict bypass the overridable content form method
2703 // and fallback to the raw wpTextbox1 since editconflicts can't be
2704 // resolved between page source edits and custom ui edits using the
2706 $this->textbox2
= $this->textbox1
;
2708 $content = $this->getCurrentContent();
2709 $this->textbox1
= $this->toEditText( $content );
2711 $this->showTextbox1();
2713 $this->showContentForm();
2716 $out->addHTML( $this->editFormTextAfterContent
);
2718 $this->showStandardInputs();
2720 $this->showFormAfterText();
2722 $this->showTosSummary();
2724 $this->showEditTools();
2726 $out->addHTML( $this->editFormTextAfterTools
. "\n" );
2728 $out->addHTML( Html
::rawElement( 'div', [ 'class' => 'templatesUsed' ],
2729 Linker
::formatTemplates( $this->getTemplates(), $this->preview
, $this->section
!= '' ) ) );
2731 $out->addHTML( Html
::rawElement( 'div', [ 'class' => 'hiddencats' ],
2732 Linker
::formatHiddenCategories( $this->page
->getHiddenCategories() ) ) );
2734 if ( $this->mParserOutput
) {
2735 $out->setLimitReportData( $this->mParserOutput
->getLimitReportData() );
2738 $out->addModules( 'mediawiki.action.edit.collapsibleFooter' );
2740 if ( $this->isConflict
) {
2742 $this->showConflict();
2743 } catch ( MWContentSerializationException
$ex ) {
2744 // this can't really happen, but be nice if it does.
2746 'content-failed-to-parse',
2747 $this->contentModel
,
2748 $this->contentFormat
,
2751 $out->addWikiText( '<div class="error">' . $msg->text() . '</div>' );
2755 // Set a hidden field so JS knows what edit form mode we are in
2756 if ( $this->isConflict
) {
2758 } elseif ( $this->preview
) {
2760 } elseif ( $this->diff
) {
2765 $out->addHTML( Html
::hidden( 'mode', $mode, [ 'id' => 'mw-edit-mode' ] ) );
2767 // Marker for detecting truncated form data. This must be the last
2768 // parameter sent in order to be of use, so do not move me.
2769 $out->addHTML( Html
::hidden( 'wpUltimateParam', true ) );
2770 $out->addHTML( $this->editFormTextBottom
. "\n</form>\n" );
2772 if ( !$user->getOption( 'previewontop' ) ) {
2773 $this->displayPreviewArea( $previewOutput, false );
2779 * Extract the section title from current section text, if any.
2781 * @param string $text
2782 * @return string|bool String or false
2784 public static function extractSectionTitle( $text ) {
2785 preg_match( "/^(=+)(.+)\\1\\s*(\n|$)/i", $text, $matches );
2786 if ( !empty( $matches[2] ) ) {
2788 return $wgParser->stripSectionName( trim( $matches[2] ) );
2797 protected function showHeader() {
2798 global $wgMaxArticleSize, $wgAllowUserCss, $wgAllowUserJs;
2800 $out = $this->context
->getOutput();
2801 $user = $this->context
->getUser();
2803 if ( $this->mTitle
->isTalkPage() ) {
2804 $out->addWikiMsg( 'talkpagetext' );
2808 $editNotices = $this->mTitle
->getEditNotices( $this->oldid
);
2809 if ( count( $editNotices ) ) {
2810 $out->addHTML( implode( "\n", $editNotices ) );
2812 $msg = wfMessage( 'editnotice-notext' );
2813 if ( !$msg->isDisabled() ) {
2815 '<div class="mw-editnotice-notext">'
2816 . $msg->parseAsBlock()
2822 if ( $this->isConflict
) {
2823 $out->wrapWikiMsg( "<div class='mw-explainconflict'>\n$1\n</div>", 'explainconflict' );
2824 $this->editRevId
= $this->page
->getLatest();
2826 if ( $this->section
!= '' && !$this->isSectionEditSupported() ) {
2827 // We use $this->section to much before this and getVal('wgSection') directly in other places
2828 // at this point we can't reset $this->section to '' to fallback to non-section editing.
2829 // Someone is welcome to try refactoring though
2830 $out->showErrorPage( 'sectioneditnotsupported-title', 'sectioneditnotsupported-text' );
2834 if ( $this->section
!= '' && $this->section
!= 'new' ) {
2835 if ( !$this->summary
&& !$this->preview
&& !$this->diff
) {
2836 $sectionTitle = self
::extractSectionTitle( $this->textbox1
); // FIXME: use Content object
2837 if ( $sectionTitle !== false ) {
2838 $this->summary
= "/* $sectionTitle */ ";
2843 if ( $this->missingComment
) {
2844 $out->wrapWikiMsg( "<div id='mw-missingcommenttext'>\n$1\n</div>", 'missingcommenttext' );
2847 if ( $this->missingSummary
&& $this->section
!= 'new' ) {
2848 $out->wrapWikiMsg( "<div id='mw-missingsummary'>\n$1\n</div>", 'missingsummary' );
2851 if ( $this->missingSummary
&& $this->section
== 'new' ) {
2852 $out->wrapWikiMsg( "<div id='mw-missingcommentheader'>\n$1\n</div>", 'missingcommentheader' );
2855 if ( $this->blankArticle
) {
2856 $out->wrapWikiMsg( "<div id='mw-blankarticle'>\n$1\n</div>", 'blankarticle' );
2859 if ( $this->selfRedirect
) {
2860 $out->wrapWikiMsg( "<div id='mw-selfredirect'>\n$1\n</div>", 'selfredirect' );
2863 if ( $this->hookError
!== '' ) {
2864 $out->addWikiText( $this->hookError
);
2867 if ( !$this->checkUnicodeCompliantBrowser() ) {
2868 $out->addWikiMsg( 'nonunicodebrowser' );
2871 if ( $this->section
!= 'new' ) {
2872 $revision = $this->mArticle
->getRevisionFetched();
2874 // Let sysop know that this will make private content public if saved
2876 if ( !$revision->userCan( Revision
::DELETED_TEXT
, $user ) ) {
2878 "<div class='mw-warning plainlinks'>\n$1\n</div>\n",
2879 'rev-deleted-text-permission'
2881 } elseif ( $revision->isDeleted( Revision
::DELETED_TEXT
) ) {
2883 "<div class='mw-warning plainlinks'>\n$1\n</div>\n",
2884 'rev-deleted-text-view'
2888 if ( !$revision->isCurrent() ) {
2889 $this->mArticle
->setOldSubtitle( $revision->getId() );
2890 $out->addWikiMsg( 'editingold' );
2892 } elseif ( $this->mTitle
->exists() ) {
2893 // Something went wrong
2895 $out->wrapWikiMsg( "<div class='errorbox'>\n$1\n</div>\n",
2896 [ 'missing-revision', $this->oldid
] );
2901 if ( wfReadOnly() ) {
2903 "<div id=\"mw-read-only-warning\">\n$1\n</div>",
2904 [ 'readonlywarning', wfReadOnlyReason() ]
2906 } elseif ( $user->isAnon() ) {
2907 if ( $this->formtype
!= 'preview' ) {
2909 "<div id='mw-anon-edit-warning' class='warningbox'>\n$1\n</div>",
2910 [ 'anoneditwarning',
2912 SpecialPage
::getTitleFor( 'Userlogin' )->getFullURL( [
2913 'returnto' => $this->getTitle()->getPrefixedDBkey()
2916 SpecialPage
::getTitleFor( 'CreateAccount' )->getFullURL( [
2917 'returnto' => $this->getTitle()->getPrefixedDBkey()
2922 $out->wrapWikiMsg( "<div id=\"mw-anon-preview-warning\" class=\"warningbox\">\n$1</div>",
2923 'anonpreviewwarning'
2927 if ( $this->isCssJsSubpage
) {
2928 # Check the skin exists
2929 if ( $this->isWrongCaseCssJsPage
) {
2931 "<div class='error' id='mw-userinvalidcssjstitle'>\n$1\n</div>",
2932 [ 'userinvalidcssjstitle', $this->mTitle
->getSkinFromCssJsSubpage() ]
2935 if ( $this->getTitle()->isSubpageOf( $user->getUserPage() ) ) {
2936 $out->wrapWikiMsg( '<div class="mw-usercssjspublic">$1</div>',
2937 $this->isCssSubpage ?
'usercssispublic' : 'userjsispublic'
2939 if ( $this->formtype
!== 'preview' ) {
2940 if ( $this->isCssSubpage
&& $wgAllowUserCss ) {
2942 "<div id='mw-usercssyoucanpreview'>\n$1\n</div>",
2943 [ 'usercssyoucanpreview' ]
2947 if ( $this->isJsSubpage
&& $wgAllowUserJs ) {
2949 "<div id='mw-userjsyoucanpreview'>\n$1\n</div>",
2950 [ 'userjsyoucanpreview' ]
2958 if ( $this->mTitle
->isProtected( 'edit' ) &&
2959 MWNamespace
::getRestrictionLevels( $this->mTitle
->getNamespace() ) !== [ '' ]
2961 # Is the title semi-protected?
2962 if ( $this->mTitle
->isSemiProtected() ) {
2963 $noticeMsg = 'semiprotectedpagewarning';
2965 # Then it must be protected based on static groups (regular)
2966 $noticeMsg = 'protectedpagewarning';
2968 LogEventsList
::showLogExtract( $out, 'protect', $this->mTitle
, '',
2969 [ 'lim' => 1, 'msgKey' => [ $noticeMsg ] ] );
2971 if ( $this->mTitle
->isCascadeProtected() ) {
2972 # Is this page under cascading protection from some source pages?
2973 /** @var Title[] $cascadeSources */
2974 list( $cascadeSources, /* $restrictions */ ) = $this->mTitle
->getCascadeProtectionSources();
2975 $notice = "<div class='mw-cascadeprotectedwarning'>\n$1\n";
2976 $cascadeSourcesCount = count( $cascadeSources );
2977 if ( $cascadeSourcesCount > 0 ) {
2978 # Explain, and list the titles responsible
2979 foreach ( $cascadeSources as $page ) {
2980 $notice .= '* [[:' . $page->getPrefixedText() . "]]\n";
2983 $notice .= '</div>';
2984 $out->wrapWikiMsg( $notice, [ 'cascadeprotectedwarning', $cascadeSourcesCount ] );
2986 if ( !$this->mTitle
->exists() && $this->mTitle
->getRestrictions( 'create' ) ) {
2987 LogEventsList
::showLogExtract( $out, 'protect', $this->mTitle
, '',
2989 'showIfEmpty' => false,
2990 'msgKey' => [ 'titleprotectedwarning' ],
2991 'wrap' => "<div class=\"mw-titleprotectedwarning\">\n$1</div>" ] );
2994 if ( $this->contentLength
=== false ) {
2995 $this->contentLength
= strlen( $this->textbox1
);
2998 $lang = $this->context
->getLanguage();
2999 if ( $this->tooBig ||
$this->contentLength
> $wgMaxArticleSize * 1024 ) {
3000 $out->wrapWikiMsg( "<div class='error' id='mw-edit-longpageerror'>\n$1\n</div>",
3003 $lang->formatNum( round( $this->contentLength
/ 1024, 3 ) ),
3004 $lang->formatNum( $wgMaxArticleSize )
3008 if ( !wfMessage( 'longpage-hint' )->isDisabled() ) {
3009 $out->wrapWikiMsg( "<div id='mw-edit-longpage-hint'>\n$1\n</div>",
3012 $lang->formatSize( strlen( $this->textbox1
) ),
3013 strlen( $this->textbox1
)
3018 # Add header copyright warning
3019 $this->showHeaderCopyrightWarning();
3025 * Standard summary input and label (wgSummary), abstracted so EditPage
3026 * subclasses may reorganize the form.
3027 * Note that you do not need to worry about the label's for=, it will be
3028 * inferred by the id given to the input. You can remove them both by
3029 * passing array( 'id' => false ) to $userInputAttrs.
3031 * @param string $summary The value of the summary input
3032 * @param string $labelText The html to place inside the label
3033 * @param array $inputAttrs Array of attrs to use on the input
3034 * @param array $spanLabelAttrs Array of attrs to use on the span inside the label
3036 * @return array An array in the format array( $label, $input )
3038 function getSummaryInput( $summary = "", $labelText = null,
3039 $inputAttrs = null, $spanLabelAttrs = null
3041 // Note: the maxlength is overridden in JS to 255 and to make it use UTF-8 bytes, not characters.
3042 $inputAttrs = ( is_array( $inputAttrs ) ?
$inputAttrs : [] ) +
[
3043 'id' => 'wpSummary',
3044 'maxlength' => '200',
3047 'spellcheck' => 'true',
3048 ] + Linker
::tooltipAndAccesskeyAttribs( 'summary' );
3050 $spanLabelAttrs = ( is_array( $spanLabelAttrs ) ?
$spanLabelAttrs : [] ) +
[
3051 'class' => $this->missingSummary ?
'mw-summarymissed' : 'mw-summary',
3052 'id' => "wpSummaryLabel"
3059 $inputAttrs['id'] ?
[ 'for' => $inputAttrs['id'] ] : null,
3062 $label = Xml
::tags( 'span', $spanLabelAttrs, $label );
3065 $input = Html
::input( 'wpSummary', $summary, 'text', $inputAttrs );
3067 return [ $label, $input ];
3071 * @param bool $isSubjectPreview True if this is the section subject/title
3072 * up top, or false if this is the comment summary
3073 * down below the textarea
3074 * @param string $summary The text of the summary to display
3076 protected function showSummaryInput( $isSubjectPreview, $summary = "" ) {
3077 # Add a class if 'missingsummary' is triggered to allow styling of the summary line
3078 $summaryClass = $this->missingSummary ?
'mw-summarymissed' : 'mw-summary';
3079 if ( $isSubjectPreview ) {
3080 if ( $this->nosummary
) {
3084 if ( !$this->mShowSummaryField
) {
3088 $labelText = wfMessage( $isSubjectPreview ?
'subject' : 'summary' )->parse();
3089 list( $label, $input ) = $this->getSummaryInput(
3092 [ 'class' => $summaryClass ],
3095 $this->context
->getOutput()->addHTML( "{$label} {$input}" );
3099 * @param bool $isSubjectPreview True if this is the section subject/title
3100 * up top, or false if this is the comment summary
3101 * down below the textarea
3102 * @param string $summary The text of the summary to display
3105 protected function getSummaryPreview( $isSubjectPreview, $summary = "" ) {
3106 // avoid spaces in preview, gets always trimmed on save
3107 $summary = trim( $summary );
3108 if ( !$summary ||
( !$this->preview
&& !$this->diff
) ) {
3114 if ( $isSubjectPreview ) {
3115 $summary = wfMessage( 'newsectionsummary' )->rawParams( $wgParser->stripSectionName( $summary ) )
3116 ->inContentLanguage()->text();
3119 $message = $isSubjectPreview ?
'subject-preview' : 'summary-preview';
3121 $summary = wfMessage( $message )->parse()
3122 . Linker
::commentBlock( $summary, $this->mTitle
, $isSubjectPreview );
3123 return Xml
::tags( 'div', [ 'class' => 'mw-summary-preview' ], $summary );
3126 protected function showFormBeforeText() {
3127 $section = htmlspecialchars( $this->section
);
3128 $out = $this->context
->getOutput();
3129 $out->addHTML( <<<HTML
3130 <input type='hidden' value="{$section}" name="wpSection"/>
3131 <input type='hidden' value="{$this->starttime}" name="wpStarttime" />
3132 <input type='hidden' value="{$this->edittime}" name="wpEdittime" />
3133 <input type='hidden' value="{$this->editRevId}" name="editRevId" />
3134 <input type='hidden' value="{$this->scrolltop}" name="wpScrolltop" id="wpScrolltop" />
3138 if ( !$this->checkUnicodeCompliantBrowser() ) {
3139 $out->addHTML( Html
::hidden( 'safemode', '1' ) );
3143 protected function showFormAfterText() {
3145 * To make it harder for someone to slip a user a page
3146 * which submits an edit form to the wiki without their
3147 * knowledge, a random token is associated with the login
3148 * session. If it's not passed back with the submission,
3149 * we won't save the page, or render user JavaScript and
3152 * For anon editors, who may not have a session, we just
3153 * include the constant suffix to prevent editing from
3154 * broken text-mangling proxies.
3156 $token = $this->context
->getUser()->getEditToken();
3157 $this->context
->getOutput()->addHTML(
3158 "\n" . Html
::hidden( "wpEditToken", $token ) . "\n"
3163 * Subpage overridable method for printing the form for page content editing
3164 * By default this simply outputs wpTextbox1
3165 * Subclasses can override this to provide a custom UI for editing;
3166 * be it a form, or simply wpTextbox1 with a modified content that will be
3167 * reverse modified when extracted from the post data.
3168 * Note that this is basically the inverse for importContentFormData
3170 protected function showContentForm() {
3171 $this->showTextbox1();
3175 * Method to output wpTextbox1
3176 * The $textoverride method can be used by subclasses overriding showContentForm
3177 * to pass back to this method.
3179 * @param array $customAttribs Array of html attributes to use in the textarea
3180 * @param string $textoverride Optional text to override $this->textarea1 with
3182 protected function showTextbox1( $customAttribs = null, $textoverride = null ) {
3183 if ( $this->wasDeletedSinceLastEdit() && $this->formtype
== 'save' ) {
3184 $attribs = [ 'style' => 'display:none;' ];
3186 $classes = []; // Textarea CSS
3187 if ( $this->mTitle
->isProtected( 'edit' ) &&
3188 MWNamespace
::getRestrictionLevels( $this->mTitle
->getNamespace() ) !== [ '' ]
3190 # Is the title semi-protected?
3191 if ( $this->mTitle
->isSemiProtected() ) {
3192 $classes[] = 'mw-textarea-sprotected';
3194 # Then it must be protected based on static groups (regular)
3195 $classes[] = 'mw-textarea-protected';
3197 # Is the title cascade-protected?
3198 if ( $this->mTitle
->isCascadeProtected() ) {
3199 $classes[] = 'mw-textarea-cprotected';
3203 $attribs = [ 'tabindex' => 1 ];
3205 if ( is_array( $customAttribs ) ) {
3206 $attribs +
= $customAttribs;
3209 if ( count( $classes ) ) {
3210 if ( isset( $attribs['class'] ) ) {
3211 $classes[] = $attribs['class'];
3213 $attribs['class'] = implode( ' ', $classes );
3218 $textoverride !== null ?
$textoverride : $this->textbox1
,
3224 protected function showTextbox2() {
3225 $this->showTextbox( $this->textbox2
, 'wpTextbox2', [ 'tabindex' => 6, 'readonly' ] );
3228 protected function showTextbox( $text, $name, $customAttribs = [] ) {
3229 $wikitext = $this->safeUnicodeOutput( $text );
3230 if ( strval( $wikitext ) !== '' ) {
3231 // Ensure there's a newline at the end, otherwise adding lines
3233 // But don't add a newline if the ext is empty, or Firefox in XHTML
3234 // mode will show an extra newline. A bit annoying.
3238 $user = $this->context
->getUser();
3239 $attribs = $customAttribs +
[
3242 'cols' => $user->getIntOption( 'cols' ),
3243 'rows' => $user->getIntOption( 'rows' ),
3244 // Avoid PHP notices when appending preferences
3245 // (appending allows customAttribs['style'] to still work).
3249 $pageLang = $this->mTitle
->getPageLanguage();
3250 $attribs['lang'] = $pageLang->getHtmlCode();
3251 $attribs['dir'] = $pageLang->getDir();
3253 $this->context
->getOutput()->addHTML( Html
::textarea( $name, $wikitext, $attribs ) );
3256 protected function displayPreviewArea( $previewOutput, $isOnTop = false ) {
3259 $classes[] = 'ontop';
3262 $attribs = [ 'id' => 'wikiPreview', 'class' => implode( ' ', $classes ) ];
3264 if ( $this->formtype
!= 'preview' ) {
3265 $attribs['style'] = 'display: none;';
3268 $out = $this->context
->getOutput();
3269 $out->addHTML( Xml
::openElement( 'div', $attribs ) );
3271 if ( $this->formtype
== 'preview' ) {
3272 $this->showPreview( $previewOutput );
3274 // Empty content container for LivePreview
3275 $pageViewLang = $this->mTitle
->getPageViewLanguage();
3276 $attribs = [ 'lang' => $pageViewLang->getHtmlCode(), 'dir' => $pageViewLang->getDir(),
3277 'class' => 'mw-content-' . $pageViewLang->getDir() ];
3278 $out->addHTML( Html
::rawElement( 'div', $attribs ) );
3281 $out->addHTML( '</div>' );
3283 if ( $this->formtype
== 'diff' ) {
3286 } catch ( MWContentSerializationException
$ex ) {
3288 'content-failed-to-parse',
3289 $this->contentModel
,
3290 $this->contentFormat
,
3293 $out->addWikiText( '<div class="error">' . $msg->text() . '</div>' );
3299 * Append preview output to $wgOut.
3300 * Includes category rendering if this is a category page.
3302 * @param string $text The HTML to be output for the preview.
3304 protected function showPreview( $text ) {
3305 if ( $this->mTitle
->getNamespace() == NS_CATEGORY
) {
3306 $this->mArticle
->openShowCategory();
3308 $out = $this->context
->getOutput();
3309 # This hook seems slightly odd here, but makes things more
3310 # consistent for extensions.
3311 Hooks
::run( 'OutputPageBeforeHTML', [ &$out, &$text ] );
3312 $out->addHTML( $text );
3313 if ( $this->mTitle
->getNamespace() == NS_CATEGORY
) {
3314 $this->mArticle
->closeShowCategory();
3319 * Get a diff between the current contents of the edit box and the
3320 * version of the page we're editing from.
3322 * If this is a section edit, we'll replace the section as for final
3323 * save and then make a comparison.
3325 function showDiff() {
3328 $oldtitlemsg = 'currentrev';
3329 # if message does not exist, show diff against the preloaded default
3330 if ( $this->mTitle
->getNamespace() == NS_MEDIAWIKI
&& !$this->mTitle
->exists() ) {
3331 $oldtext = $this->mTitle
->getDefaultMessageText();
3332 if ( $oldtext !== false ) {
3333 $oldtitlemsg = 'defaultmessagetext';
3334 $oldContent = $this->toEditContent( $oldtext );
3339 $oldContent = $this->getCurrentContent();
3342 $textboxContent = $this->toEditContent( $this->textbox1
);
3343 if ( $this->editRevId
!== null ) {
3344 $newContent = $this->page
->replaceSectionAtRev(
3345 $this->section
, $textboxContent, $this->summary
, $this->editRevId
3348 $newContent = $this->page
->replaceSectionContent(
3349 $this->section
, $textboxContent, $this->summary
, $this->edittime
3353 if ( $newContent ) {
3354 ContentHandler
::runLegacyHooks( 'EditPageGetDiffText', [ $this, &$newContent ] );
3355 Hooks
::run( 'EditPageGetDiffContent', [ $this, &$newContent ] );
3357 $user = $this->context
->getUser();
3358 $popts = ParserOptions
::newFromUserAndLang( $user, $wgContLang );
3359 $newContent = $newContent->preSaveTransform( $this->mTitle
, $user, $popts );
3362 if ( ( $oldContent && !$oldContent->isEmpty() ) ||
( $newContent && !$newContent->isEmpty() ) ) {
3363 $oldtitle = wfMessage( $oldtitlemsg )->parse();
3364 $newtitle = wfMessage( 'yourtext' )->parse();
3366 if ( !$oldContent ) {
3367 $oldContent = $newContent->getContentHandler()->makeEmptyContent();
3370 if ( !$newContent ) {
3371 $newContent = $oldContent->getContentHandler()->makeEmptyContent();
3374 $de = $oldContent->getContentHandler()->createDifferenceEngine( $this->mArticle
->getContext() );
3375 $de->setContent( $oldContent, $newContent );
3377 $difftext = $de->getDiff( $oldtitle, $newtitle );
3378 $de->showDiffStyle();
3383 $this->context
->getOutput()->addHTML( '<div id="wikiDiff">' . $difftext . '</div>' );
3387 * Show the header copyright warning.
3389 protected function showHeaderCopyrightWarning() {
3390 $msg = 'editpage-head-copy-warn';
3391 if ( !wfMessage( $msg )->isDisabled() ) {
3392 $this->context
->getOutput()->wrapWikiMsg( "<div class='editpage-head-copywarn'>\n$1\n</div>",
3393 'editpage-head-copy-warn' );
3398 * Give a chance for site and per-namespace customizations of
3399 * terms of service summary link that might exist separately
3400 * from the copyright notice.
3402 * This will display between the save button and the edit tools,
3403 * so should remain short!
3405 protected function showTosSummary() {
3406 $msg = 'editpage-tos-summary';
3407 Hooks
::run( 'EditPageTosSummary', [ $this->mTitle
, &$msg ] );
3408 if ( !wfMessage( $msg )->isDisabled() ) {
3409 $out = $this->context
->getOutput();
3410 $out->addHTML( '<div class="mw-tos-summary">' );
3411 $out->addWikiMsg( $msg );
3412 $out->addHTML( '</div>' );
3416 protected function showEditTools() {
3417 $this->context
->getOutput()->addHTML( '<div class="mw-editTools">' .
3418 wfMessage( 'edittools' )->inContentLanguage()->parse() .
3423 * Get the copyright warning
3425 * Renamed to getCopyrightWarning(), old name kept around for backwards compatibility
3428 protected function getCopywarn() {
3429 return self
::getCopyrightWarning( $this->mTitle
);
3433 * Get the copyright warning, by default returns wikitext
3435 * @param Title $title
3436 * @param string $format Output format, valid values are any function of a Message object
3439 public static function getCopyrightWarning( $title, $format = 'plain' ) {
3440 global $wgRightsText;
3441 if ( $wgRightsText ) {
3442 $copywarnMsg = [ 'copyrightwarning',
3443 '[[' . wfMessage( 'copyrightpage' )->inContentLanguage()->text() . ']]',
3446 $copywarnMsg = [ 'copyrightwarning2',
3447 '[[' . wfMessage( 'copyrightpage' )->inContentLanguage()->text() . ']]' ];
3449 // Allow for site and per-namespace customization of contribution/copyright notice.
3450 Hooks
::run( 'EditPageCopyrightWarning', [ $title, &$copywarnMsg ] );
3452 return "<div id=\"editpage-copywarn\">\n" .
3453 call_user_func_array( 'wfMessage', $copywarnMsg )->$format() . "\n</div>";
3457 * Get the Limit report for page previews
3460 * @param ParserOutput $output ParserOutput object from the parse
3461 * @return string HTML
3463 public static function getPreviewLimitReport( $output ) {
3464 if ( !$output ||
!$output->getLimitReportData() ) {
3468 return ResourceLoader
::makeInlineScript(
3469 ResourceLoader
::makeConfigSetScript(
3470 [ 'wgPageParseReport' => $output->getLimitReportData() ],
3476 protected function showStandardInputs( &$tabindex = 2 ) {
3477 $out = $this->context
->getOutput();
3478 $out->addHTML( "<div class='editOptions'>\n" );
3480 if ( $this->section
!= 'new' ) {
3481 $this->showSummaryInput( false, $this->summary
);
3482 $out->addHTML( $this->getSummaryPreview( false, $this->summary
) );
3485 $checkboxes = $this->getCheckboxes( $tabindex,
3486 [ 'minor' => $this->minoredit
, 'watch' => $this->watchthis
] );
3487 $out->addHTML( "<div class='editCheckboxes'>" . implode( $checkboxes, "\n" ) . "</div>\n" );
3489 // Show copyright warning.
3490 $out->addWikiText( $this->getCopywarn() );
3491 $out->addHTML( $this->editFormTextAfterWarn
);
3493 $out->addHTML( "<div class='editButtons'>\n" );
3494 $out->addHTML( implode( $this->getEditButtons( $tabindex ), "\n" ) . "\n" );
3496 $cancel = $this->getCancelLink();
3497 if ( $cancel !== '' ) {
3498 $cancel .= Html
::element( 'span',
3499 [ 'class' => 'mw-editButtons-pipe-separator' ],
3500 wfMessage( 'pipe-separator' )->text() );
3503 $message = wfMessage( 'edithelppage' )->inContentLanguage()->text();
3504 $edithelpurl = Skin
::makeInternalOrExternalUrl( $message );
3506 'target' => 'helpwindow',
3507 'href' => $edithelpurl,
3509 $edithelp = Html
::linkButton( wfMessage( 'edithelp' )->text(),
3510 $attrs, [ 'mw-ui-quiet' ] ) .
3511 wfMessage( 'word-separator' )->escaped() .
3512 wfMessage( 'newwindow' )->parse();
3514 $out->addHTML( " <span class='cancelLink'>{$cancel}</span>\n" );
3515 $out->addHTML( " <span class='editHelp'>{$edithelp}</span>\n" );
3516 $out->addHTML( "</div><!-- editButtons -->\n" );
3518 Hooks
::run( 'EditPage::showStandardInputs:options', [ $this, $out, &$tabindex ] );
3520 $out->addHTML( "</div><!-- editOptions -->\n" );
3524 * Show an edit conflict. textbox1 is already shown in showEditForm().
3525 * If you want to use another entry point to this function, be careful.
3527 protected function showConflict() {
3528 $out = $this->context
->getOutput();
3529 if ( Hooks
::run( 'EditPageBeforeConflictDiff', [ &$this, &$out ] ) ) {
3530 $stats = $this->context
->getStats();
3531 $stats->increment( 'edit.failures.conflict' );
3532 // Only include 'standard' namespaces to avoid creating unknown numbers of statsd metrics
3534 $this->mTitle
->getNamespace() >= NS_MAIN
&&
3535 $this->mTitle
->getNamespace() <= NS_CATEGORY_TALK
3537 $stats->increment( 'edit.failures.conflict.byNamespaceId.' . $this->mTitle
->getNamespace() );
3540 $out->wrapWikiMsg( '<h2>$1</h2>', "yourdiff" );
3542 $content1 = $this->toEditContent( $this->textbox1
);
3543 $content2 = $this->toEditContent( $this->textbox2
);
3545 $handler = ContentHandler
::getForModelID( $this->contentModel
);
3546 $de = $handler->createDifferenceEngine( $this->mArticle
->getContext() );
3547 $de->setContent( $content2, $content1 );
3549 wfMessage( 'yourtext' )->parse(),
3550 wfMessage( 'storedversion' )->text()
3553 $out->wrapWikiMsg( '<h2>$1</h2>', "yourtext" );
3554 $this->showTextbox2();
3561 public function getCancelLink() {
3563 if ( !$this->isConflict
&& $this->oldid
> 0 ) {
3564 $cancelParams['oldid'] = $this->oldid
;
3565 } elseif ( $this->getContextTitle()->isRedirect() ) {
3566 $cancelParams['redirect'] = 'no';
3568 $attrs = [ 'id' => 'mw-editform-cancel' ];
3570 return Linker
::linkKnown(
3571 $this->getContextTitle(),
3572 wfMessage( 'cancel' )->parse(),
3573 Html
::buttonAttributes( $attrs, [ 'mw-ui-quiet' ] ),
3579 * Returns the URL to use in the form's action attribute.
3580 * This is used by EditPage subclasses when simply customizing the action
3581 * variable in the constructor is not enough. This can be used when the
3582 * EditPage lives inside of a Special page rather than a custom page action.
3584 * @param Title $title Title object for which is being edited (where we go to for &action= links)
3587 protected function getActionURL( Title
$title ) {
3588 return $title->getLocalURL( [ 'action' => $this->action
] );
3592 * Check if a page was deleted while the user was editing it, before submit.
3593 * Note that we rely on the logging table, which hasn't been always there,
3594 * but that doesn't matter, because this only applies to brand new
3598 protected function wasDeletedSinceLastEdit() {
3599 if ( $this->deletedSinceEdit
!== null ) {
3600 return $this->deletedSinceEdit
;
3603 $this->deletedSinceEdit
= false;
3605 if ( !$this->mTitle
->exists() && $this->mTitle
->isDeletedQuick() ) {
3606 $this->lastDelete
= $this->getLastDelete();
3607 if ( $this->lastDelete
) {
3608 $deleteTime = wfTimestamp( TS_MW
, $this->lastDelete
->log_timestamp
);
3609 if ( $deleteTime > $this->starttime
) {
3610 $this->deletedSinceEdit
= true;
3615 return $this->deletedSinceEdit
;
3619 * @return bool|stdClass
3621 protected function getLastDelete() {
3622 $dbr = wfGetDB( DB_SLAVE
);
3623 $data = $dbr->selectRow(
3624 [ 'logging', 'user' ],
3637 'log_namespace' => $this->mTitle
->getNamespace(),
3638 'log_title' => $this->mTitle
->getDBkey(),
3639 'log_type' => 'delete',
3640 'log_action' => 'delete',
3644 [ 'LIMIT' => 1, 'ORDER BY' => 'log_timestamp DESC' ]
3646 // Quick paranoid permission checks...
3647 if ( is_object( $data ) ) {
3648 if ( $data->log_deleted
& LogPage
::DELETED_USER
) {
3649 $data->user_name
= wfMessage( 'rev-deleted-user' )->escaped();
3652 if ( $data->log_deleted
& LogPage
::DELETED_COMMENT
) {
3653 $data->log_comment
= wfMessage( 'rev-deleted-comment' )->escaped();
3661 * Get the rendered text for previewing.
3662 * @throws MWException
3665 function getPreviewText() {
3666 global $wgRawHtml, $wgAllowUserCss, $wgAllowUserJs;
3668 $stats = $this->context
->getStats();
3669 $out = $this->context
->getOutput();
3671 if ( $wgRawHtml && !$this->mTokenOk
) {
3672 // Could be an offsite preview attempt. This is very unsafe if
3673 // HTML is enabled, as it could be an attack.
3675 if ( $this->textbox1
!== '' ) {
3676 // Do not put big scary notice, if previewing the empty
3677 // string, which happens when you initially edit
3678 // a category page, due to automatic preview-on-open.
3679 $parsedNote = $out->parse( "<div class='previewnote'>" .
3680 wfMessage( 'session_fail_preview_html' )->text() . "</div>", true, /* interface */true );
3682 $stats->increment( 'edit.failures.session_loss' );
3689 $content = $this->toEditContent( $this->textbox1
);
3693 'AlternateEditPreview',
3694 [ $this, &$content, &$previewHTML, &$this->mParserOutput
] )
3696 return $previewHTML;
3699 # provide a anchor link to the editform
3700 $continueEditing = '<span class="mw-continue-editing">' .
3701 '[[#' . self
::EDITFORM_ID
. '|' . $this->context
->getLanguage()->getArrow() . ' ' .
3702 wfMessage( 'continue-editing' )->text() . ']]</span>';
3703 if ( $this->mTriedSave
&& !$this->mTokenOk
) {
3704 if ( $this->mTokenOkExceptSuffix
) {
3705 $note = wfMessage( 'token_suffix_mismatch' )->plain();
3706 $stats->increment( 'edit.failures.bad_token' );
3708 $note = wfMessage( 'session_fail_preview' )->plain();
3709 $stats->increment( 'edit.failures.session_loss' );
3711 } elseif ( $this->incompleteForm
) {
3712 $note = wfMessage( 'edit_form_incomplete' )->plain();
3713 if ( $this->mTriedSave
) {
3714 $stats->increment( 'edit.failures.incomplete_form' );
3717 $note = wfMessage( 'previewnote' )->plain() . ' ' . $continueEditing;
3720 # don't parse non-wikitext pages, show message about preview
3721 if ( $this->mTitle
->isCssJsSubpage() ||
$this->mTitle
->isCssOrJsPage() ) {
3722 if ( $this->mTitle
->isCssJsSubpage() ) {
3724 } elseif ( $this->mTitle
->isCssOrJsPage() ) {
3730 if ( $content->getModel() == CONTENT_MODEL_CSS
) {
3732 if ( $level === 'user' && !$wgAllowUserCss ) {
3735 } elseif ( $content->getModel() == CONTENT_MODEL_JAVASCRIPT
) {
3737 if ( $level === 'user' && !$wgAllowUserJs ) {
3744 # Used messages to make sure grep find them:
3745 # Messages: usercsspreview, userjspreview, sitecsspreview, sitejspreview
3746 if ( $level && $format ) {
3747 $note = "<div id='mw-{$level}{$format}preview'>" .
3748 wfMessage( "{$level}{$format}preview" )->text() .
3749 ' ' . $continueEditing . "</div>";
3753 # If we're adding a comment, we need to show the
3754 # summary as the headline
3755 if ( $this->section
=== "new" && $this->summary
!== "" ) {
3756 $content = $content->addSectionHeader( $this->summary
);
3759 $hook_args = [ $this, &$content ];
3760 ContentHandler
::runLegacyHooks( 'EditPageGetPreviewText', $hook_args );
3761 Hooks
::run( 'EditPageGetPreviewContent', $hook_args );
3763 $parserResult = $this->doPreviewParse( $content );
3764 $parserOutput = $parserResult['parserOutput'];
3765 $previewHTML = $parserResult['html'];
3766 $this->mParserOutput
= $parserOutput;
3767 $out->addParserOutputMetadata( $parserOutput );
3769 if ( count( $parserOutput->getWarnings() ) ) {
3770 $note .= "\n\n" . implode( "\n\n", $parserOutput->getWarnings() );
3773 } catch ( MWContentSerializationException
$ex ) {
3775 'content-failed-to-parse',
3776 $this->contentModel
,
3777 $this->contentFormat
,
3780 $note .= "\n\n" . $m->parse();
3784 if ( $this->isConflict
) {
3785 $conflict = '<h2 id="mw-previewconflict">'
3786 . wfMessage( 'previewconflict' )->escaped() . "</h2>\n";
3788 $conflict = '<hr />';
3791 $previewhead = "<div class='previewnote'>\n" .
3792 '<h2 id="mw-previewheader">' . wfMessage( 'preview' )->escaped() . "</h2>" .
3793 $out->parse( $note, true, /* interface */true ) . $conflict . "</div>\n";
3795 $pageViewLang = $this->mTitle
->getPageViewLanguage();
3796 $attribs = [ 'lang' => $pageViewLang->getHtmlCode(), 'dir' => $pageViewLang->getDir(),
3797 'class' => 'mw-content-' . $pageViewLang->getDir() ];
3798 $previewHTML = Html
::rawElement( 'div', $attribs, $previewHTML );
3800 return $previewhead . $previewHTML . $this->previewTextAfterContent
;
3804 * Get parser options for a preview
3805 * @return ParserOptions
3807 protected function getPreviewParserOptions() {
3808 $parserOptions = $this->page
->makeParserOptions( $this->context
);
3809 $parserOptions->setIsPreview( true );
3810 $parserOptions->setIsSectionPreview( !is_null( $this->section
) && $this->section
!== '' );
3811 $parserOptions->enableLimitReport();
3812 return $parserOptions;
3816 * Parse the page for a preview. Subclasses may override this class, in order
3817 * to parse with different options, or to otherwise modify the preview HTML.
3819 * @param Content $content The page content
3820 * @return array with keys:
3821 * - parserOutput: The ParserOutput object
3822 * - html: The HTML to be displayed
3824 protected function doPreviewParse( Content
$content ) {
3825 $user = $this->context
->getUser();
3826 $parserOptions = $this->getPreviewParserOptions();
3827 $pstContent = $content->preSaveTransform( $this->mTitle
, $user, $parserOptions );
3828 $scopedCallback = $parserOptions->setupFakeRevision(
3829 $this->mTitle
, $pstContent, $user );
3830 $parserOutput = $pstContent->getParserOutput( $this->mTitle
, null, $parserOptions );
3831 ScopedCallback
::consume( $scopedCallback );
3832 $parserOutput->setEditSectionTokens( false ); // no section edit links
3834 'parserOutput' => $parserOutput,
3835 'html' => $parserOutput->getText() ];
3841 function getTemplates() {
3842 if ( $this->preview ||
$this->section
!= '' ) {
3844 if ( !isset( $this->mParserOutput
) ) {
3847 foreach ( $this->mParserOutput
->getTemplates() as $ns => $template ) {
3848 foreach ( array_keys( $template ) as $dbk ) {
3849 $templates[] = Title
::makeTitle( $ns, $dbk );
3854 return $this->mTitle
->getTemplateLinksFrom();
3859 * Shows a bulletin board style toolbar for common editing functions.
3860 * It can be disabled in the user preferences.
3862 * @param Title $title Title object for the page being edited (optional)
3865 static function getEditToolbar( $title = null ) {
3866 global $wgContLang, $wgOut;
3867 global $wgEnableUploads, $wgForeignFileRepos;
3869 $imagesAvailable = $wgEnableUploads ||
count( $wgForeignFileRepos );
3870 $showSignature = true;
3872 $showSignature = MWNamespace
::wantSignatures( $title->getNamespace() );
3876 * $toolarray is an array of arrays each of which includes the
3877 * opening tag, the closing tag, optionally a sample text that is
3878 * inserted between the two when no selection is highlighted
3879 * and. The tip text is shown when the user moves the mouse
3882 * Images are defined in ResourceLoaderEditToolbarModule.
3886 'id' => 'mw-editbutton-bold',
3888 'close' => '\'\'\'',
3889 'sample' => wfMessage( 'bold_sample' )->text(),
3890 'tip' => wfMessage( 'bold_tip' )->text(),
3893 'id' => 'mw-editbutton-italic',
3896 'sample' => wfMessage( 'italic_sample' )->text(),
3897 'tip' => wfMessage( 'italic_tip' )->text(),
3900 'id' => 'mw-editbutton-link',
3903 'sample' => wfMessage( 'link_sample' )->text(),
3904 'tip' => wfMessage( 'link_tip' )->text(),
3907 'id' => 'mw-editbutton-extlink',
3910 'sample' => wfMessage( 'extlink_sample' )->text(),
3911 'tip' => wfMessage( 'extlink_tip' )->text(),
3914 'id' => 'mw-editbutton-headline',
3917 'sample' => wfMessage( 'headline_sample' )->text(),
3918 'tip' => wfMessage( 'headline_tip' )->text(),
3920 $imagesAvailable ?
[
3921 'id' => 'mw-editbutton-image',
3922 'open' => '[[' . $wgContLang->getNsText( NS_FILE
) . ':',
3924 'sample' => wfMessage( 'image_sample' )->text(),
3925 'tip' => wfMessage( 'image_tip' )->text(),
3927 $imagesAvailable ?
[
3928 'id' => 'mw-editbutton-media',
3929 'open' => '[[' . $wgContLang->getNsText( NS_MEDIA
) . ':',
3931 'sample' => wfMessage( 'media_sample' )->text(),
3932 'tip' => wfMessage( 'media_tip' )->text(),
3935 'id' => 'mw-editbutton-nowiki',
3936 'open' => "<nowiki>",
3937 'close' => "</nowiki>",
3938 'sample' => wfMessage( 'nowiki_sample' )->text(),
3939 'tip' => wfMessage( 'nowiki_tip' )->text(),
3942 'id' => 'mw-editbutton-signature',
3943 'open' => wfMessage( 'sig-text', '~~~~' )->inContentLanguage()->text(),
3946 'tip' => wfMessage( 'sig_tip' )->text(),
3949 'id' => 'mw-editbutton-hr',
3950 'open' => "\n----\n",
3953 'tip' => wfMessage( 'hr_tip' )->text(),
3957 $script = 'mw.loader.using("mediawiki.toolbar", function () {';
3958 foreach ( $toolarray as $tool ) {
3964 // Images are defined in ResourceLoaderEditToolbarModule
3966 // Note that we use the tip both for the ALT tag and the TITLE tag of the image.
3967 // Older browsers show a "speedtip" type message only for ALT.
3968 // Ideally these should be different, realistically they
3969 // probably don't need to be.
3977 $script .= Xml
::encodeJsCall(
3978 'mw.toolbar.addButton',
3980 ResourceLoader
::inDebugMode()
3985 $wgOut->addScript( ResourceLoader
::makeInlineScript( $script ) );
3987 $toolbar = '<div id="toolbar"></div>';
3989 Hooks
::run( 'EditPageBeforeEditToolbar', [ &$toolbar ] );
3995 * Returns an array of html code of the following checkboxes:
3998 * @param int $tabindex Current tabindex
3999 * @param array $checked Array of checkbox => bool, where bool indicates the checked
4000 * status of the checkbox
4004 public function getCheckboxes( &$tabindex, $checked ) {
4005 global $wgUseMediaWikiUIEverywhere;
4008 $user = $this->context
->getUser();
4010 // don't show the minor edit checkbox if it's a new page or section
4011 if ( !$this->isNew
) {
4012 $checkboxes['minor'] = '';
4013 $minorLabel = wfMessage( 'minoredit' )->parse();
4014 if ( $user->isAllowed( 'minoredit' ) ) {
4016 'tabindex' => ++
$tabindex,
4017 'accesskey' => wfMessage( 'accesskey-minoredit' )->text(),
4018 'id' => 'wpMinoredit',
4021 Xml
::check( 'wpMinoredit', $checked['minor'], $attribs ) .
4022 " <label for='wpMinoredit' id='mw-editpage-minoredit'" .
4023 Xml
::expandAttributes( [ 'title' => Linker
::titleAttrib( 'minoredit', 'withaccess' ) ] ) .
4024 ">{$minorLabel}</label>";
4026 if ( $wgUseMediaWikiUIEverywhere ) {
4027 $checkboxes['minor'] = Html
::openElement( 'div', [ 'class' => 'mw-ui-checkbox' ] ) .
4029 Html
::closeElement( 'div' );
4031 $checkboxes['minor'] = $minorEditHtml;
4036 $watchLabel = wfMessage( 'watchthis' )->parse();
4037 $checkboxes['watch'] = '';
4038 if ( $user->isLoggedIn() ) {
4040 'tabindex' => ++
$tabindex,
4041 'accesskey' => wfMessage( 'accesskey-watch' )->text(),
4042 'id' => 'wpWatchthis',
4045 Xml
::check( 'wpWatchthis', $checked['watch'], $attribs ) .
4046 " <label for='wpWatchthis' id='mw-editpage-watch'" .
4047 Xml
::expandAttributes( [ 'title' => Linker
::titleAttrib( 'watch', 'withaccess' ) ] ) .
4048 ">{$watchLabel}</label>";
4049 if ( $wgUseMediaWikiUIEverywhere ) {
4050 $checkboxes['watch'] = Html
::openElement( 'div', [ 'class' => 'mw-ui-checkbox' ] ) .
4052 Html
::closeElement( 'div' );
4054 $checkboxes['watch'] = $watchThisHtml;
4057 Hooks
::run( 'EditPageBeforeEditChecks', [ &$this, &$checkboxes, &$tabindex ] );
4062 * Returns an array of html code of the following buttons:
4063 * save, diff, preview and live
4065 * @param int $tabindex Current tabindex
4069 public function getEditButtons( &$tabindex ) {
4072 $labelAsPublish = $this->mArticle
->getContext()->getConfig()->get( 'EditButtonPublishNotSave' );
4073 if ( $labelAsPublish ) {
4074 $buttonLabelKey = $this->isNew ?
'publishpage' : 'publishchanges';
4076 $buttonLabelKey = $this->isNew ?
'savearticle' : 'savechanges';
4078 $buttonLabel = wfMessage( $buttonLabelKey )->text();
4082 'tabindex' => ++
$tabindex,
4083 ] + Linker
::tooltipAndAccesskeyAttribs( 'save' );
4084 $buttons['save'] = Html
::submitButton( $buttonLabel, $attribs, [ 'mw-ui-constructive' ] );
4086 ++
$tabindex; // use the same for preview and live preview
4088 'id' => 'wpPreview',
4089 'name' => 'wpPreview',
4090 'tabindex' => $tabindex,
4091 ] + Linker
::tooltipAndAccesskeyAttribs( 'preview' );
4092 $buttons['preview'] = Html
::submitButton( wfMessage( 'showpreview' )->text(),
4094 $buttons['live'] = '';
4099 'tabindex' => ++
$tabindex,
4100 ] + Linker
::tooltipAndAccesskeyAttribs( 'diff' );
4101 $buttons['diff'] = Html
::submitButton( wfMessage( 'showdiff' )->text(),
4104 Hooks
::run( 'EditPageBeforeEditButtons', [ &$this, &$buttons, &$tabindex ] );
4109 * Creates a basic error page which informs the user that
4110 * they have attempted to edit a nonexistent section.
4112 function noSuchSectionPage() {
4113 $out = $this->context
->getOutput();
4114 $out->prepareErrorPage( wfMessage( 'nosuchsectiontitle' ) );
4116 $res = wfMessage( 'nosuchsectiontext', $this->section
)->parseAsBlock();
4117 Hooks
::run( 'EditPageNoSuchSection', [ &$this, &$res ] );
4118 $out->addHTML( $res );
4120 $out->returnToMain( false, $this->mTitle
);
4124 * Show "your edit contains spam" page with your diff and text
4126 * @param string|array|bool $match Text (or array of texts) which triggered one or more filters
4128 public function spamPageWithContent( $match = false ) {
4129 $this->textbox2
= $this->textbox1
;
4131 if ( is_array( $match ) ) {
4132 $match = $this->context
->getLanguage()->listToText( $match );
4134 $out = $this->context
->getOutput();
4135 $out->prepareErrorPage( wfMessage( 'spamprotectiontitle' ) );
4137 $out->addHTML( '<div id="spamprotected">' );
4138 $out->addWikiMsg( 'spamprotectiontext' );
4140 $out->addWikiMsg( 'spamprotectionmatch', wfEscapeWikiText( $match ) );
4142 $out->addHTML( '</div>' );
4144 $out->wrapWikiMsg( '<h2>$1</h2>', "yourdiff" );
4147 $out->wrapWikiMsg( '<h2>$1</h2>', "yourtext" );
4148 $this->showTextbox2();
4150 $out->addReturnTo( $this->getContextTitle(), [ 'action' => 'edit' ] );
4154 * Check if the browser is on a blacklist of user-agents known to
4155 * mangle UTF-8 data on form submission. Returns true if Unicode
4156 * should make it through, false if it's known to be a problem.
4159 private function checkUnicodeCompliantBrowser() {
4160 global $wgBrowserBlackList;
4162 $currentbrowser = $this->context
->getRequest()->getHeader( 'User-Agent' );
4163 if ( $currentbrowser === false ) {
4164 // No User-Agent header sent? Trust it by default...
4168 foreach ( $wgBrowserBlackList as $browser ) {
4169 if ( preg_match( $browser, $currentbrowser ) ) {
4177 * Filter an input field through a Unicode de-armoring process if it
4178 * came from an old browser with known broken Unicode editing issues.
4180 * @param WebRequest $request
4181 * @param string $field
4184 protected function safeUnicodeInput( $request, $field ) {
4185 $text = rtrim( $request->getText( $field ) );
4186 return $request->getBool( 'safemode' )
4187 ?
$this->unmakeSafe( $text )
4192 * Filter an output field through a Unicode armoring process if it is
4193 * going to an old browser with known broken Unicode editing issues.
4195 * @param string $text
4198 protected function safeUnicodeOutput( $text ) {
4199 return $this->checkUnicodeCompliantBrowser()
4201 : $this->makesafe( $text );
4205 * A number of web browsers are known to corrupt non-ASCII characters
4206 * in a UTF-8 text editing environment. To protect against this,
4207 * detected browsers will be served an armored version of the text,
4208 * with non-ASCII chars converted to numeric HTML character references.
4210 * Preexisting such character references will have a 0 added to them
4211 * to ensure that round-trips do not alter the original data.
4213 * @param string $invalue
4216 private function makeSafe( $invalue ) {
4217 // Armor existing references for reversibility.
4218 $invalue = strtr( $invalue, [ "&#x" => "�" ] );
4223 $valueLength = strlen( $invalue );
4224 for ( $i = 0; $i < $valueLength; $i++
) {
4225 $bytevalue = ord( $invalue[$i] );
4226 if ( $bytevalue <= 0x7F ) { // 0xxx xxxx
4227 $result .= chr( $bytevalue );
4229 } elseif ( $bytevalue <= 0xBF ) { // 10xx xxxx
4230 $working = $working << 6;
4231 $working +
= ( $bytevalue & 0x3F );
4233 if ( $bytesleft <= 0 ) {
4234 $result .= "&#x" . strtoupper( dechex( $working ) ) . ";";
4236 } elseif ( $bytevalue <= 0xDF ) { // 110x xxxx
4237 $working = $bytevalue & 0x1F;
4239 } elseif ( $bytevalue <= 0xEF ) { // 1110 xxxx
4240 $working = $bytevalue & 0x0F;
4242 } else { // 1111 0xxx
4243 $working = $bytevalue & 0x07;
4251 * Reverse the previously applied transliteration of non-ASCII characters
4252 * back to UTF-8. Used to protect data from corruption by broken web browsers
4253 * as listed in $wgBrowserBlackList.
4255 * @param string $invalue
4258 private function unmakeSafe( $invalue ) {
4260 $valueLength = strlen( $invalue );
4261 for ( $i = 0; $i < $valueLength; $i++
) {
4262 if ( ( substr( $invalue, $i, 3 ) == "&#x" ) && ( $invalue[$i +
3] != '0' ) ) {
4266 $hexstring .= $invalue[$i];
4268 } while ( ctype_xdigit( $invalue[$i] ) && ( $i < strlen( $invalue ) ) );
4270 // Do some sanity checks. These aren't needed for reversibility,
4271 // but should help keep the breakage down if the editor
4272 // breaks one of the entities whilst editing.
4273 if ( ( substr( $invalue, $i, 1 ) == ";" ) && ( strlen( $hexstring ) <= 6 ) ) {
4274 $codepoint = hexdec( $hexstring );
4275 $result .= UtfNormal\Utils
::codepointToUtf8( $codepoint );
4277 $result .= "&#x" . $hexstring . substr( $invalue, $i, 1 );
4280 $result .= substr( $invalue, $i, 1 );
4283 // reverse the transform that we made for reversibility reasons.
4284 return strtr( $result, [ "�" => "&#x" ] );