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