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