3 * Contains the EditPage class
8 * The edit page/HTML interface (split from Article)
9 * The actual database and text munging is still in Article,
10 * but it should get easier to call those from alternate
13 * EditPage cares about two distinct titles:
14 * $this->mContextTitle is the page that forms submit to, links point to,
15 * redirects go to, etc. $this->mTitle (as well as $mArticle) is the
16 * page in the database that is actually being edited. These are
17 * usually the same, but they are now allowed to be different.
19 * Surgeon General's Warning: prolonged exposure to this class is known to cause
20 * headaches, which may be fatal.
25 * Status: Article successfully updated
27 const AS_SUCCESS_UPDATE
= 200;
30 * Status: Article successfully created
32 const AS_SUCCESS_NEW_ARTICLE
= 201;
35 * Status: Article update aborted by a hook function
37 const AS_HOOK_ERROR
= 210;
40 * Status: The filter function set in $wgFilterCallback returned true (= block it)
42 const AS_FILTERING
= 211;
45 * Status: A hook function returned an error
47 const AS_HOOK_ERROR_EXPECTED
= 212;
50 * Status: User is blocked from editting this page
52 const AS_BLOCKED_PAGE_FOR_USER
= 215;
55 * Status: Content too big (> $wgMaxArticleSize)
57 const AS_CONTENT_TOO_BIG
= 216;
60 * Status: User cannot edit? (not used)
62 const AS_USER_CANNOT_EDIT
= 217;
65 * Status: this anonymous user is not allowed to edit this page
67 const AS_READ_ONLY_PAGE_ANON
= 218;
70 * Status: this logged in user is not allowed to edit this page
72 const AS_READ_ONLY_PAGE_LOGGED
= 219;
75 * Status: wiki is in readonly mode (wfReadOnly() == true)
77 const AS_READ_ONLY_PAGE
= 220;
80 * Status: rate limiter for action 'edit' was tripped
82 const AS_RATE_LIMITED
= 221;
85 * Status: article was deleted while editting and param wpRecreate == false or form
88 const AS_ARTICLE_WAS_DELETED
= 222;
91 * Status: user tried to create this page, but is not allowed to do that
92 * ( Title->usercan('create') == false )
94 const AS_NO_CREATE_PERMISSION
= 223;
97 * Status: user tried to create a blank page
99 const AS_BLANK_ARTICLE
= 224;
102 * Status: (non-resolvable) edit conflict
104 const AS_CONFLICT_DETECTED
= 225;
107 * Status: no edit summary given and the user has forceeditsummary set and the user is not
108 * editting in his own userspace or talkspace and wpIgnoreBlankSummary == false
110 const AS_SUMMARY_NEEDED
= 226;
113 * Status: user tried to create a new section without content
115 const AS_TEXTBOX_EMPTY
= 228;
118 * Status: article is too big (> $wgMaxArticleSize), after merging in the new section
120 const AS_MAX_ARTICLE_SIZE_EXCEEDED
= 229;
128 * Status: WikiPage::doEdit() was unsuccessfull
133 * Status: summary contained spam according to one of the regexes in $wgSummarySpamRegex
135 const AS_SPAM_ERROR
= 232;
138 * Status: anonymous user is not allowed to upload (User::isAllowed('upload') == false)
140 const AS_IMAGE_REDIRECT_ANON
= 233;
143 * Status: logged in user is not allowed to upload (User::isAllowed('upload') == false)
145 const AS_IMAGE_REDIRECT_LOGGED
= 234;
148 * HTML id and name for the beginning of the edit form.
150 const EDITFORM_ID
= 'editform';
161 private $mContextTitle = null;
162 var $action = 'submit';
163 var $isConflict = false;
164 var $isCssJsSubpage = false;
165 var $isCssSubpage = false;
166 var $isJsSubpage = false;
167 var $isWrongCaseCssJsPage = false;
168 var $isNew = false; // new page or new section
169 var $deletedSinceEdit;
173 var $mTokenOk = false;
174 var $mTokenOkExceptSuffix = false;
175 var $mTriedSave = false;
176 var $incompleteForm = false;
178 var $kblength = false;
179 var $missingComment = false;
180 var $missingSummary = false;
181 var $allowBlankSummary = false;
184 #var $mPreviewTemplates;
192 * Has a summary been preset using GET parameter &summary= ?
195 var $hasPresetSummary = false;
197 var $mBaseRevision = false;
198 var $mShowSummaryField = true;
201 var $save = false, $preview = false, $diff = false;
202 var $minoredit = false, $watchthis = false, $recreate = false;
203 var $textbox1 = '', $textbox2 = '', $summary = '', $nosummary = false;
204 var $edittime = '', $section = '', $sectiontitle = '', $starttime = '';
205 var $oldid = 0, $editintro = '', $scrolltop = null, $bot = true;
207 # Placeholders for text injection by hooks (must be HTML)
208 # extensions should take care to _append_ to the present value
209 public $editFormPageTop = ''; // Before even the preview
210 public $editFormTextTop = '';
211 public $editFormTextBeforeContent = '';
212 public $editFormTextAfterWarn = '';
213 public $editFormTextAfterTools = '';
214 public $editFormTextBottom = '';
215 public $editFormTextAfterContent = '';
216 public $previewTextAfterContent = '';
217 public $mPreloadText = '';
219 /* $didSave should be set to true whenever an article was succesfully altered. */
220 public $didSave = false;
221 public $undidRev = 0;
223 public $suppressIntro = false;
226 * @param $article Article
228 public function __construct( Article
$article ) {
229 $this->mArticle
= $article;
230 $this->mTitle
= $article->getTitle();
236 public function getArticle() {
237 return $this->mArticle
;
244 public function getTitle() {
245 return $this->mTitle
;
249 * Set the context Title object
251 * @param $title Title object or null
253 public function setContextTitle( $title ) {
254 $this->mContextTitle
= $title;
258 * Get the context title object.
259 * If not set, $wgTitle will be returned. This behavior might changed in
260 * the future to return $this->mTitle instead.
262 * @return Title object
264 public function getContextTitle() {
265 if ( is_null( $this->mContextTitle
) ) {
269 return $this->mContextTitle
;
278 * This is the function that gets called for "action=edit". It
279 * sets up various member variables, then passes execution to
280 * another function, usually showEditForm()
282 * The edit form is self-submitting, so that when things like
283 * preview and edit conflicts occur, we get the same form back
284 * with the extra stuff added. Only when the final submission
285 * is made and all is well do we actually save and redirect to
286 * the newly-edited page.
289 global $wgOut, $wgRequest, $wgUser;
290 // Allow extensions to modify/prevent this form or submission
291 if ( !wfRunHooks( 'AlternateEdit', array( $this ) ) ) {
295 wfProfileIn( __METHOD__
);
296 wfDebug( __METHOD__
. ": enter\n" );
298 // If they used redlink=1 and the page exists, redirect to the main article
299 if ( $wgRequest->getBool( 'redlink' ) && $this->mTitle
->exists() ) {
300 $wgOut->redirect( $this->mTitle
->getFullURL() );
301 wfProfileOut( __METHOD__
);
305 $this->importFormData( $wgRequest );
306 $this->firsttime
= false;
309 $this->livePreview();
310 wfProfileOut( __METHOD__
);
314 if ( wfReadOnly() && $this->save
) {
317 $this->preview
= true;
321 $this->formtype
= 'save';
322 } elseif ( $this->preview
) {
323 $this->formtype
= 'preview';
324 } elseif ( $this->diff
) {
325 $this->formtype
= 'diff';
326 } else { # First time through
327 $this->firsttime
= true;
328 if ( $this->previewOnOpen() ) {
329 $this->formtype
= 'preview';
331 $this->formtype
= 'initial';
335 $permErrors = $this->getEditPermissionErrors();
337 wfDebug( __METHOD__
. ": User can't edit\n" );
338 // Auto-block user's IP if the account was "hard" blocked
339 $wgUser->spreadAnyEditBlock();
341 $this->displayPermissionsError( $permErrors );
343 wfProfileOut( __METHOD__
);
347 wfProfileIn( __METHOD__
. "-business-end" );
349 $this->isConflict
= false;
350 // css / js subpages of user pages get a special treatment
351 $this->isCssJsSubpage
= $this->mTitle
->isCssJsSubpage();
352 $this->isCssSubpage
= $this->mTitle
->isCssSubpage();
353 $this->isJsSubpage
= $this->mTitle
->isJsSubpage();
354 $this->isWrongCaseCssJsPage
= $this->isWrongCaseCssJsPage();
355 $this->isNew
= !$this->mTitle
->exists() ||
$this->section
== 'new';
357 # Show applicable editing introductions
358 if ( $this->formtype
== 'initial' ||
$this->firsttime
) {
362 # Attempt submission here. This will check for edit conflicts,
363 # and redundantly check for locked database, blocked IPs, etc.
364 # that edit() already checked just in case someone tries to sneak
365 # in the back door with a hand-edited submission URL.
367 if ( 'save' == $this->formtype
) {
368 if ( !$this->attemptSave() ) {
369 wfProfileOut( __METHOD__
. "-business-end" );
370 wfProfileOut( __METHOD__
);
375 # First time through: get contents, set time for conflict
377 if ( 'initial' == $this->formtype ||
$this->firsttime
) {
378 if ( $this->initialiseForm() === false ) {
379 $this->noSuchSectionPage();
380 wfProfileOut( __METHOD__
. "-business-end" );
381 wfProfileOut( __METHOD__
);
384 if ( !$this->mTitle
->getArticleID() )
385 wfRunHooks( 'EditFormPreloadText', array( &$this->textbox1
, &$this->mTitle
) );
387 wfRunHooks( 'EditFormInitialText', array( $this ) );
390 $this->showEditForm();
391 wfProfileOut( __METHOD__
. "-business-end" );
392 wfProfileOut( __METHOD__
);
398 protected function getEditPermissionErrors() {
400 $permErrors = $this->mTitle
->getUserPermissionsErrors( 'edit', $wgUser );
401 # Can this title be created?
402 if ( !$this->mTitle
->exists() ) {
403 $permErrors = array_merge( $permErrors,
404 wfArrayDiff2( $this->mTitle
->getUserPermissionsErrors( 'create', $wgUser ), $permErrors ) );
406 # Ignore some permissions errors when a user is just previewing/viewing diffs
408 foreach ( $permErrors as $error ) {
409 if ( ( $this->preview ||
$this->diff
) &&
410 ( $error[0] == 'blockedtext' ||
$error[0] == 'autoblockedtext' ) )
415 $permErrors = wfArrayDiff2( $permErrors, $remove );
420 * Display a permissions error page, like OutputPage::showPermissionsErrorPage(),
421 * but with the following differences:
422 * - If redlink=1, the user will be redirected to the page
423 * - If there is content to display or the error occurs while either saving,
424 * previewing or showing the difference, it will be a
425 * "View source for ..." page displaying the source code after the error message.
428 * @param $permErrors Array of permissions errors, as returned by
429 * Title::getUserPermissionsErrors().
431 protected function displayPermissionsError( array $permErrors ) {
432 global $wgRequest, $wgOut;
434 if ( $wgRequest->getBool( 'redlink' ) ) {
435 // The edit page was reached via a red link.
436 // Redirect to the article page and let them click the edit tab if
437 // they really want a permission error.
438 $wgOut->redirect( $this->mTitle
->getFullUrl() );
442 $content = $this->getContent();
444 # Use the normal message if there's nothing to display
445 if ( $this->firsttime
&& $content === '' ) {
446 $action = $this->mTitle
->exists() ?
'edit' :
447 ( $this->mTitle
->isTalkPage() ?
'createtalk' : 'createpage' );
448 throw new PermissionsError( $action, $permErrors );
451 $wgOut->setPageTitle( wfMessage( 'viewsource-title', $this->getContextTitle()->getPrefixedText() ) );
452 $wgOut->addBacklinkSubtitle( $this->getContextTitle() );
453 $wgOut->addWikiText( $wgOut->formatPermissionsErrorMessage( $permErrors, 'edit' ) );
454 $wgOut->addHTML( "<hr />\n" );
456 # If the user made changes, preserve them when showing the markup
457 # (This happens when a user is blocked during edit, for instance)
458 if ( !$this->firsttime
) {
459 $content = $this->textbox1
;
460 $wgOut->addWikiMsg( 'viewyourtext' );
462 $wgOut->addWikiMsg( 'viewsourcetext' );
465 $this->showTextbox( $content, 'wpTextbox1', array( 'readonly' ) );
467 $wgOut->addHTML( Html
::rawElement( 'div', array( 'class' => 'templatesUsed' ),
468 Linker
::formatTemplates( $this->getTemplates() ) ) );
470 if ( $this->mTitle
->exists() ) {
471 $wgOut->returnToMain( null, $this->mTitle
);
476 * Show a read-only error
477 * Parameters are the same as OutputPage:readOnlyPage()
478 * Redirect to the article page if redlink=1
479 * @deprecated in 1.19; use displayPermissionsError() instead
481 function readOnlyPage( $source = null, $protected = false, $reasons = array(), $action = null ) {
482 wfDeprecated( __METHOD__
, '1.19' );
484 global $wgRequest, $wgOut;
485 if ( $wgRequest->getBool( 'redlink' ) ) {
486 // The edit page was reached via a red link.
487 // Redirect to the article page and let them click the edit tab if
488 // they really want a permission error.
489 $wgOut->redirect( $this->mTitle
->getFullUrl() );
491 $wgOut->readOnlyPage( $source, $protected, $reasons, $action );
496 * Should we show a preview when the edit form is first shown?
500 protected function previewOnOpen() {
501 global $wgRequest, $wgUser, $wgPreviewOnOpenNamespaces;
502 if ( $wgRequest->getVal( 'preview' ) == 'yes' ) {
503 // Explicit override from request
505 } elseif ( $wgRequest->getVal( 'preview' ) == 'no' ) {
506 // Explicit override from request
508 } elseif ( $this->section
== 'new' ) {
509 // Nothing *to* preview for new sections
511 } elseif ( ( $wgRequest->getVal( 'preload' ) !== null ||
$this->mTitle
->exists() ) && $wgUser->getOption( 'previewonfirst' ) ) {
512 // Standard preference behaviour
514 } elseif ( !$this->mTitle
->exists() &&
515 isset( $wgPreviewOnOpenNamespaces[$this->mTitle
->getNamespace()] ) &&
516 $wgPreviewOnOpenNamespaces[$this->mTitle
->getNamespace()] )
518 // Categories are special
526 * Checks whether the user entered a skin name in uppercase,
527 * e.g. "User:Example/Monobook.css" instead of "monobook.css"
531 protected function isWrongCaseCssJsPage() {
532 if ( $this->mTitle
->isCssJsSubpage() ) {
533 $name = $this->mTitle
->getSkinFromCssJsSubpage();
534 $skins = array_merge(
535 array_keys( Skin
::getSkinNames() ),
538 return !in_array( $name, $skins )
539 && in_array( strtolower( $name ), $skins );
546 * Does this EditPage class support section editing?
547 * This is used by EditPage subclasses to indicate their ui cannot handle section edits
551 protected function isSectionEditSupported() {
556 * This function collects the form data and uses it to populate various member variables.
557 * @param $request WebRequest
559 function importFormData( &$request ) {
560 global $wgLang, $wgUser;
562 wfProfileIn( __METHOD__
);
564 # Section edit can come from either the form or a link
565 $this->section
= $request->getVal( 'wpSection', $request->getVal( 'section' ) );
567 if ( $request->wasPosted() ) {
568 # These fields need to be checked for encoding.
569 # Also remove trailing whitespace, but don't remove _initial_
570 # whitespace from the text boxes. This may be significant formatting.
571 $this->textbox1
= $this->safeUnicodeInput( $request, 'wpTextbox1' );
572 if ( !$request->getCheck( 'wpTextbox2' ) ) {
573 // Skip this if wpTextbox2 has input, it indicates that we came
574 // from a conflict page with raw page text, not a custom form
575 // modified by subclasses
576 wfProfileIn( get_class( $this ) . "::importContentFormData" );
577 $textbox1 = $this->importContentFormData( $request );
578 if ( isset( $textbox1 ) )
579 $this->textbox1
= $textbox1;
580 wfProfileOut( get_class( $this ) . "::importContentFormData" );
583 # Truncate for whole multibyte characters. +5 bytes for ellipsis
584 $this->summary
= $wgLang->truncate( $request->getText( 'wpSummary' ), 250 );
586 # If the summary consists of a heading, e.g. '==Foobar==', extract the title from the
587 # header syntax, e.g. 'Foobar'. This is mainly an issue when we are using wpSummary for
589 $this->summary
= preg_replace( '/^\s*=+\s*(.*?)\s*=+\s*$/', '$1', $this->summary
);
591 # Treat sectiontitle the same way as summary.
592 # Note that wpSectionTitle is not yet a part of the actual edit form, as wpSummary is
593 # currently doing double duty as both edit summary and section title. Right now this
594 # is just to allow API edits to work around this limitation, but this should be
595 # incorporated into the actual edit form when EditPage is rewritten (Bugs 18654, 26312).
596 $this->sectiontitle
= $wgLang->truncate( $request->getText( 'wpSectionTitle' ), 250 );
597 $this->sectiontitle
= preg_replace( '/^\s*=+\s*(.*?)\s*=+\s*$/', '$1', $this->sectiontitle
);
599 $this->edittime
= $request->getVal( 'wpEdittime' );
600 $this->starttime
= $request->getVal( 'wpStarttime' );
602 $this->scrolltop
= $request->getIntOrNull( 'wpScrolltop' );
604 if ( $this->textbox1
=== '' && $request->getVal( 'wpTextbox1' ) === null ) {
605 // wpTextbox1 field is missing, possibly due to being "too big"
606 // according to some filter rules such as Suhosin's setting for
607 // suhosin.request.max_value_length (d'oh)
608 $this->incompleteForm
= true;
610 // edittime should be one of our last fields; if it's missing,
611 // the submission probably broke somewhere in the middle.
612 $this->incompleteForm
= is_null( $this->edittime
);
614 if ( $this->incompleteForm
) {
615 # If the form is incomplete, force to preview.
616 wfDebug( __METHOD__
. ": Form data appears to be incomplete\n" );
617 wfDebug( "POST DATA: " . var_export( $_POST, true ) . "\n" );
618 $this->preview
= true;
620 /* Fallback for live preview */
621 $this->preview
= $request->getCheck( 'wpPreview' ) ||
$request->getCheck( 'wpLivePreview' );
622 $this->diff
= $request->getCheck( 'wpDiff' );
624 // Remember whether a save was requested, so we can indicate
625 // if we forced preview due to session failure.
626 $this->mTriedSave
= !$this->preview
;
628 if ( $this->tokenOk( $request ) ) {
629 # Some browsers will not report any submit button
630 # if the user hits enter in the comment box.
631 # The unmarked state will be assumed to be a save,
632 # if the form seems otherwise complete.
633 wfDebug( __METHOD__
. ": Passed token check.\n" );
634 } elseif ( $this->diff
) {
635 # Failed token check, but only requested "Show Changes".
636 wfDebug( __METHOD__
. ": Failed token check; Show Changes requested.\n" );
638 # Page might be a hack attempt posted from
639 # an external site. Preview instead of saving.
640 wfDebug( __METHOD__
. ": Failed token check; forcing preview\n" );
641 $this->preview
= true;
644 $this->save
= !$this->preview
&& !$this->diff
;
645 if ( !preg_match( '/^\d{14}$/', $this->edittime
) ) {
646 $this->edittime
= null;
649 if ( !preg_match( '/^\d{14}$/', $this->starttime
) ) {
650 $this->starttime
= null;
653 $this->recreate
= $request->getCheck( 'wpRecreate' );
655 $this->minoredit
= $request->getCheck( 'wpMinoredit' );
656 $this->watchthis
= $request->getCheck( 'wpWatchthis' );
658 # Don't force edit summaries when a user is editing their own user or talk page
659 if ( ( $this->mTitle
->mNamespace
== NS_USER ||
$this->mTitle
->mNamespace
== NS_USER_TALK
) &&
660 $this->mTitle
->getText() == $wgUser->getName() )
662 $this->allowBlankSummary
= true;
664 $this->allowBlankSummary
= $request->getBool( 'wpIgnoreBlankSummary' ) ||
!$wgUser->getOption( 'forceeditsummary' );
667 $this->autoSumm
= $request->getText( 'wpAutoSummary' );
669 # Not a posted form? Start with nothing.
670 wfDebug( __METHOD__
. ": Not a posted form.\n" );
671 $this->textbox1
= '';
673 $this->sectiontitle
= '';
674 $this->edittime
= '';
675 $this->starttime
= wfTimestampNow();
677 $this->preview
= false;
680 $this->minoredit
= false;
681 $this->watchthis
= $request->getBool( 'watchthis', false ); // Watch may be overriden by request parameters
682 $this->recreate
= false;
684 // When creating a new section, we can preload a section title by passing it as the
685 // preloadtitle parameter in the URL (Bug 13100)
686 if ( $this->section
== 'new' && $request->getVal( 'preloadtitle' ) ) {
687 $this->sectiontitle
= $request->getVal( 'preloadtitle' );
688 // Once wpSummary isn't being use for setting section titles, we should delete this.
689 $this->summary
= $request->getVal( 'preloadtitle' );
691 elseif ( $this->section
!= 'new' && $request->getVal( 'summary' ) ) {
692 $this->summary
= $request->getText( 'summary' );
693 if ( $this->summary
!== '' ) {
694 $this->hasPresetSummary
= true;
698 if ( $request->getVal( 'minor' ) ) {
699 $this->minoredit
= true;
703 $this->bot
= $request->getBool( 'bot', true );
704 $this->nosummary
= $request->getBool( 'nosummary' );
706 $this->oldid
= $request->getInt( 'oldid' );
708 $this->live
= $request->getCheck( 'live' );
709 $this->editintro
= $request->getText( 'editintro',
710 // Custom edit intro for new sections
711 $this->section
=== 'new' ?
'MediaWiki:addsection-editintro' : '' );
713 // Allow extensions to modify form data
714 wfRunHooks( 'EditPage::importFormData', array( $this, $request ) );
716 wfProfileOut( __METHOD__
);
720 * Subpage overridable method for extracting the page content data from the
721 * posted form to be placed in $this->textbox1, if using customized input
722 * this method should be overrided and return the page text that will be used
723 * for saving, preview parsing and so on...
725 * @param $request WebRequest
727 protected function importContentFormData( &$request ) {
728 return; // Don't do anything, EditPage already extracted wpTextbox1
732 * Initialise form fields in the object
733 * Called on the first invocation, e.g. when a user clicks an edit link
734 * @return bool -- if the requested section is valid
736 function initialiseForm() {
738 $this->edittime
= $this->mArticle
->getTimestamp();
739 $this->textbox1
= $this->getContent( false );
740 // activate checkboxes if user wants them to be always active
741 # Sort out the "watch" checkbox
742 if ( $wgUser->getOption( 'watchdefault' ) ) {
744 $this->watchthis
= true;
745 } elseif ( $wgUser->getOption( 'watchcreations' ) && !$this->mTitle
->exists() ) {
747 $this->watchthis
= true;
748 } elseif ( $this->mTitle
->userIsWatching() ) {
750 $this->watchthis
= true;
752 if ( $wgUser->getOption( 'minordefault' ) && !$this->isNew
) {
753 $this->minoredit
= true;
755 if ( $this->textbox1
=== false ) {
763 * Fetch initial editing page content.
765 * @param $def_text string
766 * @return mixed string on success, $def_text for invalid sections
769 function getContent( $def_text = '' ) {
770 global $wgOut, $wgRequest, $wgParser;
772 wfProfileIn( __METHOD__
);
776 // For message page not locally set, use the i18n message.
777 // For other non-existent articles, use preload text if any.
778 if ( !$this->mTitle
->exists() ||
$this->section
== 'new' ) {
779 if ( $this->mTitle
->getNamespace() == NS_MEDIAWIKI
&& $this->section
!= 'new' ) {
780 # If this is a system message, get the default text.
781 $text = $this->mTitle
->getDefaultMessageText();
783 if ( $text === false ) {
784 # If requested, preload some text.
785 $preload = $wgRequest->getVal( 'preload',
786 // Custom preload text for new sections
787 $this->section
=== 'new' ?
'MediaWiki:addsection-preload' : '' );
788 $text = $this->getPreloadedText( $preload );
790 // For existing pages, get text based on "undo" or section parameters.
792 if ( $this->section
!= '' ) {
793 // Get section edit text (returns $def_text for invalid sections)
794 $text = $wgParser->getSection( $this->getOriginalContent(), $this->section
, $def_text );
796 $undoafter = $wgRequest->getInt( 'undoafter' );
797 $undo = $wgRequest->getInt( 'undo' );
799 if ( $undo > 0 && $undoafter > 0 ) {
800 if ( $undo < $undoafter ) {
801 # If they got undoafter and undo round the wrong way, switch them
802 list( $undo, $undoafter ) = array( $undoafter, $undo );
805 $undorev = Revision
::newFromId( $undo );
806 $oldrev = Revision
::newFromId( $undoafter );
808 # Sanity check, make sure it's the right page,
809 # the revisions exist and they were not deleted.
810 # Otherwise, $text will be left as-is.
811 if ( !is_null( $undorev ) && !is_null( $oldrev ) &&
812 $undorev->getPage() == $oldrev->getPage() &&
813 $undorev->getPage() == $this->mTitle
->getArticleID() &&
814 !$undorev->isDeleted( Revision
::DELETED_TEXT
) &&
815 !$oldrev->isDeleted( Revision
::DELETED_TEXT
) ) {
817 $text = $this->mArticle
->getUndoText( $undorev, $oldrev );
818 if ( $text === false ) {
819 # Warn the user that something went wrong
820 $undoMsg = 'failure';
822 # Inform the user of our success and set an automatic edit summary
823 $undoMsg = 'success';
825 # If we just undid one rev, use an autosummary
826 $firstrev = $oldrev->getNext();
827 if ( $firstrev->getId() == $undo ) {
828 $undoSummary = wfMsgForContent( 'undo-summary', $undo, $undorev->getUserText() );
829 if ( $this->summary
=== '' ) {
830 $this->summary
= $undoSummary;
832 $this->summary
= $undoSummary . wfMsgForContent( 'colon-separator' ) . $this->summary
;
834 $this->undidRev
= $undo;
836 $this->formtype
= 'diff';
839 // Failed basic sanity checks.
840 // Older revisions may have been removed since the link
841 // was created, or we may simply have got bogus input.
845 $class = ( $undoMsg == 'success' ?
'' : 'error ' ) . "mw-undo-{$undoMsg}";
846 $this->editFormPageTop
.= $wgOut->parse( "<div class=\"{$class}\">" .
847 wfMsgNoTrans( 'undo-' . $undoMsg ) . '</div>', true, /* interface */true );
850 if ( $text === false ) {
851 $text = $this->getOriginalContent();
856 wfProfileOut( __METHOD__
);
861 * Get the content of the wanted revision, without section extraction.
863 * The result of this function can be used to compare user's input with
864 * section replaced in its context (using WikiPage::replaceSection())
865 * to the original text of the edit.
867 * This difers from Article::getContent() that when a missing revision is
868 * encountered the result will be an empty string and not the
869 * 'missing-article' message.
874 private function getOriginalContent() {
875 if ( $this->section
== 'new' ) {
876 return $this->getCurrentText();
878 $revision = $this->mArticle
->getRevisionFetched();
879 if ( $revision === null ) {
882 return $this->mArticle
->getContent();
886 * Get the actual text of the page. This is basically similar to
887 * WikiPage::getRawText() except that when the page doesn't exist an empty
888 * string is returned instead of false.
893 private function getCurrentText() {
894 $text = $this->mArticle
->getRawText();
895 if ( $text === false ) {
903 * Use this method before edit() to preload some text into the edit box
905 * @param $text string
907 public function setPreloadedText( $text ) {
908 $this->mPreloadText
= $text;
912 * Get the contents to be preloaded into the box, either set by
913 * an earlier setPreloadText() or by loading the given page.
915 * @param $preload String: representing the title to preload from.
918 protected function getPreloadedText( $preload ) {
919 global $wgUser, $wgParser;
921 if ( !empty( $this->mPreloadText
) ) {
922 return $this->mPreloadText
;
925 if ( $preload === '' ) {
929 $title = Title
::newFromText( $preload );
930 # Check for existence to avoid getting MediaWiki:Noarticletext
931 if ( $title === null ||
!$title->exists() ||
!$title->userCan( 'read' ) ) {
935 $page = WikiPage
::factory( $title );
936 if ( $page->isRedirect() ) {
937 $title = $page->getRedirectTarget();
939 if ( $title === null ||
!$title->exists() ||
!$title->userCan( 'read' ) ) {
942 $page = WikiPage
::factory( $title );
945 $parserOptions = ParserOptions
::newFromUser( $wgUser );
946 return $wgParser->getPreloadText( $page->getRawText(), $title, $parserOptions );
950 * Make sure the form isn't faking a user's credentials.
952 * @param $request WebRequest
956 function tokenOk( &$request ) {
958 $token = $request->getVal( 'wpEditToken' );
959 $this->mTokenOk
= $wgUser->matchEditToken( $token );
960 $this->mTokenOkExceptSuffix
= $wgUser->matchEditTokenNoSuffix( $token );
961 return $this->mTokenOk
;
966 * @return bool false if output is done, true if the rest of the form should be displayed
968 function attemptSave() {
969 global $wgUser, $wgOut;
971 $resultDetails = false;
972 # Allow bots to exempt some edits from bot flagging
973 $bot = $wgUser->isAllowed( 'bot' ) && $this->bot
;
974 $status = $this->internalAttemptSave( $resultDetails, $bot );
975 // FIXME: once the interface for internalAttemptSave() is made nicer, this should use the message in $status
977 if ( $status->value
== self
::AS_SUCCESS_UPDATE ||
$status->value
== self
::AS_SUCCESS_NEW_ARTICLE
) {
978 $this->didSave
= true;
981 switch ( $status->value
) {
982 case self
::AS_HOOK_ERROR_EXPECTED
:
983 case self
::AS_CONTENT_TOO_BIG
:
984 case self
::AS_ARTICLE_WAS_DELETED
:
985 case self
::AS_CONFLICT_DETECTED
:
986 case self
::AS_SUMMARY_NEEDED
:
987 case self
::AS_TEXTBOX_EMPTY
:
988 case self
::AS_MAX_ARTICLE_SIZE_EXCEEDED
:
992 case self
::AS_HOOK_ERROR
:
993 case self
::AS_FILTERING
:
996 case self
::AS_SUCCESS_NEW_ARTICLE
:
997 $query = $resultDetails['redirect'] ?
'redirect=no' : '';
998 $anchor = isset ( $resultDetails['sectionanchor'] ) ?
$resultDetails['sectionanchor'] : '';
999 $wgOut->redirect( $this->mTitle
->getFullURL( $query ) . $anchor );
1002 case self
::AS_SUCCESS_UPDATE
:
1004 $sectionanchor = $resultDetails['sectionanchor'];
1006 // Give extensions a chance to modify URL query on update
1007 wfRunHooks( 'ArticleUpdateBeforeRedirect', array( $this->mArticle
, &$sectionanchor, &$extraQuery ) );
1009 if ( $resultDetails['redirect'] ) {
1010 if ( $extraQuery == '' ) {
1011 $extraQuery = 'redirect=no';
1013 $extraQuery = 'redirect=no&' . $extraQuery;
1016 $wgOut->redirect( $this->mTitle
->getFullURL( $extraQuery ) . $sectionanchor );
1019 case self
::AS_BLANK_ARTICLE
:
1020 $wgOut->redirect( $this->getContextTitle()->getFullURL() );
1023 case self
::AS_SPAM_ERROR
:
1024 $this->spamPageWithContent( $resultDetails['spam'] );
1027 case self
::AS_BLOCKED_PAGE_FOR_USER
:
1028 throw new UserBlockedError( $wgUser->getBlock() );
1030 case self
::AS_IMAGE_REDIRECT_ANON
:
1031 case self
::AS_IMAGE_REDIRECT_LOGGED
:
1032 throw new PermissionsError( 'upload' );
1034 case self
::AS_READ_ONLY_PAGE_ANON
:
1035 case self
::AS_READ_ONLY_PAGE_LOGGED
:
1036 throw new PermissionsError( 'edit' );
1038 case self
::AS_READ_ONLY_PAGE
:
1039 throw new ReadOnlyError
;
1041 case self
::AS_RATE_LIMITED
:
1042 throw new ThrottledError();
1044 case self
::AS_NO_CREATE_PERMISSION
:
1045 $permission = $this->mTitle
->isTalkPage() ?
'createtalk' : 'createpage';
1046 throw new PermissionsError( $permission );
1053 * Attempt submission (no UI)
1058 * @return Status object, possibly with a message, but always with one of the AS_* constants in $status->value,
1060 * FIXME: This interface is TERRIBLE, but hard to get rid of due to various error display idiosyncrasies. There are
1061 * also lots of cases where error metadata is set in the object and retrieved later instead of being returned, e.g.
1062 * AS_CONTENT_TOO_BIG and AS_BLOCKED_PAGE_FOR_USER. All that stuff needs to be cleaned up some time.
1064 function internalAttemptSave( &$result, $bot = false ) {
1065 global $wgFilterCallback, $wgUser, $wgRequest, $wgParser;
1066 global $wgMaxArticleSize;
1068 $status = Status
::newGood();
1070 wfProfileIn( __METHOD__
);
1071 wfProfileIn( __METHOD__
. '-checks' );
1073 if ( !wfRunHooks( 'EditPage::attemptSave', array( $this ) ) ) {
1074 wfDebug( "Hook 'EditPage::attemptSave' aborted article saving\n" );
1075 $status->fatal( 'hookaborted' );
1076 $status->value
= self
::AS_HOOK_ERROR
;
1077 wfProfileOut( __METHOD__
. '-checks' );
1078 wfProfileOut( __METHOD__
);
1082 # Check image redirect
1083 if ( $this->mTitle
->getNamespace() == NS_FILE
&&
1084 Title
::newFromRedirect( $this->textbox1
) instanceof Title
&&
1085 !$wgUser->isAllowed( 'upload' ) ) {
1086 $code = $wgUser->isAnon() ? self
::AS_IMAGE_REDIRECT_ANON
: self
::AS_IMAGE_REDIRECT_LOGGED
;
1087 $status->setResult( false, $code );
1089 wfProfileOut( __METHOD__
. '-checks' );
1090 wfProfileOut( __METHOD__
);
1096 $match = self
::matchSummarySpamRegex( $this->summary
);
1097 if ( $match === false ) {
1098 $match = self
::matchSpamRegex( $this->textbox1
);
1100 if ( $match !== false ) {
1101 $result['spam'] = $match;
1102 $ip = $wgRequest->getIP();
1103 $pdbk = $this->mTitle
->getPrefixedDBkey();
1104 $match = str_replace( "\n", '', $match );
1105 wfDebugLog( 'SpamRegex', "$ip spam regex hit [[$pdbk]]: \"$match\"" );
1106 $status->fatal( 'spamprotectionmatch', $match );
1107 $status->value
= self
::AS_SPAM_ERROR
;
1108 wfProfileOut( __METHOD__
. '-checks' );
1109 wfProfileOut( __METHOD__
);
1112 if ( $wgFilterCallback && is_callable( $wgFilterCallback ) && $wgFilterCallback( $this->mTitle
, $this->textbox1
, $this->section
, $this->hookError
, $this->summary
) ) {
1113 # Error messages or other handling should be performed by the filter function
1114 $status->setResult( false, self
::AS_FILTERING
);
1115 wfProfileOut( __METHOD__
. '-checks' );
1116 wfProfileOut( __METHOD__
);
1119 if ( !wfRunHooks( 'EditFilter', array( $this, $this->textbox1
, $this->section
, &$this->hookError
, $this->summary
) ) ) {
1120 # Error messages etc. could be handled within the hook...
1121 $status->fatal( 'hookaborted' );
1122 $status->value
= self
::AS_HOOK_ERROR
;
1123 wfProfileOut( __METHOD__
. '-checks' );
1124 wfProfileOut( __METHOD__
);
1126 } elseif ( $this->hookError
!= '' ) {
1127 # ...or the hook could be expecting us to produce an error
1128 $status->fatal( 'hookaborted' );
1129 $status->value
= self
::AS_HOOK_ERROR_EXPECTED
;
1130 wfProfileOut( __METHOD__
. '-checks' );
1131 wfProfileOut( __METHOD__
);
1135 if ( $wgUser->isBlockedFrom( $this->mTitle
, false ) ) {
1136 // Auto-block user's IP if the account was "hard" blocked
1137 $wgUser->spreadAnyEditBlock();
1138 # Check block state against master, thus 'false'.
1139 $status->setResult( false, self
::AS_BLOCKED_PAGE_FOR_USER
);
1140 wfProfileOut( __METHOD__
. '-checks' );
1141 wfProfileOut( __METHOD__
);
1145 $this->kblength
= (int)( strlen( $this->textbox1
) / 1024 );
1146 if ( $this->kblength
> $wgMaxArticleSize ) {
1147 // Error will be displayed by showEditForm()
1148 $this->tooBig
= true;
1149 $status->setResult( false, self
::AS_CONTENT_TOO_BIG
);
1150 wfProfileOut( __METHOD__
. '-checks' );
1151 wfProfileOut( __METHOD__
);
1155 if ( !$wgUser->isAllowed( 'edit' ) ) {
1156 if ( $wgUser->isAnon() ) {
1157 $status->setResult( false, self
::AS_READ_ONLY_PAGE_ANON
);
1158 wfProfileOut( __METHOD__
. '-checks' );
1159 wfProfileOut( __METHOD__
);
1162 $status->fatal( 'readonlytext' );
1163 $status->value
= self
::AS_READ_ONLY_PAGE_LOGGED
;
1164 wfProfileOut( __METHOD__
. '-checks' );
1165 wfProfileOut( __METHOD__
);
1170 if ( wfReadOnly() ) {
1171 $status->fatal( 'readonlytext' );
1172 $status->value
= self
::AS_READ_ONLY_PAGE
;
1173 wfProfileOut( __METHOD__
. '-checks' );
1174 wfProfileOut( __METHOD__
);
1177 if ( $wgUser->pingLimiter() ) {
1178 $status->fatal( 'actionthrottledtext' );
1179 $status->value
= self
::AS_RATE_LIMITED
;
1180 wfProfileOut( __METHOD__
. '-checks' );
1181 wfProfileOut( __METHOD__
);
1185 # If the article has been deleted while editing, don't save it without
1187 if ( $this->wasDeletedSinceLastEdit() && !$this->recreate
) {
1188 $status->setResult( false, self
::AS_ARTICLE_WAS_DELETED
);
1189 wfProfileOut( __METHOD__
. '-checks' );
1190 wfProfileOut( __METHOD__
);
1194 wfProfileOut( __METHOD__
. '-checks' );
1196 # If article is new, insert it.
1197 $aid = $this->mTitle
->getArticleID( Title
::GAID_FOR_UPDATE
);
1198 $new = ( $aid == 0 );
1201 // Late check for create permission, just in case *PARANOIA*
1202 if ( !$this->mTitle
->userCan( 'create' ) ) {
1203 $status->fatal( 'nocreatetext' );
1204 $status->value
= self
::AS_NO_CREATE_PERMISSION
;
1205 wfDebug( __METHOD__
. ": no create permission\n" );
1206 wfProfileOut( __METHOD__
);
1210 # Don't save a new article if it's blank.
1211 if ( $this->textbox1
== '' ) {
1212 $status->setResult( false, self
::AS_BLANK_ARTICLE
);
1213 wfProfileOut( __METHOD__
);
1217 // Run post-section-merge edit filter
1218 if ( !wfRunHooks( 'EditFilterMerged', array( $this, $this->textbox1
, &$this->hookError
, $this->summary
) ) ) {
1219 # Error messages etc. could be handled within the hook...
1220 $status->fatal( 'hookaborted' );
1221 $status->value
= self
::AS_HOOK_ERROR
;
1222 wfProfileOut( __METHOD__
);
1224 } elseif ( $this->hookError
!= '' ) {
1225 # ...or the hook could be expecting us to produce an error
1226 $status->fatal( 'hookaborted' );
1227 $status->value
= self
::AS_HOOK_ERROR_EXPECTED
;
1228 wfProfileOut( __METHOD__
);
1232 $text = $this->textbox1
;
1233 $result['sectionanchor'] = '';
1234 if ( $this->section
== 'new' ) {
1235 if ( $this->sectiontitle
!== '' ) {
1236 // Insert the section title above the content.
1237 $text = wfMsgForContent( 'newsectionheaderdefaultlevel', $this->sectiontitle
) . "\n\n" . $text;
1239 // Jump to the new section
1240 $result['sectionanchor'] = $wgParser->guessLegacySectionNameFromWikiText( $this->sectiontitle
);
1242 // If no edit summary was specified, create one automatically from the section
1243 // title and have it link to the new section. Otherwise, respect the summary as
1245 if ( $this->summary
=== '' ) {
1246 $cleanSectionTitle = $wgParser->stripSectionName( $this->sectiontitle
);
1247 $this->summary
= wfMsgForContent( 'newsectionsummary', $cleanSectionTitle );
1249 } elseif ( $this->summary
!== '' ) {
1250 // Insert the section title above the content.
1251 $text = wfMsgForContent( 'newsectionheaderdefaultlevel', $this->summary
) . "\n\n" . $text;
1253 // Jump to the new section
1254 $result['sectionanchor'] = $wgParser->guessLegacySectionNameFromWikiText( $this->summary
);
1256 // Create a link to the new section from the edit summary.
1257 $cleanSummary = $wgParser->stripSectionName( $this->summary
);
1258 $this->summary
= wfMsgForContent( 'newsectionsummary', $cleanSummary );
1262 $status->value
= self
::AS_SUCCESS_NEW_ARTICLE
;
1266 # Article exists. Check for edit conflict.
1268 $this->mArticle
->clear(); # Force reload of dates, etc.
1269 $timestamp = $this->mArticle
->getTimestamp();
1271 wfDebug( "timestamp: {$timestamp}, edittime: {$this->edittime}\n" );
1273 if ( $timestamp != $this->edittime
) {
1274 $this->isConflict
= true;
1275 if ( $this->section
== 'new' ) {
1276 if ( $this->mArticle
->getUserText() == $wgUser->getName() &&
1277 $this->mArticle
->getComment() == $this->summary
) {
1278 // Probably a duplicate submission of a new comment.
1279 // This can happen when squid resends a request after
1280 // a timeout but the first one actually went through.
1281 wfDebug( __METHOD__
. ": duplicate new section submission; trigger edit conflict!\n" );
1283 // New comment; suppress conflict.
1284 $this->isConflict
= false;
1285 wfDebug( __METHOD__
. ": conflict suppressed; new section\n" );
1287 } elseif ( $this->section
== '' && $this->userWasLastToEdit( $wgUser->getId(), $this->edittime
) ) {
1288 # Suppress edit conflict with self, except for section edits where merging is required.
1289 wfDebug( __METHOD__
. ": Suppressing edit conflict, same user.\n" );
1290 $this->isConflict
= false;
1294 // If sectiontitle is set, use it, otherwise use the summary as the section title (for
1295 // backwards compatibility with old forms/bots).
1296 if ( $this->sectiontitle
!== '' ) {
1297 $sectionTitle = $this->sectiontitle
;
1299 $sectionTitle = $this->summary
;
1302 if ( $this->isConflict
) {
1303 wfDebug( __METHOD__
. ": conflict! getting section '$this->section' for time '$this->edittime' (article time '{$timestamp}')\n" );
1304 $text = $this->mArticle
->replaceSection( $this->section
, $this->textbox1
, $sectionTitle, $this->edittime
);
1306 wfDebug( __METHOD__
. ": getting section '$this->section'\n" );
1307 $text = $this->mArticle
->replaceSection( $this->section
, $this->textbox1
, $sectionTitle );
1309 if ( is_null( $text ) ) {
1310 wfDebug( __METHOD__
. ": activating conflict; section replace failed.\n" );
1311 $this->isConflict
= true;
1312 $text = $this->textbox1
; // do not try to merge here!
1313 } elseif ( $this->isConflict
) {
1315 if ( $this->mergeChangesInto( $text ) ) {
1316 // Successful merge! Maybe we should tell the user the good news?
1317 $this->isConflict
= false;
1318 wfDebug( __METHOD__
. ": Suppressing edit conflict, successful merge.\n" );
1320 $this->section
= '';
1321 $this->textbox1
= $text;
1322 wfDebug( __METHOD__
. ": Keeping edit conflict, failed merge.\n" );
1326 if ( $this->isConflict
) {
1327 $status->setResult( false, self
::AS_CONFLICT_DETECTED
);
1328 wfProfileOut( __METHOD__
);
1332 // Run post-section-merge edit filter
1333 if ( !wfRunHooks( 'EditFilterMerged', array( $this, $text, &$this->hookError
, $this->summary
) ) ) {
1334 # Error messages etc. could be handled within the hook...
1335 $status->fatal( 'hookaborted' );
1336 $status->value
= self
::AS_HOOK_ERROR
;
1337 wfProfileOut( __METHOD__
);
1339 } elseif ( $this->hookError
!= '' ) {
1340 # ...or the hook could be expecting us to produce an error
1341 $status->fatal( 'hookaborted' );
1342 $status->value
= self
::AS_HOOK_ERROR_EXPECTED
;
1343 wfProfileOut( __METHOD__
);
1347 # Handle the user preference to force summaries here, but not for null edits
1348 if ( $this->section
!= 'new' && !$this->allowBlankSummary
1349 && $this->getOriginalContent() != $text
1350 && !Title
::newFromRedirect( $text ) ) # check if it's not a redirect
1352 if ( md5( $this->summary
) == $this->autoSumm
) {
1353 $this->missingSummary
= true;
1354 $status->fatal( 'missingsummary' );
1355 $status->value
= self
::AS_SUMMARY_NEEDED
;
1356 wfProfileOut( __METHOD__
);
1361 # And a similar thing for new sections
1362 if ( $this->section
== 'new' && !$this->allowBlankSummary
) {
1363 if ( trim( $this->summary
) == '' ) {
1364 $this->missingSummary
= true;
1365 $status->fatal( 'missingsummary' ); // or 'missingcommentheader' if $section == 'new'. Blegh
1366 $status->value
= self
::AS_SUMMARY_NEEDED
;
1367 wfProfileOut( __METHOD__
);
1373 wfProfileIn( __METHOD__
. '-sectionanchor' );
1374 $sectionanchor = '';
1375 if ( $this->section
== 'new' ) {
1376 if ( $this->textbox1
== '' ) {
1377 $this->missingComment
= true;
1378 $status->fatal( 'missingcommenttext' );
1379 $status->value
= self
::AS_TEXTBOX_EMPTY
;
1380 wfProfileOut( __METHOD__
. '-sectionanchor' );
1381 wfProfileOut( __METHOD__
);
1384 if ( $this->sectiontitle
!== '' ) {
1385 $sectionanchor = $wgParser->guessLegacySectionNameFromWikiText( $this->sectiontitle
);
1386 // If no edit summary was specified, create one automatically from the section
1387 // title and have it link to the new section. Otherwise, respect the summary as
1389 if ( $this->summary
=== '' ) {
1390 $cleanSectionTitle = $wgParser->stripSectionName( $this->sectiontitle
);
1391 $this->summary
= wfMsgForContent( 'newsectionsummary', $cleanSectionTitle );
1393 } elseif ( $this->summary
!== '' ) {
1394 $sectionanchor = $wgParser->guessLegacySectionNameFromWikiText( $this->summary
);
1395 # This is a new section, so create a link to the new section
1396 # in the revision summary.
1397 $cleanSummary = $wgParser->stripSectionName( $this->summary
);
1398 $this->summary
= wfMsgForContent( 'newsectionsummary', $cleanSummary );
1400 } elseif ( $this->section
!= '' ) {
1401 # Try to get a section anchor from the section source, redirect to edited section if header found
1402 # XXX: might be better to integrate this into Article::replaceSection
1403 # for duplicate heading checking and maybe parsing
1404 $hasmatch = preg_match( "/^ *([=]{1,6})(.*?)(\\1) *\\n/i", $this->textbox1
, $matches );
1405 # we can't deal with anchors, includes, html etc in the header for now,
1406 # headline would need to be parsed to improve this
1407 if ( $hasmatch && strlen( $matches[2] ) > 0 ) {
1408 $sectionanchor = $wgParser->guessLegacySectionNameFromWikiText( $matches[2] );
1411 $result['sectionanchor'] = $sectionanchor;
1412 wfProfileOut( __METHOD__
. '-sectionanchor' );
1414 // Save errors may fall down to the edit form, but we've now
1415 // merged the section into full text. Clear the section field
1416 // so that later submission of conflict forms won't try to
1417 // replace that into a duplicated mess.
1418 $this->textbox1
= $text;
1419 $this->section
= '';
1421 $status->value
= self
::AS_SUCCESS_UPDATE
;
1424 // Check for length errors again now that the section is merged in
1425 $this->kblength
= (int)( strlen( $text ) / 1024 );
1426 if ( $this->kblength
> $wgMaxArticleSize ) {
1427 $this->tooBig
= true;
1428 $status->setResult( false, self
::AS_MAX_ARTICLE_SIZE_EXCEEDED
);
1429 wfProfileOut( __METHOD__
);
1433 $flags = EDIT_DEFER_UPDATES | EDIT_AUTOSUMMARY |
1434 ( $new ? EDIT_NEW
: EDIT_UPDATE
) |
1435 ( ( $this->minoredit
&& !$this->isNew
) ? EDIT_MINOR
: 0 ) |
1436 ( $bot ? EDIT_FORCE_BOT
: 0 );
1438 $doEditStatus = $this->mArticle
->doEdit( $text, $this->summary
, $flags );
1440 if ( $doEditStatus->isOK() ) {
1441 $result['redirect'] = Title
::newFromRedirect( $text ) !== null;
1442 $this->commitWatch();
1443 wfProfileOut( __METHOD__
);
1446 $this->isConflict
= true;
1447 $doEditStatus->value
= self
::AS_END
; // Destroys data doEdit() put in $status->value but who cares
1448 wfProfileOut( __METHOD__
);
1449 return $doEditStatus;
1454 * Commit the change of watch status
1456 protected function commitWatch() {
1458 if ( $this->watchthis
xor $this->mTitle
->userIsWatching() ) {
1459 $dbw = wfGetDB( DB_MASTER
);
1460 $dbw->begin( __METHOD__
);
1461 if ( $this->watchthis
) {
1462 WatchAction
::doWatch( $this->mTitle
, $wgUser );
1464 WatchAction
::doUnwatch( $this->mTitle
, $wgUser );
1466 $dbw->commit( __METHOD__
);
1471 * Check if no edits were made by other users since
1472 * the time a user started editing the page. Limit to
1473 * 50 revisions for the sake of performance.
1476 * @param $edittime string
1480 protected function userWasLastToEdit( $id, $edittime ) {
1481 if ( !$id ) return false;
1482 $dbw = wfGetDB( DB_MASTER
);
1483 $res = $dbw->select( 'revision',
1486 'rev_page' => $this->mTitle
->getArticleID(),
1487 'rev_timestamp > ' . $dbw->addQuotes( $dbw->timestamp( $edittime ) )
1490 array( 'ORDER BY' => 'rev_timestamp ASC', 'LIMIT' => 50 ) );
1491 foreach ( $res as $row ) {
1492 if ( $row->rev_user
!= $id ) {
1503 * @parma $editText string
1507 function mergeChangesInto( &$editText ) {
1508 wfProfileIn( __METHOD__
);
1510 $db = wfGetDB( DB_MASTER
);
1512 // This is the revision the editor started from
1513 $baseRevision = $this->getBaseRevision();
1514 if ( is_null( $baseRevision ) ) {
1515 wfProfileOut( __METHOD__
);
1518 $baseText = $baseRevision->getText();
1520 // The current state, we want to merge updates into it
1521 $currentRevision = Revision
::loadFromTitle( $db, $this->mTitle
);
1522 if ( is_null( $currentRevision ) ) {
1523 wfProfileOut( __METHOD__
);
1526 $currentText = $currentRevision->getText();
1529 if ( wfMerge( $baseText, $editText, $currentText, $result ) ) {
1530 $editText = $result;
1531 wfProfileOut( __METHOD__
);
1534 wfProfileOut( __METHOD__
);
1542 function getBaseRevision() {
1543 if ( !$this->mBaseRevision
) {
1544 $db = wfGetDB( DB_MASTER
);
1545 $baseRevision = Revision
::loadFromTimestamp(
1546 $db, $this->mTitle
, $this->edittime
);
1547 return $this->mBaseRevision
= $baseRevision;
1549 return $this->mBaseRevision
;
1554 * Check given input text against $wgSpamRegex, and return the text of the first match.
1556 * @param $text string
1558 * @return string|bool matching string or false
1560 public static function matchSpamRegex( $text ) {
1561 global $wgSpamRegex;
1562 // For back compatibility, $wgSpamRegex may be a single string or an array of regexes.
1563 $regexes = (array)$wgSpamRegex;
1564 return self
::matchSpamRegexInternal( $text, $regexes );
1568 * Check given input text against $wgSpamRegex, and return the text of the first match.
1570 * @parma $text string
1572 * @return string|bool matching string or false
1574 public static function matchSummarySpamRegex( $text ) {
1575 global $wgSummarySpamRegex;
1576 $regexes = (array)$wgSummarySpamRegex;
1577 return self
::matchSpamRegexInternal( $text, $regexes );
1581 * @param $text string
1582 * @param $regexes array
1583 * @return bool|string
1585 protected static function matchSpamRegexInternal( $text, $regexes ) {
1586 foreach ( $regexes as $regex ) {
1588 if ( preg_match( $regex, $text, $matches ) ) {
1595 function setHeaders() {
1596 global $wgOut, $wgUser;
1598 $wgOut->addModules( 'mediawiki.action.edit' );
1600 if ( $wgUser->getOption( 'uselivepreview', false ) ) {
1601 $wgOut->addModules( 'mediawiki.legacy.preview' );
1603 // Bug #19334: textarea jumps when editing articles in IE8
1604 $wgOut->addStyle( 'common/IE80Fixes.css', 'screen', 'IE 8' );
1606 $wgOut->setRobotPolicy( 'noindex,nofollow' );
1608 # Enabled article-related sidebar, toplinks, etc.
1609 $wgOut->setArticleRelated( true );
1611 $contextTitle = $this->getContextTitle();
1612 if ( $this->isConflict
) {
1613 $msg = 'editconflict';
1614 } elseif ( $contextTitle->exists() && $this->section
!= '' ) {
1615 $msg = $this->section
== 'new' ?
'editingcomment' : 'editingsection';
1617 $msg = $contextTitle->exists() ||
( $contextTitle->getNamespace() == NS_MEDIAWIKI
&& $contextTitle->getDefaultMessageText() !== false ) ?
1618 'editing' : 'creating';
1620 # Use the title defined by DISPLAYTITLE magic word when present
1621 $displayTitle = isset( $this->mParserOutput
) ?
$this->mParserOutput
->getDisplayTitle() : false;
1622 if ( $displayTitle === false ) {
1623 $displayTitle = $contextTitle->getPrefixedText();
1625 $wgOut->setPageTitle( wfMessage( $msg, $displayTitle ) );
1629 * Show all applicable editing introductions
1631 protected function showIntro() {
1632 global $wgOut, $wgUser;
1633 if ( $this->suppressIntro
) {
1637 $namespace = $this->mTitle
->getNamespace();
1639 if ( $namespace == NS_MEDIAWIKI
) {
1640 # Show a warning if editing an interface message
1641 $wgOut->wrapWikiMsg( "<div class='mw-editinginterface'>\n$1\n</div>", 'editinginterface' );
1642 } else if( $namespace == NS_FILE
) {
1643 # Show a hint to shared repo
1644 $file = wfFindFile( $this->mTitle
);
1645 if( $file && !$file->isLocal() ) {
1646 $descUrl = $file->getDescriptionUrl();
1647 # there must be a description url to show a hint to shared repo
1649 if( !$this->mTitle
->exists() ) {
1650 $wgOut->wrapWikiMsg( "<div class=\"mw-sharedupload-desc-create\">\n$1\n</div>", array (
1651 'sharedupload-desc-create', $file->getRepo()->getDisplayName(), $descUrl
1654 $wgOut->wrapWikiMsg( "<div class=\"mw-sharedupload-desc-edit\">\n$1\n</div>", array(
1655 'sharedupload-desc-edit', $file->getRepo()->getDisplayName(), $descUrl
1662 # Show a warning message when someone creates/edits a user (talk) page but the user does not exist
1663 # Show log extract when the user is currently blocked
1664 if ( $namespace == NS_USER ||
$namespace == NS_USER_TALK
) {
1665 $parts = explode( '/', $this->mTitle
->getText(), 2 );
1666 $username = $parts[0];
1667 $user = User
::newFromName( $username, false /* allow IP users*/ );
1668 $ip = User
::isIP( $username );
1669 if ( !( $user && $user->isLoggedIn() ) && !$ip ) { # User does not exist
1670 $wgOut->wrapWikiMsg( "<div class=\"mw-userpage-userdoesnotexist error\">\n$1\n</div>",
1671 array( 'userpage-userdoesnotexist', wfEscapeWikiText( $username ) ) );
1672 } elseif ( $user->isBlocked() ) { # Show log extract if the user is currently blocked
1673 LogEventsList
::showLogExtract(
1676 $user->getUserPage(),
1680 'showIfEmpty' => false,
1682 'blocked-notice-logextract',
1683 $user->getName() # Support GENDER in notice
1689 # Try to add a custom edit intro, or use the standard one if this is not possible.
1690 if ( !$this->showCustomIntro() && !$this->mTitle
->exists() ) {
1691 if ( $wgUser->isLoggedIn() ) {
1692 $wgOut->wrapWikiMsg( "<div class=\"mw-newarticletext\">\n$1\n</div>", 'newarticletext' );
1694 $wgOut->wrapWikiMsg( "<div class=\"mw-newarticletextanon\">\n$1\n</div>", 'newarticletextanon' );
1697 # Give a notice if the user is editing a deleted/moved page...
1698 if ( !$this->mTitle
->exists() ) {
1699 LogEventsList
::showLogExtract( $wgOut, array( 'delete', 'move' ), $this->mTitle
,
1700 '', array( 'lim' => 10,
1701 'conds' => array( "log_action != 'revision'" ),
1702 'showIfEmpty' => false,
1703 'msgKey' => array( 'recreate-moveddeleted-warn' ) )
1709 * Attempt to show a custom editing introduction, if supplied
1713 protected function showCustomIntro() {
1714 if ( $this->editintro
) {
1715 $title = Title
::newFromText( $this->editintro
);
1716 if ( $title instanceof Title
&& $title->exists() && $title->userCan( 'read' ) ) {
1718 // Added using template syntax, to take <noinclude>'s into account.
1719 $wgOut->addWikiTextTitleTidy( '{{:' . $title->getFullText() . '}}', $this->mTitle
);
1730 * Send the edit form and related headers to $wgOut
1731 * @param $formCallback Callback that takes an OutputPage parameter; will be called
1732 * during form output near the top, for captchas and the like.
1734 function showEditForm( $formCallback = null ) {
1735 global $wgOut, $wgUser;
1737 wfProfileIn( __METHOD__
);
1739 # need to parse the preview early so that we know which templates are used,
1740 # otherwise users with "show preview after edit box" will get a blank list
1741 # we parse this near the beginning so that setHeaders can do the title
1742 # setting work instead of leaving it in getPreviewText
1743 $previewOutput = '';
1744 if ( $this->formtype
== 'preview' ) {
1745 $previewOutput = $this->getPreviewText();
1748 wfRunHooks( 'EditPage::showEditForm:initial', array( &$this, &$wgOut ) );
1750 $this->setHeaders();
1752 if ( $this->showHeader() === false ) {
1753 wfProfileOut( __METHOD__
);
1757 $wgOut->addHTML( $this->editFormPageTop
);
1759 if ( $wgUser->getOption( 'previewontop' ) ) {
1760 $this->displayPreviewArea( $previewOutput, true );
1763 $wgOut->addHTML( $this->editFormTextTop
);
1765 $showToolbar = true;
1766 if ( $this->wasDeletedSinceLastEdit() ) {
1767 if ( $this->formtype
== 'save' ) {
1768 // Hide the toolbar and edit area, user can click preview to get it back
1769 // Add an confirmation checkbox and explanation.
1770 $showToolbar = false;
1772 $wgOut->wrapWikiMsg( "<div class='error mw-deleted-while-editing'>\n$1\n</div>",
1773 'deletedwhileediting' );
1777 $wgOut->addHTML( Html
::openElement( 'form', array( 'id' => self
::EDITFORM_ID
, 'name' => self
::EDITFORM_ID
,
1778 'method' => 'post', 'action' => $this->getActionURL( $this->getContextTitle() ),
1779 'enctype' => 'multipart/form-data' ) ) );
1781 if ( is_callable( $formCallback ) ) {
1782 call_user_func_array( $formCallback, array( &$wgOut ) );
1785 wfRunHooks( 'EditPage::showEditForm:fields', array( &$this, &$wgOut ) );
1787 // Put these up at the top to ensure they aren't lost on early form submission
1788 $this->showFormBeforeText();
1790 if ( $this->wasDeletedSinceLastEdit() && 'save' == $this->formtype
) {
1791 $username = $this->lastDelete
->user_name
;
1792 $comment = $this->lastDelete
->log_comment
;
1794 // It is better to not parse the comment at all than to have templates expanded in the middle
1795 // TODO: can the checkLabel be moved outside of the div so that wrapWikiMsg could be used?
1796 $key = $comment === ''
1797 ?
'confirmrecreate-noreason'
1798 : 'confirmrecreate';
1800 '<div class="mw-confirm-recreate">' .
1801 wfMsgExt( $key, 'parseinline', $username, "<nowiki>$comment</nowiki>" ) .
1802 Xml
::checkLabel( wfMsg( 'recreate' ), 'wpRecreate', 'wpRecreate', false,
1803 array( 'title' => Linker
::titleAttrib( 'recreate' ), 'tabindex' => 1, 'id' => 'wpRecreate' )
1809 # When the summary is hidden, also hide them on preview/show changes
1810 if( $this->nosummary
) {
1811 $wgOut->addHTML( Html
::hidden( 'nosummary', true ) );
1814 # If a blank edit summary was previously provided, and the appropriate
1815 # user preference is active, pass a hidden tag as wpIgnoreBlankSummary. This will stop the
1816 # user being bounced back more than once in the event that a summary
1819 # For a bit more sophisticated detection of blank summaries, hash the
1820 # automatic one and pass that in the hidden field wpAutoSummary.
1821 if ( $this->missingSummary ||
( $this->section
== 'new' && $this->nosummary
) ) {
1822 $wgOut->addHTML( Html
::hidden( 'wpIgnoreBlankSummary', true ) );
1825 if ( $this->hasPresetSummary
) {
1826 // If a summary has been preset using &summary= we dont want to prompt for
1827 // a different summary. Only prompt for a summary if the summary is blanked.
1829 $this->autoSumm
= md5( '' );
1832 $autosumm = $this->autoSumm ?
$this->autoSumm
: md5( $this->summary
);
1833 $wgOut->addHTML( Html
::hidden( 'wpAutoSummary', $autosumm ) );
1835 $wgOut->addHTML( Html
::hidden( 'oldid', $this->oldid
) );
1837 if ( $this->section
== 'new' ) {
1838 $this->showSummaryInput( true, $this->summary
);
1839 $wgOut->addHTML( $this->getSummaryPreview( true, $this->summary
) );
1842 $wgOut->addHTML( $this->editFormTextBeforeContent
);
1844 if ( !$this->isCssJsSubpage
&& $showToolbar && $wgUser->getOption( 'showtoolbar' ) ) {
1845 $wgOut->addHTML( EditPage
::getEditToolbar() );
1848 if ( $this->isConflict
) {
1849 // In an edit conflict bypass the overrideable content form method
1850 // and fallback to the raw wpTextbox1 since editconflicts can't be
1851 // resolved between page source edits and custom ui edits using the
1853 $this->textbox2
= $this->textbox1
;
1854 $this->textbox1
= $this->getCurrentText();
1856 $this->showTextbox1();
1858 $this->showContentForm();
1861 $wgOut->addHTML( $this->editFormTextAfterContent
);
1863 $wgOut->addWikiText( $this->getCopywarn() );
1865 $wgOut->addHTML( $this->editFormTextAfterWarn
);
1867 $this->showStandardInputs();
1869 $this->showFormAfterText();
1871 $this->showTosSummary();
1873 $this->showEditTools();
1875 $wgOut->addHTML( $this->editFormTextAfterTools
. "\n" );
1877 $wgOut->addHTML( Html
::rawElement( 'div', array( 'class' => 'templatesUsed' ),
1878 Linker
::formatTemplates( $this->getTemplates(), $this->preview
, $this->section
!= '' ) ) );
1880 $wgOut->addHTML( Html
::rawElement( 'div', array( 'class' => 'hiddencats' ),
1881 Linker
::formatHiddenCategories( $this->mArticle
->getHiddenCategories() ) ) );
1883 if ( $this->isConflict
) {
1884 $this->showConflict();
1887 $wgOut->addHTML( $this->editFormTextBottom
. "\n</form>\n" );
1889 if ( !$wgUser->getOption( 'previewontop' ) ) {
1890 $this->displayPreviewArea( $previewOutput, false );
1893 wfProfileOut( __METHOD__
);
1897 * Extract the section title from current section text, if any.
1899 * @param string $text
1900 * @return Mixed|string or false
1902 public static function extractSectionTitle( $text ) {
1903 preg_match( "/^(=+)(.+)\\1\\s*(\n|$)/i", $text, $matches );
1904 if ( !empty( $matches[2] ) ) {
1906 return $wgParser->stripSectionName( trim( $matches[2] ) );
1912 protected function showHeader() {
1913 global $wgOut, $wgUser, $wgMaxArticleSize, $wgLang;
1915 if ( $this->mTitle
->isTalkPage() ) {
1916 $wgOut->addWikiMsg( 'talkpagetext' );
1919 # Optional notices on a per-namespace and per-page basis
1920 $editnotice_ns = 'editnotice-' . $this->mTitle
->getNamespace();
1921 $editnotice_ns_message = wfMessage( $editnotice_ns )->inContentLanguage();
1922 if ( $editnotice_ns_message->exists() ) {
1923 $wgOut->addWikiText( $editnotice_ns_message->plain() );
1925 if ( MWNamespace
::hasSubpages( $this->mTitle
->getNamespace() ) ) {
1926 $parts = explode( '/', $this->mTitle
->getDBkey() );
1927 $editnotice_base = $editnotice_ns;
1928 while ( count( $parts ) > 0 ) {
1929 $editnotice_base .= '-' . array_shift( $parts );
1930 $editnotice_base_msg = wfMessage( $editnotice_base )->inContentLanguage();
1931 if ( $editnotice_base_msg->exists() ) {
1932 $wgOut->addWikiText( $editnotice_base_msg->plain() );
1936 # Even if there are no subpages in namespace, we still don't want / in MW ns.
1937 $editnoticeText = $editnotice_ns . '-' . str_replace( '/', '-', $this->mTitle
->getDBkey() );
1938 $editnoticeMsg = wfMessage( $editnoticeText )->inContentLanguage();
1939 if ( $editnoticeMsg->exists() ) {
1940 $wgOut->addWikiText( $editnoticeMsg->plain() );
1944 if ( $this->isConflict
) {
1945 $wgOut->wrapWikiMsg( "<div class='mw-explainconflict'>\n$1\n</div>", 'explainconflict' );
1946 $this->edittime
= $this->mArticle
->getTimestamp();
1948 if ( $this->section
!= '' && !$this->isSectionEditSupported() ) {
1949 // We use $this->section to much before this and getVal('wgSection') directly in other places
1950 // at this point we can't reset $this->section to '' to fallback to non-section editing.
1951 // Someone is welcome to try refactoring though
1952 $wgOut->showErrorPage( 'sectioneditnotsupported-title', 'sectioneditnotsupported-text' );
1956 if ( $this->section
!= '' && $this->section
!= 'new' ) {
1957 if ( !$this->summary
&& !$this->preview
&& !$this->diff
) {
1958 $sectionTitle = self
::extractSectionTitle( $this->textbox1
);
1959 if ( $sectionTitle !== false ) {
1960 $this->summary
= "/* $sectionTitle */ ";
1965 if ( $this->missingComment
) {
1966 $wgOut->wrapWikiMsg( "<div id='mw-missingcommenttext'>\n$1\n</div>", 'missingcommenttext' );
1969 if ( $this->missingSummary
&& $this->section
!= 'new' ) {
1970 $wgOut->wrapWikiMsg( "<div id='mw-missingsummary'>\n$1\n</div>", 'missingsummary' );
1973 if ( $this->missingSummary
&& $this->section
== 'new' ) {
1974 $wgOut->wrapWikiMsg( "<div id='mw-missingcommentheader'>\n$1\n</div>", 'missingcommentheader' );
1977 if ( $this->hookError
!== '' ) {
1978 $wgOut->addWikiText( $this->hookError
);
1981 if ( !$this->checkUnicodeCompliantBrowser() ) {
1982 $wgOut->addWikiMsg( 'nonunicodebrowser' );
1985 if ( $this->section
!= 'new' ) {
1986 $revision = $this->mArticle
->getRevisionFetched();
1988 // Let sysop know that this will make private content public if saved
1990 if ( !$revision->userCan( Revision
::DELETED_TEXT
) ) {
1991 $wgOut->wrapWikiMsg( "<div class='mw-warning plainlinks'>\n$1\n</div>\n", 'rev-deleted-text-permission' );
1992 } elseif ( $revision->isDeleted( Revision
::DELETED_TEXT
) ) {
1993 $wgOut->wrapWikiMsg( "<div class='mw-warning plainlinks'>\n$1\n</div>\n", 'rev-deleted-text-view' );
1996 if ( !$revision->isCurrent() ) {
1997 $this->mArticle
->setOldSubtitle( $revision->getId() );
1998 $wgOut->addWikiMsg( 'editingold' );
2000 } elseif ( $this->mTitle
->exists() ) {
2001 // Something went wrong
2003 $wgOut->wrapWikiMsg( "<div class='errorbox'>\n$1\n</div>\n",
2004 array( 'missing-article', $this->mTitle
->getPrefixedText(),
2005 wfMsgNoTrans( 'missingarticle-rev', $this->oldid
) ) );
2010 if ( wfReadOnly() ) {
2011 $wgOut->wrapWikiMsg( "<div id=\"mw-read-only-warning\">\n$1\n</div>", array( 'readonlywarning', wfReadOnlyReason() ) );
2012 } elseif ( $wgUser->isAnon() ) {
2013 if ( $this->formtype
!= 'preview' ) {
2014 $wgOut->wrapWikiMsg( "<div id=\"mw-anon-edit-warning\">\n$1</div>", 'anoneditwarning' );
2016 $wgOut->wrapWikiMsg( "<div id=\"mw-anon-preview-warning\">\n$1</div>", 'anonpreviewwarning' );
2019 if ( $this->isCssJsSubpage
) {
2020 # Check the skin exists
2021 if ( $this->isWrongCaseCssJsPage
) {
2022 $wgOut->wrapWikiMsg( "<div class='error' id='mw-userinvalidcssjstitle'>\n$1\n</div>", array( 'userinvalidcssjstitle', $this->mTitle
->getSkinFromCssJsSubpage() ) );
2024 if ( $this->formtype
!== 'preview' ) {
2025 if ( $this->isCssSubpage
)
2026 $wgOut->wrapWikiMsg( "<div id='mw-usercssyoucanpreview'>\n$1\n</div>", array( 'usercssyoucanpreview' ) );
2027 if ( $this->isJsSubpage
)
2028 $wgOut->wrapWikiMsg( "<div id='mw-userjsyoucanpreview'>\n$1\n</div>", array( 'userjsyoucanpreview' ) );
2033 if ( $this->mTitle
->getNamespace() != NS_MEDIAWIKI
&& $this->mTitle
->isProtected( 'edit' ) ) {
2034 # Is the title semi-protected?
2035 if ( $this->mTitle
->isSemiProtected() ) {
2036 $noticeMsg = 'semiprotectedpagewarning';
2038 # Then it must be protected based on static groups (regular)
2039 $noticeMsg = 'protectedpagewarning';
2041 LogEventsList
::showLogExtract( $wgOut, 'protect', $this->mTitle
, '',
2042 array( 'lim' => 1, 'msgKey' => array( $noticeMsg ) ) );
2044 if ( $this->mTitle
->isCascadeProtected() ) {
2045 # Is this page under cascading protection from some source pages?
2046 list( $cascadeSources, /* $restrictions */ ) = $this->mTitle
->getCascadeProtectionSources();
2047 $notice = "<div class='mw-cascadeprotectedwarning'>\n$1\n";
2048 $cascadeSourcesCount = count( $cascadeSources );
2049 if ( $cascadeSourcesCount > 0 ) {
2050 # Explain, and list the titles responsible
2051 foreach ( $cascadeSources as $page ) {
2052 $notice .= '* [[:' . $page->getPrefixedText() . "]]\n";
2055 $notice .= '</div>';
2056 $wgOut->wrapWikiMsg( $notice, array( 'cascadeprotectedwarning', $cascadeSourcesCount ) );
2058 if ( !$this->mTitle
->exists() && $this->mTitle
->getRestrictions( 'create' ) ) {
2059 LogEventsList
::showLogExtract( $wgOut, 'protect', $this->mTitle
, '',
2061 'showIfEmpty' => false,
2062 'msgKey' => array( 'titleprotectedwarning' ),
2063 'wrap' => "<div class=\"mw-titleprotectedwarning\">\n$1</div>" ) );
2066 if ( $this->kblength
=== false ) {
2067 $this->kblength
= (int)( strlen( $this->textbox1
) / 1024 );
2070 if ( $this->tooBig ||
$this->kblength
> $wgMaxArticleSize ) {
2071 $wgOut->wrapWikiMsg( "<div class='error' id='mw-edit-longpageerror'>\n$1\n</div>",
2072 array( 'longpageerror', $wgLang->formatNum( $this->kblength
), $wgLang->formatNum( $wgMaxArticleSize ) ) );
2074 if ( !wfMessage( 'longpage-hint' )->isDisabled() ) {
2075 $wgOut->wrapWikiMsg( "<div id='mw-edit-longpage-hint'>\n$1\n</div>",
2076 array( 'longpage-hint', $wgLang->formatSize( strlen( $this->textbox1
) ), strlen( $this->textbox1
) )
2083 * Standard summary input and label (wgSummary), abstracted so EditPage
2084 * subclasses may reorganize the form.
2085 * Note that you do not need to worry about the label's for=, it will be
2086 * inferred by the id given to the input. You can remove them both by
2087 * passing array( 'id' => false ) to $userInputAttrs.
2089 * @param $summary string The value of the summary input
2090 * @param $labelText string The html to place inside the label
2091 * @param $inputAttrs array of attrs to use on the input
2092 * @param $spanLabelAttrs array of attrs to use on the span inside the label
2094 * @return array An array in the format array( $label, $input )
2096 function getSummaryInput( $summary = "", $labelText = null, $inputAttrs = null, $spanLabelAttrs = null ) {
2097 // Note: the maxlength is overriden in JS to 250 and to make it use UTF-8 bytes, not characters.
2098 $inputAttrs = ( is_array( $inputAttrs ) ?
$inputAttrs : array() ) +
array(
2099 'id' => 'wpSummary',
2100 'maxlength' => '200',
2103 'spellcheck' => 'true',
2104 ) + Linker
::tooltipAndAccesskeyAttribs( 'summary' );
2106 $spanLabelAttrs = ( is_array( $spanLabelAttrs ) ?
$spanLabelAttrs : array() ) +
array(
2107 'class' => $this->missingSummary ?
'mw-summarymissed' : 'mw-summary',
2108 'id' => "wpSummaryLabel"
2113 $label = Xml
::tags( 'label', $inputAttrs['id'] ?
array( 'for' => $inputAttrs['id'] ) : null, $labelText );
2114 $label = Xml
::tags( 'span', $spanLabelAttrs, $label );
2117 $input = Html
::input( 'wpSummary', $summary, 'text', $inputAttrs );
2119 return array( $label, $input );
2123 * @param $isSubjectPreview Boolean: true if this is the section subject/title
2124 * up top, or false if this is the comment summary
2125 * down below the textarea
2126 * @param $summary String: The text of the summary to display
2129 protected function showSummaryInput( $isSubjectPreview, $summary = "" ) {
2130 global $wgOut, $wgContLang;
2131 # Add a class if 'missingsummary' is triggered to allow styling of the summary line
2132 $summaryClass = $this->missingSummary ?
'mw-summarymissed' : 'mw-summary';
2133 if ( $isSubjectPreview ) {
2134 if ( $this->nosummary
) {
2138 if ( !$this->mShowSummaryField
) {
2142 $summary = $wgContLang->recodeForEdit( $summary );
2143 $labelText = wfMsgExt( $isSubjectPreview ?
'subject' : 'summary', 'parseinline' );
2144 list( $label, $input ) = $this->getSummaryInput( $summary, $labelText, array( 'class' => $summaryClass ), array() );
2145 $wgOut->addHTML( "{$label} {$input}" );
2149 * @param $isSubjectPreview Boolean: true if this is the section subject/title
2150 * up top, or false if this is the comment summary
2151 * down below the textarea
2152 * @param $summary String: the text of the summary to display
2155 protected function getSummaryPreview( $isSubjectPreview, $summary = "" ) {
2156 if ( !$summary ||
( !$this->preview
&& !$this->diff
) )
2161 if ( $isSubjectPreview )
2162 $summary = wfMsgForContent( 'newsectionsummary', $wgParser->stripSectionName( $summary ) );
2164 $message = $isSubjectPreview ?
'subject-preview' : 'summary-preview';
2166 $summary = wfMsgExt( $message, 'parseinline' ) . Linker
::commentBlock( $summary, $this->mTitle
, $isSubjectPreview );
2167 return Xml
::tags( 'div', array( 'class' => 'mw-summary-preview' ), $summary );
2170 protected function showFormBeforeText() {
2172 $section = htmlspecialchars( $this->section
);
2173 $wgOut->addHTML( <<<HTML
2174 <input type='hidden' value="{$section}" name="wpSection" />
2175 <input type='hidden' value="{$this->starttime}" name="wpStarttime" />
2176 <input type='hidden' value="{$this->edittime}" name="wpEdittime" />
2177 <input type='hidden' value="{$this->scrolltop}" name="wpScrolltop" id="wpScrolltop" />
2181 if ( !$this->checkUnicodeCompliantBrowser() )
2182 $wgOut->addHTML( Html
::hidden( 'safemode', '1' ) );
2185 protected function showFormAfterText() {
2186 global $wgOut, $wgUser;
2188 * To make it harder for someone to slip a user a page
2189 * which submits an edit form to the wiki without their
2190 * knowledge, a random token is associated with the login
2191 * session. If it's not passed back with the submission,
2192 * we won't save the page, or render user JavaScript and
2195 * For anon editors, who may not have a session, we just
2196 * include the constant suffix to prevent editing from
2197 * broken text-mangling proxies.
2199 $wgOut->addHTML( "\n" . Html
::hidden( "wpEditToken", $wgUser->getEditToken() ) . "\n" );
2203 * Subpage overridable method for printing the form for page content editing
2204 * By default this simply outputs wpTextbox1
2205 * Subclasses can override this to provide a custom UI for editing;
2206 * be it a form, or simply wpTextbox1 with a modified content that will be
2207 * reverse modified when extracted from the post data.
2208 * Note that this is basically the inverse for importContentFormData
2210 protected function showContentForm() {
2211 $this->showTextbox1();
2215 * Method to output wpTextbox1
2216 * The $textoverride method can be used by subclasses overriding showContentForm
2217 * to pass back to this method.
2219 * @param $customAttribs array of html attributes to use in the textarea
2220 * @param $textoverride String: optional text to override $this->textarea1 with
2222 protected function showTextbox1( $customAttribs = null, $textoverride = null ) {
2223 if ( $this->wasDeletedSinceLastEdit() && $this->formtype
== 'save' ) {
2224 $attribs = array( 'style' => 'display:none;' );
2226 $classes = array(); // Textarea CSS
2227 if ( $this->mTitle
->getNamespace() != NS_MEDIAWIKI
&& $this->mTitle
->isProtected( 'edit' ) ) {
2228 # Is the title semi-protected?
2229 if ( $this->mTitle
->isSemiProtected() ) {
2230 $classes[] = 'mw-textarea-sprotected';
2232 # Then it must be protected based on static groups (regular)
2233 $classes[] = 'mw-textarea-protected';
2235 # Is the title cascade-protected?
2236 if ( $this->mTitle
->isCascadeProtected() ) {
2237 $classes[] = 'mw-textarea-cprotected';
2241 $attribs = array( 'tabindex' => 1 );
2243 if ( is_array( $customAttribs ) ) {
2244 $attribs +
= $customAttribs;
2247 if ( count( $classes ) ) {
2248 if ( isset( $attribs['class'] ) ) {
2249 $classes[] = $attribs['class'];
2251 $attribs['class'] = implode( ' ', $classes );
2255 $this->showTextbox( $textoverride !== null ?
$textoverride : $this->textbox1
, 'wpTextbox1', $attribs );
2258 protected function showTextbox2() {
2259 $this->showTextbox( $this->textbox2
, 'wpTextbox2', array( 'tabindex' => 6, 'readonly' ) );
2262 protected function showTextbox( $content, $name, $customAttribs = array() ) {
2263 global $wgOut, $wgUser;
2265 $wikitext = $this->safeUnicodeOutput( $content );
2266 if ( strval( $wikitext ) !== '' ) {
2267 // Ensure there's a newline at the end, otherwise adding lines
2269 // But don't add a newline if the ext is empty, or Firefox in XHTML
2270 // mode will show an extra newline. A bit annoying.
2274 $attribs = $customAttribs +
array(
2277 'cols' => $wgUser->getIntOption( 'cols' ),
2278 'rows' => $wgUser->getIntOption( 'rows' ),
2279 'style' => '' // avoid php notices when appending preferences (appending allows customAttribs['style'] to still work
2282 $pageLang = $this->mTitle
->getPageLanguage();
2283 $attribs['lang'] = $pageLang->getCode();
2284 $attribs['dir'] = $pageLang->getDir();
2286 $wgOut->addHTML( Html
::textarea( $name, $wikitext, $attribs ) );
2289 protected function displayPreviewArea( $previewOutput, $isOnTop = false ) {
2293 $classes[] = 'ontop';
2295 $attribs = array( 'id' => 'wikiPreview', 'class' => implode( ' ', $classes ) );
2297 if ( $this->formtype
!= 'preview' )
2298 $attribs['style'] = 'display: none;';
2300 $wgOut->addHTML( Xml
::openElement( 'div', $attribs ) );
2302 if ( $this->formtype
== 'preview' ) {
2303 $this->showPreview( $previewOutput );
2306 $wgOut->addHTML( '</div>' );
2308 if ( $this->formtype
== 'diff' ) {
2314 * Append preview output to $wgOut.
2315 * Includes category rendering if this is a category page.
2317 * @param $text String: the HTML to be output for the preview.
2319 protected function showPreview( $text ) {
2321 if ( $this->mTitle
->getNamespace() == NS_CATEGORY
) {
2322 $this->mArticle
->openShowCategory();
2324 # This hook seems slightly odd here, but makes things more
2325 # consistent for extensions.
2326 wfRunHooks( 'OutputPageBeforeHTML', array( &$wgOut, &$text ) );
2327 $wgOut->addHTML( $text );
2328 if ( $this->mTitle
->getNamespace() == NS_CATEGORY
) {
2329 $this->mArticle
->closeShowCategory();
2334 * Get a diff between the current contents of the edit box and the
2335 * version of the page we're editing from.
2337 * If this is a section edit, we'll replace the section as for final
2338 * save and then make a comparison.
2340 function showDiff() {
2341 global $wgUser, $wgContLang, $wgParser, $wgOut;
2343 $oldtitlemsg = 'currentrev';
2344 # if message does not exist, show diff against the preloaded default
2345 if( $this->mTitle
->getNamespace() == NS_MEDIAWIKI
&& !$this->mTitle
->exists() ) {
2346 $oldtext = $this->mTitle
->getDefaultMessageText();
2347 if( $oldtext !== false ) {
2348 $oldtitlemsg = 'defaultmessagetext';
2351 $oldtext = $this->mArticle
->getRawText();
2353 $newtext = $this->mArticle
->replaceSection(
2354 $this->section
, $this->textbox1
, $this->summary
, $this->edittime
);
2356 wfRunHooks( 'EditPageGetDiffText', array( $this, &$newtext ) );
2358 $popts = ParserOptions
::newFromUserAndLang( $wgUser, $wgContLang );
2359 $newtext = $wgParser->preSaveTransform( $newtext, $this->mTitle
, $wgUser, $popts );
2361 if ( $oldtext !== false ||
$newtext != '' ) {
2362 $oldtitle = wfMsgExt( $oldtitlemsg, array( 'parseinline' ) );
2363 $newtitle = wfMsgExt( 'yourtext', array( 'parseinline' ) );
2365 $de = new DifferenceEngine( $this->mArticle
->getContext() );
2366 $de->setText( $oldtext, $newtext );
2367 $difftext = $de->getDiff( $oldtitle, $newtitle );
2368 $de->showDiffStyle();
2373 $wgOut->addHTML( '<div id="wikiDiff">' . $difftext . '</div>' );
2377 * Give a chance for site and per-namespace customizations of
2378 * terms of service summary link that might exist separately
2379 * from the copyright notice.
2381 * This will display between the save button and the edit tools,
2382 * so should remain short!
2384 protected function showTosSummary() {
2385 $msg = 'editpage-tos-summary';
2386 wfRunHooks( 'EditPageTosSummary', array( $this->mTitle
, &$msg ) );
2387 if ( !wfMessage( $msg )->isDisabled() ) {
2389 $wgOut->addHTML( '<div class="mw-tos-summary">' );
2390 $wgOut->addWikiMsg( $msg );
2391 $wgOut->addHTML( '</div>' );
2395 protected function showEditTools() {
2397 $wgOut->addHTML( '<div class="mw-editTools">' .
2398 wfMessage( 'edittools' )->inContentLanguage()->parse() .
2402 protected function getCopywarn() {
2403 global $wgRightsText;
2404 if ( $wgRightsText ) {
2405 $copywarnMsg = array( 'copyrightwarning',
2406 '[[' . wfMsgForContent( 'copyrightpage' ) . ']]',
2409 $copywarnMsg = array( 'copyrightwarning2',
2410 '[[' . wfMsgForContent( 'copyrightpage' ) . ']]' );
2412 // Allow for site and per-namespace customization of contribution/copyright notice.
2413 wfRunHooks( 'EditPageCopyrightWarning', array( $this->mTitle
, &$copywarnMsg ) );
2415 return "<div id=\"editpage-copywarn\">\n" .
2416 call_user_func_array( "wfMsgNoTrans", $copywarnMsg ) . "\n</div>";
2419 protected function showStandardInputs( &$tabindex = 2 ) {
2421 $wgOut->addHTML( "<div class='editOptions'>\n" );
2423 if ( $this->section
!= 'new' ) {
2424 $this->showSummaryInput( false, $this->summary
);
2425 $wgOut->addHTML( $this->getSummaryPreview( false, $this->summary
) );
2428 $checkboxes = $this->getCheckboxes( $tabindex,
2429 array( 'minor' => $this->minoredit
, 'watch' => $this->watchthis
) );
2430 $wgOut->addHTML( "<div class='editCheckboxes'>" . implode( $checkboxes, "\n" ) . "</div>\n" );
2431 $wgOut->addHTML( "<div class='editButtons'>\n" );
2432 $wgOut->addHTML( implode( $this->getEditButtons( $tabindex ), "\n" ) . "\n" );
2434 $cancel = $this->getCancelLink();
2435 if ( $cancel !== '' ) {
2436 $cancel .= wfMsgExt( 'pipe-separator' , 'escapenoentities' );
2438 $edithelpurl = Skin
::makeInternalOrExternalUrl( wfMsgForContent( 'edithelppage' ) );
2439 $edithelp = '<a target="helpwindow" href="' . $edithelpurl . '">' .
2440 htmlspecialchars( wfMsg( 'edithelp' ) ) . '</a> ' .
2441 htmlspecialchars( wfMsg( 'newwindow' ) );
2442 $wgOut->addHTML( " <span class='editHelp'>{$cancel}{$edithelp}</span>\n" );
2443 $wgOut->addHTML( "</div><!-- editButtons -->\n</div><!-- editOptions -->\n" );
2447 * Show an edit conflict. textbox1 is already shown in showEditForm().
2448 * If you want to use another entry point to this function, be careful.
2450 protected function showConflict() {
2453 if ( wfRunHooks( 'EditPageBeforeConflictDiff', array( &$this, &$wgOut ) ) ) {
2454 $wgOut->wrapWikiMsg( '<h2>$1</h2>', "yourdiff" );
2456 $de = new DifferenceEngine( $this->mArticle
->getContext() );
2457 $de->setText( $this->textbox2
, $this->textbox1
);
2458 $de->showDiff( wfMsgExt( 'yourtext', 'parseinline' ), wfMsg( 'storedversion' ) );
2460 $wgOut->wrapWikiMsg( '<h2>$1</h2>', "yourtext" );
2461 $this->showTextbox2();
2468 public function getCancelLink() {
2469 $cancelParams = array();
2470 if ( !$this->isConflict
&& $this->oldid
> 0 ) {
2471 $cancelParams['oldid'] = $this->oldid
;
2474 return Linker
::linkKnown(
2475 $this->getContextTitle(),
2476 wfMsgExt( 'cancel', array( 'parseinline' ) ),
2477 array( 'id' => 'mw-editform-cancel' ),
2483 * Returns the URL to use in the form's action attribute.
2484 * This is used by EditPage subclasses when simply customizing the action
2485 * variable in the constructor is not enough. This can be used when the
2486 * EditPage lives inside of a Special page rather than a custom page action.
2488 * @param $title Title object for which is being edited (where we go to for &action= links)
2491 protected function getActionURL( Title
$title ) {
2492 return $title->getLocalURL( array( 'action' => $this->action
) );
2496 * Check if a page was deleted while the user was editing it, before submit.
2497 * Note that we rely on the logging table, which hasn't been always there,
2498 * but that doesn't matter, because this only applies to brand new
2501 protected function wasDeletedSinceLastEdit() {
2502 if ( $this->deletedSinceEdit
!== null ) {
2503 return $this->deletedSinceEdit
;
2506 $this->deletedSinceEdit
= false;
2508 if ( $this->mTitle
->isDeletedQuick() ) {
2509 $this->lastDelete
= $this->getLastDelete();
2510 if ( $this->lastDelete
) {
2511 $deleteTime = wfTimestamp( TS_MW
, $this->lastDelete
->log_timestamp
);
2512 if ( $deleteTime > $this->starttime
) {
2513 $this->deletedSinceEdit
= true;
2518 return $this->deletedSinceEdit
;
2521 protected function getLastDelete() {
2522 $dbr = wfGetDB( DB_SLAVE
);
2523 $data = $dbr->selectRow(
2524 array( 'logging', 'user' ),
2535 array( 'log_namespace' => $this->mTitle
->getNamespace(),
2536 'log_title' => $this->mTitle
->getDBkey(),
2537 'log_type' => 'delete',
2538 'log_action' => 'delete',
2539 'user_id=log_user' ),
2541 array( 'LIMIT' => 1, 'ORDER BY' => 'log_timestamp DESC' )
2543 // Quick paranoid permission checks...
2544 if ( is_object( $data ) ) {
2545 if ( $data->log_deleted
& LogPage
::DELETED_USER
)
2546 $data->user_name
= wfMsgHtml( 'rev-deleted-user' );
2547 if ( $data->log_deleted
& LogPage
::DELETED_COMMENT
)
2548 $data->log_comment
= wfMsgHtml( 'rev-deleted-comment' );
2554 * Get the rendered text for previewing.
2557 function getPreviewText() {
2558 global $wgOut, $wgUser, $wgParser, $wgRawHtml, $wgLang;
2560 wfProfileIn( __METHOD__
);
2562 if ( $wgRawHtml && !$this->mTokenOk
) {
2563 // Could be an offsite preview attempt. This is very unsafe if
2564 // HTML is enabled, as it could be an attack.
2566 if ( $this->textbox1
!== '' ) {
2567 // Do not put big scary notice, if previewing the empty
2568 // string, which happens when you initially edit
2569 // a category page, due to automatic preview-on-open.
2570 $parsedNote = $wgOut->parse( "<div class='previewnote'>" .
2571 wfMsg( 'session_fail_preview_html' ) . "</div>", true, /* interface */true );
2573 wfProfileOut( __METHOD__
);
2577 if ( $this->mTriedSave
&& !$this->mTokenOk
) {
2578 if ( $this->mTokenOkExceptSuffix
) {
2579 $note = wfMsg( 'token_suffix_mismatch' );
2581 $note = wfMsg( 'session_fail_preview' );
2583 } elseif ( $this->incompleteForm
) {
2584 $note = wfMsg( 'edit_form_incomplete' );
2586 $note = wfMsg( 'previewnote' ) .
2587 ' [[#' . self
::EDITFORM_ID
. '|' . $wgLang->getArrow() . ' ' . wfMsg( 'continue-editing' ) . ']]';
2590 $parserOptions = ParserOptions
::newFromUser( $wgUser );
2591 $parserOptions->setEditSection( false );
2592 $parserOptions->setTidy( true );
2593 $parserOptions->setIsPreview( true );
2594 $parserOptions->setIsSectionPreview( !is_null( $this->section
) && $this->section
!== '' );
2596 # don't parse non-wikitext pages, show message about preview
2597 if ( $this->mTitle
->isCssJsSubpage() ||
!$this->mTitle
->isWikitextPage() ) {
2598 if ( $this->mTitle
->isCssJsSubpage() ) {
2600 } elseif ( $this->mTitle
->isCssOrJsPage() ) {
2606 # Used messages to make sure grep find them:
2607 # Messages: usercsspreview, userjspreview, sitecsspreview, sitejspreview
2610 if ( preg_match( "/\\.css$/", $this->mTitle
->getText() ) ) {
2611 $previewtext = "<div id='mw-{$level}csspreview'>\n" . wfMsg( "{$level}csspreview" ) . "\n</div>";
2612 $class .= " mw-css";
2613 } elseif ( preg_match( "/\\.js$/", $this->mTitle
->getText() ) ) {
2614 $previewtext = "<div id='mw-{$level}jspreview'>\n" . wfMsg( "{$level}jspreview" ) . "\n</div>";
2617 throw new MWException( 'A CSS/JS (sub)page but which is not css nor js!' );
2619 $parserOutput = $wgParser->parse( $previewtext, $this->mTitle
, $parserOptions );
2620 $previewHTML = $parserOutput->getText();
2625 $previewHTML .= "<pre class=\"$class\" dir=\"ltr\">\n" . htmlspecialchars( $this->textbox1
) . "\n</pre>\n";
2627 $toparse = $this->textbox1
;
2629 # If we're adding a comment, we need to show the
2630 # summary as the headline
2631 if ( $this->section
== "new" && $this->summary
!= "" ) {
2632 $toparse = wfMsgForContent( 'newsectionheaderdefaultlevel', $this->summary
) . "\n\n" . $toparse;
2635 wfRunHooks( 'EditPageGetPreviewText', array( $this, &$toparse ) );
2637 $parserOptions->enableLimitReport();
2639 $toparse = $wgParser->preSaveTransform( $toparse, $this->mTitle
, $wgUser, $parserOptions );
2640 $parserOutput = $wgParser->parse( $toparse, $this->mTitle
, $parserOptions );
2642 $rt = Title
::newFromRedirectArray( $this->textbox1
);
2644 $previewHTML = $this->mArticle
->viewRedirect( $rt, false );
2646 $previewHTML = $parserOutput->getText();
2649 $this->mParserOutput
= $parserOutput;
2650 $wgOut->addParserOutputNoText( $parserOutput );
2652 if ( count( $parserOutput->getWarnings() ) ) {
2653 $note .= "\n\n" . implode( "\n\n", $parserOutput->getWarnings() );
2657 if ( $this->isConflict
) {
2658 $conflict = '<h2 id="mw-previewconflict">' . htmlspecialchars( wfMsg( 'previewconflict' ) ) . "</h2>\n";
2660 $conflict = '<hr />';
2663 $previewhead = "<div class='previewnote'>\n" .
2664 '<h2 id="mw-previewheader">' . htmlspecialchars( wfMsg( 'preview' ) ) . "</h2>" .
2665 $wgOut->parse( $note, true, /* interface */true ) . $conflict . "</div>\n";
2667 $pageLang = $this->mTitle
->getPageLanguage();
2668 $attribs = array( 'lang' => $pageLang->getCode(), 'dir' => $pageLang->getDir(),
2669 'class' => 'mw-content-' . $pageLang->getDir() );
2670 $previewHTML = Html
::rawElement( 'div', $attribs, $previewHTML );
2672 wfProfileOut( __METHOD__
);
2673 return $previewhead . $previewHTML . $this->previewTextAfterContent
;
2679 function getTemplates() {
2680 if ( $this->preview ||
$this->section
!= '' ) {
2681 $templates = array();
2682 if ( !isset( $this->mParserOutput
) ) {
2685 foreach ( $this->mParserOutput
->getTemplates() as $ns => $template ) {
2686 foreach ( array_keys( $template ) as $dbk ) {
2687 $templates[] = Title
::makeTitle( $ns, $dbk );
2692 return $this->mTitle
->getTemplateLinksFrom();
2697 * Shows a bulletin board style toolbar for common editing functions.
2698 * It can be disabled in the user preferences.
2699 * The necessary JavaScript code can be found in skins/common/edit.js.
2703 static function getEditToolbar() {
2704 global $wgStylePath, $wgContLang, $wgLang, $wgOut;
2705 global $wgUseTeX, $wgEnableUploads, $wgForeignFileRepos;
2707 $imagesAvailable = $wgEnableUploads ||
count( $wgForeignFileRepos );
2710 * $toolarray is an array of arrays each of which includes the
2711 * filename of the button image (without path), the opening
2712 * tag, the closing tag, optionally a sample text that is
2713 * inserted between the two when no selection is highlighted
2714 * and. The tip text is shown when the user moves the mouse
2717 * Also here: accesskeys (key), which are not used yet until
2718 * someone can figure out a way to make them work in
2719 * IE. However, we should make sure these keys are not defined
2724 'image' => $wgLang->getImageFile( 'button-bold' ),
2725 'id' => 'mw-editbutton-bold',
2727 'close' => '\'\'\'',
2728 'sample' => wfMsg( 'bold_sample' ),
2729 'tip' => wfMsg( 'bold_tip' ),
2733 'image' => $wgLang->getImageFile( 'button-italic' ),
2734 'id' => 'mw-editbutton-italic',
2737 'sample' => wfMsg( 'italic_sample' ),
2738 'tip' => wfMsg( 'italic_tip' ),
2742 'image' => $wgLang->getImageFile( 'button-link' ),
2743 'id' => 'mw-editbutton-link',
2746 'sample' => wfMsg( 'link_sample' ),
2747 'tip' => wfMsg( 'link_tip' ),
2751 'image' => $wgLang->getImageFile( 'button-extlink' ),
2752 'id' => 'mw-editbutton-extlink',
2755 'sample' => wfMsg( 'extlink_sample' ),
2756 'tip' => wfMsg( 'extlink_tip' ),
2760 'image' => $wgLang->getImageFile( 'button-headline' ),
2761 'id' => 'mw-editbutton-headline',
2764 'sample' => wfMsg( 'headline_sample' ),
2765 'tip' => wfMsg( 'headline_tip' ),
2768 $imagesAvailable ?
array(
2769 'image' => $wgLang->getImageFile( 'button-image' ),
2770 'id' => 'mw-editbutton-image',
2771 'open' => '[[' . $wgContLang->getNsText( NS_FILE
) . ':',
2773 'sample' => wfMsg( 'image_sample' ),
2774 'tip' => wfMsg( 'image_tip' ),
2777 $imagesAvailable ?
array(
2778 'image' => $wgLang->getImageFile( 'button-media' ),
2779 'id' => 'mw-editbutton-media',
2780 'open' => '[[' . $wgContLang->getNsText( NS_MEDIA
) . ':',
2782 'sample' => wfMsg( 'media_sample' ),
2783 'tip' => wfMsg( 'media_tip' ),
2787 'image' => $wgLang->getImageFile( 'button-math' ),
2788 'id' => 'mw-editbutton-math',
2790 'close' => "</math>",
2791 'sample' => wfMsg( 'math_sample' ),
2792 'tip' => wfMsg( 'math_tip' ),
2796 'image' => $wgLang->getImageFile( 'button-nowiki' ),
2797 'id' => 'mw-editbutton-nowiki',
2798 'open' => "<nowiki>",
2799 'close' => "</nowiki>",
2800 'sample' => wfMsg( 'nowiki_sample' ),
2801 'tip' => wfMsg( 'nowiki_tip' ),
2805 'image' => $wgLang->getImageFile( 'button-sig' ),
2806 'id' => 'mw-editbutton-signature',
2810 'tip' => wfMsg( 'sig_tip' ),
2814 'image' => $wgLang->getImageFile( 'button-hr' ),
2815 'id' => 'mw-editbutton-hr',
2816 'open' => "\n----\n",
2819 'tip' => wfMsg( 'hr_tip' ),
2824 $script = 'mw.loader.using("mediawiki.action.edit", function() {';
2825 foreach ( $toolarray as $tool ) {
2831 $image = $wgStylePath . '/common/images/' . $tool['image'],
2832 // Note that we use the tip both for the ALT tag and the TITLE tag of the image.
2833 // Older browsers show a "speedtip" type message only for ALT.
2834 // Ideally these should be different, realistically they
2835 // probably don't need to be.
2836 $tip = $tool['tip'],
2837 $open = $tool['open'],
2838 $close = $tool['close'],
2839 $sample = $tool['sample'],
2840 $cssId = $tool['id'],
2843 $script .= Xml
::encodeJsCall( 'mw.toolbar.addButton', $params );
2846 // This used to be called on DOMReady from mediawiki.action.edit, which
2847 // ended up causing race conditions with the setup code above.
2849 "// Create button bar\n" .
2850 "$(function() { mw.toolbar.init(); } );\n";
2853 $wgOut->addScript( Html
::inlineScript( ResourceLoader
::makeLoaderConditionalScript( $script ) ) );
2855 $toolbar = '<div id="toolbar"></div>';
2857 wfRunHooks( 'EditPageBeforeEditToolbar', array( &$toolbar ) );
2863 * Returns an array of html code of the following checkboxes:
2866 * @param $tabindex int Current tabindex
2867 * @param $checked Array of checkbox => bool, where bool indicates the checked
2868 * status of the checkbox
2872 public function getCheckboxes( &$tabindex, $checked ) {
2875 $checkboxes = array();
2877 // don't show the minor edit checkbox if it's a new page or section
2878 if ( !$this->isNew
) {
2879 $checkboxes['minor'] = '';
2880 $minorLabel = wfMsgExt( 'minoredit', array( 'parseinline' ) );
2881 if ( $wgUser->isAllowed( 'minoredit' ) ) {
2883 'tabindex' => ++
$tabindex,
2884 'accesskey' => wfMsg( 'accesskey-minoredit' ),
2885 'id' => 'wpMinoredit',
2887 $checkboxes['minor'] =
2888 Xml
::check( 'wpMinoredit', $checked['minor'], $attribs ) .
2889 " <label for='wpMinoredit' id='mw-editpage-minoredit'" .
2890 Xml
::expandAttributes( array( 'title' => Linker
::titleAttrib( 'minoredit', 'withaccess' ) ) ) .
2891 ">{$minorLabel}</label>";
2895 $watchLabel = wfMsgExt( 'watchthis', array( 'parseinline' ) );
2896 $checkboxes['watch'] = '';
2897 if ( $wgUser->isLoggedIn() ) {
2899 'tabindex' => ++
$tabindex,
2900 'accesskey' => wfMsg( 'accesskey-watch' ),
2901 'id' => 'wpWatchthis',
2903 $checkboxes['watch'] =
2904 Xml
::check( 'wpWatchthis', $checked['watch'], $attribs ) .
2905 " <label for='wpWatchthis' id='mw-editpage-watch'" .
2906 Xml
::expandAttributes( array( 'title' => Linker
::titleAttrib( 'watch', 'withaccess' ) ) ) .
2907 ">{$watchLabel}</label>";
2909 wfRunHooks( 'EditPageBeforeEditChecks', array( &$this, &$checkboxes, &$tabindex ) );
2914 * Returns an array of html code of the following buttons:
2915 * save, diff, preview and live
2917 * @param $tabindex int Current tabindex
2921 public function getEditButtons( &$tabindex ) {
2928 'tabindex' => ++
$tabindex,
2929 'value' => wfMsg( 'savearticle' ),
2930 'accesskey' => wfMsg( 'accesskey-save' ),
2931 'title' => wfMsg( 'tooltip-save' ) . ' [' . wfMsg( 'accesskey-save' ) . ']',
2933 $buttons['save'] = Xml
::element( 'input', $temp, '' );
2935 ++
$tabindex; // use the same for preview and live preview
2937 'id' => 'wpPreview',
2938 'name' => 'wpPreview',
2940 'tabindex' => $tabindex,
2941 'value' => wfMsg( 'showpreview' ),
2942 'accesskey' => wfMsg( 'accesskey-preview' ),
2943 'title' => wfMsg( 'tooltip-preview' ) . ' [' . wfMsg( 'accesskey-preview' ) . ']',
2945 $buttons['preview'] = Xml
::element( 'input', $temp, '' );
2946 $buttons['live'] = '';
2952 'tabindex' => ++
$tabindex,
2953 'value' => wfMsg( 'showdiff' ),
2954 'accesskey' => wfMsg( 'accesskey-diff' ),
2955 'title' => wfMsg( 'tooltip-diff' ) . ' [' . wfMsg( 'accesskey-diff' ) . ']',
2957 $buttons['diff'] = Xml
::element( 'input', $temp, '' );
2959 wfRunHooks( 'EditPageBeforeEditButtons', array( &$this, &$buttons, &$tabindex ) );
2964 * Output preview text only. This can be sucked into the edit page
2965 * via JavaScript, and saves the server time rendering the skin as
2966 * well as theoretically being more robust on the client (doesn't
2967 * disturb the edit box's undo history, won't eat your text on
2970 * @todo This doesn't include category or interlanguage links.
2971 * Would need to enhance it a bit, <s>maybe wrap them in XML
2972 * or something...</s> that might also require more skin
2973 * initialization, so check whether that's a problem.
2975 function livePreview() {
2978 header( 'Content-type: text/xml; charset=utf-8' );
2979 header( 'Cache-control: no-cache' );
2981 $previewText = $this->getPreviewText();
2982 #$categories = $skin->getCategoryLinks();
2985 '<?xml version="1.0" encoding="UTF-8" ?>' . "\n" .
2986 Xml
::tags( 'livepreview', null,
2987 Xml
::element( 'preview', null, $previewText )
2988 #. Xml::element( 'category', null, $categories )
2994 * Call the stock "user is blocked" page
2996 * @deprecated in 1.19; throw an exception directly instead
2998 function blockedPage() {
2999 wfDeprecated( __METHOD__
, '1.19' );
3002 throw new UserBlockedError( $wgUser->getBlock() );
3006 * Produce the stock "please login to edit pages" page
3008 * @deprecated in 1.19; throw an exception directly instead
3010 function userNotLoggedInPage() {
3011 wfDeprecated( __METHOD__
, '1.19' );
3012 throw new PermissionsError( 'edit' );
3016 * Show an error page saying to the user that he has insufficient permissions
3017 * to create a new page
3019 * @deprecated in 1.19; throw an exception directly instead
3021 function noCreatePermission() {
3022 wfDeprecated( __METHOD__
, '1.19' );
3023 $permission = $this->mTitle
->isTalkPage() ?
'createtalk' : 'createpage';
3024 throw new PermissionsError( $permission );
3028 * Creates a basic error page which informs the user that
3029 * they have attempted to edit a nonexistent section.
3031 function noSuchSectionPage() {
3034 $wgOut->prepareErrorPage( wfMessage( 'nosuchsectiontitle' ) );
3036 $res = wfMsgExt( 'nosuchsectiontext', 'parse', $this->section
);
3037 wfRunHooks( 'EditPageNoSuchSection', array( &$this, &$res ) );
3038 $wgOut->addHTML( $res );
3040 $wgOut->returnToMain( false, $this->mTitle
);
3044 * Produce the stock "your edit contains spam" page
3046 * @param $match string Text which triggered one or more filters
3047 * @deprecated since 1.17 Use method spamPageWithContent() instead
3049 static function spamPage( $match = false ) {
3050 wfDeprecated( __METHOD__
, '1.17' );
3052 global $wgOut, $wgTitle;
3054 $wgOut->prepareErrorPage( wfMessage( 'spamprotectiontitle' ) );
3056 $wgOut->addHTML( '<div id="spamprotected">' );
3057 $wgOut->addWikiMsg( 'spamprotectiontext' );
3059 $wgOut->addWikiMsg( 'spamprotectionmatch', wfEscapeWikiText( $match ) );
3061 $wgOut->addHTML( '</div>' );
3063 $wgOut->returnToMain( false, $wgTitle );
3067 * Show "your edit contains spam" page with your diff and text
3069 * @param $match string|Array|bool Text (or array of texts) which triggered one or more filters
3071 public function spamPageWithContent( $match = false ) {
3072 global $wgOut, $wgLang;
3073 $this->textbox2
= $this->textbox1
;
3075 if( is_array( $match ) ){
3076 $match = $wgLang->listToText( $match );
3078 $wgOut->prepareErrorPage( wfMessage( 'spamprotectiontitle' ) );
3080 $wgOut->addHTML( '<div id="spamprotected">' );
3081 $wgOut->addWikiMsg( 'spamprotectiontext' );
3083 $wgOut->addWikiMsg( 'spamprotectionmatch', wfEscapeWikiText( $match ) );
3085 $wgOut->addHTML( '</div>' );
3087 $wgOut->wrapWikiMsg( '<h2>$1</h2>', "yourdiff" );
3090 $wgOut->wrapWikiMsg( '<h2>$1</h2>', "yourtext" );
3091 $this->showTextbox2();
3093 $wgOut->addReturnTo( $this->getContextTitle(), array( 'action' => 'edit' ) );
3097 * Format an anchor fragment as it would appear for a given section name
3098 * @param $text String
3102 function sectionAnchor( $text ) {
3104 return $wgParser->guessSectionNameFromWikiText( $text );
3108 * Check if the browser is on a blacklist of user-agents known to
3109 * mangle UTF-8 data on form submission. Returns true if Unicode
3110 * should make it through, false if it's known to be a problem.
3114 function checkUnicodeCompliantBrowser() {
3115 global $wgBrowserBlackList;
3116 if ( empty( $_SERVER["HTTP_USER_AGENT"] ) ) {
3117 // No User-Agent header sent? Trust it by default...
3120 $currentbrowser = $_SERVER["HTTP_USER_AGENT"];
3121 foreach ( $wgBrowserBlackList as $browser ) {
3122 if ( preg_match( $browser, $currentbrowser ) ) {
3130 * Filter an input field through a Unicode de-armoring process if it
3131 * came from an old browser with known broken Unicode editing issues.
3133 * @param $request WebRequest
3134 * @param $field String
3138 function safeUnicodeInput( $request, $field ) {
3139 $text = rtrim( $request->getText( $field ) );
3140 return $request->getBool( 'safemode' )
3141 ?
$this->unmakesafe( $text )
3146 * @param $request WebRequest
3147 * @param $text string
3150 function safeUnicodeText( $request, $text ) {
3151 $text = rtrim( $text );
3152 return $request->getBool( 'safemode' )
3153 ?
$this->unmakesafe( $text )
3158 * Filter an output field through a Unicode armoring process if it is
3159 * going to an old browser with known broken Unicode editing issues.
3161 * @param $text String
3165 function safeUnicodeOutput( $text ) {
3167 $codedText = $wgContLang->recodeForEdit( $text );
3168 return $this->checkUnicodeCompliantBrowser()
3170 : $this->makesafe( $codedText );
3174 * A number of web browsers are known to corrupt non-ASCII characters
3175 * in a UTF-8 text editing environment. To protect against this,
3176 * detected browsers will be served an armored version of the text,
3177 * with non-ASCII chars converted to numeric HTML character references.
3179 * Preexisting such character references will have a 0 added to them
3180 * to ensure that round-trips do not alter the original data.
3182 * @param $invalue String
3186 function makesafe( $invalue ) {
3187 // Armor existing references for reversability.
3188 $invalue = strtr( $invalue, array( "&#x" => "�" ) );
3193 for ( $i = 0; $i < strlen( $invalue ); $i++
) {
3194 $bytevalue = ord( $invalue[$i] );
3195 if ( $bytevalue <= 0x7F ) { // 0xxx xxxx
3196 $result .= chr( $bytevalue );
3198 } elseif ( $bytevalue <= 0xBF ) { // 10xx xxxx
3199 $working = $working << 6;
3200 $working +
= ( $bytevalue & 0x3F );
3202 if ( $bytesleft <= 0 ) {
3203 $result .= "&#x" . strtoupper( dechex( $working ) ) . ";";
3205 } elseif ( $bytevalue <= 0xDF ) { // 110x xxxx
3206 $working = $bytevalue & 0x1F;
3208 } elseif ( $bytevalue <= 0xEF ) { // 1110 xxxx
3209 $working = $bytevalue & 0x0F;
3211 } else { // 1111 0xxx
3212 $working = $bytevalue & 0x07;
3220 * Reverse the previously applied transliteration of non-ASCII characters
3221 * back to UTF-8. Used to protect data from corruption by broken web browsers
3222 * as listed in $wgBrowserBlackList.
3224 * @param $invalue String
3228 function unmakesafe( $invalue ) {
3230 for ( $i = 0; $i < strlen( $invalue ); $i++
) {
3231 if ( ( substr( $invalue, $i, 3 ) == "&#x" ) && ( $invalue[$i +
3] != '0' ) ) {
3235 $hexstring .= $invalue[$i];
3237 } while ( ctype_xdigit( $invalue[$i] ) && ( $i < strlen( $invalue ) ) );
3239 // Do some sanity checks. These aren't needed for reversability,
3240 // but should help keep the breakage down if the editor
3241 // breaks one of the entities whilst editing.
3242 if ( ( substr( $invalue, $i, 1 ) == ";" ) and ( strlen( $hexstring ) <= 6 ) ) {
3243 $codepoint = hexdec( $hexstring );
3244 $result .= codepointToUtf8( $codepoint );
3246 $result .= "&#x" . $hexstring . substr( $invalue, $i, 1 );
3249 $result .= substr( $invalue, $i, 1 );
3252 // reverse the transform that we made for reversability reasons.
3253 return strtr( $result, array( "�" => "&#x" ) );