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