Merge "MessageCache: replace should actually replace, not reload"
[lhc/web/wiklou.git] / includes / EditPage.php
1 <?php
2 /**
3 * User interface for page editing.
4 *
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.
9 *
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.
14 *
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
19 *
20 * @file
21 */
22
23 use MediaWiki\EditPage\TextboxBuilder;
24 use MediaWiki\EditPage\TextConflictHelper;
25 use MediaWiki\Logger\LoggerFactory;
26 use MediaWiki\MediaWikiServices;
27 use Wikimedia\ScopedCallback;
28
29 /**
30 * The edit page/HTML interface (split from Article)
31 * The actual database and text munging is still in Article,
32 * but it should get easier to call those from alternate
33 * interfaces.
34 *
35 * EditPage cares about two distinct titles:
36 * $this->mContextTitle is the page that forms submit to, links point to,
37 * redirects go to, etc. $this->mTitle (as well as $mArticle) is the
38 * page in the database that is actually being edited. These are
39 * usually the same, but they are now allowed to be different.
40 *
41 * Surgeon General's Warning: prolonged exposure to this class is known to cause
42 * headaches, which may be fatal.
43 */
44 class EditPage {
45 /**
46 * Used for Unicode support checks
47 */
48 const UNICODE_CHECK = 'ℳ𝒲β™₯π“Šπ“ƒπ’Ύπ’Έβ„΄π’Ήβ„―';
49
50 /**
51 * Status: Article successfully updated
52 */
53 const AS_SUCCESS_UPDATE = 200;
54
55 /**
56 * Status: Article successfully created
57 */
58 const AS_SUCCESS_NEW_ARTICLE = 201;
59
60 /**
61 * Status: Article update aborted by a hook function
62 */
63 const AS_HOOK_ERROR = 210;
64
65 /**
66 * Status: A hook function returned an error
67 */
68 const AS_HOOK_ERROR_EXPECTED = 212;
69
70 /**
71 * Status: User is blocked from editing this page
72 */
73 const AS_BLOCKED_PAGE_FOR_USER = 215;
74
75 /**
76 * Status: Content too big (> $wgMaxArticleSize)
77 */
78 const AS_CONTENT_TOO_BIG = 216;
79
80 /**
81 * Status: this anonymous user is not allowed to edit this page
82 */
83 const AS_READ_ONLY_PAGE_ANON = 218;
84
85 /**
86 * Status: this logged in user is not allowed to edit this page
87 */
88 const AS_READ_ONLY_PAGE_LOGGED = 219;
89
90 /**
91 * Status: wiki is in readonly mode (wfReadOnly() == true)
92 */
93 const AS_READ_ONLY_PAGE = 220;
94
95 /**
96 * Status: rate limiter for action 'edit' was tripped
97 */
98 const AS_RATE_LIMITED = 221;
99
100 /**
101 * Status: article was deleted while editing and param wpRecreate == false or form
102 * was not posted
103 */
104 const AS_ARTICLE_WAS_DELETED = 222;
105
106 /**
107 * Status: user tried to create this page, but is not allowed to do that
108 * ( Title->userCan('create') == false )
109 */
110 const AS_NO_CREATE_PERMISSION = 223;
111
112 /**
113 * Status: user tried to create a blank page and wpIgnoreBlankArticle == false
114 */
115 const AS_BLANK_ARTICLE = 224;
116
117 /**
118 * Status: (non-resolvable) edit conflict
119 */
120 const AS_CONFLICT_DETECTED = 225;
121
122 /**
123 * Status: no edit summary given and the user has forceeditsummary set and the user is not
124 * editing in his own userspace or talkspace and wpIgnoreBlankSummary == false
125 */
126 const AS_SUMMARY_NEEDED = 226;
127
128 /**
129 * Status: user tried to create a new section without content
130 */
131 const AS_TEXTBOX_EMPTY = 228;
132
133 /**
134 * Status: article is too big (> $wgMaxArticleSize), after merging in the new section
135 */
136 const AS_MAX_ARTICLE_SIZE_EXCEEDED = 229;
137
138 /**
139 * Status: WikiPage::doEdit() was unsuccessful
140 */
141 const AS_END = 231;
142
143 /**
144 * Status: summary contained spam according to one of the regexes in $wgSummarySpamRegex
145 */
146 const AS_SPAM_ERROR = 232;
147
148 /**
149 * Status: anonymous user is not allowed to upload (User::isAllowed('upload') == false)
150 */
151 const AS_IMAGE_REDIRECT_ANON = 233;
152
153 /**
154 * Status: logged in user is not allowed to upload (User::isAllowed('upload') == false)
155 */
156 const AS_IMAGE_REDIRECT_LOGGED = 234;
157
158 /**
159 * Status: user tried to modify the content model, but is not allowed to do that
160 * ( User::isAllowed('editcontentmodel') == false )
161 */
162 const AS_NO_CHANGE_CONTENT_MODEL = 235;
163
164 /**
165 * Status: user tried to create self-redirect (redirect to the same article) and
166 * wpIgnoreSelfRedirect == false
167 */
168 const AS_SELF_REDIRECT = 236;
169
170 /**
171 * Status: an error relating to change tagging. Look at the message key for
172 * more details
173 */
174 const AS_CHANGE_TAG_ERROR = 237;
175
176 /**
177 * Status: can't parse content
178 */
179 const AS_PARSE_ERROR = 240;
180
181 /**
182 * Status: when changing the content model is disallowed due to
183 * $wgContentHandlerUseDB being false
184 */
185 const AS_CANNOT_USE_CUSTOM_MODEL = 241;
186
187 /**
188 * Status: edit rejected because browser doesn't support Unicode.
189 */
190 const AS_UNICODE_NOT_SUPPORTED = 242;
191
192 /**
193 * HTML id and name for the beginning of the edit form.
194 */
195 const EDITFORM_ID = 'editform';
196
197 /**
198 * Prefix of key for cookie used to pass post-edit state.
199 * The revision id edited is added after this
200 */
201 const POST_EDIT_COOKIE_KEY_PREFIX = 'PostEditRevision';
202
203 /**
204 * Duration of PostEdit cookie, in seconds.
205 * The cookie will be removed instantly if the JavaScript runs.
206 *
207 * Otherwise, though, we don't want the cookies to accumulate.
208 * RFC 2109 ( https://www.ietf.org/rfc/rfc2109.txt ) specifies a possible
209 * limit of only 20 cookies per domain. This still applies at least to some
210 * versions of IE without full updates:
211 * https://blogs.msdn.com/b/ieinternals/archive/2009/08/20/wininet-ie-cookie-internals-faq.aspx
212 *
213 * A value of 20 minutes should be enough to take into account slow loads and minor
214 * clock skew while still avoiding cookie accumulation when JavaScript is turned off.
215 */
216 const POST_EDIT_COOKIE_DURATION = 1200;
217
218 /**
219 * @deprecated for public usage since 1.30 use EditPage::getArticle()
220 * @var Article
221 */
222 public $mArticle;
223 /** @var WikiPage */
224 private $page;
225
226 /**
227 * @deprecated for public usage since 1.30 use EditPage::getTitle()
228 * @var Title
229 */
230 public $mTitle;
231
232 /** @var null|Title */
233 private $mContextTitle = null;
234
235 /** @var string */
236 public $action = 'submit';
237
238 /** @var bool Whether an edit conflict needs to be resolved. Detected based on whether
239 * $editRevId is different than the latest revision. When a conflict has successfully
240 * been resolved by a 3-way-merge, this field is set to false.
241 */
242 public $isConflict = false;
243
244 /** @var bool New page or new section */
245 public $isNew = false;
246
247 /** @var bool */
248 public $deletedSinceEdit;
249
250 /** @var string */
251 public $formtype;
252
253 /** @var bool
254 * True the first time the edit form is rendered, false after re-rendering
255 * with diff, save prompts, etc.
256 */
257 public $firsttime;
258
259 /** @var bool|stdClass */
260 public $lastDelete;
261
262 /** @var bool */
263 public $mTokenOk = false;
264
265 /** @var bool */
266 public $mTokenOkExceptSuffix = false;
267
268 /** @var bool */
269 public $mTriedSave = false;
270
271 /** @var bool */
272 public $incompleteForm = false;
273
274 /** @var bool */
275 public $tooBig = false;
276
277 /** @var bool */
278 public $missingComment = false;
279
280 /** @var bool */
281 public $missingSummary = false;
282
283 /** @var bool */
284 public $allowBlankSummary = false;
285
286 /** @var bool */
287 protected $blankArticle = false;
288
289 /** @var bool */
290 protected $allowBlankArticle = false;
291
292 /** @var bool */
293 protected $selfRedirect = false;
294
295 /** @var bool */
296 protected $allowSelfRedirect = false;
297
298 /** @var string */
299 public $autoSumm = '';
300
301 /** @var string */
302 public $hookError = '';
303
304 /** @var ParserOutput */
305 public $mParserOutput;
306
307 /** @var bool Has a summary been preset using GET parameter &summary= ? */
308 public $hasPresetSummary = false;
309
310 /** @var Revision|bool|null A revision object corresponding to $this->editRevId. */
311 public $mBaseRevision = false;
312
313 /** @var bool */
314 public $mShowSummaryField = true;
315
316 # Form values
317
318 /** @var bool */
319 public $save = false;
320
321 /** @var bool */
322 public $preview = false;
323
324 /** @var bool */
325 public $diff = false;
326
327 /** @var bool */
328 public $minoredit = false;
329
330 /** @var bool */
331 public $watchthis = false;
332
333 /** @var bool */
334 public $recreate = false;
335
336 /** @var string
337 * Page content input field.
338 */
339 public $textbox1 = '';
340
341 /** @var string */
342 public $textbox2 = '';
343
344 /** @var string */
345 public $summary = '';
346
347 /** @var bool
348 * If true, hide the summary field.
349 */
350 public $nosummary = false;
351
352 /** @var string
353 * Timestamp of the latest revision of the page when editing was initiated
354 * on the client.
355 */
356 public $edittime = '';
357
358 /** @var int Revision ID of the latest revision of the page when editing
359 * was initiated on the client. This is used to detect and resolve edit
360 * conflicts.
361 *
362 * @note 0 if the page did not exist at that time.
363 * @note When starting an edit from an old revision, this still records the current
364 * revision at the time, not the one the edit is based on.
365 *
366 * @see $oldid
367 * @see getBaseRevision()
368 */
369 private $editRevId = null;
370
371 /** @var string */
372 public $section = '';
373
374 /** @var string */
375 public $sectiontitle = '';
376
377 /** @var string
378 * Timestamp from the first time the edit form was rendered.
379 */
380 public $starttime = '';
381
382 /** @var int Revision ID the edit is based on, or 0 if it's the current revision.
383 * FIXME: This isn't used in conflict resolution--provide a better
384 * justification or merge with parentRevId.
385 * @see $editRevId
386 */
387 public $oldid = 0;
388
389 /** @var int Revision ID the edit is based on, adjusted when an edit conflict is resolved.
390 * @see $editRevId
391 * @see $oldid
392 * @see getparentRevId()
393 */
394 public $parentRevId = 0;
395
396 /** @var string */
397 public $editintro = '';
398
399 /** @var null */
400 public $scrolltop = null;
401
402 /** @var bool */
403 public $bot = true;
404
405 /** @var string */
406 public $contentModel;
407
408 /** @var null|string */
409 public $contentFormat = null;
410
411 /** @var null|array */
412 private $changeTags = null;
413
414 # Placeholders for text injection by hooks (must be HTML)
415 # extensions should take care to _append_ to the present value
416
417 /** @var string Before even the preview */
418 public $editFormPageTop = '';
419 public $editFormTextTop = '';
420 public $editFormTextBeforeContent = '';
421 public $editFormTextAfterWarn = '';
422 public $editFormTextAfterTools = '';
423 public $editFormTextBottom = '';
424 public $editFormTextAfterContent = '';
425 public $previewTextAfterContent = '';
426 public $mPreloadContent = null;
427
428 /* $didSave should be set to true whenever an article was successfully altered. */
429 public $didSave = false;
430 public $undidRev = 0;
431
432 public $suppressIntro = false;
433
434 /** @var bool */
435 protected $edit;
436
437 /** @var bool|int */
438 protected $contentLength = false;
439
440 /**
441 * @var bool Set in ApiEditPage, based on ContentHandler::allowsDirectApiEditing
442 */
443 private $enableApiEditOverride = false;
444
445 /**
446 * @var IContextSource
447 */
448 protected $context;
449
450 /**
451 * @var bool Whether an old revision is edited
452 */
453 private $isOldRev = false;
454
455 /**
456 * @var string|null What the user submitted in the 'wpUnicodeCheck' field
457 */
458 private $unicodeCheck;
459
460 /**
461 * Factory function to create an edit conflict helper
462 *
463 * @var callable
464 */
465 private $editConflictHelperFactory;
466
467 /**
468 * @var TextConflictHelper|null
469 */
470 private $editConflictHelper;
471
472 /**
473 * @param Article $article
474 */
475 public function __construct( Article $article ) {
476 $this->mArticle = $article;
477 $this->page = $article->getPage(); // model object
478 $this->mTitle = $article->getTitle();
479 $this->context = $article->getContext();
480
481 $this->contentModel = $this->mTitle->getContentModel();
482
483 $handler = ContentHandler::getForModelID( $this->contentModel );
484 $this->contentFormat = $handler->getDefaultFormat();
485 $this->editConflictHelperFactory = [ $this, 'newTextConflictHelper' ];
486 }
487
488 /**
489 * @return Article
490 */
491 public function getArticle() {
492 return $this->mArticle;
493 }
494
495 /**
496 * @since 1.28
497 * @return IContextSource
498 */
499 public function getContext() {
500 return $this->context;
501 }
502
503 /**
504 * @since 1.19
505 * @return Title
506 */
507 public function getTitle() {
508 return $this->mTitle;
509 }
510
511 /**
512 * Set the context Title object
513 *
514 * @param Title|null $title Title object or null
515 */
516 public function setContextTitle( $title ) {
517 $this->mContextTitle = $title;
518 }
519
520 /**
521 * Get the context title object.
522 *
523 * If not set, $wgTitle will be returned, but this is deprecated. This will
524 * throw an exception.
525 *
526 * @return Title
527 */
528 public function getContextTitle() {
529 if ( is_null( $this->mContextTitle ) ) {
530 wfDeprecated( __METHOD__ . ' called with no title set', '1.32' );
531 global $wgTitle;
532 return $wgTitle;
533 } else {
534 return $this->mContextTitle;
535 }
536 }
537
538 /**
539 * Returns if the given content model is editable.
540 *
541 * @param string $modelId The ID of the content model to test. Use CONTENT_MODEL_XXX constants.
542 * @return bool
543 * @throws MWException If $modelId has no known handler
544 */
545 public function isSupportedContentModel( $modelId ) {
546 return $this->enableApiEditOverride === true ||
547 ContentHandler::getForModelID( $modelId )->supportsDirectEditing();
548 }
549
550 /**
551 * Allow editing of content that supports API direct editing, but not general
552 * direct editing. Set to false by default.
553 *
554 * @param bool $enableOverride
555 */
556 public function setApiEditOverride( $enableOverride ) {
557 $this->enableApiEditOverride = $enableOverride;
558 }
559
560 /**
561 * @deprecated since 1.29, call edit directly
562 */
563 public function submit() {
564 wfDeprecated( __METHOD__, '1.29' );
565 $this->edit();
566 }
567
568 /**
569 * This is the function that gets called for "action=edit". It
570 * sets up various member variables, then passes execution to
571 * another function, usually showEditForm()
572 *
573 * The edit form is self-submitting, so that when things like
574 * preview and edit conflicts occur, we get the same form back
575 * with the extra stuff added. Only when the final submission
576 * is made and all is well do we actually save and redirect to
577 * the newly-edited page.
578 */
579 public function edit() {
580 // Allow extensions to modify/prevent this form or submission
581 if ( !Hooks::run( 'AlternateEdit', [ $this ] ) ) {
582 return;
583 }
584
585 wfDebug( __METHOD__ . ": enter\n" );
586
587 $request = $this->context->getRequest();
588 // If they used redlink=1 and the page exists, redirect to the main article
589 if ( $request->getBool( 'redlink' ) && $this->mTitle->exists() ) {
590 $this->context->getOutput()->redirect( $this->mTitle->getFullURL() );
591 return;
592 }
593
594 $this->importFormData( $request );
595 $this->firsttime = false;
596
597 if ( wfReadOnly() && $this->save ) {
598 // Force preview
599 $this->save = false;
600 $this->preview = true;
601 }
602
603 if ( $this->save ) {
604 $this->formtype = 'save';
605 } elseif ( $this->preview ) {
606 $this->formtype = 'preview';
607 } elseif ( $this->diff ) {
608 $this->formtype = 'diff';
609 } else { # First time through
610 $this->firsttime = true;
611 if ( $this->previewOnOpen() ) {
612 $this->formtype = 'preview';
613 } else {
614 $this->formtype = 'initial';
615 }
616 }
617
618 $permErrors = $this->getEditPermissionErrors( $this->save ? 'secure' : 'full' );
619 if ( $permErrors ) {
620 wfDebug( __METHOD__ . ": User can't edit\n" );
621
622 // track block with a cookie if it doesn't exists already
623 $this->context->getUser()->trackBlockWithCookie();
624
625 // Auto-block user's IP if the account was "hard" blocked
626 if ( !wfReadOnly() ) {
627 DeferredUpdates::addCallableUpdate( function () {
628 $this->context->getUser()->spreadAnyEditBlock();
629 } );
630 }
631 $this->displayPermissionsError( $permErrors );
632
633 return;
634 }
635
636 $revision = $this->mArticle->getRevisionFetched();
637 // Disallow editing revisions with content models different from the current one
638 // Undo edits being an exception in order to allow reverting content model changes.
639 if ( $revision
640 && $revision->getContentModel() !== $this->contentModel
641 ) {
642 $prevRev = null;
643 if ( $this->undidRev ) {
644 $undidRevObj = Revision::newFromId( $this->undidRev );
645 $prevRev = $undidRevObj ? $undidRevObj->getPrevious() : null;
646 }
647 if ( !$this->undidRev
648 || !$prevRev
649 || $prevRev->getContentModel() !== $this->contentModel
650 ) {
651 $this->displayViewSourcePage(
652 $this->getContentObject(),
653 $this->context->msg(
654 'contentmodelediterror',
655 $revision->getContentModel(),
656 $this->contentModel
657 )->plain()
658 );
659 return;
660 }
661 }
662
663 $this->isConflict = false;
664
665 # Show applicable editing introductions
666 if ( $this->formtype == 'initial' || $this->firsttime ) {
667 $this->showIntro();
668 }
669
670 # Attempt submission here. This will check for edit conflicts,
671 # and redundantly check for locked database, blocked IPs, etc.
672 # that edit() already checked just in case someone tries to sneak
673 # in the back door with a hand-edited submission URL.
674
675 if ( 'save' == $this->formtype ) {
676 $resultDetails = null;
677 $status = $this->attemptSave( $resultDetails );
678 if ( !$this->handleStatus( $status, $resultDetails ) ) {
679 return;
680 }
681 }
682
683 # First time through: get contents, set time for conflict
684 # checking, etc.
685 if ( 'initial' == $this->formtype || $this->firsttime ) {
686 if ( $this->initialiseForm() === false ) {
687 $out = $this->context->getOutput();
688 if ( $out->getRedirect() === '' ) { // mcrundo hack redirects, don't override it
689 $this->noSuchSectionPage();
690 }
691 return;
692 }
693
694 if ( !$this->mTitle->getArticleID() ) {
695 Hooks::run( 'EditFormPreloadText', [ &$this->textbox1, &$this->mTitle ] );
696 } else {
697 Hooks::run( 'EditFormInitialText', [ $this ] );
698 }
699
700 }
701
702 $this->showEditForm();
703 }
704
705 /**
706 * @param string $rigor Same format as Title::getUserPermissionErrors()
707 * @return array
708 */
709 protected function getEditPermissionErrors( $rigor = 'secure' ) {
710 $user = $this->context->getUser();
711 $permErrors = $this->mTitle->getUserPermissionsErrors( 'edit', $user, $rigor );
712 # Can this title be created?
713 if ( !$this->mTitle->exists() ) {
714 $permErrors = array_merge(
715 $permErrors,
716 wfArrayDiff2(
717 $this->mTitle->getUserPermissionsErrors( 'create', $user, $rigor ),
718 $permErrors
719 )
720 );
721 }
722 # Ignore some permissions errors when a user is just previewing/viewing diffs
723 $remove = [];
724 foreach ( $permErrors as $error ) {
725 if ( ( $this->preview || $this->diff )
726 && (
727 $error[0] == 'blockedtext' ||
728 $error[0] == 'autoblockedtext' ||
729 $error[0] == 'systemblockedtext'
730 )
731 ) {
732 $remove[] = $error;
733 }
734 }
735 $permErrors = wfArrayDiff2( $permErrors, $remove );
736
737 return $permErrors;
738 }
739
740 /**
741 * Display a permissions error page, like OutputPage::showPermissionsErrorPage(),
742 * but with the following differences:
743 * - If redlink=1, the user will be redirected to the page
744 * - If there is content to display or the error occurs while either saving,
745 * previewing or showing the difference, it will be a
746 * "View source for ..." page displaying the source code after the error message.
747 *
748 * @since 1.19
749 * @param array $permErrors Array of permissions errors, as returned by
750 * Title::getUserPermissionsErrors().
751 * @throws PermissionsError
752 */
753 protected function displayPermissionsError( array $permErrors ) {
754 $out = $this->context->getOutput();
755 if ( $this->context->getRequest()->getBool( 'redlink' ) ) {
756 // The edit page was reached via a red link.
757 // Redirect to the article page and let them click the edit tab if
758 // they really want a permission error.
759 $out->redirect( $this->mTitle->getFullURL() );
760 return;
761 }
762
763 $content = $this->getContentObject();
764
765 # Use the normal message if there's nothing to display
766 if ( $this->firsttime && ( !$content || $content->isEmpty() ) ) {
767 $action = $this->mTitle->exists() ? 'edit' :
768 ( $this->mTitle->isTalkPage() ? 'createtalk' : 'createpage' );
769 throw new PermissionsError( $action, $permErrors );
770 }
771
772 $this->displayViewSourcePage(
773 $content,
774 $out->formatPermissionsErrorMessage( $permErrors, 'edit' )
775 );
776 }
777
778 /**
779 * Display a read-only View Source page
780 * @param Content $content
781 * @param string $errorMessage additional wikitext error message to display
782 */
783 protected function displayViewSourcePage( Content $content, $errorMessage = '' ) {
784 $out = $this->context->getOutput();
785 Hooks::run( 'EditPage::showReadOnlyForm:initial', [ $this, &$out ] );
786
787 $out->setRobotPolicy( 'noindex,nofollow' );
788 $out->setPageTitle( $this->context->msg(
789 'viewsource-title',
790 $this->getContextTitle()->getPrefixedText()
791 ) );
792 $out->addBacklinkSubtitle( $this->getContextTitle() );
793 $out->addHTML( $this->editFormPageTop );
794 $out->addHTML( $this->editFormTextTop );
795
796 if ( $errorMessage !== '' ) {
797 $out->addWikiText( $errorMessage );
798 $out->addHTML( "<hr />\n" );
799 }
800
801 # If the user made changes, preserve them when showing the markup
802 # (This happens when a user is blocked during edit, for instance)
803 if ( !$this->firsttime ) {
804 $text = $this->textbox1;
805 $out->addWikiMsg( 'viewyourtext' );
806 } else {
807 try {
808 $text = $this->toEditText( $content );
809 } catch ( MWException $e ) {
810 # Serialize using the default format if the content model is not supported
811 # (e.g. for an old revision with a different model)
812 $text = $content->serialize();
813 }
814 $out->addWikiMsg( 'viewsourcetext' );
815 }
816
817 $out->addHTML( $this->editFormTextBeforeContent );
818 $this->showTextbox( $text, 'wpTextbox1', [ 'readonly' ] );
819 $out->addHTML( $this->editFormTextAfterContent );
820
821 $out->addHTML( $this->makeTemplatesOnThisPageList( $this->getTemplates() ) );
822
823 $out->addModules( 'mediawiki.action.edit.collapsibleFooter' );
824
825 $out->addHTML( $this->editFormTextBottom );
826 if ( $this->mTitle->exists() ) {
827 $out->returnToMain( null, $this->mTitle );
828 }
829 }
830
831 /**
832 * Should we show a preview when the edit form is first shown?
833 *
834 * @return bool
835 */
836 protected function previewOnOpen() {
837 $config = $this->context->getConfig();
838 $previewOnOpenNamespaces = $config->get( 'PreviewOnOpenNamespaces' );
839 $request = $this->context->getRequest();
840 if ( $config->get( 'RawHtml' ) ) {
841 // If raw HTML is enabled, disable preview on open
842 // since it has to be posted with a token for
843 // security reasons
844 return false;
845 }
846 if ( $request->getVal( 'preview' ) == 'yes' ) {
847 // Explicit override from request
848 return true;
849 } elseif ( $request->getVal( 'preview' ) == 'no' ) {
850 // Explicit override from request
851 return false;
852 } elseif ( $this->section == 'new' ) {
853 // Nothing *to* preview for new sections
854 return false;
855 } elseif ( ( $request->getVal( 'preload' ) !== null || $this->mTitle->exists() )
856 && $this->context->getUser()->getOption( 'previewonfirst' )
857 ) {
858 // Standard preference behavior
859 return true;
860 } elseif ( !$this->mTitle->exists()
861 && isset( $previewOnOpenNamespaces[$this->mTitle->getNamespace()] )
862 && $previewOnOpenNamespaces[$this->mTitle->getNamespace()]
863 ) {
864 // Categories are special
865 return true;
866 } else {
867 return false;
868 }
869 }
870
871 /**
872 * Checks whether the user entered a skin name in uppercase,
873 * e.g. "User:Example/Monobook.css" instead of "monobook.css"
874 *
875 * @return bool
876 */
877 protected function isWrongCaseUserConfigPage() {
878 if ( $this->mTitle->isUserConfigPage() ) {
879 $name = $this->mTitle->getSkinFromConfigSubpage();
880 $skins = array_merge(
881 array_keys( Skin::getSkinNames() ),
882 [ 'common' ]
883 );
884 return !in_array( $name, $skins )
885 && in_array( strtolower( $name ), $skins );
886 } else {
887 return false;
888 }
889 }
890
891 /**
892 * Returns whether section editing is supported for the current page.
893 * Subclasses may override this to replace the default behavior, which is
894 * to check ContentHandler::supportsSections.
895 *
896 * @return bool True if this edit page supports sections, false otherwise.
897 */
898 protected function isSectionEditSupported() {
899 $contentHandler = ContentHandler::getForTitle( $this->mTitle );
900 return $contentHandler->supportsSections();
901 }
902
903 /**
904 * This function collects the form data and uses it to populate various member variables.
905 * @param WebRequest &$request
906 * @throws ErrorPageError
907 */
908 public function importFormData( &$request ) {
909 # Section edit can come from either the form or a link
910 $this->section = $request->getVal( 'wpSection', $request->getVal( 'section' ) );
911
912 if ( $this->section !== null && $this->section !== '' && !$this->isSectionEditSupported() ) {
913 throw new ErrorPageError( 'sectioneditnotsupported-title', 'sectioneditnotsupported-text' );
914 }
915
916 $this->isNew = !$this->mTitle->exists() || $this->section == 'new';
917
918 if ( $request->wasPosted() ) {
919 # These fields need to be checked for encoding.
920 # Also remove trailing whitespace, but don't remove _initial_
921 # whitespace from the text boxes. This may be significant formatting.
922 $this->textbox1 = rtrim( $request->getText( 'wpTextbox1' ) );
923 if ( !$request->getCheck( 'wpTextbox2' ) ) {
924 // Skip this if wpTextbox2 has input, it indicates that we came
925 // from a conflict page with raw page text, not a custom form
926 // modified by subclasses
927 $textbox1 = $this->importContentFormData( $request );
928 if ( $textbox1 !== null ) {
929 $this->textbox1 = $textbox1;
930 }
931 }
932
933 $this->unicodeCheck = $request->getText( 'wpUnicodeCheck' );
934
935 $this->summary = $request->getText( 'wpSummary' );
936
937 # If the summary consists of a heading, e.g. '==Foobar==', extract the title from the
938 # header syntax, e.g. 'Foobar'. This is mainly an issue when we are using wpSummary for
939 # section titles.
940 $this->summary = preg_replace( '/^\s*=+\s*(.*?)\s*=+\s*$/', '$1', $this->summary );
941
942 # Treat sectiontitle the same way as summary.
943 # Note that wpSectionTitle is not yet a part of the actual edit form, as wpSummary is
944 # currently doing double duty as both edit summary and section title. Right now this
945 # is just to allow API edits to work around this limitation, but this should be
946 # incorporated into the actual edit form when EditPage is rewritten (T20654, T28312).
947 $this->sectiontitle = $request->getText( 'wpSectionTitle' );
948 $this->sectiontitle = preg_replace( '/^\s*=+\s*(.*?)\s*=+\s*$/', '$1', $this->sectiontitle );
949
950 $this->edittime = $request->getVal( 'wpEdittime' );
951 $this->editRevId = $request->getIntOrNull( 'editRevId' );
952 $this->starttime = $request->getVal( 'wpStarttime' );
953
954 $undidRev = $request->getInt( 'wpUndidRevision' );
955 if ( $undidRev ) {
956 $this->undidRev = $undidRev;
957 }
958
959 $this->scrolltop = $request->getIntOrNull( 'wpScrolltop' );
960
961 if ( $this->textbox1 === '' && $request->getVal( 'wpTextbox1' ) === null ) {
962 // wpTextbox1 field is missing, possibly due to being "too big"
963 // according to some filter rules such as Suhosin's setting for
964 // suhosin.request.max_value_length (d'oh)
965 $this->incompleteForm = true;
966 } else {
967 // If we receive the last parameter of the request, we can fairly
968 // claim the POST request has not been truncated.
969 $this->incompleteForm = !$request->getVal( 'wpUltimateParam' );
970 }
971 if ( $this->incompleteForm ) {
972 # If the form is incomplete, force to preview.
973 wfDebug( __METHOD__ . ": Form data appears to be incomplete\n" );
974 wfDebug( "POST DATA: " . var_export( $request->getPostValues(), true ) . "\n" );
975 $this->preview = true;
976 } else {
977 $this->preview = $request->getCheck( 'wpPreview' );
978 $this->diff = $request->getCheck( 'wpDiff' );
979
980 // Remember whether a save was requested, so we can indicate
981 // if we forced preview due to session failure.
982 $this->mTriedSave = !$this->preview;
983
984 if ( $this->tokenOk( $request ) ) {
985 # Some browsers will not report any submit button
986 # if the user hits enter in the comment box.
987 # The unmarked state will be assumed to be a save,
988 # if the form seems otherwise complete.
989 wfDebug( __METHOD__ . ": Passed token check.\n" );
990 } elseif ( $this->diff ) {
991 # Failed token check, but only requested "Show Changes".
992 wfDebug( __METHOD__ . ": Failed token check; Show Changes requested.\n" );
993 } else {
994 # Page might be a hack attempt posted from
995 # an external site. Preview instead of saving.
996 wfDebug( __METHOD__ . ": Failed token check; forcing preview\n" );
997 $this->preview = true;
998 }
999 }
1000 $this->save = !$this->preview && !$this->diff;
1001 if ( !preg_match( '/^\d{14}$/', $this->edittime ) ) {
1002 $this->edittime = null;
1003 }
1004
1005 if ( !preg_match( '/^\d{14}$/', $this->starttime ) ) {
1006 $this->starttime = null;
1007 }
1008
1009 $this->recreate = $request->getCheck( 'wpRecreate' );
1010
1011 $this->minoredit = $request->getCheck( 'wpMinoredit' );
1012 $this->watchthis = $request->getCheck( 'wpWatchthis' );
1013
1014 $user = $this->context->getUser();
1015 # Don't force edit summaries when a user is editing their own user or talk page
1016 if ( ( $this->mTitle->mNamespace == NS_USER || $this->mTitle->mNamespace == NS_USER_TALK )
1017 && $this->mTitle->getText() == $user->getName()
1018 ) {
1019 $this->allowBlankSummary = true;
1020 } else {
1021 $this->allowBlankSummary = $request->getBool( 'wpIgnoreBlankSummary' )
1022 || !$user->getOption( 'forceeditsummary' );
1023 }
1024
1025 $this->autoSumm = $request->getText( 'wpAutoSummary' );
1026
1027 $this->allowBlankArticle = $request->getBool( 'wpIgnoreBlankArticle' );
1028 $this->allowSelfRedirect = $request->getBool( 'wpIgnoreSelfRedirect' );
1029
1030 $changeTags = $request->getVal( 'wpChangeTags' );
1031 if ( is_null( $changeTags ) || $changeTags === '' ) {
1032 $this->changeTags = [];
1033 } else {
1034 $this->changeTags = array_filter( array_map( 'trim', explode( ',',
1035 $changeTags ) ) );
1036 }
1037 } else {
1038 # Not a posted form? Start with nothing.
1039 wfDebug( __METHOD__ . ": Not a posted form.\n" );
1040 $this->textbox1 = '';
1041 $this->summary = '';
1042 $this->sectiontitle = '';
1043 $this->edittime = '';
1044 $this->editRevId = null;
1045 $this->starttime = wfTimestampNow();
1046 $this->edit = false;
1047 $this->preview = false;
1048 $this->save = false;
1049 $this->diff = false;
1050 $this->minoredit = false;
1051 // Watch may be overridden by request parameters
1052 $this->watchthis = $request->getBool( 'watchthis', false );
1053 $this->recreate = false;
1054
1055 // When creating a new section, we can preload a section title by passing it as the
1056 // preloadtitle parameter in the URL (T15100)
1057 if ( $this->section == 'new' && $request->getVal( 'preloadtitle' ) ) {
1058 $this->sectiontitle = $request->getVal( 'preloadtitle' );
1059 // Once wpSummary isn't being use for setting section titles, we should delete this.
1060 $this->summary = $request->getVal( 'preloadtitle' );
1061 } elseif ( $this->section != 'new' && $request->getVal( 'summary' ) !== '' ) {
1062 $this->summary = $request->getText( 'summary' );
1063 if ( $this->summary !== '' ) {
1064 $this->hasPresetSummary = true;
1065 }
1066 }
1067
1068 if ( $request->getVal( 'minor' ) ) {
1069 $this->minoredit = true;
1070 }
1071 }
1072
1073 $this->oldid = $request->getInt( 'oldid' );
1074 $this->parentRevId = $request->getInt( 'parentRevId' );
1075
1076 $this->bot = $request->getBool( 'bot', true );
1077 $this->nosummary = $request->getBool( 'nosummary' );
1078
1079 // May be overridden by revision.
1080 $this->contentModel = $request->getText( 'model', $this->contentModel );
1081 // May be overridden by revision.
1082 $this->contentFormat = $request->getText( 'format', $this->contentFormat );
1083
1084 try {
1085 $handler = ContentHandler::getForModelID( $this->contentModel );
1086 } catch ( MWUnknownContentModelException $e ) {
1087 throw new ErrorPageError(
1088 'editpage-invalidcontentmodel-title',
1089 'editpage-invalidcontentmodel-text',
1090 [ wfEscapeWikiText( $this->contentModel ) ]
1091 );
1092 }
1093
1094 if ( !$handler->isSupportedFormat( $this->contentFormat ) ) {
1095 throw new ErrorPageError(
1096 'editpage-notsupportedcontentformat-title',
1097 'editpage-notsupportedcontentformat-text',
1098 [
1099 wfEscapeWikiText( $this->contentFormat ),
1100 wfEscapeWikiText( ContentHandler::getLocalizedName( $this->contentModel ) )
1101 ]
1102 );
1103 }
1104
1105 /**
1106 * @todo Check if the desired model is allowed in this namespace, and if
1107 * a transition from the page's current model to the new model is
1108 * allowed.
1109 */
1110
1111 $this->editintro = $request->getText( 'editintro',
1112 // Custom edit intro for new sections
1113 $this->section === 'new' ? 'MediaWiki:addsection-editintro' : '' );
1114
1115 // Allow extensions to modify form data
1116 Hooks::run( 'EditPage::importFormData', [ $this, $request ] );
1117 }
1118
1119 /**
1120 * Subpage overridable method for extracting the page content data from the
1121 * posted form to be placed in $this->textbox1, if using customized input
1122 * this method should be overridden and return the page text that will be used
1123 * for saving, preview parsing and so on...
1124 *
1125 * @param WebRequest &$request
1126 * @return string|null
1127 */
1128 protected function importContentFormData( &$request ) {
1129 return; // Don't do anything, EditPage already extracted wpTextbox1
1130 }
1131
1132 /**
1133 * Initialise form fields in the object
1134 * Called on the first invocation, e.g. when a user clicks an edit link
1135 * @return bool If the requested section is valid
1136 */
1137 public function initialiseForm() {
1138 $this->edittime = $this->page->getTimestamp();
1139 $this->editRevId = $this->page->getLatest();
1140
1141 $content = $this->getContentObject( false ); # TODO: track content object?!
1142 if ( $content === false ) {
1143 return false;
1144 }
1145 $this->textbox1 = $this->toEditText( $content );
1146
1147 $user = $this->context->getUser();
1148 // activate checkboxes if user wants them to be always active
1149 # Sort out the "watch" checkbox
1150 if ( $user->getOption( 'watchdefault' ) ) {
1151 # Watch all edits
1152 $this->watchthis = true;
1153 } elseif ( $user->getOption( 'watchcreations' ) && !$this->mTitle->exists() ) {
1154 # Watch creations
1155 $this->watchthis = true;
1156 } elseif ( $user->isWatched( $this->mTitle ) ) {
1157 # Already watched
1158 $this->watchthis = true;
1159 }
1160 if ( $user->getOption( 'minordefault' ) && !$this->isNew ) {
1161 $this->minoredit = true;
1162 }
1163 if ( $this->textbox1 === false ) {
1164 return false;
1165 }
1166 return true;
1167 }
1168
1169 /**
1170 * @param Content|null $def_content The default value to return
1171 *
1172 * @return Content|null Content on success, $def_content for invalid sections
1173 *
1174 * @since 1.21
1175 */
1176 protected function getContentObject( $def_content = null ) {
1177 $content = false;
1178
1179 $user = $this->context->getUser();
1180 $request = $this->context->getRequest();
1181 // For message page not locally set, use the i18n message.
1182 // For other non-existent articles, use preload text if any.
1183 if ( !$this->mTitle->exists() || $this->section == 'new' ) {
1184 if ( $this->mTitle->getNamespace() == NS_MEDIAWIKI && $this->section != 'new' ) {
1185 # If this is a system message, get the default text.
1186 $msg = $this->mTitle->getDefaultMessageText();
1187
1188 $content = $this->toEditContent( $msg );
1189 }
1190 if ( $content === false ) {
1191 # If requested, preload some text.
1192 $preload = $request->getVal( 'preload',
1193 // Custom preload text for new sections
1194 $this->section === 'new' ? 'MediaWiki:addsection-preload' : '' );
1195 $params = $request->getArray( 'preloadparams', [] );
1196
1197 $content = $this->getPreloadedContent( $preload, $params );
1198 }
1199 // For existing pages, get text based on "undo" or section parameters.
1200 } else {
1201 if ( $this->section != '' ) {
1202 // Get section edit text (returns $def_text for invalid sections)
1203 $orig = $this->getOriginalContent( $user );
1204 $content = $orig ? $orig->getSection( $this->section ) : null;
1205
1206 if ( !$content ) {
1207 $content = $def_content;
1208 }
1209 } else {
1210 $undoafter = $request->getInt( 'undoafter' );
1211 $undo = $request->getInt( 'undo' );
1212
1213 if ( $undo > 0 && $undoafter > 0 ) {
1214 $undorev = Revision::newFromId( $undo );
1215 $oldrev = Revision::newFromId( $undoafter );
1216 $undoMsg = null;
1217
1218 # Sanity check, make sure it's the right page,
1219 # the revisions exist and they were not deleted.
1220 # Otherwise, $content will be left as-is.
1221 if ( !is_null( $undorev ) && !is_null( $oldrev ) &&
1222 !$undorev->isDeleted( Revision::DELETED_TEXT ) &&
1223 !$oldrev->isDeleted( Revision::DELETED_TEXT )
1224 ) {
1225 if ( WikiPage::hasDifferencesOutsideMainSlot( $undorev, $oldrev )
1226 || !$this->isSupportedContentModel( $oldrev->getContentModel() )
1227 ) {
1228 // Hack for undo while EditPage can't handle multi-slot editing
1229 $this->context->getOutput()->redirect( $this->mTitle->getFullURL( [
1230 'action' => 'mcrundo',
1231 'undo' => $undo,
1232 'undoafter' => $undoafter,
1233 ] ) );
1234 return false;
1235 } else {
1236 $content = $this->page->getUndoContent( $undorev, $oldrev );
1237
1238 if ( $content === false ) {
1239 # Warn the user that something went wrong
1240 $undoMsg = 'failure';
1241 }
1242 }
1243
1244 if ( $undoMsg === null ) {
1245 $oldContent = $this->page->getContent( Revision::RAW );
1246 $popts = ParserOptions::newFromUserAndLang(
1247 $user, MediaWikiServices::getInstance()->getContentLanguage() );
1248 $newContent = $content->preSaveTransform( $this->mTitle, $user, $popts );
1249 if ( $newContent->getModel() !== $oldContent->getModel() ) {
1250 // The undo may change content
1251 // model if its reverting the top
1252 // edit. This can result in
1253 // mismatched content model/format.
1254 $this->contentModel = $newContent->getModel();
1255 $this->contentFormat = $oldrev->getContentFormat();
1256 }
1257
1258 if ( $newContent->equals( $oldContent ) ) {
1259 # Tell the user that the undo results in no change,
1260 # i.e. the revisions were already undone.
1261 $undoMsg = 'nochange';
1262 $content = false;
1263 } else {
1264 # Inform the user of our success and set an automatic edit summary
1265 $undoMsg = 'success';
1266
1267 # If we just undid one rev, use an autosummary
1268 $firstrev = $oldrev->getNext();
1269 if ( $firstrev && $firstrev->getId() == $undo ) {
1270 $userText = $undorev->getUserText();
1271 if ( $userText === '' ) {
1272 $undoSummary = $this->context->msg(
1273 'undo-summary-username-hidden',
1274 $undo
1275 )->inContentLanguage()->text();
1276 } else {
1277 $undoSummary = $this->context->msg(
1278 'undo-summary',
1279 $undo,
1280 $userText
1281 )->inContentLanguage()->text();
1282 }
1283 if ( $this->summary === '' ) {
1284 $this->summary = $undoSummary;
1285 } else {
1286 $this->summary = $undoSummary . $this->context->msg( 'colon-separator' )
1287 ->inContentLanguage()->text() . $this->summary;
1288 }
1289 $this->undidRev = $undo;
1290 }
1291 $this->formtype = 'diff';
1292 }
1293 }
1294 } else {
1295 // Failed basic sanity checks.
1296 // Older revisions may have been removed since the link
1297 // was created, or we may simply have got bogus input.
1298 $undoMsg = 'norev';
1299 }
1300
1301 $out = $this->context->getOutput();
1302 // Messages: undo-success, undo-failure, undo-main-slot-only, undo-norev,
1303 // undo-nochange.
1304 $class = ( $undoMsg == 'success' ? '' : 'error ' ) . "mw-undo-{$undoMsg}";
1305 $this->editFormPageTop .= $out->parse( "<div class=\"{$class}\">" .
1306 $this->context->msg( 'undo-' . $undoMsg )->plain() . '</div>', true, /* interface */true );
1307 }
1308
1309 if ( $content === false ) {
1310 // Hack for restoring old revisions while EditPage
1311 // can't handle multi-slot editing.
1312
1313 $curRevision = $this->page->getRevision();
1314 $oldRevision = $this->mArticle->getRevisionFetched();
1315
1316 if ( $curRevision
1317 && $oldRevision
1318 && $curRevision->getId() !== $oldRevision->getId()
1319 && ( WikiPage::hasDifferencesOutsideMainSlot( $oldRevision, $curRevision )
1320 || !$this->isSupportedContentModel( $oldRevision->getContentModel() ) )
1321 ) {
1322 $this->context->getOutput()->redirect(
1323 $this->mTitle->getFullURL(
1324 [
1325 'action' => 'mcrrestore',
1326 'restore' => $oldRevision->getId(),
1327 ]
1328 )
1329 );
1330
1331 return false;
1332 }
1333 }
1334
1335 if ( $content === false ) {
1336 $content = $this->getOriginalContent( $user );
1337 }
1338 }
1339 }
1340
1341 return $content;
1342 }
1343
1344 /**
1345 * Get the content of the wanted revision, without section extraction.
1346 *
1347 * The result of this function can be used to compare user's input with
1348 * section replaced in its context (using WikiPage::replaceSectionAtRev())
1349 * to the original text of the edit.
1350 *
1351 * This differs from Article::getContent() that when a missing revision is
1352 * encountered the result will be null and not the
1353 * 'missing-revision' message.
1354 *
1355 * @since 1.19
1356 * @param User $user The user to get the revision for
1357 * @return Content|null
1358 */
1359 private function getOriginalContent( User $user ) {
1360 if ( $this->section == 'new' ) {
1361 return $this->getCurrentContent();
1362 }
1363 $revision = $this->mArticle->getRevisionFetched();
1364 if ( $revision === null ) {
1365 $handler = ContentHandler::getForModelID( $this->contentModel );
1366 return $handler->makeEmptyContent();
1367 }
1368 $content = $revision->getContent( Revision::FOR_THIS_USER, $user );
1369 return $content;
1370 }
1371
1372 /**
1373 * Get the edit's parent revision ID
1374 *
1375 * The "parent" revision is the ancestor that should be recorded in this
1376 * page's revision history. It is either the revision ID of the in-memory
1377 * article content, or in the case of a 3-way merge in order to rebase
1378 * across a recoverable edit conflict, the ID of the newer revision to
1379 * which we have rebased this page.
1380 *
1381 * @since 1.27
1382 * @return int Revision ID
1383 */
1384 public function getParentRevId() {
1385 if ( $this->parentRevId ) {
1386 return $this->parentRevId;
1387 } else {
1388 return $this->mArticle->getRevIdFetched();
1389 }
1390 }
1391
1392 /**
1393 * Get the current content of the page. This is basically similar to
1394 * WikiPage::getContent( Revision::RAW ) except that when the page doesn't exist an empty
1395 * content object is returned instead of null.
1396 *
1397 * @since 1.21
1398 * @return Content
1399 */
1400 protected function getCurrentContent() {
1401 $rev = $this->page->getRevision();
1402 $content = $rev ? $rev->getContent( Revision::RAW ) : null;
1403
1404 if ( $content === false || $content === null ) {
1405 $handler = ContentHandler::getForModelID( $this->contentModel );
1406 return $handler->makeEmptyContent();
1407 } elseif ( !$this->undidRev ) {
1408 // Content models should always be the same since we error
1409 // out if they are different before this point (in ->edit()).
1410 // The exception being, during an undo, the current revision might
1411 // differ from the prior revision.
1412 $logger = LoggerFactory::getInstance( 'editpage' );
1413 if ( $this->contentModel !== $rev->getContentModel() ) {
1414 $logger->warning( "Overriding content model from current edit {prev} to {new}", [
1415 'prev' => $this->contentModel,
1416 'new' => $rev->getContentModel(),
1417 'title' => $this->getTitle()->getPrefixedDBkey(),
1418 'method' => __METHOD__
1419 ] );
1420 $this->contentModel = $rev->getContentModel();
1421 }
1422
1423 // Given that the content models should match, the current selected
1424 // format should be supported.
1425 if ( !$content->isSupportedFormat( $this->contentFormat ) ) {
1426 $logger->warning( "Current revision content format unsupported. Overriding {prev} to {new}", [
1427
1428 'prev' => $this->contentFormat,
1429 'new' => $rev->getContentFormat(),
1430 'title' => $this->getTitle()->getPrefixedDBkey(),
1431 'method' => __METHOD__
1432 ] );
1433 $this->contentFormat = $rev->getContentFormat();
1434 }
1435 }
1436 return $content;
1437 }
1438
1439 /**
1440 * Use this method before edit() to preload some content into the edit box
1441 *
1442 * @param Content $content
1443 *
1444 * @since 1.21
1445 */
1446 public function setPreloadedContent( Content $content ) {
1447 $this->mPreloadContent = $content;
1448 }
1449
1450 /**
1451 * Get the contents to be preloaded into the box, either set by
1452 * an earlier setPreloadText() or by loading the given page.
1453 *
1454 * @param string $preload Representing the title to preload from.
1455 * @param array $params Parameters to use (interface-message style) in the preloaded text
1456 *
1457 * @return Content
1458 *
1459 * @since 1.21
1460 */
1461 protected function getPreloadedContent( $preload, $params = [] ) {
1462 if ( !empty( $this->mPreloadContent ) ) {
1463 return $this->mPreloadContent;
1464 }
1465
1466 $handler = ContentHandler::getForModelID( $this->contentModel );
1467
1468 if ( $preload === '' ) {
1469 return $handler->makeEmptyContent();
1470 }
1471
1472 $user = $this->context->getUser();
1473 $title = Title::newFromText( $preload );
1474 # Check for existence to avoid getting MediaWiki:Noarticletext
1475 if ( $title === null || !$title->exists() || !$title->userCan( 'read', $user ) ) {
1476 // TODO: somehow show a warning to the user!
1477 return $handler->makeEmptyContent();
1478 }
1479
1480 $page = WikiPage::factory( $title );
1481 if ( $page->isRedirect() ) {
1482 $title = $page->getRedirectTarget();
1483 # Same as before
1484 if ( $title === null || !$title->exists() || !$title->userCan( 'read', $user ) ) {
1485 // TODO: somehow show a warning to the user!
1486 return $handler->makeEmptyContent();
1487 }
1488 $page = WikiPage::factory( $title );
1489 }
1490
1491 $parserOptions = ParserOptions::newFromUser( $user );
1492 $content = $page->getContent( Revision::RAW );
1493
1494 if ( !$content ) {
1495 // TODO: somehow show a warning to the user!
1496 return $handler->makeEmptyContent();
1497 }
1498
1499 if ( $content->getModel() !== $handler->getModelID() ) {
1500 $converted = $content->convert( $handler->getModelID() );
1501
1502 if ( !$converted ) {
1503 // TODO: somehow show a warning to the user!
1504 wfDebug( "Attempt to preload incompatible content: " .
1505 "can't convert " . $content->getModel() .
1506 " to " . $handler->getModelID() );
1507
1508 return $handler->makeEmptyContent();
1509 }
1510
1511 $content = $converted;
1512 }
1513
1514 return $content->preloadTransform( $title, $parserOptions, $params );
1515 }
1516
1517 /**
1518 * Make sure the form isn't faking a user's credentials.
1519 *
1520 * @param WebRequest &$request
1521 * @return bool
1522 * @private
1523 */
1524 public function tokenOk( &$request ) {
1525 $token = $request->getVal( 'wpEditToken' );
1526 $user = $this->context->getUser();
1527 $this->mTokenOk = $user->matchEditToken( $token );
1528 $this->mTokenOkExceptSuffix = $user->matchEditTokenNoSuffix( $token );
1529 return $this->mTokenOk;
1530 }
1531
1532 /**
1533 * Sets post-edit cookie indicating the user just saved a particular revision.
1534 *
1535 * This uses a temporary cookie for each revision ID so separate saves will never
1536 * interfere with each other.
1537 *
1538 * Article::view deletes the cookie on server-side after the redirect and
1539 * converts the value to the global JavaScript variable wgPostEdit.
1540 *
1541 * If the variable were set on the server, it would be cached, which is unwanted
1542 * since the post-edit state should only apply to the load right after the save.
1543 *
1544 * @param int $statusValue The status value (to check for new article status)
1545 */
1546 protected function setPostEditCookie( $statusValue ) {
1547 $revisionId = $this->page->getLatest();
1548 $postEditKey = self::POST_EDIT_COOKIE_KEY_PREFIX . $revisionId;
1549
1550 $val = 'saved';
1551 if ( $statusValue == self::AS_SUCCESS_NEW_ARTICLE ) {
1552 $val = 'created';
1553 } elseif ( $this->oldid ) {
1554 $val = 'restored';
1555 }
1556
1557 $response = $this->context->getRequest()->response();
1558 $response->setCookie( $postEditKey, $val, time() + self::POST_EDIT_COOKIE_DURATION );
1559 }
1560
1561 /**
1562 * Attempt submission
1563 * @param array|bool &$resultDetails See docs for $result in internalAttemptSave
1564 * @throws UserBlockedError|ReadOnlyError|ThrottledError|PermissionsError
1565 * @return Status The resulting status object.
1566 */
1567 public function attemptSave( &$resultDetails = false ) {
1568 // TODO: MCR: treat $this->minoredit like $this->bot and check isAllowed( 'minoredit' )!
1569 // Also, add $this->autopatrol like $this->bot and check isAllowed( 'autopatrol' )!
1570 // This is needed since PageUpdater no longer checks these rights!
1571
1572 // Allow bots to exempt some edits from bot flagging
1573 $bot = $this->context->getUser()->isAllowed( 'bot' ) && $this->bot;
1574 $status = $this->internalAttemptSave( $resultDetails, $bot );
1575
1576 Hooks::run( 'EditPage::attemptSave:after', [ $this, $status, $resultDetails ] );
1577
1578 return $status;
1579 }
1580
1581 /**
1582 * Log when a page was successfully saved after the edit conflict view
1583 */
1584 private function incrementResolvedConflicts() {
1585 if ( $this->context->getRequest()->getText( 'mode' ) !== 'conflict' ) {
1586 return;
1587 }
1588
1589 $this->getEditConflictHelper()->incrementResolvedStats();
1590 }
1591
1592 /**
1593 * Handle status, such as after attempt save
1594 *
1595 * @param Status $status
1596 * @param array|bool $resultDetails
1597 *
1598 * @throws ErrorPageError
1599 * @return bool False, if output is done, true if rest of the form should be displayed
1600 */
1601 private function handleStatus( Status $status, $resultDetails ) {
1602 /**
1603 * @todo FIXME: once the interface for internalAttemptSave() is made
1604 * nicer, this should use the message in $status
1605 */
1606 if ( $status->value == self::AS_SUCCESS_UPDATE
1607 || $status->value == self::AS_SUCCESS_NEW_ARTICLE
1608 ) {
1609 $this->incrementResolvedConflicts();
1610
1611 $this->didSave = true;
1612 if ( !$resultDetails['nullEdit'] ) {
1613 $this->setPostEditCookie( $status->value );
1614 }
1615 }
1616
1617 $out = $this->context->getOutput();
1618
1619 // "wpExtraQueryRedirect" is a hidden input to modify
1620 // after save URL and is not used by actual edit form
1621 $request = $this->context->getRequest();
1622 $extraQueryRedirect = $request->getVal( 'wpExtraQueryRedirect' );
1623
1624 switch ( $status->value ) {
1625 case self::AS_HOOK_ERROR_EXPECTED:
1626 case self::AS_CONTENT_TOO_BIG:
1627 case self::AS_ARTICLE_WAS_DELETED:
1628 case self::AS_CONFLICT_DETECTED:
1629 case self::AS_SUMMARY_NEEDED:
1630 case self::AS_TEXTBOX_EMPTY:
1631 case self::AS_MAX_ARTICLE_SIZE_EXCEEDED:
1632 case self::AS_END:
1633 case self::AS_BLANK_ARTICLE:
1634 case self::AS_SELF_REDIRECT:
1635 return true;
1636
1637 case self::AS_HOOK_ERROR:
1638 return false;
1639
1640 case self::AS_CANNOT_USE_CUSTOM_MODEL:
1641 case self::AS_PARSE_ERROR:
1642 case self::AS_UNICODE_NOT_SUPPORTED:
1643 $out->addWikiText( '<div class="error">' . "\n" . $status->getWikiText() . '</div>' );
1644 return true;
1645
1646 case self::AS_SUCCESS_NEW_ARTICLE:
1647 $query = $resultDetails['redirect'] ? 'redirect=no' : '';
1648 if ( $extraQueryRedirect ) {
1649 if ( $query === '' ) {
1650 $query = $extraQueryRedirect;
1651 } else {
1652 $query = $query . '&' . $extraQueryRedirect;
1653 }
1654 }
1655 $anchor = $resultDetails['sectionanchor'] ?? '';
1656 $out->redirect( $this->mTitle->getFullURL( $query ) . $anchor );
1657 return false;
1658
1659 case self::AS_SUCCESS_UPDATE:
1660 $extraQuery = '';
1661 $sectionanchor = $resultDetails['sectionanchor'];
1662
1663 // Give extensions a chance to modify URL query on update
1664 Hooks::run(
1665 'ArticleUpdateBeforeRedirect',
1666 [ $this->mArticle, &$sectionanchor, &$extraQuery ]
1667 );
1668
1669 if ( $resultDetails['redirect'] ) {
1670 if ( $extraQuery == '' ) {
1671 $extraQuery = 'redirect=no';
1672 } else {
1673 $extraQuery = 'redirect=no&' . $extraQuery;
1674 }
1675 }
1676 if ( $extraQueryRedirect ) {
1677 if ( $extraQuery === '' ) {
1678 $extraQuery = $extraQueryRedirect;
1679 } else {
1680 $extraQuery = $extraQuery . '&' . $extraQueryRedirect;
1681 }
1682 }
1683
1684 $out->redirect( $this->mTitle->getFullURL( $extraQuery ) . $sectionanchor );
1685 return false;
1686
1687 case self::AS_SPAM_ERROR:
1688 $this->spamPageWithContent( $resultDetails['spam'] );
1689 return false;
1690
1691 case self::AS_BLOCKED_PAGE_FOR_USER:
1692 throw new UserBlockedError( $this->context->getUser()->getBlock() );
1693
1694 case self::AS_IMAGE_REDIRECT_ANON:
1695 case self::AS_IMAGE_REDIRECT_LOGGED:
1696 throw new PermissionsError( 'upload' );
1697
1698 case self::AS_READ_ONLY_PAGE_ANON:
1699 case self::AS_READ_ONLY_PAGE_LOGGED:
1700 throw new PermissionsError( 'edit' );
1701
1702 case self::AS_READ_ONLY_PAGE:
1703 throw new ReadOnlyError;
1704
1705 case self::AS_RATE_LIMITED:
1706 throw new ThrottledError();
1707
1708 case self::AS_NO_CREATE_PERMISSION:
1709 $permission = $this->mTitle->isTalkPage() ? 'createtalk' : 'createpage';
1710 throw new PermissionsError( $permission );
1711
1712 case self::AS_NO_CHANGE_CONTENT_MODEL:
1713 throw new PermissionsError( 'editcontentmodel' );
1714
1715 default:
1716 // We don't recognize $status->value. The only way that can happen
1717 // is if an extension hook aborted from inside ArticleSave.
1718 // Render the status object into $this->hookError
1719 // FIXME this sucks, we should just use the Status object throughout
1720 $this->hookError = '<div class="error">' . "\n" . $status->getWikiText() .
1721 '</div>';
1722 return true;
1723 }
1724 }
1725
1726 /**
1727 * Run hooks that can filter edits just before they get saved.
1728 *
1729 * @param Content $content The Content to filter.
1730 * @param Status $status For reporting the outcome to the caller
1731 * @param User $user The user performing the edit
1732 *
1733 * @return bool
1734 */
1735 protected function runPostMergeFilters( Content $content, Status $status, User $user ) {
1736 // Run old style post-section-merge edit filter
1737 if ( $this->hookError != '' ) {
1738 # ...or the hook could be expecting us to produce an error
1739 $status->fatal( 'hookaborted' );
1740 $status->value = self::AS_HOOK_ERROR_EXPECTED;
1741 return false;
1742 }
1743
1744 // Run new style post-section-merge edit filter
1745 if ( !Hooks::run( 'EditFilterMergedContent',
1746 [ $this->context, $content, $status, $this->summary,
1747 $user, $this->minoredit ] )
1748 ) {
1749 # Error messages etc. could be handled within the hook...
1750 if ( $status->isGood() ) {
1751 $status->fatal( 'hookaborted' );
1752 // Not setting $this->hookError here is a hack to allow the hook
1753 // to cause a return to the edit page without $this->hookError
1754 // being set. This is used by ConfirmEdit to display a captcha
1755 // without any error message cruft.
1756 } else {
1757 $this->hookError = $this->formatStatusErrors( $status );
1758 }
1759 // Use the existing $status->value if the hook set it
1760 if ( !$status->value ) {
1761 $status->value = self::AS_HOOK_ERROR;
1762 }
1763 return false;
1764 } elseif ( !$status->isOK() ) {
1765 # ...or the hook could be expecting us to produce an error
1766 // FIXME this sucks, we should just use the Status object throughout
1767 $this->hookError = $this->formatStatusErrors( $status );
1768 $status->fatal( 'hookaborted' );
1769 $status->value = self::AS_HOOK_ERROR_EXPECTED;
1770 return false;
1771 }
1772
1773 return true;
1774 }
1775
1776 /**
1777 * Wrap status errors in an errorbox for increased visibility
1778 *
1779 * @param Status $status
1780 * @return string Wikitext
1781 */
1782 private function formatStatusErrors( Status $status ) {
1783 $errmsg = $status->getWikiText(
1784 'edit-error-short',
1785 'edit-error-long',
1786 $this->context->getLanguage()
1787 );
1788 return <<<ERROR
1789 <div class="errorbox">
1790 {$errmsg}
1791 </div>
1792 <br clear="all" />
1793 ERROR;
1794 }
1795
1796 /**
1797 * Return the summary to be used for a new section.
1798 *
1799 * @param string $sectionanchor Set to the section anchor text
1800 * @return string
1801 */
1802 private function newSectionSummary( &$sectionanchor = null ) {
1803 global $wgParser;
1804
1805 if ( $this->sectiontitle !== '' ) {
1806 $sectionanchor = $this->guessSectionName( $this->sectiontitle );
1807 // If no edit summary was specified, create one automatically from the section
1808 // title and have it link to the new section. Otherwise, respect the summary as
1809 // passed.
1810 if ( $this->summary === '' ) {
1811 $cleanSectionTitle = $wgParser->stripSectionName( $this->sectiontitle );
1812 return $this->context->msg( 'newsectionsummary' )
1813 ->plaintextParams( $cleanSectionTitle )->inContentLanguage()->text();
1814 }
1815 } elseif ( $this->summary !== '' ) {
1816 $sectionanchor = $this->guessSectionName( $this->summary );
1817 # This is a new section, so create a link to the new section
1818 # in the revision summary.
1819 $cleanSummary = $wgParser->stripSectionName( $this->summary );
1820 return $this->context->msg( 'newsectionsummary' )
1821 ->plaintextParams( $cleanSummary )->inContentLanguage()->text();
1822 }
1823 return $this->summary;
1824 }
1825
1826 /**
1827 * Attempt submission (no UI)
1828 *
1829 * @param array &$result Array to add statuses to, currently with the
1830 * possible keys:
1831 * - spam (string): Spam string from content if any spam is detected by
1832 * matchSpamRegex.
1833 * - sectionanchor (string): Section anchor for a section save.
1834 * - nullEdit (bool): Set if doEditContent is OK. True if null edit,
1835 * false otherwise.
1836 * - redirect (bool): Set if doEditContent is OK. True if resulting
1837 * revision is a redirect.
1838 * @param bool $bot True if edit is being made under the bot right.
1839 *
1840 * @return Status Status object, possibly with a message, but always with
1841 * one of the AS_* constants in $status->value,
1842 *
1843 * @todo FIXME: This interface is TERRIBLE, but hard to get rid of due to
1844 * various error display idiosyncrasies. There are also lots of cases
1845 * where error metadata is set in the object and retrieved later instead
1846 * of being returned, e.g. AS_CONTENT_TOO_BIG and
1847 * AS_BLOCKED_PAGE_FOR_USER. All that stuff needs to be cleaned up some
1848 * time.
1849 */
1850 public function internalAttemptSave( &$result, $bot = false ) {
1851 $status = Status::newGood();
1852 $user = $this->context->getUser();
1853
1854 if ( !Hooks::run( 'EditPage::attemptSave', [ $this ] ) ) {
1855 wfDebug( "Hook 'EditPage::attemptSave' aborted article saving\n" );
1856 $status->fatal( 'hookaborted' );
1857 $status->value = self::AS_HOOK_ERROR;
1858 return $status;
1859 }
1860
1861 if ( $this->unicodeCheck !== self::UNICODE_CHECK ) {
1862 $status->fatal( 'unicode-support-fail' );
1863 $status->value = self::AS_UNICODE_NOT_SUPPORTED;
1864 return $status;
1865 }
1866
1867 $request = $this->context->getRequest();
1868 $spam = $request->getText( 'wpAntispam' );
1869 if ( $spam !== '' ) {
1870 wfDebugLog(
1871 'SimpleAntiSpam',
1872 $user->getName() .
1873 ' editing "' .
1874 $this->mTitle->getPrefixedText() .
1875 '" submitted bogus field "' .
1876 $spam .
1877 '"'
1878 );
1879 $status->fatal( 'spamprotectionmatch', false );
1880 $status->value = self::AS_SPAM_ERROR;
1881 return $status;
1882 }
1883
1884 try {
1885 # Construct Content object
1886 $textbox_content = $this->toEditContent( $this->textbox1 );
1887 } catch ( MWContentSerializationException $ex ) {
1888 $status->fatal(
1889 'content-failed-to-parse',
1890 $this->contentModel,
1891 $this->contentFormat,
1892 $ex->getMessage()
1893 );
1894 $status->value = self::AS_PARSE_ERROR;
1895 return $status;
1896 }
1897
1898 # Check image redirect
1899 if ( $this->mTitle->getNamespace() == NS_FILE &&
1900 $textbox_content->isRedirect() &&
1901 !$user->isAllowed( 'upload' )
1902 ) {
1903 $code = $user->isAnon() ? self::AS_IMAGE_REDIRECT_ANON : self::AS_IMAGE_REDIRECT_LOGGED;
1904 $status->setResult( false, $code );
1905
1906 return $status;
1907 }
1908
1909 # Check for spam
1910 $match = self::matchSummarySpamRegex( $this->summary );
1911 if ( $match === false && $this->section == 'new' ) {
1912 # $wgSpamRegex is enforced on this new heading/summary because, unlike
1913 # regular summaries, it is added to the actual wikitext.
1914 if ( $this->sectiontitle !== '' ) {
1915 # This branch is taken when the API is used with the 'sectiontitle' parameter.
1916 $match = self::matchSpamRegex( $this->sectiontitle );
1917 } else {
1918 # This branch is taken when the "Add Topic" user interface is used, or the API
1919 # is used with the 'summary' parameter.
1920 $match = self::matchSpamRegex( $this->summary );
1921 }
1922 }
1923 if ( $match === false ) {
1924 $match = self::matchSpamRegex( $this->textbox1 );
1925 }
1926 if ( $match !== false ) {
1927 $result['spam'] = $match;
1928 $ip = $request->getIP();
1929 $pdbk = $this->mTitle->getPrefixedDBkey();
1930 $match = str_replace( "\n", '', $match );
1931 wfDebugLog( 'SpamRegex', "$ip spam regex hit [[$pdbk]]: \"$match\"" );
1932 $status->fatal( 'spamprotectionmatch', $match );
1933 $status->value = self::AS_SPAM_ERROR;
1934 return $status;
1935 }
1936 if ( !Hooks::run(
1937 'EditFilter',
1938 [ $this, $this->textbox1, $this->section, &$this->hookError, $this->summary ] )
1939 ) {
1940 # Error messages etc. could be handled within the hook...
1941 $status->fatal( 'hookaborted' );
1942 $status->value = self::AS_HOOK_ERROR;
1943 return $status;
1944 } elseif ( $this->hookError != '' ) {
1945 # ...or the hook could be expecting us to produce an error
1946 $status->fatal( 'hookaborted' );
1947 $status->value = self::AS_HOOK_ERROR_EXPECTED;
1948 return $status;
1949 }
1950
1951 if ( $user->isBlockedFrom( $this->mTitle, false ) ) {
1952 // Auto-block user's IP if the account was "hard" blocked
1953 if ( !wfReadOnly() ) {
1954 $user->spreadAnyEditBlock();
1955 }
1956 # Check block state against master, thus 'false'.
1957 $status->setResult( false, self::AS_BLOCKED_PAGE_FOR_USER );
1958 return $status;
1959 }
1960
1961 $this->contentLength = strlen( $this->textbox1 );
1962 $config = $this->context->getConfig();
1963 $maxArticleSize = $config->get( 'MaxArticleSize' );
1964 if ( $this->contentLength > $maxArticleSize * 1024 ) {
1965 // Error will be displayed by showEditForm()
1966 $this->tooBig = true;
1967 $status->setResult( false, self::AS_CONTENT_TOO_BIG );
1968 return $status;
1969 }
1970
1971 if ( !$user->isAllowed( 'edit' ) ) {
1972 if ( $user->isAnon() ) {
1973 $status->setResult( false, self::AS_READ_ONLY_PAGE_ANON );
1974 return $status;
1975 } else {
1976 $status->fatal( 'readonlytext' );
1977 $status->value = self::AS_READ_ONLY_PAGE_LOGGED;
1978 return $status;
1979 }
1980 }
1981
1982 $changingContentModel = false;
1983 if ( $this->contentModel !== $this->mTitle->getContentModel() ) {
1984 if ( !$config->get( 'ContentHandlerUseDB' ) ) {
1985 $status->fatal( 'editpage-cannot-use-custom-model' );
1986 $status->value = self::AS_CANNOT_USE_CUSTOM_MODEL;
1987 return $status;
1988 } elseif ( !$user->isAllowed( 'editcontentmodel' ) ) {
1989 $status->setResult( false, self::AS_NO_CHANGE_CONTENT_MODEL );
1990 return $status;
1991 }
1992 // Make sure the user can edit the page under the new content model too
1993 $titleWithNewContentModel = clone $this->mTitle;
1994 $titleWithNewContentModel->setContentModel( $this->contentModel );
1995 if ( !$titleWithNewContentModel->userCan( 'editcontentmodel', $user )
1996 || !$titleWithNewContentModel->userCan( 'edit', $user )
1997 ) {
1998 $status->setResult( false, self::AS_NO_CHANGE_CONTENT_MODEL );
1999 return $status;
2000 }
2001
2002 $changingContentModel = true;
2003 $oldContentModel = $this->mTitle->getContentModel();
2004 }
2005
2006 if ( $this->changeTags ) {
2007 $changeTagsStatus = ChangeTags::canAddTagsAccompanyingChange(
2008 $this->changeTags, $user );
2009 if ( !$changeTagsStatus->isOK() ) {
2010 $changeTagsStatus->value = self::AS_CHANGE_TAG_ERROR;
2011 return $changeTagsStatus;
2012 }
2013 }
2014
2015 if ( wfReadOnly() ) {
2016 $status->fatal( 'readonlytext' );
2017 $status->value = self::AS_READ_ONLY_PAGE;
2018 return $status;
2019 }
2020 if ( $user->pingLimiter() || $user->pingLimiter( 'linkpurge', 0 )
2021 || ( $changingContentModel && $user->pingLimiter( 'editcontentmodel' ) )
2022 ) {
2023 $status->fatal( 'actionthrottledtext' );
2024 $status->value = self::AS_RATE_LIMITED;
2025 return $status;
2026 }
2027
2028 # If the article has been deleted while editing, don't save it without
2029 # confirmation
2030 if ( $this->wasDeletedSinceLastEdit() && !$this->recreate ) {
2031 $status->setResult( false, self::AS_ARTICLE_WAS_DELETED );
2032 return $status;
2033 }
2034
2035 # Load the page data from the master. If anything changes in the meantime,
2036 # we detect it by using page_latest like a token in a 1 try compare-and-swap.
2037 $this->page->loadPageData( 'fromdbmaster' );
2038 $new = !$this->page->exists();
2039
2040 if ( $new ) {
2041 // Late check for create permission, just in case *PARANOIA*
2042 if ( !$this->mTitle->userCan( 'create', $user ) ) {
2043 $status->fatal( 'nocreatetext' );
2044 $status->value = self::AS_NO_CREATE_PERMISSION;
2045 wfDebug( __METHOD__ . ": no create permission\n" );
2046 return $status;
2047 }
2048
2049 // Don't save a new page if it's blank or if it's a MediaWiki:
2050 // message with content equivalent to default (allow empty pages
2051 // in this case to disable messages, see T52124)
2052 $defaultMessageText = $this->mTitle->getDefaultMessageText();
2053 if ( $this->mTitle->getNamespace() === NS_MEDIAWIKI && $defaultMessageText !== false ) {
2054 $defaultText = $defaultMessageText;
2055 } else {
2056 $defaultText = '';
2057 }
2058
2059 if ( !$this->allowBlankArticle && $this->textbox1 === $defaultText ) {
2060 $this->blankArticle = true;
2061 $status->fatal( 'blankarticle' );
2062 $status->setResult( false, self::AS_BLANK_ARTICLE );
2063 return $status;
2064 }
2065
2066 if ( !$this->runPostMergeFilters( $textbox_content, $status, $user ) ) {
2067 return $status;
2068 }
2069
2070 $content = $textbox_content;
2071
2072 $result['sectionanchor'] = '';
2073 if ( $this->section == 'new' ) {
2074 if ( $this->sectiontitle !== '' ) {
2075 // Insert the section title above the content.
2076 $content = $content->addSectionHeader( $this->sectiontitle );
2077 } elseif ( $this->summary !== '' ) {
2078 // Insert the section title above the content.
2079 $content = $content->addSectionHeader( $this->summary );
2080 }
2081 $this->summary = $this->newSectionSummary( $result['sectionanchor'] );
2082 }
2083
2084 $status->value = self::AS_SUCCESS_NEW_ARTICLE;
2085
2086 } else { # not $new
2087
2088 # Article exists. Check for edit conflict.
2089
2090 $this->page->clear(); # Force reload of dates, etc.
2091 $timestamp = $this->page->getTimestamp();
2092 $latest = $this->page->getLatest();
2093
2094 wfDebug( "timestamp: {$timestamp}, edittime: {$this->edittime}\n" );
2095
2096 // An edit conflict is detected if the current revision is different from the
2097 // revision that was current when editing was initiated on the client.
2098 // This is checked based on the timestamp and revision ID.
2099 // TODO: the timestamp based check can probably go away now.
2100 if ( $timestamp != $this->edittime
2101 || ( $this->editRevId !== null && $this->editRevId != $latest )
2102 ) {
2103 $this->isConflict = true;
2104 if ( $this->section == 'new' ) {
2105 if ( $this->page->getUserText() == $user->getName() &&
2106 $this->page->getComment() == $this->newSectionSummary()
2107 ) {
2108 // Probably a duplicate submission of a new comment.
2109 // This can happen when CDN resends a request after
2110 // a timeout but the first one actually went through.
2111 wfDebug( __METHOD__
2112 . ": duplicate new section submission; trigger edit conflict!\n" );
2113 } else {
2114 // New comment; suppress conflict.
2115 $this->isConflict = false;
2116 wfDebug( __METHOD__ . ": conflict suppressed; new section\n" );
2117 }
2118 } elseif ( $this->section == ''
2119 && Revision::userWasLastToEdit(
2120 DB_MASTER, $this->mTitle->getArticleID(),
2121 $user->getId(), $this->edittime
2122 )
2123 ) {
2124 # Suppress edit conflict with self, except for section edits where merging is required.
2125 wfDebug( __METHOD__ . ": Suppressing edit conflict, same user.\n" );
2126 $this->isConflict = false;
2127 }
2128 }
2129
2130 // If sectiontitle is set, use it, otherwise use the summary as the section title.
2131 if ( $this->sectiontitle !== '' ) {
2132 $sectionTitle = $this->sectiontitle;
2133 } else {
2134 $sectionTitle = $this->summary;
2135 }
2136
2137 $content = null;
2138
2139 if ( $this->isConflict ) {
2140 wfDebug( __METHOD__
2141 . ": conflict! getting section '{$this->section}' for time '{$this->edittime}'"
2142 . " (id '{$this->editRevId}') (article time '{$timestamp}')\n" );
2143 // @TODO: replaceSectionAtRev() with base ID (not prior current) for ?oldid=X case
2144 // ...or disable section editing for non-current revisions (not exposed anyway).
2145 if ( $this->editRevId !== null ) {
2146 $content = $this->page->replaceSectionAtRev(
2147 $this->section,
2148 $textbox_content,
2149 $sectionTitle,
2150 $this->editRevId
2151 );
2152 } else {
2153 $content = $this->page->replaceSectionContent(
2154 $this->section,
2155 $textbox_content,
2156 $sectionTitle,
2157 $this->edittime
2158 );
2159 }
2160 } else {
2161 wfDebug( __METHOD__ . ": getting section '{$this->section}'\n" );
2162 $content = $this->page->replaceSectionContent(
2163 $this->section,
2164 $textbox_content,
2165 $sectionTitle
2166 );
2167 }
2168
2169 if ( is_null( $content ) ) {
2170 wfDebug( __METHOD__ . ": activating conflict; section replace failed.\n" );
2171 $this->isConflict = true;
2172 $content = $textbox_content; // do not try to merge here!
2173 } elseif ( $this->isConflict ) {
2174 # Attempt merge
2175 if ( $this->mergeChangesIntoContent( $content ) ) {
2176 // Successful merge! Maybe we should tell the user the good news?
2177 $this->isConflict = false;
2178 wfDebug( __METHOD__ . ": Suppressing edit conflict, successful merge.\n" );
2179 } else {
2180 $this->section = '';
2181 $this->textbox1 = ContentHandler::getContentText( $content );
2182 wfDebug( __METHOD__ . ": Keeping edit conflict, failed merge.\n" );
2183 }
2184 }
2185
2186 if ( $this->isConflict ) {
2187 $status->setResult( false, self::AS_CONFLICT_DETECTED );
2188 return $status;
2189 }
2190
2191 if ( !$this->runPostMergeFilters( $content, $status, $user ) ) {
2192 return $status;
2193 }
2194
2195 if ( $this->section == 'new' ) {
2196 // Handle the user preference to force summaries here
2197 if ( !$this->allowBlankSummary && trim( $this->summary ) == '' ) {
2198 $this->missingSummary = true;
2199 $status->fatal( 'missingsummary' ); // or 'missingcommentheader' if $section == 'new'. Blegh
2200 $status->value = self::AS_SUMMARY_NEEDED;
2201 return $status;
2202 }
2203
2204 // Do not allow the user to post an empty comment
2205 if ( $this->textbox1 == '' ) {
2206 $this->missingComment = true;
2207 $status->fatal( 'missingcommenttext' );
2208 $status->value = self::AS_TEXTBOX_EMPTY;
2209 return $status;
2210 }
2211 } elseif ( !$this->allowBlankSummary
2212 && !$content->equals( $this->getOriginalContent( $user ) )
2213 && !$content->isRedirect()
2214 && md5( $this->summary ) == $this->autoSumm
2215 ) {
2216 $this->missingSummary = true;
2217 $status->fatal( 'missingsummary' );
2218 $status->value = self::AS_SUMMARY_NEEDED;
2219 return $status;
2220 }
2221
2222 # All's well
2223 $sectionanchor = '';
2224 if ( $this->section == 'new' ) {
2225 $this->summary = $this->newSectionSummary( $sectionanchor );
2226 } elseif ( $this->section != '' ) {
2227 # Try to get a section anchor from the section source, redirect
2228 # to edited section if header found.
2229 # XXX: Might be better to integrate this into Article::replaceSectionAtRev
2230 # for duplicate heading checking and maybe parsing.
2231 $hasmatch = preg_match( "/^ *([=]{1,6})(.*?)(\\1) *\\n/i", $this->textbox1, $matches );
2232 # We can't deal with anchors, includes, html etc in the header for now,
2233 # headline would need to be parsed to improve this.
2234 if ( $hasmatch && strlen( $matches[2] ) > 0 ) {
2235 $sectionanchor = $this->guessSectionName( $matches[2] );
2236 }
2237 }
2238 $result['sectionanchor'] = $sectionanchor;
2239
2240 // Save errors may fall down to the edit form, but we've now
2241 // merged the section into full text. Clear the section field
2242 // so that later submission of conflict forms won't try to
2243 // replace that into a duplicated mess.
2244 $this->textbox1 = $this->toEditText( $content );
2245 $this->section = '';
2246
2247 $status->value = self::AS_SUCCESS_UPDATE;
2248 }
2249
2250 if ( !$this->allowSelfRedirect
2251 && $content->isRedirect()
2252 && $content->getRedirectTarget()->equals( $this->getTitle() )
2253 ) {
2254 // If the page already redirects to itself, don't warn.
2255 $currentTarget = $this->getCurrentContent()->getRedirectTarget();
2256 if ( !$currentTarget || !$currentTarget->equals( $this->getTitle() ) ) {
2257 $this->selfRedirect = true;
2258 $status->fatal( 'selfredirect' );
2259 $status->value = self::AS_SELF_REDIRECT;
2260 return $status;
2261 }
2262 }
2263
2264 // Check for length errors again now that the section is merged in
2265 $this->contentLength = strlen( $this->toEditText( $content ) );
2266 if ( $this->contentLength > $maxArticleSize * 1024 ) {
2267 $this->tooBig = true;
2268 $status->setResult( false, self::AS_MAX_ARTICLE_SIZE_EXCEEDED );
2269 return $status;
2270 }
2271
2272 $flags = EDIT_AUTOSUMMARY |
2273 ( $new ? EDIT_NEW : EDIT_UPDATE ) |
2274 ( ( $this->minoredit && !$this->isNew ) ? EDIT_MINOR : 0 ) |
2275 ( $bot ? EDIT_FORCE_BOT : 0 );
2276
2277 $doEditStatus = $this->page->doEditContent(
2278 $content,
2279 $this->summary,
2280 $flags,
2281 false,
2282 $user,
2283 $content->getDefaultFormat(),
2284 $this->changeTags,
2285 $this->undidRev
2286 );
2287
2288 if ( !$doEditStatus->isOK() ) {
2289 // Failure from doEdit()
2290 // Show the edit conflict page for certain recognized errors from doEdit(),
2291 // but don't show it for errors from extension hooks
2292 $errors = $doEditStatus->getErrorsArray();
2293 if ( in_array( $errors[0][0],
2294 [ 'edit-gone-missing', 'edit-conflict', 'edit-already-exists' ] )
2295 ) {
2296 $this->isConflict = true;
2297 // Destroys data doEdit() put in $status->value but who cares
2298 $doEditStatus->value = self::AS_END;
2299 }
2300 return $doEditStatus;
2301 }
2302
2303 $result['nullEdit'] = $doEditStatus->hasMessage( 'edit-no-change' );
2304 if ( $result['nullEdit'] ) {
2305 // We don't know if it was a null edit until now, so increment here
2306 $user->pingLimiter( 'linkpurge' );
2307 }
2308 $result['redirect'] = $content->isRedirect();
2309
2310 $this->updateWatchlist();
2311
2312 // If the content model changed, add a log entry
2313 if ( $changingContentModel ) {
2314 $this->addContentModelChangeLogEntry(
2315 $user,
2316 $new ? false : $oldContentModel,
2317 $this->contentModel,
2318 $this->summary
2319 );
2320 }
2321
2322 return $status;
2323 }
2324
2325 /**
2326 * @param User $user
2327 * @param string|false $oldModel false if the page is being newly created
2328 * @param string $newModel
2329 * @param string $reason
2330 */
2331 protected function addContentModelChangeLogEntry( User $user, $oldModel, $newModel, $reason ) {
2332 $new = $oldModel === false;
2333 $log = new ManualLogEntry( 'contentmodel', $new ? 'new' : 'change' );
2334 $log->setPerformer( $user );
2335 $log->setTarget( $this->mTitle );
2336 $log->setComment( $reason );
2337 $log->setParameters( [
2338 '4::oldmodel' => $oldModel,
2339 '5::newmodel' => $newModel
2340 ] );
2341 $logid = $log->insert();
2342 $log->publish( $logid );
2343 }
2344
2345 /**
2346 * Register the change of watch status
2347 */
2348 protected function updateWatchlist() {
2349 $user = $this->context->getUser();
2350 if ( !$user->isLoggedIn() ) {
2351 return;
2352 }
2353
2354 $title = $this->mTitle;
2355 $watch = $this->watchthis;
2356 // Do this in its own transaction to reduce contention...
2357 DeferredUpdates::addCallableUpdate( function () use ( $user, $title, $watch ) {
2358 if ( $watch == $user->isWatched( $title, User::IGNORE_USER_RIGHTS ) ) {
2359 return; // nothing to change
2360 }
2361 WatchAction::doWatchOrUnwatch( $watch, $title, $user );
2362 } );
2363 }
2364
2365 /**
2366 * Attempts to do 3-way merge of edit content with a base revision
2367 * and current content, in case of edit conflict, in whichever way appropriate
2368 * for the content type.
2369 *
2370 * @since 1.21
2371 *
2372 * @param Content $editContent
2373 *
2374 * @return bool
2375 */
2376 private function mergeChangesIntoContent( &$editContent ) {
2377 $db = wfGetDB( DB_MASTER );
2378
2379 // This is the revision that was current at the time editing was initiated on the client,
2380 // even if the edit was based on an old revision.
2381 $baseRevision = $this->getBaseRevision();
2382 $baseContent = $baseRevision ? $baseRevision->getContent() : null;
2383
2384 if ( is_null( $baseContent ) ) {
2385 return false;
2386 }
2387
2388 // The current state, we want to merge updates into it
2389 $currentRevision = Revision::loadFromTitle( $db, $this->mTitle );
2390 $currentContent = $currentRevision ? $currentRevision->getContent() : null;
2391
2392 if ( is_null( $currentContent ) ) {
2393 return false;
2394 }
2395
2396 $handler = ContentHandler::getForModelID( $baseContent->getModel() );
2397
2398 $result = $handler->merge3( $baseContent, $editContent, $currentContent );
2399
2400 if ( $result ) {
2401 $editContent = $result;
2402 // Update parentRevId to what we just merged.
2403 $this->parentRevId = $currentRevision->getId();
2404 return true;
2405 }
2406
2407 return false;
2408 }
2409
2410 /**
2411 * Returns the revision that was current at the time editing was initiated on the client,
2412 * even if the edit was based on an old revision.
2413 *
2414 * @warning this method is very poorly named. If the user opened the form with ?oldid=X,
2415 * one might think of X as the "base revision", which is NOT what this returns,
2416 * see oldid for that. One might further assume that this corresponds to the $baseRevId
2417 * parameter of WikiPage::doEditContent, which is not the case either.
2418 * getExpectedParentRevision() would perhaps be a better name.
2419 *
2420 * @return Revision|null Current version when editing was initiated on the client
2421 */
2422 public function getBaseRevision() {
2423 if ( !$this->mBaseRevision ) {
2424 $db = wfGetDB( DB_MASTER );
2425 $this->mBaseRevision = $this->editRevId
2426 ? Revision::newFromId( $this->editRevId, Revision::READ_LATEST )
2427 : Revision::loadFromTimestamp( $db, $this->mTitle, $this->edittime );
2428 }
2429 return $this->mBaseRevision;
2430 }
2431
2432 /**
2433 * Check given input text against $wgSpamRegex, and return the text of the first match.
2434 *
2435 * @param string $text
2436 *
2437 * @return string|bool Matching string or false
2438 */
2439 public static function matchSpamRegex( $text ) {
2440 global $wgSpamRegex;
2441 // For back compatibility, $wgSpamRegex may be a single string or an array of regexes.
2442 $regexes = (array)$wgSpamRegex;
2443 return self::matchSpamRegexInternal( $text, $regexes );
2444 }
2445
2446 /**
2447 * Check given input text against $wgSummarySpamRegex, and return the text of the first match.
2448 *
2449 * @param string $text
2450 *
2451 * @return string|bool Matching string or false
2452 */
2453 public static function matchSummarySpamRegex( $text ) {
2454 global $wgSummarySpamRegex;
2455 $regexes = (array)$wgSummarySpamRegex;
2456 return self::matchSpamRegexInternal( $text, $regexes );
2457 }
2458
2459 /**
2460 * @param string $text
2461 * @param array $regexes
2462 * @return bool|string
2463 */
2464 protected static function matchSpamRegexInternal( $text, $regexes ) {
2465 foreach ( $regexes as $regex ) {
2466 $matches = [];
2467 if ( preg_match( $regex, $text, $matches ) ) {
2468 return $matches[0];
2469 }
2470 }
2471 return false;
2472 }
2473
2474 public function setHeaders() {
2475 $out = $this->context->getOutput();
2476
2477 $out->addModules( 'mediawiki.action.edit' );
2478 $out->addModuleStyles( 'mediawiki.action.edit.styles' );
2479 $out->addModuleStyles( 'mediawiki.editfont.styles' );
2480
2481 $user = $this->context->getUser();
2482 if ( $user->getOption( 'showtoolbar' ) ) {
2483 // The addition of default buttons is handled by getEditToolbar() which
2484 // has its own dependency on this module. The call here ensures the module
2485 // is loaded in time (it has position "top") for other modules to register
2486 // buttons (e.g. extensions, gadgets, user scripts).
2487 $out->addModules( 'mediawiki.toolbar' );
2488 }
2489
2490 if ( $user->getOption( 'uselivepreview' ) ) {
2491 $out->addModules( 'mediawiki.action.edit.preview' );
2492 }
2493
2494 if ( $user->getOption( 'useeditwarning' ) ) {
2495 $out->addModules( 'mediawiki.action.edit.editWarning' );
2496 }
2497
2498 # Enabled article-related sidebar, toplinks, etc.
2499 $out->setArticleRelated( true );
2500
2501 $contextTitle = $this->getContextTitle();
2502 if ( $this->isConflict ) {
2503 $msg = 'editconflict';
2504 } elseif ( $contextTitle->exists() && $this->section != '' ) {
2505 $msg = $this->section == 'new' ? 'editingcomment' : 'editingsection';
2506 } else {
2507 $msg = $contextTitle->exists()
2508 || ( $contextTitle->getNamespace() == NS_MEDIAWIKI
2509 && $contextTitle->getDefaultMessageText() !== false
2510 )
2511 ? 'editing'
2512 : 'creating';
2513 }
2514
2515 # Use the title defined by DISPLAYTITLE magic word when present
2516 # NOTE: getDisplayTitle() returns HTML while getPrefixedText() returns plain text.
2517 # setPageTitle() treats the input as wikitext, which should be safe in either case.
2518 $displayTitle = isset( $this->mParserOutput ) ? $this->mParserOutput->getDisplayTitle() : false;
2519 if ( $displayTitle === false ) {
2520 $displayTitle = $contextTitle->getPrefixedText();
2521 } else {
2522 $out->setDisplayTitle( $displayTitle );
2523 }
2524 $out->setPageTitle( $this->context->msg( $msg, $displayTitle ) );
2525
2526 $config = $this->context->getConfig();
2527
2528 # Transmit the name of the message to JavaScript for live preview
2529 # Keep Resources.php/mediawiki.action.edit.preview in sync with the possible keys
2530 $out->addJsConfigVars( [
2531 'wgEditMessage' => $msg,
2532 'wgAjaxEditStash' => $config->get( 'AjaxEditStash' ),
2533 ] );
2534
2535 // Add whether to use 'save' or 'publish' messages to JavaScript for post-edit, other
2536 // editors, etc.
2537 $out->addJsConfigVars(
2538 'wgEditSubmitButtonLabelPublish',
2539 $config->get( 'EditSubmitButtonLabelPublish' )
2540 );
2541 }
2542
2543 /**
2544 * Show all applicable editing introductions
2545 */
2546 protected function showIntro() {
2547 if ( $this->suppressIntro ) {
2548 return;
2549 }
2550
2551 $out = $this->context->getOutput();
2552 $namespace = $this->mTitle->getNamespace();
2553
2554 if ( $namespace == NS_MEDIAWIKI ) {
2555 # Show a warning if editing an interface message
2556 $out->wrapWikiMsg( "<div class='mw-editinginterface'>\n$1\n</div>", 'editinginterface' );
2557 # If this is a default message (but not css, json, or js),
2558 # show a hint that it is translatable on translatewiki.net
2559 if (
2560 !$this->mTitle->hasContentModel( CONTENT_MODEL_CSS )
2561 && !$this->mTitle->hasContentModel( CONTENT_MODEL_JSON )
2562 && !$this->mTitle->hasContentModel( CONTENT_MODEL_JAVASCRIPT )
2563 ) {
2564 $defaultMessageText = $this->mTitle->getDefaultMessageText();
2565 if ( $defaultMessageText !== false ) {
2566 $out->wrapWikiMsg( "<div class='mw-translateinterface'>\n$1\n</div>",
2567 'translateinterface' );
2568 }
2569 }
2570 } elseif ( $namespace == NS_FILE ) {
2571 # Show a hint to shared repo
2572 $file = wfFindFile( $this->mTitle );
2573 if ( $file && !$file->isLocal() ) {
2574 $descUrl = $file->getDescriptionUrl();
2575 # there must be a description url to show a hint to shared repo
2576 if ( $descUrl ) {
2577 if ( !$this->mTitle->exists() ) {
2578 $out->wrapWikiMsg( "<div class=\"mw-sharedupload-desc-create\">\n$1\n</div>", [
2579 'sharedupload-desc-create', $file->getRepo()->getDisplayName(), $descUrl
2580 ] );
2581 } else {
2582 $out->wrapWikiMsg( "<div class=\"mw-sharedupload-desc-edit\">\n$1\n</div>", [
2583 'sharedupload-desc-edit', $file->getRepo()->getDisplayName(), $descUrl
2584 ] );
2585 }
2586 }
2587 }
2588 }
2589
2590 # Show a warning message when someone creates/edits a user (talk) page but the user does not exist
2591 # Show log extract when the user is currently blocked
2592 if ( $namespace == NS_USER || $namespace == NS_USER_TALK ) {
2593 $username = explode( '/', $this->mTitle->getText(), 2 )[0];
2594 $user = User::newFromName( $username, false /* allow IP users */ );
2595 $ip = User::isIP( $username );
2596 $block = Block::newFromTarget( $user, $user );
2597 if ( !( $user && $user->isLoggedIn() ) && !$ip ) { # User does not exist
2598 $out->wrapWikiMsg( "<div class=\"mw-userpage-userdoesnotexist error\">\n$1\n</div>",
2599 [ 'userpage-userdoesnotexist', wfEscapeWikiText( $username ) ] );
2600 } elseif ( !is_null( $block ) && $block->getType() != Block::TYPE_AUTO ) {
2601 # Show log extract if the user is currently blocked
2602 LogEventsList::showLogExtract(
2603 $out,
2604 'block',
2605 MWNamespace::getCanonicalName( NS_USER ) . ':' . $block->getTarget(),
2606 '',
2607 [
2608 'lim' => 1,
2609 'showIfEmpty' => false,
2610 'msgKey' => [
2611 'blocked-notice-logextract',
2612 $user->getName() # Support GENDER in notice
2613 ]
2614 ]
2615 );
2616 }
2617 }
2618 # Try to add a custom edit intro, or use the standard one if this is not possible.
2619 if ( !$this->showCustomIntro() && !$this->mTitle->exists() ) {
2620 $helpLink = wfExpandUrl( Skin::makeInternalOrExternalUrl(
2621 $this->context->msg( 'helppage' )->inContentLanguage()->text()
2622 ) );
2623 if ( $this->context->getUser()->isLoggedIn() ) {
2624 $out->wrapWikiMsg(
2625 // Suppress the external link icon, consider the help url an internal one
2626 "<div class=\"mw-newarticletext plainlinks\">\n$1\n</div>",
2627 [
2628 'newarticletext',
2629 $helpLink
2630 ]
2631 );
2632 } else {
2633 $out->wrapWikiMsg(
2634 // Suppress the external link icon, consider the help url an internal one
2635 "<div class=\"mw-newarticletextanon plainlinks\">\n$1\n</div>",
2636 [
2637 'newarticletextanon',
2638 $helpLink
2639 ]
2640 );
2641 }
2642 }
2643 # Give a notice if the user is editing a deleted/moved page...
2644 if ( !$this->mTitle->exists() ) {
2645 $dbr = wfGetDB( DB_REPLICA );
2646
2647 LogEventsList::showLogExtract( $out, [ 'delete', 'move' ], $this->mTitle,
2648 '',
2649 [
2650 'lim' => 10,
2651 'conds' => [ 'log_action != ' . $dbr->addQuotes( 'revision' ) ],
2652 'showIfEmpty' => false,
2653 'msgKey' => [ 'recreate-moveddeleted-warn' ]
2654 ]
2655 );
2656 }
2657 }
2658
2659 /**
2660 * Attempt to show a custom editing introduction, if supplied
2661 *
2662 * @return bool
2663 */
2664 protected function showCustomIntro() {
2665 if ( $this->editintro ) {
2666 $title = Title::newFromText( $this->editintro );
2667 if ( $title instanceof Title && $title->exists() && $title->userCan( 'read' ) ) {
2668 // Added using template syntax, to take <noinclude>'s into account.
2669 $this->context->getOutput()->addWikiTextAsContent(
2670 '<div class="mw-editintro">{{:' . $title->getFullText() . '}}</div>',
2671 /*linestart*/true,
2672 $this->mTitle
2673 );
2674 return true;
2675 }
2676 }
2677 return false;
2678 }
2679
2680 /**
2681 * Gets an editable textual representation of $content.
2682 * The textual representation can be turned by into a Content object by the
2683 * toEditContent() method.
2684 *
2685 * If $content is null or false or a string, $content is returned unchanged.
2686 *
2687 * If the given Content object is not of a type that can be edited using
2688 * the text base EditPage, an exception will be raised. Set
2689 * $this->allowNonTextContent to true to allow editing of non-textual
2690 * content.
2691 *
2692 * @param Content|null|bool|string $content
2693 * @return string The editable text form of the content.
2694 *
2695 * @throws MWException If $content is not an instance of TextContent and
2696 * $this->allowNonTextContent is not true.
2697 */
2698 protected function toEditText( $content ) {
2699 if ( $content === null || $content === false || is_string( $content ) ) {
2700 return $content;
2701 }
2702
2703 if ( !$this->isSupportedContentModel( $content->getModel() ) ) {
2704 throw new MWException( 'This content model is not supported: ' . $content->getModel() );
2705 }
2706
2707 return $content->serialize( $this->contentFormat );
2708 }
2709
2710 /**
2711 * Turns the given text into a Content object by unserializing it.
2712 *
2713 * If the resulting Content object is not of a type that can be edited using
2714 * the text base EditPage, an exception will be raised. Set
2715 * $this->allowNonTextContent to true to allow editing of non-textual
2716 * content.
2717 *
2718 * @param string|null|bool $text Text to unserialize
2719 * @return Content|bool|null The content object created from $text. If $text was false
2720 * or null, then false or null will be returned instead.
2721 *
2722 * @throws MWException If unserializing the text results in a Content
2723 * object that is not an instance of TextContent and
2724 * $this->allowNonTextContent is not true.
2725 */
2726 protected function toEditContent( $text ) {
2727 if ( $text === false || $text === null ) {
2728 return $text;
2729 }
2730
2731 $content = ContentHandler::makeContent( $text, $this->getTitle(),
2732 $this->contentModel, $this->contentFormat );
2733
2734 if ( !$this->isSupportedContentModel( $content->getModel() ) ) {
2735 throw new MWException( 'This content model is not supported: ' . $content->getModel() );
2736 }
2737
2738 return $content;
2739 }
2740
2741 /**
2742 * Send the edit form and related headers to OutputPage
2743 * @param callable|null $formCallback That takes an OutputPage parameter; will be called
2744 * during form output near the top, for captchas and the like.
2745 *
2746 * The $formCallback parameter is deprecated since MediaWiki 1.25. Please
2747 * use the EditPage::showEditForm:fields hook instead.
2748 */
2749 public function showEditForm( $formCallback = null ) {
2750 # need to parse the preview early so that we know which templates are used,
2751 # otherwise users with "show preview after edit box" will get a blank list
2752 # we parse this near the beginning so that setHeaders can do the title
2753 # setting work instead of leaving it in getPreviewText
2754 $previewOutput = '';
2755 if ( $this->formtype == 'preview' ) {
2756 $previewOutput = $this->getPreviewText();
2757 }
2758
2759 $out = $this->context->getOutput();
2760
2761 // Avoid PHP 7.1 warning of passing $this by reference
2762 $editPage = $this;
2763 Hooks::run( 'EditPage::showEditForm:initial', [ &$editPage, &$out ] );
2764
2765 $this->setHeaders();
2766
2767 $this->addTalkPageText();
2768 $this->addEditNotices();
2769
2770 if ( !$this->isConflict &&
2771 $this->section != '' &&
2772 !$this->isSectionEditSupported() ) {
2773 // We use $this->section to much before this and getVal('wgSection') directly in other places
2774 // at this point we can't reset $this->section to '' to fallback to non-section editing.
2775 // Someone is welcome to try refactoring though
2776 $out->showErrorPage( 'sectioneditnotsupported-title', 'sectioneditnotsupported-text' );
2777 return;
2778 }
2779
2780 $this->showHeader();
2781
2782 $out->addHTML( $this->editFormPageTop );
2783
2784 $user = $this->context->getUser();
2785 if ( $user->getOption( 'previewontop' ) ) {
2786 $this->displayPreviewArea( $previewOutput, true );
2787 }
2788
2789 $out->addHTML( $this->editFormTextTop );
2790
2791 $showToolbar = true;
2792 if ( $this->wasDeletedSinceLastEdit() ) {
2793 if ( $this->formtype == 'save' ) {
2794 // Hide the toolbar and edit area, user can click preview to get it back
2795 // Add an confirmation checkbox and explanation.
2796 $showToolbar = false;
2797 } else {
2798 $out->wrapWikiMsg( "<div class='error mw-deleted-while-editing'>\n$1\n</div>",
2799 'deletedwhileediting' );
2800 }
2801 }
2802
2803 // @todo add EditForm plugin interface and use it here!
2804 // search for textarea1 and textarea2, and allow EditForm to override all uses.
2805 $out->addHTML( Html::openElement(
2806 'form',
2807 [
2808 'class' => 'mw-editform',
2809 'id' => self::EDITFORM_ID,
2810 'name' => self::EDITFORM_ID,
2811 'method' => 'post',
2812 'action' => $this->getActionURL( $this->getContextTitle() ),
2813 'enctype' => 'multipart/form-data'
2814 ]
2815 ) );
2816
2817 if ( is_callable( $formCallback ) ) {
2818 wfWarn( 'The $formCallback parameter to ' . __METHOD__ . 'is deprecated' );
2819 call_user_func_array( $formCallback, [ &$out ] );
2820 }
2821
2822 // Add a check for Unicode support
2823 $out->addHTML( Html::hidden( 'wpUnicodeCheck', self::UNICODE_CHECK ) );
2824
2825 // Add an empty field to trip up spambots
2826 $out->addHTML(
2827 Xml::openElement( 'div', [ 'id' => 'antispam-container', 'style' => 'display: none;' ] )
2828 . Html::rawElement(
2829 'label',
2830 [ 'for' => 'wpAntispam' ],
2831 $this->context->msg( 'simpleantispam-label' )->parse()
2832 )
2833 . Xml::element(
2834 'input',
2835 [
2836 'type' => 'text',
2837 'name' => 'wpAntispam',
2838 'id' => 'wpAntispam',
2839 'value' => ''
2840 ]
2841 )
2842 . Xml::closeElement( 'div' )
2843 );
2844
2845 // Avoid PHP 7.1 warning of passing $this by reference
2846 $editPage = $this;
2847 Hooks::run( 'EditPage::showEditForm:fields', [ &$editPage, &$out ] );
2848
2849 // Put these up at the top to ensure they aren't lost on early form submission
2850 $this->showFormBeforeText();
2851
2852 if ( $this->wasDeletedSinceLastEdit() && 'save' == $this->formtype ) {
2853 $username = $this->lastDelete->user_name;
2854 $comment = CommentStore::getStore()
2855 ->getComment( 'log_comment', $this->lastDelete )->text;
2856
2857 // It is better to not parse the comment at all than to have templates expanded in the middle
2858 // TODO: can the checkLabel be moved outside of the div so that wrapWikiMsg could be used?
2859 $key = $comment === ''
2860 ? 'confirmrecreate-noreason'
2861 : 'confirmrecreate';
2862 $out->addHTML(
2863 '<div class="mw-confirm-recreate">' .
2864 $this->context->msg( $key, $username, "<nowiki>$comment</nowiki>" )->parse() .
2865 Xml::checkLabel( $this->context->msg( 'recreate' )->text(), 'wpRecreate', 'wpRecreate', false,
2866 [ 'title' => Linker::titleAttrib( 'recreate' ), 'tabindex' => 1, 'id' => 'wpRecreate' ]
2867 ) .
2868 '</div>'
2869 );
2870 }
2871
2872 # When the summary is hidden, also hide them on preview/show changes
2873 if ( $this->nosummary ) {
2874 $out->addHTML( Html::hidden( 'nosummary', true ) );
2875 }
2876
2877 # If a blank edit summary was previously provided, and the appropriate
2878 # user preference is active, pass a hidden tag as wpIgnoreBlankSummary. This will stop the
2879 # user being bounced back more than once in the event that a summary
2880 # is not required.
2881 # ####
2882 # For a bit more sophisticated detection of blank summaries, hash the
2883 # automatic one and pass that in the hidden field wpAutoSummary.
2884 if ( $this->missingSummary || ( $this->section == 'new' && $this->nosummary ) ) {
2885 $out->addHTML( Html::hidden( 'wpIgnoreBlankSummary', true ) );
2886 }
2887
2888 if ( $this->undidRev ) {
2889 $out->addHTML( Html::hidden( 'wpUndidRevision', $this->undidRev ) );
2890 }
2891
2892 if ( $this->selfRedirect ) {
2893 $out->addHTML( Html::hidden( 'wpIgnoreSelfRedirect', true ) );
2894 }
2895
2896 if ( $this->hasPresetSummary ) {
2897 // If a summary has been preset using &summary= we don't want to prompt for
2898 // a different summary. Only prompt for a summary if the summary is blanked.
2899 // (T19416)
2900 $this->autoSumm = md5( '' );
2901 }
2902
2903 $autosumm = $this->autoSumm !== '' ? $this->autoSumm : md5( $this->summary );
2904 $out->addHTML( Html::hidden( 'wpAutoSummary', $autosumm ) );
2905
2906 $out->addHTML( Html::hidden( 'oldid', $this->oldid ) );
2907 $out->addHTML( Html::hidden( 'parentRevId', $this->getParentRevId() ) );
2908
2909 $out->addHTML( Html::hidden( 'format', $this->contentFormat ) );
2910 $out->addHTML( Html::hidden( 'model', $this->contentModel ) );
2911
2912 $out->enableOOUI();
2913
2914 if ( $this->section == 'new' ) {
2915 $this->showSummaryInput( true, $this->summary );
2916 $out->addHTML( $this->getSummaryPreview( true, $this->summary ) );
2917 }
2918
2919 $out->addHTML( $this->editFormTextBeforeContent );
2920 if ( $this->isConflict ) {
2921 // In an edit conflict, we turn textbox2 into the user's text,
2922 // and textbox1 into the stored version
2923 $this->textbox2 = $this->textbox1;
2924
2925 $content = $this->getCurrentContent();
2926 $this->textbox1 = $this->toEditText( $content );
2927
2928 $editConflictHelper = $this->getEditConflictHelper();
2929 $editConflictHelper->setTextboxes( $this->textbox2, $this->textbox1 );
2930 $editConflictHelper->setContentModel( $this->contentModel );
2931 $editConflictHelper->setContentFormat( $this->contentFormat );
2932 $out->addHTML( $editConflictHelper->getEditFormHtmlBeforeContent() );
2933 }
2934
2935 if ( !$this->mTitle->isUserConfigPage() && $showToolbar && $user->getOption( 'showtoolbar' ) ) {
2936 $out->addHTML( self::getEditToolbar( $this->mTitle ) );
2937 }
2938
2939 if ( $this->blankArticle ) {
2940 $out->addHTML( Html::hidden( 'wpIgnoreBlankArticle', true ) );
2941 }
2942
2943 if ( $this->isConflict ) {
2944 // In an edit conflict bypass the overridable content form method
2945 // and fallback to the raw wpTextbox1 since editconflicts can't be
2946 // resolved between page source edits and custom ui edits using the
2947 // custom edit ui.
2948 $conflictTextBoxAttribs = [];
2949 if ( $this->wasDeletedSinceLastEdit() ) {
2950 $conflictTextBoxAttribs['style'] = 'display:none;';
2951 } elseif ( $this->isOldRev ) {
2952 $conflictTextBoxAttribs['class'] = 'mw-textarea-oldrev';
2953 }
2954
2955 $out->addHTML( $editConflictHelper->getEditConflictMainTextBox( $conflictTextBoxAttribs ) );
2956 $out->addHTML( $editConflictHelper->getEditFormHtmlAfterContent() );
2957 } else {
2958 $this->showContentForm();
2959 }
2960
2961 $out->addHTML( $this->editFormTextAfterContent );
2962
2963 $this->showStandardInputs();
2964
2965 $this->showFormAfterText();
2966
2967 $this->showTosSummary();
2968
2969 $this->showEditTools();
2970
2971 $out->addHTML( $this->editFormTextAfterTools . "\n" );
2972
2973 $out->addHTML( $this->makeTemplatesOnThisPageList( $this->getTemplates() ) );
2974
2975 $out->addHTML( Html::rawElement( 'div', [ 'class' => 'hiddencats' ],
2976 Linker::formatHiddenCategories( $this->page->getHiddenCategories() ) ) );
2977
2978 $out->addHTML( Html::rawElement( 'div', [ 'class' => 'limitreport' ],
2979 self::getPreviewLimitReport( $this->mParserOutput ) ) );
2980
2981 $out->addModules( 'mediawiki.action.edit.collapsibleFooter' );
2982
2983 if ( $this->isConflict ) {
2984 try {
2985 $this->showConflict();
2986 } catch ( MWContentSerializationException $ex ) {
2987 // this can't really happen, but be nice if it does.
2988 $msg = $this->context->msg(
2989 'content-failed-to-parse',
2990 $this->contentModel,
2991 $this->contentFormat,
2992 $ex->getMessage()
2993 );
2994 $out->addWikiText( '<div class="error">' . $msg->plain() . '</div>' );
2995 }
2996 }
2997
2998 // Set a hidden field so JS knows what edit form mode we are in
2999 if ( $this->isConflict ) {
3000 $mode = 'conflict';
3001 } elseif ( $this->preview ) {
3002 $mode = 'preview';
3003 } elseif ( $this->diff ) {
3004 $mode = 'diff';
3005 } else {
3006 $mode = 'text';
3007 }
3008 $out->addHTML( Html::hidden( 'mode', $mode, [ 'id' => 'mw-edit-mode' ] ) );
3009
3010 // Marker for detecting truncated form data. This must be the last
3011 // parameter sent in order to be of use, so do not move me.
3012 $out->addHTML( Html::hidden( 'wpUltimateParam', true ) );
3013 $out->addHTML( $this->editFormTextBottom . "\n</form>\n" );
3014
3015 if ( !$user->getOption( 'previewontop' ) ) {
3016 $this->displayPreviewArea( $previewOutput, false );
3017 }
3018 }
3019
3020 /**
3021 * Wrapper around TemplatesOnThisPageFormatter to make
3022 * a "templates on this page" list.
3023 *
3024 * @param Title[] $templates
3025 * @return string HTML
3026 */
3027 public function makeTemplatesOnThisPageList( array $templates ) {
3028 $templateListFormatter = new TemplatesOnThisPageFormatter(
3029 $this->context, MediaWikiServices::getInstance()->getLinkRenderer()
3030 );
3031
3032 // preview if preview, else section if section, else false
3033 $type = false;
3034 if ( $this->preview ) {
3035 $type = 'preview';
3036 } elseif ( $this->section != '' ) {
3037 $type = 'section';
3038 }
3039
3040 return Html::rawElement( 'div', [ 'class' => 'templatesUsed' ],
3041 $templateListFormatter->format( $templates, $type )
3042 );
3043 }
3044
3045 /**
3046 * Extract the section title from current section text, if any.
3047 *
3048 * @param string $text
3049 * @return string|bool String or false
3050 */
3051 public static function extractSectionTitle( $text ) {
3052 preg_match( "/^(=+)(.+)\\1\\s*(\n|$)/i", $text, $matches );
3053 if ( !empty( $matches[2] ) ) {
3054 global $wgParser;
3055 return $wgParser->stripSectionName( trim( $matches[2] ) );
3056 } else {
3057 return false;
3058 }
3059 }
3060
3061 protected function showHeader() {
3062 $out = $this->context->getOutput();
3063 $user = $this->context->getUser();
3064 if ( $this->isConflict ) {
3065 $this->addExplainConflictHeader( $out );
3066 $this->editRevId = $this->page->getLatest();
3067 } else {
3068 if ( $this->section != '' && $this->section != 'new' ) {
3069 if ( !$this->summary && !$this->preview && !$this->diff ) {
3070 $sectionTitle = self::extractSectionTitle( $this->textbox1 ); // FIXME: use Content object
3071 if ( $sectionTitle !== false ) {
3072 $this->summary = "/* $sectionTitle */ ";
3073 }
3074 }
3075 }
3076
3077 $buttonLabel = $this->context->msg( $this->getSubmitButtonLabel() )->text();
3078
3079 if ( $this->missingComment ) {
3080 $out->wrapWikiMsg( "<div id='mw-missingcommenttext'>\n$1\n</div>", 'missingcommenttext' );
3081 }
3082
3083 if ( $this->missingSummary && $this->section != 'new' ) {
3084 $out->wrapWikiMsg(
3085 "<div id='mw-missingsummary'>\n$1\n</div>",
3086 [ 'missingsummary', $buttonLabel ]
3087 );
3088 }
3089
3090 if ( $this->missingSummary && $this->section == 'new' ) {
3091 $out->wrapWikiMsg(
3092 "<div id='mw-missingcommentheader'>\n$1\n</div>",
3093 [ 'missingcommentheader', $buttonLabel ]
3094 );
3095 }
3096
3097 if ( $this->blankArticle ) {
3098 $out->wrapWikiMsg(
3099 "<div id='mw-blankarticle'>\n$1\n</div>",
3100 [ 'blankarticle', $buttonLabel ]
3101 );
3102 }
3103
3104 if ( $this->selfRedirect ) {
3105 $out->wrapWikiMsg(
3106 "<div id='mw-selfredirect'>\n$1\n</div>",
3107 [ 'selfredirect', $buttonLabel ]
3108 );
3109 }
3110
3111 if ( $this->hookError !== '' ) {
3112 $out->addWikiText( $this->hookError );
3113 }
3114
3115 if ( $this->section != 'new' ) {
3116 $revision = $this->mArticle->getRevisionFetched();
3117 if ( $revision ) {
3118 // Let sysop know that this will make private content public if saved
3119
3120 if ( !$revision->userCan( Revision::DELETED_TEXT, $user ) ) {
3121 $out->wrapWikiMsg(
3122 "<div class='mw-warning plainlinks'>\n$1\n</div>\n",
3123 'rev-deleted-text-permission'
3124 );
3125 } elseif ( $revision->isDeleted( Revision::DELETED_TEXT ) ) {
3126 $out->wrapWikiMsg(
3127 "<div class='mw-warning plainlinks'>\n$1\n</div>\n",
3128 'rev-deleted-text-view'
3129 );
3130 }
3131
3132 if ( !$revision->isCurrent() ) {
3133 $this->mArticle->setOldSubtitle( $revision->getId() );
3134 $out->addWikiMsg( 'editingold' );
3135 $this->isOldRev = true;
3136 }
3137 } elseif ( $this->mTitle->exists() ) {
3138 // Something went wrong
3139
3140 $out->wrapWikiMsg( "<div class='errorbox'>\n$1\n</div>\n",
3141 [ 'missing-revision', $this->oldid ] );
3142 }
3143 }
3144 }
3145
3146 if ( wfReadOnly() ) {
3147 $out->wrapWikiMsg(
3148 "<div id=\"mw-read-only-warning\">\n$1\n</div>",
3149 [ 'readonlywarning', wfReadOnlyReason() ]
3150 );
3151 } elseif ( $user->isAnon() ) {
3152 if ( $this->formtype != 'preview' ) {
3153 $out->wrapWikiMsg(
3154 "<div id='mw-anon-edit-warning' class='warningbox'>\n$1\n</div>",
3155 [ 'anoneditwarning',
3156 // Log-in link
3157 SpecialPage::getTitleFor( 'Userlogin' )->getFullURL( [
3158 'returnto' => $this->getTitle()->getPrefixedDBkey()
3159 ] ),
3160 // Sign-up link
3161 SpecialPage::getTitleFor( 'CreateAccount' )->getFullURL( [
3162 'returnto' => $this->getTitle()->getPrefixedDBkey()
3163 ] )
3164 ]
3165 );
3166 } else {
3167 $out->wrapWikiMsg( "<div id=\"mw-anon-preview-warning\" class=\"warningbox\">\n$1</div>",
3168 'anonpreviewwarning'
3169 );
3170 }
3171 } else {
3172 if ( $this->mTitle->isUserConfigPage() ) {
3173 # Check the skin exists
3174 if ( $this->isWrongCaseUserConfigPage() ) {
3175 $out->wrapWikiMsg(
3176 "<div class='error' id='mw-userinvalidconfigtitle'>\n$1\n</div>",
3177 [ 'userinvalidconfigtitle', $this->mTitle->getSkinFromConfigSubpage() ]
3178 );
3179 }
3180 if ( $this->getTitle()->isSubpageOf( $user->getUserPage() ) ) {
3181 $isUserCssConfig = $this->mTitle->isUserCssConfigPage();
3182 $isUserJsonConfig = $this->mTitle->isUserJsonConfigPage();
3183 $isUserJsConfig = $this->mTitle->isUserJsConfigPage();
3184
3185 $warning = $isUserCssConfig
3186 ? 'usercssispublic'
3187 : ( $isUserJsonConfig ? 'userjsonispublic' : 'userjsispublic' );
3188
3189 $out->wrapWikiMsg( '<div class="mw-userconfigpublic">$1</div>', $warning );
3190
3191 if ( $this->formtype !== 'preview' ) {
3192 $config = $this->context->getConfig();
3193 if ( $isUserCssConfig && $config->get( 'AllowUserCss' ) ) {
3194 $out->wrapWikiMsg(
3195 "<div id='mw-usercssyoucanpreview'>\n$1\n</div>",
3196 [ 'usercssyoucanpreview' ]
3197 );
3198 } elseif ( $isUserJsonConfig /* No comparable 'AllowUserJson' */ ) {
3199 $out->wrapWikiMsg(
3200 "<div id='mw-userjsonyoucanpreview'>\n$1\n</div>",
3201 [ 'userjsonyoucanpreview' ]
3202 );
3203 } elseif ( $isUserJsConfig && $config->get( 'AllowUserJs' ) ) {
3204 $out->wrapWikiMsg(
3205 "<div id='mw-userjsyoucanpreview'>\n$1\n</div>",
3206 [ 'userjsyoucanpreview' ]
3207 );
3208 }
3209 }
3210 }
3211 }
3212 }
3213
3214 $this->addPageProtectionWarningHeaders();
3215
3216 $this->addLongPageWarningHeader();
3217
3218 # Add header copyright warning
3219 $this->showHeaderCopyrightWarning();
3220 }
3221
3222 /**
3223 * Helper function for summary input functions, which returns the necessary
3224 * attributes for the input.
3225 *
3226 * @param array|null $inputAttrs Array of attrs to use on the input
3227 * @return array
3228 */
3229 private function getSummaryInputAttributes( array $inputAttrs = null ) {
3230 $conf = $this->context->getConfig();
3231 $oldCommentSchema = $conf->get( 'CommentTableSchemaMigrationStage' ) === MIGRATION_OLD;
3232 // HTML maxlength uses "UTF-16 code units", which means that characters outside BMP
3233 // (e.g. emojis) count for two each. This limit is overridden in JS to instead count
3234 // Unicode codepoints (or 255 UTF-8 bytes for old schema).
3235 return ( is_array( $inputAttrs ) ? $inputAttrs : [] ) + [
3236 'id' => 'wpSummary',
3237 'name' => 'wpSummary',
3238 'maxlength' => $oldCommentSchema ? 200 : CommentStore::COMMENT_CHARACTER_LIMIT,
3239 'tabindex' => 1,
3240 'size' => 60,
3241 'spellcheck' => 'true',
3242 ];
3243 }
3244
3245 /**
3246 * Builds a standard summary input with a label.
3247 *
3248 * @param string $summary The value of the summary input
3249 * @param string|null $labelText The html to place inside the label
3250 * @param array|null $inputAttrs Array of attrs to use on the input
3251 *
3252 * @return OOUI\FieldLayout OOUI FieldLayout with Label and Input
3253 */
3254 function getSummaryInputWidget( $summary = "", $labelText = null, $inputAttrs = null ) {
3255 $inputAttrs = OOUI\Element::configFromHtmlAttributes(
3256 $this->getSummaryInputAttributes( $inputAttrs )
3257 );
3258 $inputAttrs += [
3259 'title' => Linker::titleAttrib( 'summary' ),
3260 'accessKey' => Linker::accesskey( 'summary' ),
3261 ];
3262
3263 // For compatibility with old scripts and extensions, we want the legacy 'id' on the `<input>`
3264 $inputAttrs['inputId'] = $inputAttrs['id'];
3265 $inputAttrs['id'] = 'wpSummaryWidget';
3266
3267 return new OOUI\FieldLayout(
3268 new OOUI\TextInputWidget( [
3269 'value' => $summary,
3270 'infusable' => true,
3271 ] + $inputAttrs ),
3272 [
3273 'label' => new OOUI\HtmlSnippet( $labelText ),
3274 'align' => 'top',
3275 'id' => 'wpSummaryLabel',
3276 'classes' => [ $this->missingSummary ? 'mw-summarymissed' : 'mw-summary' ],
3277 ]
3278 );
3279 }
3280
3281 /**
3282 * @param bool $isSubjectPreview True if this is the section subject/title
3283 * up top, or false if this is the comment summary
3284 * down below the textarea
3285 * @param string $summary The text of the summary to display
3286 */
3287 protected function showSummaryInput( $isSubjectPreview, $summary = "" ) {
3288 # Add a class if 'missingsummary' is triggered to allow styling of the summary line
3289 $summaryClass = $this->missingSummary ? 'mw-summarymissed' : 'mw-summary';
3290 if ( $isSubjectPreview ) {
3291 if ( $this->nosummary ) {
3292 return;
3293 }
3294 } else {
3295 if ( !$this->mShowSummaryField ) {
3296 return;
3297 }
3298 }
3299
3300 $labelText = $this->context->msg( $isSubjectPreview ? 'subject' : 'summary' )->parse();
3301 $this->context->getOutput()->addHTML( $this->getSummaryInputWidget(
3302 $summary,
3303 $labelText,
3304 [ 'class' => $summaryClass ]
3305 ) );
3306 }
3307
3308 /**
3309 * @param bool $isSubjectPreview True if this is the section subject/title
3310 * up top, or false if this is the comment summary
3311 * down below the textarea
3312 * @param string $summary The text of the summary to display
3313 * @return string
3314 */
3315 protected function getSummaryPreview( $isSubjectPreview, $summary = "" ) {
3316 // avoid spaces in preview, gets always trimmed on save
3317 $summary = trim( $summary );
3318 if ( !$summary || ( !$this->preview && !$this->diff ) ) {
3319 return "";
3320 }
3321
3322 global $wgParser;
3323
3324 if ( $isSubjectPreview ) {
3325 $summary = $this->context->msg( 'newsectionsummary' )
3326 ->rawParams( $wgParser->stripSectionName( $summary ) )
3327 ->inContentLanguage()->text();
3328 }
3329
3330 $message = $isSubjectPreview ? 'subject-preview' : 'summary-preview';
3331
3332 $summary = $this->context->msg( $message )->parse()
3333 . Linker::commentBlock( $summary, $this->mTitle, $isSubjectPreview );
3334 return Xml::tags( 'div', [ 'class' => 'mw-summary-preview' ], $summary );
3335 }
3336
3337 protected function showFormBeforeText() {
3338 $out = $this->context->getOutput();
3339 $out->addHTML( Html::hidden( 'wpSection', $this->section ) );
3340 $out->addHTML( Html::hidden( 'wpStarttime', $this->starttime ) );
3341 $out->addHTML( Html::hidden( 'wpEdittime', $this->edittime ) );
3342 $out->addHTML( Html::hidden( 'editRevId', $this->editRevId ) );
3343 $out->addHTML( Html::hidden( 'wpScrolltop', $this->scrolltop, [ 'id' => 'wpScrolltop' ] ) );
3344 }
3345
3346 protected function showFormAfterText() {
3347 /**
3348 * To make it harder for someone to slip a user a page
3349 * which submits an edit form to the wiki without their
3350 * knowledge, a random token is associated with the login
3351 * session. If it's not passed back with the submission,
3352 * we won't save the page, or render user JavaScript and
3353 * CSS previews.
3354 *
3355 * For anon editors, who may not have a session, we just
3356 * include the constant suffix to prevent editing from
3357 * broken text-mangling proxies.
3358 */
3359 $this->context->getOutput()->addHTML(
3360 "\n" .
3361 Html::hidden( "wpEditToken", $this->context->getUser()->getEditToken() ) .
3362 "\n"
3363 );
3364 }
3365
3366 /**
3367 * Subpage overridable method for printing the form for page content editing
3368 * By default this simply outputs wpTextbox1
3369 * Subclasses can override this to provide a custom UI for editing;
3370 * be it a form, or simply wpTextbox1 with a modified content that will be
3371 * reverse modified when extracted from the post data.
3372 * Note that this is basically the inverse for importContentFormData
3373 */
3374 protected function showContentForm() {
3375 $this->showTextbox1();
3376 }
3377
3378 /**
3379 * Method to output wpTextbox1
3380 * The $textoverride method can be used by subclasses overriding showContentForm
3381 * to pass back to this method.
3382 *
3383 * @param array|null $customAttribs Array of html attributes to use in the textarea
3384 * @param string|null $textoverride Optional text to override $this->textarea1 with
3385 */
3386 protected function showTextbox1( $customAttribs = null, $textoverride = null ) {
3387 if ( $this->wasDeletedSinceLastEdit() && $this->formtype == 'save' ) {
3388 $attribs = [ 'style' => 'display:none;' ];
3389 } else {
3390 $builder = new TextboxBuilder();
3391 $classes = $builder->getTextboxProtectionCSSClasses( $this->getTitle() );
3392
3393 # Is an old revision being edited?
3394 if ( $this->isOldRev ) {
3395 $classes[] = 'mw-textarea-oldrev';
3396 }
3397
3398 $attribs = [ 'tabindex' => 1 ];
3399
3400 if ( is_array( $customAttribs ) ) {
3401 $attribs += $customAttribs;
3402 }
3403
3404 $attribs = $builder->mergeClassesIntoAttributes( $classes, $attribs );
3405 }
3406
3407 $this->showTextbox(
3408 $textoverride ?? $this->textbox1,
3409 'wpTextbox1',
3410 $attribs
3411 );
3412 }
3413
3414 protected function showTextbox2() {
3415 $this->showTextbox( $this->textbox2, 'wpTextbox2', [ 'tabindex' => 6, 'readonly' ] );
3416 }
3417
3418 protected function showTextbox( $text, $name, $customAttribs = [] ) {
3419 $builder = new TextboxBuilder();
3420 $attribs = $builder->buildTextboxAttribs(
3421 $name,
3422 $customAttribs,
3423 $this->context->getUser(),
3424 $this->mTitle
3425 );
3426
3427 $this->context->getOutput()->addHTML(
3428 Html::textarea( $name, $builder->addNewLineAtEnd( $text ), $attribs )
3429 );
3430 }
3431
3432 protected function displayPreviewArea( $previewOutput, $isOnTop = false ) {
3433 $classes = [];
3434 if ( $isOnTop ) {
3435 $classes[] = 'ontop';
3436 }
3437
3438 $attribs = [ 'id' => 'wikiPreview', 'class' => implode( ' ', $classes ) ];
3439
3440 if ( $this->formtype != 'preview' ) {
3441 $attribs['style'] = 'display: none;';
3442 }
3443
3444 $out = $this->context->getOutput();
3445 $out->addHTML( Xml::openElement( 'div', $attribs ) );
3446
3447 if ( $this->formtype == 'preview' ) {
3448 $this->showPreview( $previewOutput );
3449 } else {
3450 // Empty content container for LivePreview
3451 $pageViewLang = $this->mTitle->getPageViewLanguage();
3452 $attribs = [ 'lang' => $pageViewLang->getHtmlCode(), 'dir' => $pageViewLang->getDir(),
3453 'class' => 'mw-content-' . $pageViewLang->getDir() ];
3454 $out->addHTML( Html::rawElement( 'div', $attribs ) );
3455 }
3456
3457 $out->addHTML( '</div>' );
3458
3459 if ( $this->formtype == 'diff' ) {
3460 try {
3461 $this->showDiff();
3462 } catch ( MWContentSerializationException $ex ) {
3463 $msg = $this->context->msg(
3464 'content-failed-to-parse',
3465 $this->contentModel,
3466 $this->contentFormat,
3467 $ex->getMessage()
3468 );
3469 $out->addWikiText( '<div class="error">' . $msg->plain() . '</div>' );
3470 }
3471 }
3472 }
3473
3474 /**
3475 * Append preview output to OutputPage.
3476 * Includes category rendering if this is a category page.
3477 *
3478 * @param string $text The HTML to be output for the preview.
3479 */
3480 protected function showPreview( $text ) {
3481 if ( $this->mArticle instanceof CategoryPage ) {
3482 $this->mArticle->openShowCategory();
3483 }
3484 # This hook seems slightly odd here, but makes things more
3485 # consistent for extensions.
3486 $out = $this->context->getOutput();
3487 Hooks::run( 'OutputPageBeforeHTML', [ &$out, &$text ] );
3488 $out->addHTML( $text );
3489 if ( $this->mArticle instanceof CategoryPage ) {
3490 $this->mArticle->closeShowCategory();
3491 }
3492 }
3493
3494 /**
3495 * Get a diff between the current contents of the edit box and the
3496 * version of the page we're editing from.
3497 *
3498 * If this is a section edit, we'll replace the section as for final
3499 * save and then make a comparison.
3500 */
3501 public function showDiff() {
3502 $oldtitlemsg = 'currentrev';
3503 # if message does not exist, show diff against the preloaded default
3504 if ( $this->mTitle->getNamespace() == NS_MEDIAWIKI && !$this->mTitle->exists() ) {
3505 $oldtext = $this->mTitle->getDefaultMessageText();
3506 if ( $oldtext !== false ) {
3507 $oldtitlemsg = 'defaultmessagetext';
3508 $oldContent = $this->toEditContent( $oldtext );
3509 } else {
3510 $oldContent = null;
3511 }
3512 } else {
3513 $oldContent = $this->getCurrentContent();
3514 }
3515
3516 $textboxContent = $this->toEditContent( $this->textbox1 );
3517 if ( $this->editRevId !== null ) {
3518 $newContent = $this->page->replaceSectionAtRev(
3519 $this->section, $textboxContent, $this->summary, $this->editRevId
3520 );
3521 } else {
3522 $newContent = $this->page->replaceSectionContent(
3523 $this->section, $textboxContent, $this->summary, $this->edittime
3524 );
3525 }
3526
3527 if ( $newContent ) {
3528 Hooks::run( 'EditPageGetDiffContent', [ $this, &$newContent ] );
3529
3530 $user = $this->context->getUser();
3531 $popts = ParserOptions::newFromUserAndLang( $user,
3532 MediaWikiServices::getInstance()->getContentLanguage() );
3533 $newContent = $newContent->preSaveTransform( $this->mTitle, $user, $popts );
3534 }
3535
3536 if ( ( $oldContent && !$oldContent->isEmpty() ) || ( $newContent && !$newContent->isEmpty() ) ) {
3537 $oldtitle = $this->context->msg( $oldtitlemsg )->parse();
3538 $newtitle = $this->context->msg( 'yourtext' )->parse();
3539
3540 if ( !$oldContent ) {
3541 $oldContent = $newContent->getContentHandler()->makeEmptyContent();
3542 }
3543
3544 if ( !$newContent ) {
3545 $newContent = $oldContent->getContentHandler()->makeEmptyContent();
3546 }
3547
3548 $de = $oldContent->getContentHandler()->createDifferenceEngine( $this->context );
3549 $de->setContent( $oldContent, $newContent );
3550
3551 $difftext = $de->getDiff( $oldtitle, $newtitle );
3552 $de->showDiffStyle();
3553 } else {
3554 $difftext = '';
3555 }
3556
3557 $this->context->getOutput()->addHTML( '<div id="wikiDiff">' . $difftext . '</div>' );
3558 }
3559
3560 /**
3561 * Show the header copyright warning.
3562 */
3563 protected function showHeaderCopyrightWarning() {
3564 $msg = 'editpage-head-copy-warn';
3565 if ( !$this->context->msg( $msg )->isDisabled() ) {
3566 $this->context->getOutput()->wrapWikiMsg( "<div class='editpage-head-copywarn'>\n$1\n</div>",
3567 'editpage-head-copy-warn' );
3568 }
3569 }
3570
3571 /**
3572 * Give a chance for site and per-namespace customizations of
3573 * terms of service summary link that might exist separately
3574 * from the copyright notice.
3575 *
3576 * This will display between the save button and the edit tools,
3577 * so should remain short!
3578 */
3579 protected function showTosSummary() {
3580 $msg = 'editpage-tos-summary';
3581 Hooks::run( 'EditPageTosSummary', [ $this->mTitle, &$msg ] );
3582 if ( !$this->context->msg( $msg )->isDisabled() ) {
3583 $out = $this->context->getOutput();
3584 $out->addHTML( '<div class="mw-tos-summary">' );
3585 $out->addWikiMsg( $msg );
3586 $out->addHTML( '</div>' );
3587 }
3588 }
3589
3590 /**
3591 * Inserts optional text shown below edit and upload forms. Can be used to offer special
3592 * characters not present on most keyboards for copying/pasting.
3593 */
3594 protected function showEditTools() {
3595 $this->context->getOutput()->addHTML( '<div class="mw-editTools">' .
3596 $this->context->msg( 'edittools' )->inContentLanguage()->parse() .
3597 '</div>' );
3598 }
3599
3600 /**
3601 * Get the copyright warning
3602 *
3603 * Renamed to getCopyrightWarning(), old name kept around for backwards compatibility
3604 * @return string
3605 */
3606 protected function getCopywarn() {
3607 return self::getCopyrightWarning( $this->mTitle );
3608 }
3609
3610 /**
3611 * Get the copyright warning, by default returns wikitext
3612 *
3613 * @param Title $title
3614 * @param string $format Output format, valid values are any function of a Message object
3615 * @param Language|string|null $langcode Language code or Language object.
3616 * @return string
3617 */
3618 public static function getCopyrightWarning( $title, $format = 'plain', $langcode = null ) {
3619 global $wgRightsText;
3620 if ( $wgRightsText ) {
3621 $copywarnMsg = [ 'copyrightwarning',
3622 '[[' . wfMessage( 'copyrightpage' )->inContentLanguage()->text() . ']]',
3623 $wgRightsText ];
3624 } else {
3625 $copywarnMsg = [ 'copyrightwarning2',
3626 '[[' . wfMessage( 'copyrightpage' )->inContentLanguage()->text() . ']]' ];
3627 }
3628 // Allow for site and per-namespace customization of contribution/copyright notice.
3629 Hooks::run( 'EditPageCopyrightWarning', [ $title, &$copywarnMsg ] );
3630
3631 $msg = wfMessage( ...$copywarnMsg )->title( $title );
3632 if ( $langcode ) {
3633 $msg->inLanguage( $langcode );
3634 }
3635 return "<div id=\"editpage-copywarn\">\n" .
3636 $msg->$format() . "\n</div>";
3637 }
3638
3639 /**
3640 * Get the Limit report for page previews
3641 *
3642 * @since 1.22
3643 * @param ParserOutput|null $output ParserOutput object from the parse
3644 * @return string HTML
3645 */
3646 public static function getPreviewLimitReport( ParserOutput $output = null ) {
3647 global $wgLang;
3648
3649 if ( !$output || !$output->getLimitReportData() ) {
3650 return '';
3651 }
3652
3653 $limitReport = Html::rawElement( 'div', [ 'class' => 'mw-limitReportExplanation' ],
3654 wfMessage( 'limitreport-title' )->parseAsBlock()
3655 );
3656
3657 // Show/hide animation doesn't work correctly on a table, so wrap it in a div.
3658 $limitReport .= Html::openElement( 'div', [ 'class' => 'preview-limit-report-wrapper' ] );
3659
3660 $limitReport .= Html::openElement( 'table', [
3661 'class' => 'preview-limit-report wikitable'
3662 ] ) .
3663 Html::openElement( 'tbody' );
3664
3665 foreach ( $output->getLimitReportData() as $key => $value ) {
3666 if ( Hooks::run( 'ParserLimitReportFormat',
3667 [ $key, &$value, &$limitReport, true, true ]
3668 ) ) {
3669 $keyMsg = wfMessage( $key );
3670 $valueMsg = wfMessage( [ "$key-value-html", "$key-value" ] );
3671 if ( !$valueMsg->exists() ) {
3672 $valueMsg = new RawMessage( '$1' );
3673 }
3674 if ( !$keyMsg->isDisabled() && !$valueMsg->isDisabled() ) {
3675 $limitReport .= Html::openElement( 'tr' ) .
3676 Html::rawElement( 'th', null, $keyMsg->parse() ) .
3677 Html::rawElement( 'td', null,
3678 $wgLang->formatNum( $valueMsg->params( $value )->parse() )
3679 ) .
3680 Html::closeElement( 'tr' );
3681 }
3682 }
3683 }
3684
3685 $limitReport .= Html::closeElement( 'tbody' ) .
3686 Html::closeElement( 'table' ) .
3687 Html::closeElement( 'div' );
3688
3689 return $limitReport;
3690 }
3691
3692 protected function showStandardInputs( &$tabindex = 2 ) {
3693 $out = $this->context->getOutput();
3694 $out->addHTML( "<div class='editOptions'>\n" );
3695
3696 if ( $this->section != 'new' ) {
3697 $this->showSummaryInput( false, $this->summary );
3698 $out->addHTML( $this->getSummaryPreview( false, $this->summary ) );
3699 }
3700
3701 $checkboxes = $this->getCheckboxesWidget(
3702 $tabindex,
3703 [ 'minor' => $this->minoredit, 'watch' => $this->watchthis ]
3704 );
3705 $checkboxesHTML = new OOUI\HorizontalLayout( [ 'items' => $checkboxes ] );
3706
3707 $out->addHTML( "<div class='editCheckboxes'>" . $checkboxesHTML . "</div>\n" );
3708
3709 // Show copyright warning.
3710 $out->addWikiText( $this->getCopywarn() );
3711 $out->addHTML( $this->editFormTextAfterWarn );
3712
3713 $out->addHTML( "<div class='editButtons'>\n" );
3714 $out->addHTML( implode( "\n", $this->getEditButtons( $tabindex ) ) . "\n" );
3715
3716 $cancel = $this->getCancelLink();
3717
3718 $message = $this->context->msg( 'edithelppage' )->inContentLanguage()->text();
3719 $edithelpurl = Skin::makeInternalOrExternalUrl( $message );
3720 $edithelp =
3721 Html::linkButton(
3722 $this->context->msg( 'edithelp' )->text(),
3723 [ 'target' => 'helpwindow', 'href' => $edithelpurl ],
3724 [ 'mw-ui-quiet' ]
3725 ) .
3726 $this->context->msg( 'word-separator' )->escaped() .
3727 $this->context->msg( 'newwindow' )->parse();
3728
3729 $out->addHTML( " <span class='cancelLink'>{$cancel}</span>\n" );
3730 $out->addHTML( " <span class='editHelp'>{$edithelp}</span>\n" );
3731 $out->addHTML( "</div><!-- editButtons -->\n" );
3732
3733 Hooks::run( 'EditPage::showStandardInputs:options', [ $this, $out, &$tabindex ] );
3734
3735 $out->addHTML( "</div><!-- editOptions -->\n" );
3736 }
3737
3738 /**
3739 * Show an edit conflict. textbox1 is already shown in showEditForm().
3740 * If you want to use another entry point to this function, be careful.
3741 */
3742 protected function showConflict() {
3743 $out = $this->context->getOutput();
3744 // Avoid PHP 7.1 warning of passing $this by reference
3745 $editPage = $this;
3746 if ( Hooks::run( 'EditPageBeforeConflictDiff', [ &$editPage, &$out ] ) ) {
3747 $this->incrementConflictStats();
3748
3749 $this->getEditConflictHelper()->showEditFormTextAfterFooters();
3750 }
3751 }
3752
3753 protected function incrementConflictStats() {
3754 $this->getEditConflictHelper()->incrementConflictStats();
3755 }
3756
3757 /**
3758 * @return string
3759 */
3760 public function getCancelLink() {
3761 $cancelParams = [];
3762 if ( !$this->isConflict && $this->oldid > 0 ) {
3763 $cancelParams['oldid'] = $this->oldid;
3764 } elseif ( $this->getContextTitle()->isRedirect() ) {
3765 $cancelParams['redirect'] = 'no';
3766 }
3767
3768 return new OOUI\ButtonWidget( [
3769 'id' => 'mw-editform-cancel',
3770 'href' => $this->getContextTitle()->getLinkURL( $cancelParams ),
3771 'label' => new OOUI\HtmlSnippet( $this->context->msg( 'cancel' )->parse() ),
3772 'framed' => false,
3773 'infusable' => true,
3774 'flags' => 'destructive',
3775 ] );
3776 }
3777
3778 /**
3779 * Returns the URL to use in the form's action attribute.
3780 * This is used by EditPage subclasses when simply customizing the action
3781 * variable in the constructor is not enough. This can be used when the
3782 * EditPage lives inside of a Special page rather than a custom page action.
3783 *
3784 * @param Title $title Title object for which is being edited (where we go to for &action= links)
3785 * @return string
3786 */
3787 protected function getActionURL( Title $title ) {
3788 return $title->getLocalURL( [ 'action' => $this->action ] );
3789 }
3790
3791 /**
3792 * Check if a page was deleted while the user was editing it, before submit.
3793 * Note that we rely on the logging table, which hasn't been always there,
3794 * but that doesn't matter, because this only applies to brand new
3795 * deletes.
3796 * @return bool
3797 */
3798 protected function wasDeletedSinceLastEdit() {
3799 if ( $this->deletedSinceEdit !== null ) {
3800 return $this->deletedSinceEdit;
3801 }
3802
3803 $this->deletedSinceEdit = false;
3804
3805 if ( !$this->mTitle->exists() && $this->mTitle->isDeletedQuick() ) {
3806 $this->lastDelete = $this->getLastDelete();
3807 if ( $this->lastDelete ) {
3808 $deleteTime = wfTimestamp( TS_MW, $this->lastDelete->log_timestamp );
3809 if ( $deleteTime > $this->starttime ) {
3810 $this->deletedSinceEdit = true;
3811 }
3812 }
3813 }
3814
3815 return $this->deletedSinceEdit;
3816 }
3817
3818 /**
3819 * Get the last log record of this page being deleted, if ever. This is
3820 * used to detect whether a delete occurred during editing.
3821 * @return bool|stdClass
3822 */
3823 protected function getLastDelete() {
3824 $dbr = wfGetDB( DB_REPLICA );
3825 $commentQuery = CommentStore::getStore()->getJoin( 'log_comment' );
3826 $actorQuery = ActorMigration::newMigration()->getJoin( 'log_user' );
3827 $data = $dbr->selectRow(
3828 array_merge( [ 'logging' ], $commentQuery['tables'], $actorQuery['tables'], [ 'user' ] ),
3829 [
3830 'log_type',
3831 'log_action',
3832 'log_timestamp',
3833 'log_namespace',
3834 'log_title',
3835 'log_params',
3836 'log_deleted',
3837 'user_name'
3838 ] + $commentQuery['fields'] + $actorQuery['fields'],
3839 [
3840 'log_namespace' => $this->mTitle->getNamespace(),
3841 'log_title' => $this->mTitle->getDBkey(),
3842 'log_type' => 'delete',
3843 'log_action' => 'delete',
3844 ],
3845 __METHOD__,
3846 [ 'LIMIT' => 1, 'ORDER BY' => 'log_timestamp DESC' ],
3847 [
3848 'user' => [ 'JOIN', 'user_id=' . $actorQuery['fields']['log_user'] ],
3849 ] + $commentQuery['joins'] + $actorQuery['joins']
3850 );
3851 // Quick paranoid permission checks...
3852 if ( is_object( $data ) ) {
3853 if ( $data->log_deleted & LogPage::DELETED_USER ) {
3854 $data->user_name = $this->context->msg( 'rev-deleted-user' )->escaped();
3855 }
3856
3857 if ( $data->log_deleted & LogPage::DELETED_COMMENT ) {
3858 $data->log_comment_text = $this->context->msg( 'rev-deleted-comment' )->escaped();
3859 $data->log_comment_data = null;
3860 }
3861 }
3862
3863 return $data;
3864 }
3865
3866 /**
3867 * Get the rendered text for previewing.
3868 * @throws MWException
3869 * @return string
3870 */
3871 public function getPreviewText() {
3872 $out = $this->context->getOutput();
3873 $config = $this->context->getConfig();
3874
3875 if ( $config->get( 'RawHtml' ) && !$this->mTokenOk ) {
3876 // Could be an offsite preview attempt. This is very unsafe if
3877 // HTML is enabled, as it could be an attack.
3878 $parsedNote = '';
3879 if ( $this->textbox1 !== '' ) {
3880 // Do not put big scary notice, if previewing the empty
3881 // string, which happens when you initially edit
3882 // a category page, due to automatic preview-on-open.
3883 $parsedNote = $out->parse( "<div class='previewnote'>" .
3884 $this->context->msg( 'session_fail_preview_html' )->text() . "</div>",
3885 true, /* interface */true );
3886 }
3887 $this->incrementEditFailureStats( 'session_loss' );
3888 return $parsedNote;
3889 }
3890
3891 $note = '';
3892
3893 try {
3894 $content = $this->toEditContent( $this->textbox1 );
3895
3896 $previewHTML = '';
3897 if ( !Hooks::run(
3898 'AlternateEditPreview',
3899 [ $this, &$content, &$previewHTML, &$this->mParserOutput ] )
3900 ) {
3901 return $previewHTML;
3902 }
3903
3904 # provide a anchor link to the editform
3905 $continueEditing = '<span class="mw-continue-editing">' .
3906 '[[#' . self::EDITFORM_ID . '|' .
3907 $this->context->getLanguage()->getArrow() . ' ' .
3908 $this->context->msg( 'continue-editing' )->text() . ']]</span>';
3909 if ( $this->mTriedSave && !$this->mTokenOk ) {
3910 if ( $this->mTokenOkExceptSuffix ) {
3911 $note = $this->context->msg( 'token_suffix_mismatch' )->plain();
3912 $this->incrementEditFailureStats( 'bad_token' );
3913 } else {
3914 $note = $this->context->msg( 'session_fail_preview' )->plain();
3915 $this->incrementEditFailureStats( 'session_loss' );
3916 }
3917 } elseif ( $this->incompleteForm ) {
3918 $note = $this->context->msg( 'edit_form_incomplete' )->plain();
3919 if ( $this->mTriedSave ) {
3920 $this->incrementEditFailureStats( 'incomplete_form' );
3921 }
3922 } else {
3923 $note = $this->context->msg( 'previewnote' )->plain() . ' ' . $continueEditing;
3924 }
3925
3926 # don't parse non-wikitext pages, show message about preview
3927 if ( $this->mTitle->isUserConfigPage() || $this->mTitle->isSiteConfigPage() ) {
3928 if ( $this->mTitle->isUserConfigPage() ) {
3929 $level = 'user';
3930 } elseif ( $this->mTitle->isSiteConfigPage() ) {
3931 $level = 'site';
3932 } else {
3933 $level = false;
3934 }
3935
3936 if ( $content->getModel() == CONTENT_MODEL_CSS ) {
3937 $format = 'css';
3938 if ( $level === 'user' && !$config->get( 'AllowUserCss' ) ) {
3939 $format = false;
3940 }
3941 } elseif ( $content->getModel() == CONTENT_MODEL_JSON ) {
3942 $format = 'json';
3943 if ( $level === 'user' /* No comparable 'AllowUserJson' */ ) {
3944 $format = false;
3945 }
3946 } elseif ( $content->getModel() == CONTENT_MODEL_JAVASCRIPT ) {
3947 $format = 'js';
3948 if ( $level === 'user' && !$config->get( 'AllowUserJs' ) ) {
3949 $format = false;
3950 }
3951 } else {
3952 $format = false;
3953 }
3954
3955 # Used messages to make sure grep find them:
3956 # Messages: usercsspreview, userjsonpreview, userjspreview,
3957 # sitecsspreview, sitejsonpreview, sitejspreview
3958 if ( $level && $format ) {
3959 $note = "<div id='mw-{$level}{$format}preview'>" .
3960 $this->context->msg( "{$level}{$format}preview" )->text() .
3961 ' ' . $continueEditing . "</div>";
3962 }
3963 }
3964
3965 # If we're adding a comment, we need to show the
3966 # summary as the headline
3967 if ( $this->section === "new" && $this->summary !== "" ) {
3968 $content = $content->addSectionHeader( $this->summary );
3969 }
3970
3971 $hook_args = [ $this, &$content ];
3972 Hooks::run( 'EditPageGetPreviewContent', $hook_args );
3973
3974 $parserResult = $this->doPreviewParse( $content );
3975 $parserOutput = $parserResult['parserOutput'];
3976 $previewHTML = $parserResult['html'];
3977 $this->mParserOutput = $parserOutput;
3978 $out->addParserOutputMetadata( $parserOutput );
3979 if ( $out->userCanPreview() ) {
3980 $out->addContentOverride( $this->getTitle(), $content );
3981 }
3982
3983 if ( count( $parserOutput->getWarnings() ) ) {
3984 $note .= "\n\n" . implode( "\n\n", $parserOutput->getWarnings() );
3985 }
3986
3987 } catch ( MWContentSerializationException $ex ) {
3988 $m = $this->context->msg(
3989 'content-failed-to-parse',
3990 $this->contentModel,
3991 $this->contentFormat,
3992 $ex->getMessage()
3993 );
3994 $note .= "\n\n" . $m->parse();
3995 $previewHTML = '';
3996 }
3997
3998 if ( $this->isConflict ) {
3999 $conflict = '<h2 id="mw-previewconflict">'
4000 . $this->context->msg( 'previewconflict' )->escaped() . "</h2>\n";
4001 } else {
4002 $conflict = '<hr />';
4003 }
4004
4005 $previewhead = "<div class='previewnote'>\n" .
4006 '<h2 id="mw-previewheader">' . $this->context->msg( 'preview' )->escaped() . "</h2>" .
4007 $out->parse( $note, true, /* interface */true ) . $conflict . "</div>\n";
4008
4009 $pageViewLang = $this->mTitle->getPageViewLanguage();
4010 $attribs = [ 'lang' => $pageViewLang->getHtmlCode(), 'dir' => $pageViewLang->getDir(),
4011 'class' => 'mw-content-' . $pageViewLang->getDir() ];
4012 $previewHTML = Html::rawElement( 'div', $attribs, $previewHTML );
4013
4014 return $previewhead . $previewHTML . $this->previewTextAfterContent;
4015 }
4016
4017 private function incrementEditFailureStats( $failureType ) {
4018 $stats = MediaWikiServices::getInstance()->getStatsdDataFactory();
4019 $stats->increment( 'edit.failures.' . $failureType );
4020 }
4021
4022 /**
4023 * Get parser options for a preview
4024 * @return ParserOptions
4025 */
4026 protected function getPreviewParserOptions() {
4027 $parserOptions = $this->page->makeParserOptions( $this->context );
4028 $parserOptions->setIsPreview( true );
4029 $parserOptions->setIsSectionPreview( !is_null( $this->section ) && $this->section !== '' );
4030 $parserOptions->enableLimitReport();
4031
4032 // XXX: we could call $parserOptions->setCurrentRevisionCallback here to force the
4033 // current revision to be null during PST, until setupFakeRevision is called on
4034 // the ParserOptions. Currently, we rely on Parser::getRevisionObject() to ignore
4035 // existing revisions in preview mode.
4036
4037 return $parserOptions;
4038 }
4039
4040 /**
4041 * Parse the page for a preview. Subclasses may override this class, in order
4042 * to parse with different options, or to otherwise modify the preview HTML.
4043 *
4044 * @param Content $content The page content
4045 * @return array with keys:
4046 * - parserOutput: The ParserOutput object
4047 * - html: The HTML to be displayed
4048 */
4049 protected function doPreviewParse( Content $content ) {
4050 $user = $this->context->getUser();
4051 $parserOptions = $this->getPreviewParserOptions();
4052
4053 // NOTE: preSaveTransform doesn't have a fake revision to operate on.
4054 // Parser::getRevisionObject() will return null in preview mode,
4055 // causing the context user to be used for {{subst:REVISIONUSER}}.
4056 // XXX: Alternatively, we could also call setupFakeRevision() a second time:
4057 // once before PST with $content, and then after PST with $pstContent.
4058 $pstContent = $content->preSaveTransform( $this->mTitle, $user, $parserOptions );
4059 $scopedCallback = $parserOptions->setupFakeRevision( $this->mTitle, $pstContent, $user );
4060 $parserOutput = $pstContent->getParserOutput( $this->mTitle, null, $parserOptions );
4061 ScopedCallback::consume( $scopedCallback );
4062 return [
4063 'parserOutput' => $parserOutput,
4064 'html' => $parserOutput->getText( [
4065 'enableSectionEditLinks' => false
4066 ] )
4067 ];
4068 }
4069
4070 /**
4071 * @return array
4072 */
4073 public function getTemplates() {
4074 if ( $this->preview || $this->section != '' ) {
4075 $templates = [];
4076 if ( !isset( $this->mParserOutput ) ) {
4077 return $templates;
4078 }
4079 foreach ( $this->mParserOutput->getTemplates() as $ns => $template ) {
4080 foreach ( array_keys( $template ) as $dbk ) {
4081 $templates[] = Title::makeTitle( $ns, $dbk );
4082 }
4083 }
4084 return $templates;
4085 } else {
4086 return $this->mTitle->getTemplateLinksFrom();
4087 }
4088 }
4089
4090 /**
4091 * Shows a bulletin board style toolbar for common editing functions.
4092 * It can be disabled in the user preferences.
4093 *
4094 * @param Title|null $title Title object for the page being edited (optional)
4095 * @return string
4096 */
4097 public static function getEditToolbar( $title = null ) {
4098 global $wgOut, $wgEnableUploads, $wgForeignFileRepos;
4099
4100 $imagesAvailable = $wgEnableUploads || count( $wgForeignFileRepos );
4101 $showSignature = true;
4102 if ( $title ) {
4103 $showSignature = MWNamespace::wantSignatures( $title->getNamespace() );
4104 }
4105
4106 $contLang = MediaWikiServices::getInstance()->getContentLanguage();
4107
4108 /**
4109 * $toolarray is an array of arrays each of which includes the
4110 * opening tag, the closing tag, optionally a sample text that is
4111 * inserted between the two when no selection is highlighted
4112 * and. The tip text is shown when the user moves the mouse
4113 * over the button.
4114 *
4115 * Images are defined in ResourceLoaderEditToolbarModule.
4116 */
4117 $toolarray = [
4118 [
4119 'id' => 'mw-editbutton-bold',
4120 'open' => '\'\'\'',
4121 'close' => '\'\'\'',
4122 'sample' => wfMessage( 'bold_sample' )->text(),
4123 'tip' => wfMessage( 'bold_tip' )->text(),
4124 ],
4125 [
4126 'id' => 'mw-editbutton-italic',
4127 'open' => '\'\'',
4128 'close' => '\'\'',
4129 'sample' => wfMessage( 'italic_sample' )->text(),
4130 'tip' => wfMessage( 'italic_tip' )->text(),
4131 ],
4132 [
4133 'id' => 'mw-editbutton-link',
4134 'open' => '[[',
4135 'close' => ']]',
4136 'sample' => wfMessage( 'link_sample' )->text(),
4137 'tip' => wfMessage( 'link_tip' )->text(),
4138 ],
4139 [
4140 'id' => 'mw-editbutton-extlink',
4141 'open' => '[',
4142 'close' => ']',
4143 'sample' => wfMessage( 'extlink_sample' )->text(),
4144 'tip' => wfMessage( 'extlink_tip' )->text(),
4145 ],
4146 [
4147 'id' => 'mw-editbutton-headline',
4148 'open' => "\n== ",
4149 'close' => " ==\n",
4150 'sample' => wfMessage( 'headline_sample' )->text(),
4151 'tip' => wfMessage( 'headline_tip' )->text(),
4152 ],
4153 $imagesAvailable ? [
4154 'id' => 'mw-editbutton-image',
4155 'open' => '[[' . $contLang->getNsText( NS_FILE ) . ':',
4156 'close' => ']]',
4157 'sample' => wfMessage( 'image_sample' )->text(),
4158 'tip' => wfMessage( 'image_tip' )->text(),
4159 ] : false,
4160 $imagesAvailable ? [
4161 'id' => 'mw-editbutton-media',
4162 'open' => '[[' . $contLang->getNsText( NS_MEDIA ) . ':',
4163 'close' => ']]',
4164 'sample' => wfMessage( 'media_sample' )->text(),
4165 'tip' => wfMessage( 'media_tip' )->text(),
4166 ] : false,
4167 [
4168 'id' => 'mw-editbutton-nowiki',
4169 'open' => "<nowiki>",
4170 'close' => "</nowiki>",
4171 'sample' => wfMessage( 'nowiki_sample' )->text(),
4172 'tip' => wfMessage( 'nowiki_tip' )->text(),
4173 ],
4174 $showSignature ? [
4175 'id' => 'mw-editbutton-signature',
4176 'open' => wfMessage( 'sig-text', '~~~~' )->inContentLanguage()->text(),
4177 'close' => '',
4178 'sample' => '',
4179 'tip' => wfMessage( 'sig_tip' )->text(),
4180 ] : false,
4181 [
4182 'id' => 'mw-editbutton-hr',
4183 'open' => "\n----\n",
4184 'close' => '',
4185 'sample' => '',
4186 'tip' => wfMessage( 'hr_tip' )->text(),
4187 ]
4188 ];
4189
4190 $script = '';
4191 foreach ( $toolarray as $tool ) {
4192 if ( !$tool ) {
4193 continue;
4194 }
4195
4196 $params = [
4197 // Images are defined in ResourceLoaderEditToolbarModule
4198 false,
4199 // Note that we use the tip both for the ALT tag and the TITLE tag of the image.
4200 // Older browsers show a "speedtip" type message only for ALT.
4201 // Ideally these should be different, realistically they
4202 // probably don't need to be.
4203 $tool['tip'],
4204 $tool['open'],
4205 $tool['close'],
4206 $tool['sample'],
4207 $tool['id'],
4208 ];
4209
4210 $script .= Xml::encodeJsCall(
4211 'mw.toolbar.addButton',
4212 $params,
4213 ResourceLoader::inDebugMode()
4214 );
4215 }
4216
4217 $toolbar = '<div id="toolbar"></div>';
4218
4219 if ( Hooks::run( 'EditPageBeforeEditToolbar', [ &$toolbar ] ) ) {
4220 // Only add the old toolbar cruft to the page payload if the toolbar has not
4221 // been over-written by a hook caller
4222 $nonce = $wgOut->getCSPNonce();
4223 $wgOut->addScript( Html::inlineScript(
4224 ResourceLoader::makeInlineCodeWithModule( 'mediawiki.toolbar', $script ),
4225 $nonce
4226 ) );
4227 };
4228
4229 return $toolbar;
4230 }
4231
4232 /**
4233 * Return an array of checkbox definitions.
4234 *
4235 * Array keys correspond to the `<input>` 'name' attribute to use for each checkbox.
4236 *
4237 * Array values are associative arrays with the following keys:
4238 * - 'label-message' (required): message for label text
4239 * - 'id' (required): 'id' attribute for the `<input>`
4240 * - 'default' (required): default checkedness (true or false)
4241 * - 'title-message' (optional): used to generate 'title' attribute for the `<label>`
4242 * - 'tooltip' (optional): used to generate 'title' and 'accesskey' attributes
4243 * from messages like 'tooltip-foo', 'accesskey-foo'
4244 * - 'label-id' (optional): 'id' attribute for the `<label>`
4245 * - 'legacy-name' (optional): short name for backwards-compatibility
4246 * @param array $checked Array of checkbox name (matching the 'legacy-name') => bool,
4247 * where bool indicates the checked status of the checkbox
4248 * @return array
4249 */
4250 public function getCheckboxesDefinition( $checked ) {
4251 $checkboxes = [];
4252
4253 $user = $this->context->getUser();
4254 // don't show the minor edit checkbox if it's a new page or section
4255 if ( !$this->isNew && $user->isAllowed( 'minoredit' ) ) {
4256 $checkboxes['wpMinoredit'] = [
4257 'id' => 'wpMinoredit',
4258 'label-message' => 'minoredit',
4259 // Uses messages: tooltip-minoredit, accesskey-minoredit
4260 'tooltip' => 'minoredit',
4261 'label-id' => 'mw-editpage-minoredit',
4262 'legacy-name' => 'minor',
4263 'default' => $checked['minor'],
4264 ];
4265 }
4266
4267 if ( $user->isLoggedIn() ) {
4268 $checkboxes['wpWatchthis'] = [
4269 'id' => 'wpWatchthis',
4270 'label-message' => 'watchthis',
4271 // Uses messages: tooltip-watch, accesskey-watch
4272 'tooltip' => 'watch',
4273 'label-id' => 'mw-editpage-watch',
4274 'legacy-name' => 'watch',
4275 'default' => $checked['watch'],
4276 ];
4277 }
4278
4279 $editPage = $this;
4280 Hooks::run( 'EditPageGetCheckboxesDefinition', [ $editPage, &$checkboxes ] );
4281
4282 return $checkboxes;
4283 }
4284
4285 /**
4286 * Returns an array of checkboxes for the edit form, including 'minor' and 'watch' checkboxes and
4287 * any other added by extensions.
4288 *
4289 * @param int &$tabindex Current tabindex
4290 * @param array $checked Array of checkbox => bool, where bool indicates the checked
4291 * status of the checkbox
4292 *
4293 * @return array Associative array of string keys to OOUI\FieldLayout instances
4294 */
4295 public function getCheckboxesWidget( &$tabindex, $checked ) {
4296 $checkboxes = [];
4297 $checkboxesDef = $this->getCheckboxesDefinition( $checked );
4298
4299 foreach ( $checkboxesDef as $name => $options ) {
4300 $legacyName = $options['legacy-name'] ?? $name;
4301
4302 $title = null;
4303 $accesskey = null;
4304 if ( isset( $options['tooltip'] ) ) {
4305 $accesskey = $this->context->msg( "accesskey-{$options['tooltip']}" )->text();
4306 $title = Linker::titleAttrib( $options['tooltip'] );
4307 }
4308 if ( isset( $options['title-message'] ) ) {
4309 $title = $this->context->msg( $options['title-message'] )->text();
4310 }
4311
4312 $checkboxes[ $legacyName ] = new OOUI\FieldLayout(
4313 new OOUI\CheckboxInputWidget( [
4314 'tabIndex' => ++$tabindex,
4315 'accessKey' => $accesskey,
4316 'id' => $options['id'] . 'Widget',
4317 'inputId' => $options['id'],
4318 'name' => $name,
4319 'selected' => $options['default'],
4320 'infusable' => true,
4321 ] ),
4322 [
4323 'align' => 'inline',
4324 'label' => new OOUI\HtmlSnippet( $this->context->msg( $options['label-message'] )->parse() ),
4325 'title' => $title,
4326 'id' => $options['label-id'] ?? null,
4327 ]
4328 );
4329 }
4330
4331 return $checkboxes;
4332 }
4333
4334 /**
4335 * Get the message key of the label for the button to save the page
4336 *
4337 * @since 1.30
4338 * @return string
4339 */
4340 protected function getSubmitButtonLabel() {
4341 $labelAsPublish =
4342 $this->context->getConfig()->get( 'EditSubmitButtonLabelPublish' );
4343
4344 // Can't use $this->isNew as that's also true if we're adding a new section to an extant page
4345 $newPage = !$this->mTitle->exists();
4346
4347 if ( $labelAsPublish ) {
4348 $buttonLabelKey = $newPage ? 'publishpage' : 'publishchanges';
4349 } else {
4350 $buttonLabelKey = $newPage ? 'savearticle' : 'savechanges';
4351 }
4352
4353 return $buttonLabelKey;
4354 }
4355
4356 /**
4357 * Returns an array of html code of the following buttons:
4358 * save, diff and preview
4359 *
4360 * @param int &$tabindex Current tabindex
4361 *
4362 * @return array
4363 */
4364 public function getEditButtons( &$tabindex ) {
4365 $buttons = [];
4366
4367 $labelAsPublish =
4368 $this->context->getConfig()->get( 'EditSubmitButtonLabelPublish' );
4369
4370 $buttonLabel = $this->context->msg( $this->getSubmitButtonLabel() )->text();
4371 $buttonTooltip = $labelAsPublish ? 'publish' : 'save';
4372
4373 $buttons['save'] = new OOUI\ButtonInputWidget( [
4374 'name' => 'wpSave',
4375 'tabIndex' => ++$tabindex,
4376 'id' => 'wpSaveWidget',
4377 'inputId' => 'wpSave',
4378 // Support: IE 6 – Use <input>, otherwise it can't distinguish which button was clicked
4379 'useInputTag' => true,
4380 'flags' => [ 'progressive', 'primary' ],
4381 'label' => $buttonLabel,
4382 'infusable' => true,
4383 'type' => 'submit',
4384 // Messages used: tooltip-save, tooltip-publish
4385 'title' => Linker::titleAttrib( $buttonTooltip ),
4386 // Messages used: accesskey-save, accesskey-publish
4387 'accessKey' => Linker::accesskey( $buttonTooltip ),
4388 ] );
4389
4390 $buttons['preview'] = new OOUI\ButtonInputWidget( [
4391 'name' => 'wpPreview',
4392 'tabIndex' => ++$tabindex,
4393 'id' => 'wpPreviewWidget',
4394 'inputId' => 'wpPreview',
4395 // Support: IE 6 – Use <input>, otherwise it can't distinguish which button was clicked
4396 'useInputTag' => true,
4397 'label' => $this->context->msg( 'showpreview' )->text(),
4398 'infusable' => true,
4399 'type' => 'submit',
4400 // Message used: tooltip-preview
4401 'title' => Linker::titleAttrib( 'preview' ),
4402 // Message used: accesskey-preview
4403 'accessKey' => Linker::accesskey( 'preview' ),
4404 ] );
4405
4406 $buttons['diff'] = new OOUI\ButtonInputWidget( [
4407 'name' => 'wpDiff',
4408 'tabIndex' => ++$tabindex,
4409 'id' => 'wpDiffWidget',
4410 'inputId' => 'wpDiff',
4411 // Support: IE 6 – Use <input>, otherwise it can't distinguish which button was clicked
4412 'useInputTag' => true,
4413 'label' => $this->context->msg( 'showdiff' )->text(),
4414 'infusable' => true,
4415 'type' => 'submit',
4416 // Message used: tooltip-diff
4417 'title' => Linker::titleAttrib( 'diff' ),
4418 // Message used: accesskey-diff
4419 'accessKey' => Linker::accesskey( 'diff' ),
4420 ] );
4421
4422 // Avoid PHP 7.1 warning of passing $this by reference
4423 $editPage = $this;
4424 Hooks::run( 'EditPageBeforeEditButtons', [ &$editPage, &$buttons, &$tabindex ] );
4425
4426 return $buttons;
4427 }
4428
4429 /**
4430 * Creates a basic error page which informs the user that
4431 * they have attempted to edit a nonexistent section.
4432 */
4433 public function noSuchSectionPage() {
4434 $out = $this->context->getOutput();
4435 $out->prepareErrorPage( $this->context->msg( 'nosuchsectiontitle' ) );
4436
4437 $res = $this->context->msg( 'nosuchsectiontext', $this->section )->parseAsBlock();
4438
4439 // Avoid PHP 7.1 warning of passing $this by reference
4440 $editPage = $this;
4441 Hooks::run( 'EditPageNoSuchSection', [ &$editPage, &$res ] );
4442 $out->addHTML( $res );
4443
4444 $out->returnToMain( false, $this->mTitle );
4445 }
4446
4447 /**
4448 * Show "your edit contains spam" page with your diff and text
4449 *
4450 * @param string|array|bool $match Text (or array of texts) which triggered one or more filters
4451 */
4452 public function spamPageWithContent( $match = false ) {
4453 $this->textbox2 = $this->textbox1;
4454
4455 if ( is_array( $match ) ) {
4456 $match = $this->context->getLanguage()->listToText( $match );
4457 }
4458 $out = $this->context->getOutput();
4459 $out->prepareErrorPage( $this->context->msg( 'spamprotectiontitle' ) );
4460
4461 $out->addHTML( '<div id="spamprotected">' );
4462 $out->addWikiMsg( 'spamprotectiontext' );
4463 if ( $match ) {
4464 $out->addWikiMsg( 'spamprotectionmatch', wfEscapeWikiText( $match ) );
4465 }
4466 $out->addHTML( '</div>' );
4467
4468 $out->wrapWikiMsg( '<h2>$1</h2>', "yourdiff" );
4469 $this->showDiff();
4470
4471 $out->wrapWikiMsg( '<h2>$1</h2>', "yourtext" );
4472 $this->showTextbox2();
4473
4474 $out->addReturnTo( $this->getContextTitle(), [ 'action' => 'edit' ] );
4475 }
4476
4477 /**
4478 * Filter an input field through a Unicode de-armoring process if it
4479 * came from an old browser with known broken Unicode editing issues.
4480 *
4481 * @deprecated since 1.30, does nothing
4482 *
4483 * @param WebRequest $request
4484 * @param string $field
4485 * @return string
4486 */
4487 protected function safeUnicodeInput( $request, $field ) {
4488 return rtrim( $request->getText( $field ) );
4489 }
4490
4491 /**
4492 * Filter an output field through a Unicode armoring process if it is
4493 * going to an old browser with known broken Unicode editing issues.
4494 *
4495 * @deprecated since 1.30, does nothing
4496 *
4497 * @param string $text
4498 * @return string
4499 */
4500 protected function safeUnicodeOutput( $text ) {
4501 return $text;
4502 }
4503
4504 /**
4505 * @since 1.29
4506 */
4507 protected function addEditNotices() {
4508 $out = $this->context->getOutput();
4509 $editNotices = $this->mTitle->getEditNotices( $this->oldid );
4510 if ( count( $editNotices ) ) {
4511 $out->addHTML( implode( "\n", $editNotices ) );
4512 } else {
4513 $msg = $this->context->msg( 'editnotice-notext' );
4514 if ( !$msg->isDisabled() ) {
4515 $out->addHTML(
4516 '<div class="mw-editnotice-notext">'
4517 . $msg->parseAsBlock()
4518 . '</div>'
4519 );
4520 }
4521 }
4522 }
4523
4524 /**
4525 * @since 1.29
4526 */
4527 protected function addTalkPageText() {
4528 if ( $this->mTitle->isTalkPage() ) {
4529 $this->context->getOutput()->addWikiMsg( 'talkpagetext' );
4530 }
4531 }
4532
4533 /**
4534 * @since 1.29
4535 */
4536 protected function addLongPageWarningHeader() {
4537 if ( $this->contentLength === false ) {
4538 $this->contentLength = strlen( $this->textbox1 );
4539 }
4540
4541 $out = $this->context->getOutput();
4542 $lang = $this->context->getLanguage();
4543 $maxArticleSize = $this->context->getConfig()->get( 'MaxArticleSize' );
4544 if ( $this->tooBig || $this->contentLength > $maxArticleSize * 1024 ) {
4545 $out->wrapWikiMsg( "<div class='error' id='mw-edit-longpageerror'>\n$1\n</div>",
4546 [
4547 'longpageerror',
4548 $lang->formatNum( round( $this->contentLength / 1024, 3 ) ),
4549 $lang->formatNum( $maxArticleSize )
4550 ]
4551 );
4552 } else {
4553 if ( !$this->context->msg( 'longpage-hint' )->isDisabled() ) {
4554 $out->wrapWikiMsg( "<div id='mw-edit-longpage-hint'>\n$1\n</div>",
4555 [
4556 'longpage-hint',
4557 $lang->formatSize( strlen( $this->textbox1 ) ),
4558 strlen( $this->textbox1 )
4559 ]
4560 );
4561 }
4562 }
4563 }
4564
4565 /**
4566 * @since 1.29
4567 */
4568 protected function addPageProtectionWarningHeaders() {
4569 $out = $this->context->getOutput();
4570 if ( $this->mTitle->isProtected( 'edit' ) &&
4571 MWNamespace::getRestrictionLevels( $this->mTitle->getNamespace() ) !== [ '' ]
4572 ) {
4573 # Is the title semi-protected?
4574 if ( $this->mTitle->isSemiProtected() ) {
4575 $noticeMsg = 'semiprotectedpagewarning';
4576 } else {
4577 # Then it must be protected based on static groups (regular)
4578 $noticeMsg = 'protectedpagewarning';
4579 }
4580 LogEventsList::showLogExtract( $out, 'protect', $this->mTitle, '',
4581 [ 'lim' => 1, 'msgKey' => [ $noticeMsg ] ] );
4582 }
4583 if ( $this->mTitle->isCascadeProtected() ) {
4584 # Is this page under cascading protection from some source pages?
4585 /** @var Title[] $cascadeSources */
4586 list( $cascadeSources, /* $restrictions */ ) = $this->mTitle->getCascadeProtectionSources();
4587 $notice = "<div class='mw-cascadeprotectedwarning'>\n$1\n";
4588 $cascadeSourcesCount = count( $cascadeSources );
4589 if ( $cascadeSourcesCount > 0 ) {
4590 # Explain, and list the titles responsible
4591 foreach ( $cascadeSources as $page ) {
4592 $notice .= '* [[:' . $page->getPrefixedText() . "]]\n";
4593 }
4594 }
4595 $notice .= '</div>';
4596 $out->wrapWikiMsg( $notice, [ 'cascadeprotectedwarning', $cascadeSourcesCount ] );
4597 }
4598 if ( !$this->mTitle->exists() && $this->mTitle->getRestrictions( 'create' ) ) {
4599 LogEventsList::showLogExtract( $out, 'protect', $this->mTitle, '',
4600 [ 'lim' => 1,
4601 'showIfEmpty' => false,
4602 'msgKey' => [ 'titleprotectedwarning' ],
4603 'wrap' => "<div class=\"mw-titleprotectedwarning\">\n$1</div>" ] );
4604 }
4605 }
4606
4607 /**
4608 * @param OutputPage $out
4609 * @since 1.29
4610 */
4611 protected function addExplainConflictHeader( OutputPage $out ) {
4612 $out->addHTML(
4613 $this->getEditConflictHelper()->getExplainHeader()
4614 );
4615 }
4616
4617 /**
4618 * @param string $name
4619 * @param mixed[] $customAttribs
4620 * @param User $user
4621 * @return mixed[]
4622 * @since 1.29
4623 */
4624 protected function buildTextboxAttribs( $name, array $customAttribs, User $user ) {
4625 return ( new TextboxBuilder() )->buildTextboxAttribs(
4626 $name, $customAttribs, $user, $this->mTitle
4627 );
4628 }
4629
4630 /**
4631 * @param string $wikitext
4632 * @return string
4633 * @since 1.29
4634 */
4635 protected function addNewLineAtEnd( $wikitext ) {
4636 return ( new TextboxBuilder() )->addNewLineAtEnd( $wikitext );
4637 }
4638
4639 /**
4640 * Turns section name wikitext into anchors for use in HTTP redirects. Various
4641 * versions of Microsoft browsers misinterpret fragment encoding of Location: headers
4642 * resulting in mojibake in address bar. Redirect them to legacy section IDs,
4643 * if possible. All the other browsers get HTML5 if the wiki is configured for it, to
4644 * spread the new style links more efficiently.
4645 *
4646 * @param string $text
4647 * @return string
4648 */
4649 private function guessSectionName( $text ) {
4650 global $wgParser;
4651
4652 // Detect Microsoft browsers
4653 $userAgent = $this->context->getRequest()->getHeader( 'User-Agent' );
4654 if ( $userAgent && preg_match( '/MSIE|Edge/', $userAgent ) ) {
4655 // ...and redirect them to legacy encoding, if available
4656 return $wgParser->guessLegacySectionNameFromWikiText( $text );
4657 }
4658 // Meanwhile, real browsers get real anchors
4659 return $wgParser->guessSectionNameFromWikiText( $text );
4660 }
4661
4662 /**
4663 * Set a factory function to create an EditConflictHelper
4664 *
4665 * @param callable $factory Factory function
4666 * @since 1.31
4667 */
4668 public function setEditConflictHelperFactory( callable $factory ) {
4669 $this->editConflictHelperFactory = $factory;
4670 $this->editConflictHelper = null;
4671 }
4672
4673 /**
4674 * @return TextConflictHelper
4675 */
4676 private function getEditConflictHelper() {
4677 if ( !$this->editConflictHelper ) {
4678 $this->editConflictHelper = call_user_func(
4679 $this->editConflictHelperFactory,
4680 $this->getSubmitButtonLabel()
4681 );
4682 }
4683
4684 return $this->editConflictHelper;
4685 }
4686
4687 /**
4688 * @param string $submitButtonLabel
4689 * @return TextConflictHelper
4690 */
4691 private function newTextConflictHelper( $submitButtonLabel ) {
4692 return new TextConflictHelper(
4693 $this->getTitle(),
4694 $this->getContext()->getOutput(),
4695 MediaWikiServices::getInstance()->getStatsdDataFactory(),
4696 $submitButtonLabel
4697 );
4698 }
4699 }