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