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