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