bug #19334: textarea jumps when editing longer articles in IE8
[lhc/web/wiklou.git] / includes / EditPage.php
1 <?php
2 /**
3 * Contains the EditPage class
4 * @file
5 */
6
7 /**
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
11 * interfaces.
12 *
13 * EditPage cares about two distinct titles:
14 * $wgTitle 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.
18 */
19 class EditPage {
20 const AS_SUCCESS_UPDATE = 200;
21 const AS_SUCCESS_NEW_ARTICLE = 201;
22 const AS_HOOK_ERROR = 210;
23 const AS_FILTERING = 211;
24 const AS_HOOK_ERROR_EXPECTED = 212;
25 const AS_BLOCKED_PAGE_FOR_USER = 215;
26 const AS_CONTENT_TOO_BIG = 216;
27 const AS_USER_CANNOT_EDIT = 217;
28 const AS_READ_ONLY_PAGE_ANON = 218;
29 const AS_READ_ONLY_PAGE_LOGGED = 219;
30 const AS_READ_ONLY_PAGE = 220;
31 const AS_RATE_LIMITED = 221;
32 const AS_ARTICLE_WAS_DELETED = 222;
33 const AS_NO_CREATE_PERMISSION = 223;
34 const AS_BLANK_ARTICLE = 224;
35 const AS_CONFLICT_DETECTED = 225;
36 const AS_SUMMARY_NEEDED = 226;
37 const AS_TEXTBOX_EMPTY = 228;
38 const AS_MAX_ARTICLE_SIZE_EXCEEDED = 229;
39 const AS_OK = 230;
40 const AS_END = 231;
41 const AS_SPAM_ERROR = 232;
42 const AS_IMAGE_REDIRECT_ANON = 233;
43 const AS_IMAGE_REDIRECT_LOGGED = 234;
44
45 var $mArticle;
46 var $mTitle;
47 var $action;
48 var $mMetaData = '';
49 var $isConflict = false;
50 var $isCssJsSubpage = false;
51 var $isCssSubpage = false;
52 var $isJsSubpage = false;
53 var $deletedSinceEdit = false;
54 var $formtype;
55 var $firsttime;
56 var $lastDelete;
57 var $mTokenOk = false;
58 var $mTokenOkExceptSuffix = false;
59 var $mTriedSave = false;
60 var $tooBig = false;
61 var $kblength = false;
62 var $missingComment = false;
63 var $missingSummary = false;
64 var $allowBlankSummary = false;
65 var $autoSumm = '';
66 var $hookError = '';
67 #var $mPreviewTemplates;
68 var $mParserOutput;
69 var $mBaseRevision = false;
70 var $mShowSummaryField = true;
71
72 # Form values
73 var $save = false, $preview = false, $diff = false;
74 var $minoredit = false, $watchthis = false, $recreate = false;
75 var $textbox1 = '', $textbox2 = '', $summary = '', $nosummary = false;
76 var $edittime = '', $section = '', $starttime = '';
77 var $oldid = 0, $editintro = '', $scrolltop = null, $bot = true;
78
79 # Placeholders for text injection by hooks (must be HTML)
80 # extensions should take care to _append_ to the present value
81 public $editFormPageTop; // Before even the preview
82 public $editFormTextTop;
83 public $editFormTextBeforeContent;
84 public $editFormTextAfterWarn;
85 public $editFormTextAfterTools;
86 public $editFormTextBottom;
87 public $editFormTextAfterContent;
88 public $previewTextAfterContent;
89
90 /* $didSave should be set to true whenever an article was succesfully altered. */
91 public $didSave = false;
92 public $undidRev = 0;
93
94 public $suppressIntro = false;
95
96 /**
97 * @todo document
98 * @param $article
99 */
100 function EditPage( $article ) {
101 $this->mArticle =& $article;
102 $this->mTitle = $article->getTitle();
103 $this->action = 'submit';
104
105 # Placeholders for text injection by hooks (empty per default)
106 $this->editFormPageTop =
107 $this->editFormTextTop =
108 $this->editFormTextBeforeContent =
109 $this->editFormTextAfterWarn =
110 $this->editFormTextAfterTools =
111 $this->editFormTextBottom =
112 $this->editFormTextAfterContent =
113 $this->previewTextAfterContent =
114 $this->mPreloadText = "";
115 }
116
117 function getArticle() {
118 return $this->mArticle;
119 }
120
121
122 /**
123 * Fetch initial editing page content.
124 * @returns mixed string on success, $def_text for invalid sections
125 * @private
126 */
127 function getContent( $def_text = '' ) {
128 global $wgOut, $wgRequest, $wgParser, $wgContLang, $wgMessageCache;
129
130 wfProfileIn( __METHOD__ );
131 # Get variables from query string :P
132 $section = $wgRequest->getVal( 'section' );
133
134 $preload = $wgRequest->getVal( 'preload',
135 // Custom preload text for new sections
136 $section === 'new' ? 'MediaWiki:addsection-preload' : '' );
137 $undoafter = $wgRequest->getVal( 'undoafter' );
138 $undo = $wgRequest->getVal( 'undo' );
139
140 $text = '';
141 // For message page not locally set, use the i18n message.
142 // For other non-existent articles, use preload text if any.
143 if ( !$this->mTitle->exists() ) {
144 if ( $this->mTitle->getNamespace() == NS_MEDIAWIKI ) {
145 # If this is a system message, get the default text.
146 list( $message, $lang ) = $wgMessageCache->figureMessage( $wgContLang->lcfirst( $this->mTitle->getText() ) );
147 $wgMessageCache->loadAllMessages( $lang );
148 $text = wfMsgGetKey( $message, false, $lang, false );
149 if( wfEmptyMsg( $message, $text ) )
150 $text = $this->getPreloadedText( $preload );
151 } else {
152 # If requested, preload some text.
153 $text = $this->getPreloadedText( $preload );
154 }
155 // For existing pages, get text based on "undo" or section parameters.
156 } else {
157 $text = $this->mArticle->getContent();
158 if ( $undo > 0 && $undoafter > 0 && $undo < $undoafter ) {
159 # If they got undoafter and undo round the wrong way, switch them
160 list( $undo, $undoafter ) = array( $undoafter, $undo );
161 }
162 if ( $undo > 0 && $undo > $undoafter ) {
163 # Undoing a specific edit overrides section editing; section-editing
164 # doesn't work with undoing.
165 if ( $undoafter ) {
166 $undorev = Revision::newFromId( $undo );
167 $oldrev = Revision::newFromId( $undoafter );
168 } else {
169 $undorev = Revision::newFromId( $undo );
170 $oldrev = $undorev ? $undorev->getPrevious() : null;
171 }
172
173 # Sanity check, make sure it's the right page,
174 # the revisions exist and they were not deleted.
175 # Otherwise, $text will be left as-is.
176 if ( !is_null( $undorev ) && !is_null( $oldrev ) &&
177 $undorev->getPage() == $oldrev->getPage() &&
178 $undorev->getPage() == $this->mArticle->getID() &&
179 !$undorev->isDeleted( Revision::DELETED_TEXT ) &&
180 !$oldrev->isDeleted( Revision::DELETED_TEXT ) ) {
181
182 $undotext = $this->mArticle->getUndoText( $undorev, $oldrev );
183 if ( $undotext === false ) {
184 # Warn the user that something went wrong
185 $this->editFormPageTop .= $wgOut->parse( '<div class="error mw-undo-failure">' . wfMsgNoTrans( 'undo-failure' ) . '</div>' );
186 } else {
187 $text = $undotext;
188 # Inform the user of our success and set an automatic edit summary
189 $this->editFormPageTop .= $wgOut->parse( '<div class="mw-undo-success">' . wfMsgNoTrans( 'undo-success' ) . '</div>' );
190 $firstrev = $oldrev->getNext();
191 # If we just undid one rev, use an autosummary
192 if ( $firstrev->mId == $undo ) {
193 $this->summary = wfMsgForContent( 'undo-summary', $undo, $undorev->getUserText() );
194 $this->undidRev = $undo;
195 }
196 $this->formtype = 'diff';
197 }
198 } else {
199 // Failed basic sanity checks.
200 // Older revisions may have been removed since the link
201 // was created, or we may simply have got bogus input.
202 $this->editFormPageTop .= $wgOut->parse( '<div class="error mw-undo-norev">' . wfMsgNoTrans( 'undo-norev' ) . '</div>' );
203 }
204 } else if ( $section != '' ) {
205 if ( $section == 'new' ) {
206 $text = $this->getPreloadedText( $preload );
207 } else {
208 // Get section edit text (returns $def_text for invalid sections)
209 $text = $wgParser->getSection( $text, $section, $def_text );
210 }
211 }
212 }
213
214 wfProfileOut( __METHOD__ );
215 return $text;
216 }
217
218 /** Use this method before edit() to preload some text into the edit box */
219 public function setPreloadedText( $text ) {
220 $this->mPreloadText = $text;
221 }
222
223 /**
224 * Get the contents of a page from its title and remove includeonly tags
225 *
226 * @param $preload String: the title of the page.
227 * @return string The contents of the page.
228 */
229 protected function getPreloadedText( $preload ) {
230 global $wgParser, $wgUser;
231 if ( !empty( $this->mPreloadText ) ) {
232 return $this->mPreloadText;
233 } else {
234 $preloadTitle = Title::newFromText( $preload );
235 if ( isset( $preloadTitle ) && $preloadTitle->userCanRead() ) {
236 return $wgParser->getTransclusionText( $preloadTitle, ParserOptions::newFromUser( $wgUser ) );
237 }
238 }
239 }
240
241 /**
242 * This is the function that extracts metadata from the article body on the first view.
243 * To turn the feature on, set $wgUseMetadataEdit = true ; in LocalSettings
244 * and set $wgMetadataWhitelist to the *full* title of the template whitelist
245 */
246 function extractMetaDataFromArticle () {
247 global $wgUseMetadataEdit, $wgMetadataWhitelist, $wgContLang;
248 $this->mMetaData = '';
249 if ( !$wgUseMetadataEdit ) return;
250 if ( $wgMetadataWhitelist == '' ) return;
251 $s = '';
252 $t = $this->getContent();
253
254 # MISSING : <nowiki> filtering
255
256 # Categories and language links
257 $t = explode( "\n" , $t );
258 $catlow = strtolower( $wgContLang->getNsText( NS_CATEGORY ) );
259 $cat = $ll = array();
260 foreach ( $t as $key => $x ) {
261 $y = trim( strtolower ( $x ) );
262 while ( substr( $y , 0 , 2 ) == '[[' ) {
263 $y = explode( ']]' , trim ( $x ) );
264 $first = array_shift( $y );
265 $first = explode( ':' , $first );
266 $ns = array_shift( $first );
267 $ns = trim( str_replace( '[' , '' , $ns ) );
268 if ( $wgContLang->getLanguageName( $ns ) || strtolower( $ns ) == $catlow ) {
269 $add = '[[' . $ns . ':' . implode( ':' , $first ) . ']]';
270 if ( strtolower( $ns ) == $catlow ) $cat[] = $add;
271 else $ll[] = $add;
272 $x = implode( ']]', $y );
273 $t[$key] = $x;
274 $y = trim( strtolower( $x ) );
275 } else {
276 $x = implode( ']]' , $y );
277 $y = trim( strtolower( $x ) );
278 }
279 }
280 }
281 if ( count( $cat ) ) $s .= implode( ' ' , $cat ) . "\n";
282 if ( count( $ll ) ) $s .= implode( ' ' , $ll ) . "\n";
283 $t = implode( "\n" , $t );
284
285 # Load whitelist
286 $sat = array () ; # stand-alone-templates; must be lowercase
287 $wl_title = Title::newFromText( $wgMetadataWhitelist );
288 $wl_article = new Article ( $wl_title );
289 $wl = explode ( "\n" , $wl_article->getContent() );
290 foreach ( $wl AS $x ) {
291 $isentry = false;
292 $x = trim ( $x );
293 while ( substr ( $x , 0 , 1 ) == '*' ) {
294 $isentry = true;
295 $x = trim ( substr ( $x , 1 ) );
296 }
297 if ( $isentry ) {
298 $sat[] = strtolower ( $x );
299 }
300
301 }
302
303 # Templates, but only some
304 $t = explode( '{{' , $t );
305 $tl = array() ;
306 foreach ( $t as $key => $x ) {
307 $y = explode( '}}' , $x , 2 );
308 if ( count( $y ) == 2 ) {
309 $z = $y[0];
310 $z = explode( '|' , $z );
311 $tn = array_shift( $z );
312 if ( in_array( strtolower( $tn ) , $sat ) ) {
313 $tl[] = '{{' . $y[0] . '}}';
314 $t[$key] = $y[1];
315 $y = explode( '}}' , $y[1] , 2 );
316 }
317 else $t[$key] = '{{' . $x;
318 }
319 else if ( $key != 0 ) $t[$key] = '{{' . $x;
320 else $t[$key] = $x;
321 }
322 if ( count( $tl ) ) $s .= implode( ' ' , $tl );
323 $t = implode( '' , $t );
324
325 $t = str_replace( "\n\n\n", "\n", $t );
326 $this->mArticle->mContent = $t;
327 $this->mMetaData = $s;
328 }
329
330 /*
331 * Check if a page was deleted while the user was editing it, before submit.
332 * Note that we rely on the logging table, which hasn't been always there,
333 * but that doesn't matter, because this only applies to brand new
334 * deletes.
335 */
336 protected function wasDeletedSinceLastEdit() {
337 if ( $this->deletedSinceEdit )
338 return true;
339 if ( $this->mTitle->isDeletedQuick() ) {
340 $this->lastDelete = $this->getLastDelete();
341 if ( $this->lastDelete ) {
342 $deleteTime = wfTimestamp( TS_MW, $this->lastDelete->log_timestamp );
343 if ( $deleteTime > $this->starttime ) {
344 $this->deletedSinceEdit = true;
345 }
346 }
347 }
348 return $this->deletedSinceEdit;
349 }
350
351 function submit() {
352 $this->edit();
353 }
354
355 /**
356 * This is the function that gets called for "action=edit". It
357 * sets up various member variables, then passes execution to
358 * another function, usually showEditForm()
359 *
360 * The edit form is self-submitting, so that when things like
361 * preview and edit conflicts occur, we get the same form back
362 * with the extra stuff added. Only when the final submission
363 * is made and all is well do we actually save and redirect to
364 * the newly-edited page.
365 */
366 function edit() {
367 global $wgOut, $wgRequest, $wgUser;
368 // Allow extensions to modify/prevent this form or submission
369 if ( !wfRunHooks( 'AlternateEdit', array( $this ) ) ) {
370 return;
371 }
372
373 wfProfileIn( __METHOD__ );
374 wfDebug( __METHOD__.": enter\n" );
375
376 // This is not an article
377 $wgOut->setArticleFlag( false );
378
379 $this->importFormData( $wgRequest );
380 $this->firsttime = false;
381
382 if ( $this->live ) {
383 $this->livePreview();
384 wfProfileOut( __METHOD__ );
385 return;
386 }
387
388 if ( wfReadOnly() && $this->save ) {
389 // Force preview
390 $this->save = false;
391 $this->preview = true;
392 }
393
394 $wgOut->addScriptFile( 'edit.js' );
395
396 if ( $wgUser->getOption( 'uselivepreview', false ) ) {
397 $wgOut->includeJQuery();
398 $wgOut->addScriptFile( 'preview.js' );
399 }
400 // Bug #19334: textarea jumps when editing articles in IE8
401 $wgOut->addStyle( 'common/IE80Fixes.css', 'screen', 'IE 8' );
402
403 $permErrors = $this->getEditPermissionErrors();
404 if ( $permErrors ) {
405 wfDebug( __METHOD__ . ": User can't edit\n" );
406 $this->readOnlyPage( $this->getContent( false ), true, $permErrors, 'edit' );
407 wfProfileOut( __METHOD__ );
408 return;
409 } else {
410 if ( $this->save ) {
411 $this->formtype = 'save';
412 } else if ( $this->preview ) {
413 $this->formtype = 'preview';
414 } else if ( $this->diff ) {
415 $this->formtype = 'diff';
416 } else { # First time through
417 $this->firsttime = true;
418 if ( $this->previewOnOpen() ) {
419 $this->formtype = 'preview';
420 } else {
421 $this->extractMetaDataFromArticle () ;
422 $this->formtype = 'initial';
423 }
424 }
425 }
426
427 // If they used redlink=1 and the page exists, redirect to the main article
428 if ( $wgRequest->getBool( 'redlink' ) && $this->mTitle->exists() ) {
429 $wgOut->redirect( $this->mTitle->getFullURL() );
430 }
431
432 wfProfileIn( __METHOD__."-business-end" );
433
434 $this->isConflict = false;
435 // css / js subpages of user pages get a special treatment
436 $this->isCssJsSubpage = $this->mTitle->isCssJsSubpage();
437 $this->isCssSubpage = $this->mTitle->isCssSubpage();
438 $this->isJsSubpage = $this->mTitle->isJsSubpage();
439 $this->isValidCssJsSubpage = $this->mTitle->isValidCssJsSubpage();
440
441 # Show applicable editing introductions
442 if ( $this->formtype == 'initial' || $this->firsttime )
443 $this->showIntro();
444
445 if ( $this->mTitle->isTalkPage() ) {
446 $wgOut->addWikiMsg( 'talkpagetext' );
447 }
448
449 # Optional notices on a per-namespace and per-page basis
450 $editnotice_ns = 'editnotice-'.$this->mTitle->getNamespace();
451 if ( !wfEmptyMsg( $editnotice_ns, wfMsgForContent( $editnotice_ns ) ) ) {
452 $wgOut->addWikiText( wfMsgForContent( $editnotice_ns ) );
453 }
454 if ( MWNamespace::hasSubpages( $this->mTitle->getNamespace() ) ) {
455 $parts = explode( '/', $this->mTitle->getDBkey() );
456 $editnotice_base = $editnotice_ns;
457 while ( count( $parts ) > 0 ) {
458 $editnotice_base .= '-'.array_shift( $parts );
459 if ( !wfEmptyMsg( $editnotice_base, wfMsgForContent( $editnotice_base ) ) ) {
460 $wgOut->addWikiText( wfMsgForContent( $editnotice_base ) );
461 }
462 }
463 }
464
465 # Attempt submission here. This will check for edit conflicts,
466 # and redundantly check for locked database, blocked IPs, etc.
467 # that edit() already checked just in case someone tries to sneak
468 # in the back door with a hand-edited submission URL.
469
470 if ( 'save' == $this->formtype ) {
471 if ( !$this->attemptSave() ) {
472 wfProfileOut( __METHOD__."-business-end" );
473 wfProfileOut( __METHOD__ );
474 return;
475 }
476 }
477
478 # First time through: get contents, set time for conflict
479 # checking, etc.
480 if ( 'initial' == $this->formtype || $this->firsttime ) {
481 if ( $this->initialiseForm() === false ) {
482 $this->noSuchSectionPage();
483 wfProfileOut( __METHOD__."-business-end" );
484 wfProfileOut( __METHOD__ );
485 return;
486 }
487 if ( !$this->mTitle->getArticleId() )
488 wfRunHooks( 'EditFormPreloadText', array( &$this->textbox1, &$this->mTitle ) );
489 }
490
491 $this->showEditForm();
492 wfProfileOut( __METHOD__."-business-end" );
493 wfProfileOut( __METHOD__ );
494 }
495
496 protected function getEditPermissionErrors() {
497 global $wgUser;
498 $permErrors = $this->mTitle->getUserPermissionsErrors( 'edit', $wgUser );
499 # Can this title be created?
500 if ( !$this->mTitle->exists() ) {
501 $permErrors = array_merge( $permErrors,
502 wfArrayDiff2( $this->mTitle->getUserPermissionsErrors( 'create', $wgUser ), $permErrors ) );
503 }
504 # Ignore some permissions errors when a user is just previewing/viewing diffs
505 $remove = array();
506 foreach( $permErrors as $error ) {
507 if ( ( $this->preview || $this->diff ) &&
508 ( $error[0] == 'blockedtext' || $error[0] == 'autoblockedtext' ) )
509 {
510 $remove[] = $error;
511 }
512 }
513 $permErrors = wfArrayDiff2( $permErrors, $remove );
514 return $permErrors;
515 }
516
517 /**
518 * Show a read-only error
519 * Parameters are the same as OutputPage:readOnlyPage()
520 * Redirect to the article page if redlink=1
521 */
522 function readOnlyPage( $source = null, $protected = false, $reasons = array(), $action = null ) {
523 global $wgRequest, $wgOut;
524 if ( $wgRequest->getBool( 'redlink' ) ) {
525 // The edit page was reached via a red link.
526 // Redirect to the article page and let them click the edit tab if
527 // they really want a permission error.
528 $wgOut->redirect( $this->mTitle->getFullUrl() );
529 } else {
530 $wgOut->readOnlyPage( $source, $protected, $reasons, $action );
531 }
532 }
533
534 /**
535 * Should we show a preview when the edit form is first shown?
536 *
537 * @return bool
538 */
539 protected function previewOnOpen() {
540 global $wgRequest, $wgUser, $wgPreviewOnOpenNamespaces;
541 if ( $wgRequest->getVal( 'preview' ) == 'yes' ) {
542 // Explicit override from request
543 return true;
544 } elseif ( $wgRequest->getVal( 'preview' ) == 'no' ) {
545 // Explicit override from request
546 return false;
547 } elseif ( $this->section == 'new' ) {
548 // Nothing *to* preview for new sections
549 return false;
550 } elseif ( ( $wgRequest->getVal( 'preload' ) !== null || $this->mTitle->exists() ) && $wgUser->getOption( 'previewonfirst' ) ) {
551 // Standard preference behaviour
552 return true;
553 } elseif ( !$this->mTitle->exists() &&
554 isset($wgPreviewOnOpenNamespaces[$this->mTitle->getNamespace()]) &&
555 $wgPreviewOnOpenNamespaces[$this->mTitle->getNamespace()] )
556 {
557 // Categories are special
558 return true;
559 } else {
560 return false;
561 }
562 }
563
564 /**
565 * Does this EditPage class support section editing?
566 * This is used by EditPage subclasses to indicate their ui cannot handle section edits
567 *
568 * @return bool
569 */
570 protected function isSectionEditSupported() {
571 return true;
572 }
573
574 /**
575 * Returns the URL to use in the form's action attribute.
576 * This is used by EditPage subclasses when simply customizing the action
577 * variable in the constructor is not enough. This can be used when the
578 * EditPage lives inside of a Special page rather than a custom page action.
579 *
580 * @param Title $title The title for which is being edited (where we go to for &action= links)
581 * @return string
582 */
583 protected function getActionURL( Title $title ) {
584 return $title->getLocalURL( array( 'action' => $this->action ) );
585 }
586
587 /**
588 * @todo document
589 * @param $request
590 */
591 function importFormData( &$request ) {
592 global $wgLang, $wgUser;
593
594 wfProfileIn( __METHOD__ );
595
596 # Section edit can come from either the form or a link
597 $this->section = $request->getVal( 'wpSection', $request->getVal( 'section' ) );
598
599 if ( $request->wasPosted() ) {
600 # These fields need to be checked for encoding.
601 # Also remove trailing whitespace, but don't remove _initial_
602 # whitespace from the text boxes. This may be significant formatting.
603 $this->textbox1 = $this->safeUnicodeInput( $request, 'wpTextbox1' );
604 if ( !$request->getCheck('wpTextbox2') ) {
605 // Skip this if wpTextbox2 has input, it indicates that we came
606 // from a conflict page with raw page text, not a custom form
607 // modified by subclasses
608 wfProfileIn( get_class($this)."::importContentFormData" );
609 $textbox1 = $this->importContentFormData( $request );
610 if ( isset($textbox1) )
611 $this->textbox1 = $textbox1;
612 wfProfileOut( get_class($this)."::importContentFormData" );
613 }
614 $this->mMetaData = rtrim( $request->getText( 'metadata' ) );
615 # Truncate for whole multibyte characters. +5 bytes for ellipsis
616 $this->summary = $wgLang->truncate( $request->getText( 'wpSummary' ), 250, '' );
617
618 # Remove extra headings from summaries and new sections.
619 $this->summary = preg_replace('/^\s*=+\s*(.*?)\s*=+\s*$/', '$1', $this->summary);
620
621 $this->edittime = $request->getVal( 'wpEdittime' );
622 $this->starttime = $request->getVal( 'wpStarttime' );
623
624 $this->scrolltop = $request->getIntOrNull( 'wpScrolltop' );
625
626 if ( is_null( $this->edittime ) ) {
627 # If the form is incomplete, force to preview.
628 wfDebug( __METHOD__ . ": Form data appears to be incomplete\n" );
629 wfDebug( "POST DATA: " . var_export( $_POST, true ) . "\n" );
630 $this->preview = true;
631 } else {
632 /* Fallback for live preview */
633 $this->preview = $request->getCheck( 'wpPreview' ) || $request->getCheck( 'wpLivePreview' );
634 $this->diff = $request->getCheck( 'wpDiff' );
635
636 // Remember whether a save was requested, so we can indicate
637 // if we forced preview due to session failure.
638 $this->mTriedSave = !$this->preview;
639
640 if ( $this->tokenOk( $request ) ) {
641 # Some browsers will not report any submit button
642 # if the user hits enter in the comment box.
643 # The unmarked state will be assumed to be a save,
644 # if the form seems otherwise complete.
645 wfDebug( __METHOD__ . ": Passed token check.\n" );
646 } else if ( $this->diff ) {
647 # Failed token check, but only requested "Show Changes".
648 wfDebug( __METHOD__ . ": Failed token check; Show Changes requested.\n" );
649 } else {
650 # Page might be a hack attempt posted from
651 # an external site. Preview instead of saving.
652 wfDebug( __METHOD__ . ": Failed token check; forcing preview\n" );
653 $this->preview = true;
654 }
655 }
656 $this->save = !$this->preview && !$this->diff;
657 if ( !preg_match( '/^\d{14}$/', $this->edittime ) ) {
658 $this->edittime = null;
659 }
660
661 if ( !preg_match( '/^\d{14}$/', $this->starttime ) ) {
662 $this->starttime = null;
663 }
664
665 $this->recreate = $request->getCheck( 'wpRecreate' );
666
667 $this->minoredit = $request->getCheck( 'wpMinoredit' );
668 $this->watchthis = $request->getCheck( 'wpWatchthis' );
669
670 # Don't force edit summaries when a user is editing their own user or talk page
671 if ( ( $this->mTitle->mNamespace == NS_USER || $this->mTitle->mNamespace == NS_USER_TALK ) &&
672 $this->mTitle->getText() == $wgUser->getName() )
673 {
674 $this->allowBlankSummary = true;
675 } else {
676 $this->allowBlankSummary = $request->getBool( 'wpIgnoreBlankSummary' ) || !$wgUser->getOption( 'forceeditsummary');
677 }
678
679 $this->autoSumm = $request->getText( 'wpAutoSummary' );
680 } else {
681 # Not a posted form? Start with nothing.
682 wfDebug( __METHOD__ . ": Not a posted form.\n" );
683 $this->textbox1 = '';
684 $this->mMetaData = '';
685 $this->summary = '';
686 $this->edittime = '';
687 $this->starttime = wfTimestampNow();
688 $this->edit = false;
689 $this->preview = false;
690 $this->save = false;
691 $this->diff = false;
692 $this->minoredit = false;
693 $this->watchthis = $request->getBool( 'watchthis', false ); // Watch may be overriden by request parameters
694 $this->recreate = false;
695
696 if ( $this->section == 'new' && $request->getVal( 'preloadtitle' ) ) {
697 $this->summary = $request->getVal( 'preloadtitle' );
698 }
699 elseif ( $this->section != 'new' && $request->getVal( 'summary' ) ) {
700 $this->summary = $request->getText( 'summary' );
701 }
702
703 if ( $request->getVal( 'minor' ) ) {
704 $this->minoredit = true;
705 }
706 }
707
708 $this->bot = $request->getBool( 'bot', true );
709 $this->nosummary = $request->getBool( 'nosummary' );
710
711 // FIXME: unused variable?
712 $this->oldid = $request->getInt( 'oldid' );
713
714 $this->live = $request->getCheck( 'live' );
715 $this->editintro = $request->getText( 'editintro',
716 // Custom edit intro for new sections
717 $this->section === 'new' ? 'MediaWiki:addsection-editintro' : '' );
718
719 wfProfileOut( __METHOD__ );
720
721 // Allow extensions to modify form data
722 wfRunHooks( 'EditPage::importFormData', array( $this, $request ) );
723 }
724
725 /**
726 * Subpage overridable method for extracting the page content data from the
727 * posted form to be placed in $this->textbox1, if using customized input
728 * this method should be overrided and return the page text that will be used
729 * for saving, preview parsing and so on...
730 *
731 * @praram WebRequest $request
732 */
733 protected function importContentFormData( &$request ) {
734 return; // Don't do anything, EditPage already extracted wpTextbox1
735 }
736
737 /**
738 * Make sure the form isn't faking a user's credentials.
739 *
740 * @param $request WebRequest
741 * @return bool
742 * @private
743 */
744 function tokenOk( &$request ) {
745 global $wgUser;
746 $token = $request->getVal( 'wpEditToken' );
747 $this->mTokenOk = $wgUser->matchEditToken( $token );
748 $this->mTokenOkExceptSuffix = $wgUser->matchEditTokenNoSuffix( $token );
749 return $this->mTokenOk;
750 }
751
752 /**
753 * Show all applicable editing introductions
754 */
755 protected function showIntro() {
756 global $wgOut, $wgUser;
757 if ( $this->suppressIntro ) {
758 return;
759 }
760
761 $namespace = $this->mTitle->getNamespace();
762
763 if ( $namespace == NS_MEDIAWIKI ) {
764 # Show a warning if editing an interface message
765 $wgOut->wrapWikiMsg( "<div class='mw-editinginterface'>\n$1</div>", 'editinginterface' );
766 }
767
768 # Show a warning message when someone creates/edits a user (talk) page but the user does not exists
769 if ( $namespace == NS_USER || $namespace == NS_USER_TALK ) {
770 $parts = explode( '/', $this->mTitle->getText(), 2 );
771 $username = $parts[0];
772 $id = User::idFromName( $username );
773 $ip = User::isIP( $username );
774 if ( $id == 0 && !$ip ) {
775 $wgOut->wrapWikiMsg( "<div class=\"mw-userpage-userdoesnotexist error\">\n$1</div>",
776 array( 'userpage-userdoesnotexist', $username ) );
777 }
778 }
779 # Try to add a custom edit intro, or use the standard one if this is not possible.
780 if ( !$this->showCustomIntro() && !$this->mTitle->exists() ) {
781 if ( $wgUser->isLoggedIn() ) {
782 $wgOut->wrapWikiMsg( "<div class=\"mw-newarticletext\">\n$1</div>", 'newarticletext' );
783 } else {
784 $wgOut->wrapWikiMsg( "<div class=\"mw-newarticletextanon\">\n$1</div>", 'newarticletextanon' );
785 }
786 }
787 # Give a notice if the user is editing a deleted/moved page...
788 if ( !$this->mTitle->exists() ) {
789 LogEventsList::showLogExtract( $wgOut, array( 'delete', 'move' ), $this->mTitle->getPrefixedText(),
790 '', array( 'lim' => 10,
791 'conds' => array( "log_action != 'revision'" ),
792 'showIfEmpty' => false,
793 'msgKey' => array( 'recreate-moveddeleted-warn') )
794 );
795 }
796 }
797
798 /**
799 * Attempt to show a custom editing introduction, if supplied
800 *
801 * @return bool
802 */
803 protected function showCustomIntro() {
804 if ( $this->editintro ) {
805 $title = Title::newFromText( $this->editintro );
806 if ( $title instanceof Title && $title->exists() && $title->userCanRead() ) {
807 global $wgOut;
808 $revision = Revision::newFromTitle( $title );
809 $wgOut->addWikiTextTitleTidy( $revision->getText(), $this->mTitle );
810 return true;
811 } else {
812 return false;
813 }
814 } else {
815 return false;
816 }
817 }
818
819 /**
820 * Attempt submission (no UI)
821 * @return one of the constants describing the result
822 */
823 function internalAttemptSave( &$result, $bot = false ) {
824 global $wgFilterCallback, $wgUser, $wgOut, $wgParser;
825 global $wgMaxArticleSize;
826
827 wfProfileIn( __METHOD__ );
828 wfProfileIn( __METHOD__ . '-checks' );
829
830 if ( !wfRunHooks( 'EditPage::attemptSave', array( $this ) ) )
831 {
832 wfDebug( "Hook 'EditPage::attemptSave' aborted article saving\n" );
833 return self::AS_HOOK_ERROR;
834 }
835
836 # Check image redirect
837 if ( $this->mTitle->getNamespace() == NS_FILE &&
838 Title::newFromRedirect( $this->textbox1 ) instanceof Title &&
839 !$wgUser->isAllowed( 'upload' ) ) {
840 if ( $wgUser->isAnon() ) {
841 return self::AS_IMAGE_REDIRECT_ANON;
842 } else {
843 return self::AS_IMAGE_REDIRECT_LOGGED;
844 }
845 }
846
847 # Reintegrate metadata
848 if ( $this->mMetaData != '' ) $this->textbox1 .= "\n" . $this->mMetaData ;
849 $this->mMetaData = '' ;
850
851 # Check for spam
852 $match = self::matchSummarySpamRegex( $this->summary );
853 if ( $match === false ) {
854 $match = self::matchSpamRegex( $this->textbox1 );
855 }
856 if ( $match !== false ) {
857 $result['spam'] = $match;
858 $ip = wfGetIP();
859 $pdbk = $this->mTitle->getPrefixedDBkey();
860 $match = str_replace( "\n", '', $match );
861 wfDebugLog( 'SpamRegex', "$ip spam regex hit [[$pdbk]]: \"$match\"" );
862 wfProfileOut( __METHOD__ . '-checks' );
863 wfProfileOut( __METHOD__ );
864 return self::AS_SPAM_ERROR;
865 }
866 if ( $wgFilterCallback && $wgFilterCallback( $this->mTitle, $this->textbox1, $this->section, $this->hookError, $this->summary ) ) {
867 # Error messages or other handling should be performed by the filter function
868 wfProfileOut( __METHOD__ . '-checks' );
869 wfProfileOut( __METHOD__ );
870 return self::AS_FILTERING;
871 }
872 if ( !wfRunHooks( 'EditFilter', array( $this, $this->textbox1, $this->section, &$this->hookError, $this->summary ) ) ) {
873 # Error messages etc. could be handled within the hook...
874 wfProfileOut( __METHOD__ . '-checks' );
875 wfProfileOut( __METHOD__ );
876 return self::AS_HOOK_ERROR;
877 } elseif ( $this->hookError != '' ) {
878 # ...or the hook could be expecting us to produce an error
879 wfProfileOut( __METHOD__ . '-checks' );
880 wfProfileOut( __METHOD__ );
881 return self::AS_HOOK_ERROR_EXPECTED;
882 }
883 if ( $wgUser->isBlockedFrom( $this->mTitle, false ) ) {
884 # Check block state against master, thus 'false'.
885 wfProfileOut( __METHOD__ . '-checks' );
886 wfProfileOut( __METHOD__ );
887 return self::AS_BLOCKED_PAGE_FOR_USER;
888 }
889 $this->kblength = (int)( strlen( $this->textbox1 ) / 1024 );
890 if ( $this->kblength > $wgMaxArticleSize ) {
891 // Error will be displayed by showEditForm()
892 $this->tooBig = true;
893 wfProfileOut( __METHOD__ . '-checks' );
894 wfProfileOut( __METHOD__ );
895 return self::AS_CONTENT_TOO_BIG;
896 }
897
898 if ( !$wgUser->isAllowed( 'edit' ) ) {
899 if ( $wgUser->isAnon() ) {
900 wfProfileOut( __METHOD__ . '-checks' );
901 wfProfileOut( __METHOD__ );
902 return self::AS_READ_ONLY_PAGE_ANON;
903 } else {
904 wfProfileOut( __METHOD__ . '-checks' );
905 wfProfileOut( __METHOD__ );
906 return self::AS_READ_ONLY_PAGE_LOGGED;
907 }
908 }
909
910 if ( wfReadOnly() ) {
911 wfProfileOut( __METHOD__ . '-checks' );
912 wfProfileOut( __METHOD__ );
913 return self::AS_READ_ONLY_PAGE;
914 }
915 if ( $wgUser->pingLimiter() ) {
916 wfProfileOut( __METHOD__ . '-checks' );
917 wfProfileOut( __METHOD__ );
918 return self::AS_RATE_LIMITED;
919 }
920
921 # If the article has been deleted while editing, don't save it without
922 # confirmation
923 if ( $this->wasDeletedSinceLastEdit() && !$this->recreate ) {
924 wfProfileOut( __METHOD__ . '-checks' );
925 wfProfileOut( __METHOD__ );
926 return self::AS_ARTICLE_WAS_DELETED;
927 }
928
929 wfProfileOut( __METHOD__ . '-checks' );
930
931 # If article is new, insert it.
932 $aid = $this->mTitle->getArticleID( GAID_FOR_UPDATE );
933 if ( 0 == $aid ) {
934 // Late check for create permission, just in case *PARANOIA*
935 if ( !$this->mTitle->userCan( 'create' ) ) {
936 wfDebug( __METHOD__ . ": no create permission\n" );
937 wfProfileOut( __METHOD__ );
938 return self::AS_NO_CREATE_PERMISSION;
939 }
940
941 # Don't save a new article if it's blank.
942 if ( $this->textbox1 == '' ) {
943 wfProfileOut( __METHOD__ );
944 return self::AS_BLANK_ARTICLE;
945 }
946
947 // Run post-section-merge edit filter
948 if ( !wfRunHooks( 'EditFilterMerged', array( $this, $this->textbox1, &$this->hookError, $this->summary ) ) ) {
949 # Error messages etc. could be handled within the hook...
950 wfProfileOut( __METHOD__ );
951 return self::AS_HOOK_ERROR;
952 } elseif ( $this->hookError != '' ) {
953 # ...or the hook could be expecting us to produce an error
954 wfProfileOut( __METHOD__ );
955 return self::AS_HOOK_ERROR_EXPECTED;
956 }
957
958 # Handle the user preference to force summaries here. Check if it's not a redirect.
959 if ( !$this->allowBlankSummary && !Title::newFromRedirect( $this->textbox1 ) ) {
960 if ( md5( $this->summary ) == $this->autoSumm ) {
961 $this->missingSummary = true;
962 wfProfileOut( __METHOD__ );
963 return self::AS_SUMMARY_NEEDED;
964 }
965 }
966
967 $isComment = ( $this->section == 'new' );
968
969 $this->mArticle->insertNewArticle( $this->textbox1, $this->summary,
970 $this->minoredit, $this->watchthis, false, $isComment, $bot );
971
972 wfProfileOut( __METHOD__ );
973 return self::AS_SUCCESS_NEW_ARTICLE;
974 }
975
976 # Article exists. Check for edit conflict.
977
978 $this->mArticle->clear(); # Force reload of dates, etc.
979 $this->mArticle->forUpdate( true ); # Lock the article
980
981 wfDebug( "timestamp: {$this->mArticle->getTimestamp()}, edittime: {$this->edittime}\n" );
982
983 if ( $this->mArticle->getTimestamp() != $this->edittime ) {
984 $this->isConflict = true;
985 if ( $this->section == 'new' ) {
986 if ( $this->mArticle->getUserText() == $wgUser->getName() &&
987 $this->mArticle->getComment() == $this->summary ) {
988 // Probably a duplicate submission of a new comment.
989 // This can happen when squid resends a request after
990 // a timeout but the first one actually went through.
991 wfDebug( __METHOD__ . ": duplicate new section submission; trigger edit conflict!\n" );
992 } else {
993 // New comment; suppress conflict.
994 $this->isConflict = false;
995 wfDebug( __METHOD__ .": conflict suppressed; new section\n" );
996 }
997 }
998 }
999 $userid = $wgUser->getId();
1000
1001 # Suppress edit conflict with self, except for section edits where merging is required.
1002 if ( $this->isConflict && $this->section == '' && $this->userWasLastToEdit( $userid, $this->edittime ) ) {
1003 wfDebug( __METHOD__ . ": Suppressing edit conflict, same user.\n" );
1004 $this->isConflict = false;
1005 }
1006
1007 if ( $this->isConflict ) {
1008 wfDebug( __METHOD__ . ": conflict! getting section '$this->section' for time '$this->edittime' (article time '" .
1009 $this->mArticle->getTimestamp() . "')\n" );
1010 $text = $this->mArticle->replaceSection( $this->section, $this->textbox1, $this->summary, $this->edittime );
1011 } else {
1012 wfDebug( __METHOD__ . ": getting section '$this->section'\n" );
1013 $text = $this->mArticle->replaceSection( $this->section, $this->textbox1, $this->summary );
1014 }
1015 if ( is_null( $text ) ) {
1016 wfDebug( __METHOD__ . ": activating conflict; section replace failed.\n" );
1017 $this->isConflict = true;
1018 $text = $this->textbox1; // do not try to merge here!
1019 } else if ( $this->isConflict ) {
1020 # Attempt merge
1021 if ( $this->mergeChangesInto( $text ) ) {
1022 // Successful merge! Maybe we should tell the user the good news?
1023 $this->isConflict = false;
1024 wfDebug( __METHOD__ . ": Suppressing edit conflict, successful merge.\n" );
1025 } else {
1026 $this->section = '';
1027 $this->textbox1 = $text;
1028 wfDebug( __METHOD__ . ": Keeping edit conflict, failed merge.\n" );
1029 }
1030 }
1031
1032 if ( $this->isConflict ) {
1033 wfProfileOut( __METHOD__ );
1034 return self::AS_CONFLICT_DETECTED;
1035 }
1036
1037 $oldtext = $this->mArticle->getContent();
1038
1039 // Run post-section-merge edit filter
1040 if ( !wfRunHooks( 'EditFilterMerged', array( $this, $text, &$this->hookError, $this->summary ) ) ) {
1041 # Error messages etc. could be handled within the hook...
1042 wfProfileOut( __METHOD__ );
1043 return self::AS_HOOK_ERROR;
1044 } elseif ( $this->hookError != '' ) {
1045 # ...or the hook could be expecting us to produce an error
1046 wfProfileOut( __METHOD__ );
1047 return self::AS_HOOK_ERROR_EXPECTED;
1048 }
1049
1050 # Handle the user preference to force summaries here, but not for null edits
1051 if ( $this->section != 'new' && !$this->allowBlankSummary && 0 != strcmp( $oldtext, $text )
1052 && !Title::newFromRedirect( $text ) ) # check if it's not a redirect
1053 {
1054 if ( md5( $this->summary ) == $this->autoSumm ) {
1055 $this->missingSummary = true;
1056 wfProfileOut( __METHOD__ );
1057 return self::AS_SUMMARY_NEEDED;
1058 }
1059 }
1060
1061 # And a similar thing for new sections
1062 if ( $this->section == 'new' && !$this->allowBlankSummary ) {
1063 if ( trim( $this->summary ) == '' ) {
1064 $this->missingSummary = true;
1065 wfProfileOut( __METHOD__ );
1066 return self::AS_SUMMARY_NEEDED;
1067 }
1068 }
1069
1070 # All's well
1071 wfProfileIn( __METHOD__ . '-sectionanchor' );
1072 $sectionanchor = '';
1073 if ( $this->section == 'new' ) {
1074 if ( $this->textbox1 == '' ) {
1075 $this->missingComment = true;
1076 wfProfileOut( __METHOD__ . '-sectionanchor' );
1077 wfProfileOut( __METHOD__ );
1078 return self::AS_TEXTBOX_EMPTY;
1079 }
1080 if ( $this->summary != '' ) {
1081 $sectionanchor = $wgParser->guessSectionNameFromWikiText( $this->summary );
1082 # This is a new section, so create a link to the new section
1083 # in the revision summary.
1084 $cleanSummary = $wgParser->stripSectionName( $this->summary );
1085 $this->summary = wfMsgForContent( 'newsectionsummary', $cleanSummary );
1086 }
1087 } elseif ( $this->section != '' ) {
1088 # Try to get a section anchor from the section source, redirect to edited section if header found
1089 # XXX: might be better to integrate this into Article::replaceSection
1090 # for duplicate heading checking and maybe parsing
1091 $hasmatch = preg_match( "/^ *([=]{1,6})(.*?)(\\1) *\\n/i", $this->textbox1, $matches );
1092 # we can't deal with anchors, includes, html etc in the header for now,
1093 # headline would need to be parsed to improve this
1094 if ( $hasmatch and strlen( $matches[2] ) > 0 ) {
1095 $sectionanchor = $wgParser->guessSectionNameFromWikiText( $matches[2] );
1096 }
1097 }
1098 wfProfileOut( __METHOD__ . '-sectionanchor' );
1099
1100 // Save errors may fall down to the edit form, but we've now
1101 // merged the section into full text. Clear the section field
1102 // so that later submission of conflict forms won't try to
1103 // replace that into a duplicated mess.
1104 $this->textbox1 = $text;
1105 $this->section = '';
1106
1107 // Check for length errors again now that the section is merged in
1108 $this->kblength = (int)( strlen( $text ) / 1024 );
1109 if ( $this->kblength > $wgMaxArticleSize ) {
1110 $this->tooBig = true;
1111 wfProfileOut( __METHOD__ );
1112 return self::AS_MAX_ARTICLE_SIZE_EXCEEDED;
1113 }
1114
1115 # update the article here
1116 if ( $this->mArticle->updateArticle( $text, $this->summary, $this->minoredit,
1117 $this->watchthis, $bot, $sectionanchor ) )
1118 {
1119 wfProfileOut( __METHOD__ );
1120 return self::AS_SUCCESS_UPDATE;
1121 } else {
1122 $this->isConflict = true;
1123 }
1124 wfProfileOut( __METHOD__ );
1125 return self::AS_END;
1126 }
1127
1128 /**
1129 * Check if no edits were made by other users since
1130 * the time a user started editing the page. Limit to
1131 * 50 revisions for the sake of performance.
1132 */
1133 protected function userWasLastToEdit( $id, $edittime ) {
1134 if( !$id ) return false;
1135 $dbw = wfGetDB( DB_MASTER );
1136 $res = $dbw->select( 'revision',
1137 'rev_user',
1138 array(
1139 'rev_page' => $this->mArticle->getId(),
1140 'rev_timestamp > '.$dbw->addQuotes( $dbw->timestamp($edittime) )
1141 ),
1142 __METHOD__,
1143 array( 'ORDER BY' => 'rev_timestamp ASC', 'LIMIT' => 50 ) );
1144 while( $row = $res->fetchObject() ) {
1145 if( $row->rev_user != $id ) {
1146 return false;
1147 }
1148 }
1149 return true;
1150 }
1151
1152 /**
1153 * Check given input text against $wgSpamRegex, and return the text of the first match.
1154 * @return mixed -- matching string or false
1155 */
1156 public static function matchSpamRegex( $text ) {
1157 global $wgSpamRegex;
1158 // For back compatibility, $wgSpamRegex may be a single string or an array of regexes.
1159 $regexes = (array)$wgSpamRegex;
1160 return self::matchSpamRegexInternal( $text, $regexes );
1161 }
1162
1163 /**
1164 * Check given input text against $wgSpamRegex, and return the text of the first match.
1165 * @return mixed -- matching string or false
1166 */
1167 public static function matchSummarySpamRegex( $text ) {
1168 global $wgSummarySpamRegex;
1169 $regexes = (array)$wgSummarySpamRegex;
1170 return self::matchSpamRegexInternal( $text, $regexes );
1171 }
1172
1173 protected static function matchSpamRegexInternal( $text, $regexes ) {
1174 foreach( $regexes as $regex ) {
1175 $matches = array();
1176 if( preg_match( $regex, $text, $matches ) ) {
1177 return $matches[0];
1178 }
1179 }
1180 return false;
1181 }
1182
1183 /**
1184 * Initialise form fields in the object
1185 * Called on the first invocation, e.g. when a user clicks an edit link
1186 * @returns bool -- if the requested section is valid
1187 */
1188 function initialiseForm() {
1189 global $wgUser;
1190 $this->edittime = $this->mArticle->getTimestamp();
1191 $this->textbox1 = $this->getContent( false );
1192 // activate checkboxes if user wants them to be always active
1193 # Sort out the "watch" checkbox
1194 if ( $wgUser->getOption( 'watchdefault' ) ) {
1195 # Watch all edits
1196 $this->watchthis = true;
1197 } elseif ( $wgUser->getOption( 'watchcreations' ) && !$this->mTitle->exists() ) {
1198 # Watch creations
1199 $this->watchthis = true;
1200 } elseif ( $this->mTitle->userIsWatching() ) {
1201 # Already watched
1202 $this->watchthis = true;
1203 }
1204 if ( $wgUser->getOption( 'minordefault' ) ) $this->minoredit = true;
1205 if ( $this->textbox1 === false ) return false;
1206 wfProxyCheck();
1207 return true;
1208 }
1209
1210 function setHeaders() {
1211 global $wgOut, $wgTitle;
1212 $wgOut->setRobotPolicy( 'noindex,nofollow' );
1213 if ( $this->formtype == 'preview' ) {
1214 $wgOut->setPageTitleActionText( wfMsg( 'preview' ) );
1215 }
1216 if ( $this->isConflict ) {
1217 $wgOut->setPageTitle( wfMsg( 'editconflict', $wgTitle->getPrefixedText() ) );
1218 } elseif ( $this->section != '' ) {
1219 $msg = $this->section == 'new' ? 'editingcomment' : 'editingsection';
1220 $wgOut->setPageTitle( wfMsg( $msg, $wgTitle->getPrefixedText() ) );
1221 } else {
1222 # Use the title defined by DISPLAYTITLE magic word when present
1223 if ( isset( $this->mParserOutput )
1224 && ( $dt = $this->mParserOutput->getDisplayTitle() ) !== false ) {
1225 $title = $dt;
1226 } else {
1227 $title = $wgTitle->getPrefixedText();
1228 }
1229 $wgOut->setPageTitle( wfMsg( 'editing', $title ) );
1230 }
1231 }
1232
1233 /**
1234 * Send the edit form and related headers to $wgOut
1235 * @param $formCallback Optional callable that takes an OutputPage
1236 * parameter; will be called during form output
1237 * near the top, for captchas and the like.
1238 */
1239 function showEditForm( $formCallback=null ) {
1240 global $wgOut, $wgUser, $wgTitle;
1241
1242 # If $wgTitle is null, that means we're in API mode.
1243 # Some hook probably called this function without checking
1244 # for is_null($wgTitle) first. Bail out right here so we don't
1245 # do lots of work just to discard it right after.
1246 if ( is_null( $wgTitle ) )
1247 return;
1248
1249 wfProfileIn( __METHOD__ );
1250
1251 $sk = $wgUser->getSkin();
1252
1253 #need to parse the preview early so that we know which templates are used,
1254 #otherwise users with "show preview after edit box" will get a blank list
1255 #we parse this near the beginning so that setHeaders can do the title
1256 #setting work instead of leaving it in getPreviewText
1257 $previewOutput = '';
1258 if ( $this->formtype == 'preview' ) {
1259 $previewOutput = $this->getPreviewText();
1260 }
1261
1262 wfRunHooks( 'EditPage::showEditForm:initial', array( &$this ) );
1263
1264 $this->setHeaders();
1265
1266 # Enabled article-related sidebar, toplinks, etc.
1267 $wgOut->setArticleRelated( true );
1268
1269 if ( $this->showHeader() === false )
1270 return;
1271
1272 $action = htmlspecialchars($this->getActionURL($wgTitle));
1273
1274 if ( $wgUser->getOption( 'showtoolbar' ) and !$this->isCssJsSubpage ) {
1275 # prepare toolbar for edit buttons
1276 $toolbar = EditPage::getEditToolbar();
1277 } else {
1278 $toolbar = '';
1279 }
1280
1281
1282 $wgOut->addHTML( $this->editFormPageTop );
1283
1284 if ( $wgUser->getOption( 'previewontop' ) ) {
1285 $this->displayPreviewArea( $previewOutput, true );
1286 }
1287
1288 $wgOut->addHTML( $this->editFormTextTop );
1289
1290 $templates = $this->getTemplates();
1291 $formattedtemplates = $sk->formatTemplates( $templates, $this->preview, $this->section != '');
1292
1293 $hiddencats = $this->mArticle->getHiddenCategories();
1294 $formattedhiddencats = $sk->formatHiddenCategories( $hiddencats );
1295
1296 if ( $this->wasDeletedSinceLastEdit() && 'save' != $this->formtype ) {
1297 $wgOut->wrapWikiMsg(
1298 "<div class='error mw-deleted-while-editing'>\n$1</div>",
1299 'deletedwhileediting' );
1300 } elseif ( $this->wasDeletedSinceLastEdit() ) {
1301 // Hide the toolbar and edit area, user can click preview to get it back
1302 // Add an confirmation checkbox and explanation.
1303 $toolbar = '';
1304 // @todo move this to a cleaner conditional instead of blanking a variable
1305 }
1306 $wgOut->addHTML( <<<HTML
1307 {$toolbar}
1308 <form id="editform" name="editform" method="post" action="$action" enctype="multipart/form-data">
1309 HTML
1310 );
1311
1312 if ( is_callable( $formCallback ) ) {
1313 call_user_func_array( $formCallback, array( &$wgOut ) );
1314 }
1315
1316 wfRunHooks( 'EditPage::showEditForm:fields', array( &$this, &$wgOut ) );
1317
1318 // Put these up at the top to ensure they aren't lost on early form submission
1319 $this->showFormBeforeText();
1320
1321 if ( $this->wasDeletedSinceLastEdit() && 'save' == $this->formtype ) {
1322 $wgOut->addHTML(
1323 '<div class="mw-confirm-recreate">' .
1324 $wgOut->parse( wfMsg( 'confirmrecreate', $this->lastDelete->user_name , $this->lastDelete->log_comment ) ) .
1325 Xml::checkLabel( wfMsg( 'recreate' ), 'wpRecreate', 'wpRecreate', false,
1326 array( 'title' => $sk->titleAttrib( 'recreate' ), 'tabindex' => 1, 'id' => 'wpRecreate' )
1327 ) .
1328 '</div>'
1329 );
1330 }
1331
1332 # If a blank edit summary was previously provided, and the appropriate
1333 # user preference is active, pass a hidden tag as wpIgnoreBlankSummary. This will stop the
1334 # user being bounced back more than once in the event that a summary
1335 # is not required.
1336 #####
1337 # For a bit more sophisticated detection of blank summaries, hash the
1338 # automatic one and pass that in the hidden field wpAutoSummary.
1339 if ( $this->missingSummary ||
1340 ( $this->section == 'new' && $this->nosummary ) )
1341 $wgOut->addHTML( Xml::hidden( 'wpIgnoreBlankSummary', true ) );
1342 $autosumm = $this->autoSumm ? $this->autoSumm : md5( $this->summary );
1343 $wgOut->addHTML( Xml::hidden( 'wpAutoSummary', $autosumm ) );
1344
1345 $wgOut->addHTML( Xml::hidden( 'oldid', $this->mArticle->getOldID() ) );
1346
1347 if ( $this->section == 'new' ) {
1348 $this->showSummaryInput( true, $this->summary );
1349 $wgOut->addHTML( $this->getSummaryPreview( true, $this->summary ) );
1350 }
1351
1352 $wgOut->addHTML( $this->editFormTextBeforeContent );
1353
1354 if ( $this->isConflict ) {
1355 // In an edit conflict bypass the overrideable content form method
1356 // and fallback to the raw wpTextbox1 since editconflicts can't be
1357 // resolved between page source edits and custom ui edits using the
1358 // custom edit ui.
1359 $this->showTextbox1();
1360 } else {
1361 $this->showContentForm();
1362 }
1363
1364 $wgOut->addHTML( $this->editFormTextAfterContent );
1365
1366 $wgOut->addWikiText( $this->getCopywarn() );
1367 if ( isset($this->editFormTextAfterWarn) && $this->editFormTextAfterWarn !== '' )
1368 $wgOut->addHTML( $this->editFormTextAfterWarn );
1369
1370 global $wgUseMetadataEdit;
1371 if ( $wgUseMetadataEdit )
1372 $this->showMetaData();
1373
1374 $this->showStandardInputs();
1375
1376 $this->showFormAfterText();
1377
1378 $this->showTosSummary();
1379 $this->showEditTools();
1380
1381 $wgOut->addHTML( <<<HTML
1382 {$this->editFormTextAfterTools}
1383 <div class='templatesUsed'>
1384 {$formattedtemplates}
1385 </div>
1386 <div class='hiddencats'>
1387 {$formattedhiddencats}
1388 </div>
1389 HTML
1390 );
1391
1392 if ( $this->isConflict )
1393 $this->showConflict();
1394
1395 $wgOut->addHTML( $this->editFormTextBottom );
1396 $wgOut->addHTML( "</form>\n" );
1397 if ( !$wgUser->getOption( 'previewontop' ) ) {
1398 $this->displayPreviewArea( $previewOutput, false );
1399 }
1400
1401 wfProfileOut( __METHOD__ );
1402 }
1403
1404 protected function showHeader() {
1405 global $wgOut, $wgUser, $wgTitle, $wgMaxArticleSize, $wgLang;
1406 if ( $this->isConflict ) {
1407 $wgOut->wrapWikiMsg( "<div class='mw-explainconflict'>\n$1</div>", 'explainconflict' );
1408 $this->edittime = $this->mArticle->getTimestamp();
1409 } else {
1410 if ( $this->section != '' && !$this->isSectionEditSupported() ) {
1411 // We use $this->section to much before this and getVal('wgSection') directly in other places
1412 // at this point we can't reset $this->section to '' to fallback to non-section editing.
1413 // Someone is welcome to try refactoring though
1414 $wgOut->showErrorPage( 'sectioneditnotsupported-title', 'sectioneditnotsupported-text' );
1415 return false;
1416 }
1417
1418 if ( $this->section != '' && $this->section != 'new' ) {
1419 $matches = array();
1420 if ( !$this->summary && !$this->preview && !$this->diff ) {
1421 preg_match( "/^(=+)(.+)\\1/mi", $this->textbox1, $matches );
1422 if ( !empty( $matches[2] ) ) {
1423 global $wgParser;
1424 $this->summary = "/* " .
1425 $wgParser->stripSectionName(trim($matches[2])) .
1426 " */ ";
1427 }
1428 }
1429 }
1430
1431 if ( $this->missingComment ) {
1432 $wgOut->wrapWikiMsg( "<div id='mw-missingcommenttext'>\n$1</div>", 'missingcommenttext' );
1433 }
1434
1435 if ( $this->missingSummary && $this->section != 'new' ) {
1436 $wgOut->wrapWikiMsg( "<div id='mw-missingsummary'>\n$1</div>", 'missingsummary' );
1437 }
1438
1439 if ( $this->missingSummary && $this->section == 'new' ) {
1440 $wgOut->wrapWikiMsg( "<div id='mw-missingcommentheader'>\n$1</div>", 'missingcommentheader' );
1441 }
1442
1443 if ( $this->hookError !== '' ) {
1444 $wgOut->addWikiText( $this->hookError );
1445 }
1446
1447 if ( !$this->checkUnicodeCompliantBrowser() ) {
1448 $wgOut->addWikiMsg( 'nonunicodebrowser' );
1449 }
1450
1451 if ( isset( $this->mArticle ) && isset( $this->mArticle->mRevision ) ) {
1452 // Let sysop know that this will make private content public if saved
1453
1454 if ( !$this->mArticle->mRevision->userCan( Revision::DELETED_TEXT ) ) {
1455 $wgOut->wrapWikiMsg( "<div class='mw-warning plainlinks'>\n$1</div>\n", 'rev-deleted-text-permission' );
1456 } else if ( $this->mArticle->mRevision->isDeleted( Revision::DELETED_TEXT ) ) {
1457 $wgOut->wrapWikiMsg( "<div class='mw-warning plainlinks'>\n$1</div>\n", 'rev-deleted-text-view' );
1458 }
1459
1460 if ( !$this->mArticle->mRevision->isCurrent() ) {
1461 $this->mArticle->setOldSubtitle( $this->mArticle->mRevision->getId() );
1462 $wgOut->addWikiMsg( 'editingold' );
1463 }
1464 }
1465 }
1466
1467 if ( wfReadOnly() ) {
1468 $wgOut->wrapWikiMsg( "<div id=\"mw-read-only-warning\">\n$1\n</div>", array( 'readonlywarning', wfReadOnlyReason() ) );
1469 } elseif ( $wgUser->isAnon() && $this->formtype != 'preview' ) {
1470 $wgOut->wrapWikiMsg( "<div id=\"mw-anon-edit-warning\">\n$1</div>", 'anoneditwarning' );
1471 } else {
1472 if ( $this->isCssJsSubpage ) {
1473 # Check the skin exists
1474 if ( !$this->isValidCssJsSubpage ) {
1475 $wgOut->addWikiMsg( 'userinvalidcssjstitle', $wgTitle->getSkinFromCssJsSubpage() );
1476 }
1477 if ( $this->formtype !== 'preview' ) {
1478 if ( $this->isCssSubpage )
1479 $wgOut->addWikiMsg( 'usercssyoucanpreview' );
1480 if ( $this->isJsSubpage )
1481 $wgOut->addWikiMsg( 'userjsyoucanpreview' );
1482 }
1483 }
1484 }
1485
1486 if ( $this->mTitle->getNamespace() != NS_MEDIAWIKI && $this->mTitle->isProtected( 'edit' ) ) {
1487 # Is the title semi-protected?
1488 if ( $this->mTitle->isSemiProtected() ) {
1489 $noticeMsg = 'semiprotectedpagewarning';
1490 } else {
1491 # Then it must be protected based on static groups (regular)
1492 $noticeMsg = 'protectedpagewarning';
1493 }
1494 LogEventsList::showLogExtract( $wgOut, 'protect', $this->mTitle->getPrefixedText(), '',
1495 array( 'lim' => 1, 'msgKey' => array( $noticeMsg ) ) );
1496 }
1497 if ( $this->mTitle->isCascadeProtected() ) {
1498 # Is this page under cascading protection from some source pages?
1499 list($cascadeSources, /* $restrictions */) = $this->mTitle->getCascadeProtectionSources();
1500 $notice = "<div class='mw-cascadeprotectedwarning'>\n$1\n";
1501 $cascadeSourcesCount = count( $cascadeSources );
1502 if ( $cascadeSourcesCount > 0 ) {
1503 # Explain, and list the titles responsible
1504 foreach( $cascadeSources as $page ) {
1505 $notice .= '* [[:' . $page->getPrefixedText() . "]]\n";
1506 }
1507 }
1508 $notice .= '</div>';
1509 $wgOut->wrapWikiMsg( $notice, array( 'cascadeprotectedwarning', $cascadeSourcesCount ) );
1510 }
1511 if ( !$this->mTitle->exists() && $this->mTitle->getRestrictions( 'create' ) ) {
1512 LogEventsList::showLogExtract( $wgOut, 'protect', $this->mTitle->getPrefixedText(), '',
1513 array( 'lim' => 1,
1514 'showIfEmpty' => false,
1515 'msgKey' => array( 'titleprotectedwarning' ),
1516 'wrap' => "<div class=\"mw-titleprotectedwarning\">\n$1</div>" ) );
1517 }
1518
1519 if ( $this->kblength === false ) {
1520 $this->kblength = (int)( strlen( $this->textbox1 ) / 1024 );
1521 }
1522
1523 if ( $this->tooBig || $this->kblength > $wgMaxArticleSize ) {
1524 $wgOut->addHTML( "<div class='error' id='mw-edit-longpageerror'>\n" );
1525 $wgOut->addWikiMsg( 'longpageerror', $wgLang->formatNum( $this->kblength ), $wgLang->formatNum( $wgMaxArticleSize ) );
1526 $wgOut->addHTML( "</div>\n" );
1527 } elseif ( $this->kblength > 29 ) {
1528 $wgOut->addHTML( "<div id='mw-edit-longpagewarning'>\n" );
1529 $wgOut->addWikiMsg( 'longpagewarning', $wgLang->formatNum( $this->kblength ) );
1530 $wgOut->addHTML( "</div>\n" );
1531 }
1532 }
1533
1534 /**
1535 * Standard summary input and label (wgSummary), abstracted so EditPage
1536 * subclasses may reorganize the form.
1537 * Note that you do not need to worry about the label's for=, it will be
1538 * inferred by the id given to the input. You can remove them both by
1539 * passing array( 'id' => false ) to $userInputAttrs.
1540 *
1541 * @param $summary The value of the summary input
1542 * @param $labelText The html to place inside the label
1543 * @param $userInputAttrs An array of attrs to use on the input
1544 * @param $userSpanAttrs An array of attrs to use on the span inside the label
1545 *
1546 * @return array An array in the format array( $label, $input )
1547 */
1548 function getSummaryInput($summary = "", $labelText = null, $inputAttrs = null, $spanLabelAttrs = null) {
1549 $inputAttrs = ( is_array($inputAttrs) ? $inputAttrs : array() ) + array(
1550 'id' => 'wpSummary',
1551 'maxlength' => '200',
1552 'tabindex' => '2',
1553 'size' => 60,
1554 'spellcheck' => 'true',
1555 );
1556
1557 $spanLabelAttrs = ( is_array($spanLabelAttrs) ? $spanLabelAttrs : array() ) + array(
1558 'class' => $this->missingSummary ? 'mw-summarymissed' : 'mw-summary',
1559 'id' => "wpSummaryLabel"
1560 );
1561
1562 $label = null;
1563 if ( $labelText ) {
1564 $label = Xml::tags( 'label', $inputAttrs['id'] ? array( 'for' => $inputAttrs['id'] ) : null, $labelText );
1565 $label = Xml::tags( 'span', $spanLabelAttrs, $label );
1566 }
1567
1568 $input = Html::input( 'wpSummary', $summary, 'text', $inputAttrs );
1569
1570 return array( $label, $input );
1571 }
1572
1573 /**
1574 * @param bool $isSubjectPreview true if this is the section subject/title
1575 * up top, or false if this is the comment
1576 * summary down below the textarea
1577 * @param string $summary The text of the summary to display
1578 * @return string
1579 */
1580 protected function showSummaryInput( $isSubjectPreview, $summary = "" ) {
1581 global $wgOut, $wgContLang;
1582 # Add a class if 'missingsummary' is triggered to allow styling of the summary line
1583 $summaryClass = $this->missingSummary ? 'mw-summarymissed' : 'mw-summary';
1584 if ( $isSubjectPreview ) {
1585 if ( $this->nosummary )
1586 return;
1587 } else {
1588 if ( !$this->mShowSummaryField )
1589 return;
1590 }
1591 $summary = $wgContLang->recodeForEdit( $summary );
1592 $labelText = wfMsgExt( $isSubjectPreview ? 'subject' : 'summary', 'parseinline' );
1593 list($label, $input) = $this->getSummaryInput($summary, $labelText, array( 'class' => $summaryClass ), array());
1594 $wgOut->addHTML("{$label} {$input}");
1595 }
1596
1597 /**
1598 * @param bool $isSubjectPreview true if this is the section subject/title
1599 * up top, or false if this is the comment
1600 * summary down below the textarea
1601 * @param string $summary The text of the summary to display
1602 * @return string
1603 */
1604 protected function getSummaryPreview( $isSubjectPreview, $summary = "" ) {
1605 if ( !$summary || ( !$this->preview && !$this->diff ) )
1606 return "";
1607
1608 global $wgParser, $wgUser;
1609 $sk = $wgUser->getSkin();
1610
1611 if ( $isSubjectPreview )
1612 $summary = wfMsgForContent( 'newsectionsummary', $wgParser->stripSectionName( $summary ) );
1613
1614 $summary = wfMsgExt( 'subject-preview', 'parseinline' ) . $sk->commentBlock( $summary, $this->mTitle, !!$isSubjectPreview );
1615 return Xml::tags( 'div', array( 'class' => 'mw-summary-preview' ), $summary );
1616 }
1617
1618 protected function showFormBeforeText() {
1619 global $wgOut;
1620 $section = htmlspecialchars( $this->section );
1621 $wgOut->addHTML( <<<INPUTS
1622 <input type='hidden' value="{$section}" name="wpSection" />
1623 <input type='hidden' value="{$this->starttime}" name="wpStarttime" />
1624 <input type='hidden' value="{$this->edittime}" name="wpEdittime" />
1625 <input type='hidden' value="{$this->scrolltop}" name="wpScrolltop" id="wpScrolltop" />
1626
1627 INPUTS
1628 );
1629 if ( !$this->checkUnicodeCompliantBrowser() )
1630 $wgOut->addHTML(Xml::hidden( 'safemode', '1' ));
1631 }
1632
1633 protected function showFormAfterText() {
1634 global $wgOut, $wgUser;
1635 /**
1636 * To make it harder for someone to slip a user a page
1637 * which submits an edit form to the wiki without their
1638 * knowledge, a random token is associated with the login
1639 * session. If it's not passed back with the submission,
1640 * we won't save the page, or render user JavaScript and
1641 * CSS previews.
1642 *
1643 * For anon editors, who may not have a session, we just
1644 * include the constant suffix to prevent editing from
1645 * broken text-mangling proxies.
1646 */
1647 $wgOut->addHTML( "\n" . Xml::hidden( "wpEditToken", $wgUser->editToken() ) . "\n" );
1648 }
1649
1650 /**
1651 * Subpage overridable method for printing the form for page content editing
1652 * By default this simply outputs wpTextbox1
1653 * Subclasses can override this to provide a custom UI for editing;
1654 * be it a form, or simply wpTextbox1 with a modified content that will be
1655 * reverse modified when extracted from the post data.
1656 * Note that this is basically the inverse for importContentFormData
1657 *
1658 * @praram WebRequest $request
1659 */
1660 protected function showContentForm() {
1661 $this->showTextbox1();
1662 }
1663
1664 /**
1665 * Method to output wpTextbox1
1666 * The $textoverride method can be used by subclasses overriding showContentForm
1667 * to pass back to this method.
1668 *
1669 * @param array $customAttribs An array of html attributes to use in the textarea
1670 * @param string $textoverride Optional text to override $this->textarea1 with
1671 */
1672 protected function showTextbox1($customAttribs = null, $textoverride = null) {
1673 $classes = array(); // Textarea CSS
1674 if ( $this->mTitle->getNamespace() != NS_MEDIAWIKI && $this->mTitle->isProtected( 'edit' ) ) {
1675 # Is the title semi-protected?
1676 if ( $this->mTitle->isSemiProtected() ) {
1677 $classes[] = 'mw-textarea-sprotected';
1678 } else {
1679 # Then it must be protected based on static groups (regular)
1680 $classes[] = 'mw-textarea-protected';
1681 }
1682 }
1683 $attribs = array( 'tabindex' => 1 );
1684 if ( is_array($customAttribs) )
1685 $attribs += $customAttribs;
1686
1687 if ( $this->wasDeletedSinceLastEdit() )
1688 $attribs['type'] = 'hidden';
1689 if ( !empty( $classes ) ) {
1690 if ( isset($attribs['class']) )
1691 $classes[] = $attribs['class'];
1692 $attribs['class'] = implode( ' ', $classes );
1693 }
1694
1695 $this->showTextbox( isset($textoverride) ? $textoverride : $this->textbox1, 'wpTextbox1', $attribs );
1696 }
1697
1698 protected function showTextbox2() {
1699 $this->showTextbox( $this->textbox2, 'wpTextbox2', array( 'tabindex' => 6 ) );
1700 }
1701
1702 protected function showTextbox( $content, $name, $customAttribs = array() ) {
1703 global $wgOut, $wgUser;
1704
1705 $wikitext = $this->safeUnicodeOutput( $content );
1706 if ( $wikitext !== '' ) {
1707 // Ensure there's a newline at the end, otherwise adding lines
1708 // is awkward.
1709 // But don't add a newline if the ext is empty, or Firefox in XHTML
1710 // mode will show an extra newline. A bit annoying.
1711 $wikitext .= "\n";
1712 }
1713
1714 $attribs = $customAttribs + array(
1715 'accesskey' => ',',
1716 'id' => $name,
1717 'cols' => $wgUser->getIntOption( 'cols' ),
1718 'rows' => $wgUser->getIntOption( 'rows' ),
1719 'style' => '' // avoid php notices when appending for editwidth preference (appending allows customAttribs['style'] to still work
1720 );
1721
1722 if ( $wgUser->getOption( 'editwidth' ) )
1723 $attribs['style'] .= 'width: 100%';
1724
1725 $wgOut->addHTML( Html::textarea( $name, $wikitext, $attribs ) );
1726 }
1727
1728 protected function showMetaData() {
1729 global $wgOut, $wgContLang, $wgUser;
1730 $metadata = htmlspecialchars( $wgContLang->recodeForEdit( $this->mMetaData ) );
1731 $ew = $wgUser->getOption( 'editwidth' ) ? ' style="width:100%"' : '';
1732 $cols = $wgUser->getIntOption( 'cols' );
1733 $metadata = wfMsgWikiHtml( 'metadata_help' ) . "<textarea name='metadata' rows='3' cols='{$cols}'{$ew}>{$metadata}</textarea>" ;
1734 $wgOut->addHTML( $metadata );
1735 }
1736
1737 protected function displayPreviewArea( $previewOutput, $isOnTop = false ) {
1738 global $wgOut;
1739 $classes = array();
1740 if ( $isOnTop )
1741 $classes[] = 'ontop';
1742
1743 $attribs = array( 'id' => 'wikiPreview', 'class' => implode( ' ', $classes ) );
1744
1745 if ( $this->formtype != 'preview' )
1746 $attribs['style'] = 'display: none;';
1747
1748 $wgOut->addHTML( Xml::openElement( 'div', $attribs ) );
1749
1750 if ( $this->formtype == 'preview' ) {
1751 $this->showPreview( $previewOutput );
1752 }
1753
1754 $wgOut->addHTML( '</div>' );
1755
1756 if ( $this->formtype == 'diff') {
1757 $this->showDiff();
1758 }
1759 }
1760
1761 /**
1762 * Append preview output to $wgOut.
1763 * Includes category rendering if this is a category page.
1764 *
1765 * @param string $text The HTML to be output for the preview.
1766 */
1767 protected function showPreview( $text ) {
1768 global $wgOut;
1769 if ( $this->mTitle->getNamespace() == NS_CATEGORY) {
1770 $this->mArticle->openShowCategory();
1771 }
1772 # This hook seems slightly odd here, but makes things more
1773 # consistent for extensions.
1774 wfRunHooks( 'OutputPageBeforeHTML',array( &$wgOut, &$text ) );
1775 $wgOut->addHTML( $text );
1776 if ( $this->mTitle->getNamespace() == NS_CATEGORY ) {
1777 $this->mArticle->closeShowCategory();
1778 }
1779 }
1780
1781 protected function showTosSummary() {
1782 $msg = 'editpage-tos-summary';
1783 // Give a chance for site and per-namespace customizations of
1784 // terms of service summary link that might exist separately
1785 // from the copyright notice.
1786 //
1787 // This will display between the save button and the edit tools,
1788 // so should remain short!
1789 wfRunHooks( 'EditPageTosSummary', array( $this->mTitle, &$msg ) );
1790 $text = wfMsg( $msg );
1791 if( !wfEmptyMsg( $msg, $text ) && $text !== '-' ) {
1792 global $wgOut;
1793 $wgOut->addHTML( '<div class="mw-tos-summary">' );
1794 $wgOut->addWikiMsgArray( $msg, array() );
1795 $wgOut->addHTML( '</div>' );
1796 }
1797 }
1798
1799 protected function showEditTools() {
1800 global $wgOut;
1801 $wgOut->addHTML( '<div class="mw-editTools">' );
1802 $wgOut->addWikiMsgArray( 'edittools', array(), array( 'content' ) );
1803 $wgOut->addHTML( '</div>' );
1804 }
1805
1806 protected function getCopywarn() {
1807 global $wgRightsText;
1808 if ( $wgRightsText ) {
1809 $copywarnMsg = array( 'copyrightwarning',
1810 '[[' . wfMsgForContent( 'copyrightpage' ) . ']]',
1811 $wgRightsText );
1812 } else {
1813 $copywarnMsg = array( 'copyrightwarning2',
1814 '[[' . wfMsgForContent( 'copyrightpage' ) . ']]' );
1815 }
1816 // Allow for site and per-namespace customization of contribution/copyright notice.
1817 wfRunHooks( 'EditPageCopyrightWarning', array( $this->mTitle, &$copywarnMsg ) );
1818
1819 return "<div id=\"editpage-copywarn\">\n" . call_user_func_array("wfMsgNoTrans", $copywarnMsg) . "\n</div>";
1820 }
1821
1822 protected function showStandardInputs( &$tabindex = 2 ) {
1823 global $wgOut, $wgUser;
1824 $wgOut->addHTML( "<div class='editOptions'>\n" );
1825
1826 if ( $this->section != 'new' ) {
1827 $this->showSummaryInput( false, $this->summary );
1828 $wgOut->addHTML( $this->getSummaryPreview( false, $this->summary ) );
1829 }
1830
1831 $checkboxes = $this->getCheckboxes( $tabindex, $wgUser->getSkin(),
1832 array( 'minor' => $this->minoredit, 'watch' => $this->watchthis ) );
1833 $wgOut->addHTML( "<div class='editCheckboxes'>" . implode( $checkboxes, "\n" ) . "</div>\n" );
1834 $wgOut->addHTML( "<div class='editButtons'>\n" );
1835 $wgOut->addHTML( implode( $this->getEditButtons( $tabindex ), "\n" ) . "\n" );
1836
1837 $cancel = $this->getCancelLink();
1838 $separator = wfMsgExt( 'pipe-separator' , 'escapenoentities' );
1839 $edithelpurl = Skin::makeInternalOrExternalUrl( wfMsgForContent( 'edithelppage' ) );
1840 $edithelp = '<a target="helpwindow" href="'.$edithelpurl.'">'.
1841 htmlspecialchars( wfMsg( 'edithelp' ) ).'</a> '.
1842 htmlspecialchars( wfMsg( 'newwindow' ) );
1843 $wgOut->addHTML( " <span class='editHelp'>{$cancel}{$separator}{$edithelp}</span>\n" );
1844 $wgOut->addHTML( "</div><!-- editButtons -->\n</div><!-- editOptions -->\n" );
1845 }
1846
1847 protected function showConflict() {
1848 global $wgOut;
1849 $this->textbox2 = $this->textbox1;
1850 $this->textbox1 = $this->getContent();
1851 if ( wfRunHooks( 'EditPageBeforeConflictDiff', array( &$this, &$wgOut ) ) ) {
1852 $wgOut->wrapWikiMsg( '<h2>$1</h2>', "yourdiff" );
1853
1854 $de = new DifferenceEngine( $this->mTitle );
1855 $de->setText( $this->textbox2, $this->textbox1 );
1856 $de->showDiff( wfMsg( "yourtext" ), wfMsg( "storedversion" ) );
1857
1858 $wgOut->wrapWikiMsg( '<h2>$1</h2>', "yourtext" );
1859 $this->showTextbox2();
1860 }
1861 }
1862
1863 protected function getLastDelete() {
1864 $dbr = wfGetDB( DB_SLAVE );
1865 $data = $dbr->selectRow(
1866 array( 'logging', 'user' ),
1867 array( 'log_type',
1868 'log_action',
1869 'log_timestamp',
1870 'log_user',
1871 'log_namespace',
1872 'log_title',
1873 'log_comment',
1874 'log_params',
1875 'log_deleted',
1876 'user_name' ),
1877 array( 'log_namespace' => $this->mTitle->getNamespace(),
1878 'log_title' => $this->mTitle->getDBkey(),
1879 'log_type' => 'delete',
1880 'log_action' => 'delete',
1881 'user_id=log_user' ),
1882 __METHOD__,
1883 array( 'LIMIT' => 1, 'ORDER BY' => 'log_timestamp DESC' )
1884 );
1885 // Quick paranoid permission checks...
1886 if( is_object( $data ) ) {
1887 if( $data->log_deleted & LogPage::DELETED_USER )
1888 $data->user_name = wfMsgHtml( 'rev-deleted-user' );
1889 if( $data->log_deleted & LogPage::DELETED_COMMENT )
1890 $data->log_comment = wfMsgHtml( 'rev-deleted-comment' );
1891 }
1892 return $data;
1893 }
1894
1895 /**
1896 * Get the rendered text for previewing.
1897 * @return string
1898 */
1899 function getPreviewText() {
1900 global $wgOut, $wgUser, $wgTitle, $wgParser, $wgLang, $wgContLang, $wgMessageCache;
1901
1902 wfProfileIn( __METHOD__ );
1903
1904 if ( $this->mTriedSave && !$this->mTokenOk ) {
1905 if ( $this->mTokenOkExceptSuffix ) {
1906 $note = wfMsg( 'token_suffix_mismatch' );
1907 } else {
1908 $note = wfMsg( 'session_fail_preview' );
1909 }
1910 } else {
1911 $note = wfMsg( 'previewnote' );
1912 }
1913
1914 $parserOptions = ParserOptions::newFromUser( $wgUser );
1915 $parserOptions->setEditSection( false );
1916 $parserOptions->setIsPreview( true );
1917 $parserOptions->setIsSectionPreview( !is_null($this->section) && $this->section !== '' );
1918
1919 global $wgRawHtml;
1920 if ( $wgRawHtml && !$this->mTokenOk ) {
1921 // Could be an offsite preview attempt. This is very unsafe if
1922 // HTML is enabled, as it could be an attack.
1923 return $wgOut->parse( "<div class='previewnote'>" .
1924 wfMsg( 'session_fail_preview_html' ) . "</div>" );
1925 }
1926
1927 # don't parse user css/js, show message about preview
1928 # XXX: stupid php bug won't let us use $wgTitle->isCssJsSubpage() here
1929
1930 if ( $this->isCssJsSubpage ) {
1931 if (preg_match( "/\\.css$/", $this->mTitle->getText() ) ) {
1932 $previewtext = wfMsg( 'usercsspreview' );
1933 } else if (preg_match( "/\\.js$/", $this->mTitle->getText() ) ) {
1934 $previewtext = wfMsg( 'userjspreview' );
1935 }
1936 $parserOptions->setTidy( true );
1937 $parserOutput = $wgParser->parse( $previewtext, $this->mTitle, $parserOptions );
1938 $previewHTML = $parserOutput->mText;
1939 } elseif ( $rt = Title::newFromRedirectArray( $this->textbox1 ) ) {
1940 $previewHTML = $this->mArticle->viewRedirect( $rt, false );
1941 } else {
1942 $toparse = $this->textbox1;
1943
1944 # If we're adding a comment, we need to show the
1945 # summary as the headline
1946 if ( $this->section == "new" && $this->summary != "" ) {
1947 $toparse="== {$this->summary} ==\n\n" . $toparse;
1948 }
1949
1950 if ( $this->mMetaData != "" ) $toparse .= "\n" . $this->mMetaData;
1951
1952 // Parse mediawiki messages with correct target language
1953 if ( $this->mTitle->getNamespace() == NS_MEDIAWIKI ) {
1954 list( /* $unused */, $lang ) = $wgMessageCache->figureMessage( $this->mTitle->getText() );
1955 $obj = wfGetLangObj( $lang );
1956 $parserOptions->setTargetLanguage( $obj );
1957 }
1958
1959
1960 $parserOptions->setTidy( true );
1961 $parserOptions->enableLimitReport();
1962 $parserOutput = $wgParser->parse( $this->mArticle->preSaveTransform( $toparse ),
1963 $this->mTitle, $parserOptions );
1964
1965 $previewHTML = $parserOutput->getText();
1966 $this->mParserOutput = $parserOutput;
1967 $wgOut->addParserOutputNoText( $parserOutput );
1968
1969 if ( count( $parserOutput->getWarnings() ) ) {
1970 $note .= "\n\n" . implode( "\n\n", $parserOutput->getWarnings() );
1971 }
1972 }
1973
1974 if( $this->isConflict ) {
1975 $conflict = '<h2 id="mw-previewconflict">' . htmlspecialchars( wfMsg( 'previewconflict' ) ) . "</h2>\n";
1976 } else {
1977 $conflict = '<hr />';
1978 }
1979
1980 $previewhead = "<div class='previewnote'>\n" .
1981 '<h2 id="mw-previewheader">' . htmlspecialchars( wfMsg( 'preview' ) ) . "</h2>" .
1982 $wgOut->parse( $note ) . $conflict . "</div>\n";
1983
1984 wfProfileOut( __METHOD__ );
1985 return $previewhead . $previewHTML . $this->previewTextAfterContent;
1986 }
1987
1988 function getTemplates() {
1989 if ( $this->preview || $this->section != '' ) {
1990 $templates = array();
1991 if ( !isset( $this->mParserOutput ) ) return $templates;
1992 foreach( $this->mParserOutput->getTemplates() as $ns => $template) {
1993 foreach( array_keys( $template ) as $dbk ) {
1994 $templates[] = Title::makeTitle($ns, $dbk);
1995 }
1996 }
1997 return $templates;
1998 } else {
1999 return $this->mArticle->getUsedTemplates();
2000 }
2001 }
2002
2003 /**
2004 * Call the stock "user is blocked" page
2005 */
2006 function blockedPage() {
2007 global $wgOut;
2008 $wgOut->blockedPage( false ); # Standard block notice on the top, don't 'return'
2009
2010 # If the user made changes, preserve them when showing the markup
2011 # (This happens when a user is blocked during edit, for instance)
2012 $first = $this->firsttime || ( !$this->save && $this->textbox1 == '' );
2013 if ( $first ) {
2014 $source = $this->mTitle->exists() ? $this->getContent() : false;
2015 } else {
2016 $source = $this->textbox1;
2017 }
2018
2019 # Spit out the source or the user's modified version
2020 if ( $source !== false ) {
2021 $wgOut->addHTML( '<hr />' );
2022 $wgOut->addWikiMsg( $first ? 'blockedoriginalsource' : 'blockededitsource', $this->mTitle->getPrefixedText() );
2023 $this->showTextbox1( array( 'readonly' ), $source );
2024 }
2025 }
2026
2027 /**
2028 * Produce the stock "please login to edit pages" page
2029 */
2030 function userNotLoggedInPage() {
2031 global $wgUser, $wgOut, $wgTitle;
2032 $skin = $wgUser->getSkin();
2033
2034 $loginTitle = SpecialPage::getTitleFor( 'Userlogin' );
2035 $loginLink = $skin->link(
2036 $loginTitle,
2037 wfMsgHtml( 'loginreqlink' ),
2038 array(),
2039 array( 'returnto' => $wgTitle->getPrefixedText() ),
2040 array( 'known', 'noclasses' )
2041 );
2042
2043 $wgOut->setPageTitle( wfMsg( 'whitelistedittitle' ) );
2044 $wgOut->setRobotPolicy( 'noindex,nofollow' );
2045 $wgOut->setArticleRelated( false );
2046
2047 $wgOut->addHTML( wfMsgWikiHtml( 'whitelistedittext', $loginLink ) );
2048 $wgOut->returnToMain( false, $wgTitle );
2049 }
2050
2051 /**
2052 * Creates a basic error page which informs the user that
2053 * they have attempted to edit a nonexistent section.
2054 */
2055 function noSuchSectionPage() {
2056 global $wgOut;
2057
2058 $wgOut->setPageTitle( wfMsg( 'nosuchsectiontitle' ) );
2059 $wgOut->setRobotPolicy( 'noindex,nofollow' );
2060 $wgOut->setArticleRelated( false );
2061
2062 $res = wfMsgExt( 'nosuchsectiontext', 'parse', $this->section );
2063 wfRunHooks( 'EditPageNoSuchSection', array( &$this, &$res ) );
2064 $wgOut->addHTML( $res );
2065
2066 $wgOut->returnToMain( false, $this->mTitle );
2067 }
2068
2069 /**
2070 * Produce the stock "your edit contains spam" page
2071 *
2072 * @param $match Text which triggered one or more filters
2073 */
2074 function spamPage( $match = false ) {
2075 global $wgOut, $wgTitle;
2076
2077 $wgOut->setPageTitle( wfMsg( 'spamprotectiontitle' ) );
2078 $wgOut->setRobotPolicy( 'noindex,nofollow' );
2079 $wgOut->setArticleRelated( false );
2080
2081 $wgOut->addHTML( '<div id="spamprotected">' );
2082 $wgOut->addWikiMsg( 'spamprotectiontext' );
2083 if ( $match )
2084 $wgOut->addWikiMsg( 'spamprotectionmatch', wfEscapeWikiText( $match ) );
2085 $wgOut->addHTML( '</div>' );
2086
2087 $wgOut->returnToMain( false, $wgTitle );
2088 }
2089
2090 /**
2091 * @private
2092 * @todo document
2093 */
2094 function mergeChangesInto( &$editText ){
2095 wfProfileIn( __METHOD__ );
2096
2097 $db = wfGetDB( DB_MASTER );
2098
2099 // This is the revision the editor started from
2100 $baseRevision = $this->getBaseRevision();
2101 if ( is_null( $baseRevision ) ) {
2102 wfProfileOut( __METHOD__ );
2103 return false;
2104 }
2105 $baseText = $baseRevision->getText();
2106
2107 // The current state, we want to merge updates into it
2108 $currentRevision = Revision::loadFromTitle( $db, $this->mTitle );
2109 if ( is_null( $currentRevision ) ) {
2110 wfProfileOut( __METHOD__ );
2111 return false;
2112 }
2113 $currentText = $currentRevision->getText();
2114
2115 $result = '';
2116 if ( wfMerge( $baseText, $editText, $currentText, $result ) ) {
2117 $editText = $result;
2118 wfProfileOut( __METHOD__ );
2119 return true;
2120 } else {
2121 wfProfileOut( __METHOD__ );
2122 return false;
2123 }
2124 }
2125
2126 /**
2127 * Check if the browser is on a blacklist of user-agents known to
2128 * mangle UTF-8 data on form submission. Returns true if Unicode
2129 * should make it through, false if it's known to be a problem.
2130 * @return bool
2131 * @private
2132 */
2133 function checkUnicodeCompliantBrowser() {
2134 global $wgBrowserBlackList;
2135 if ( empty( $_SERVER["HTTP_USER_AGENT"] ) ) {
2136 // No User-Agent header sent? Trust it by default...
2137 return true;
2138 }
2139 $currentbrowser = $_SERVER["HTTP_USER_AGENT"];
2140 foreach ( $wgBrowserBlackList as $browser ) {
2141 if ( preg_match($browser, $currentbrowser) ) {
2142 return false;
2143 }
2144 }
2145 return true;
2146 }
2147
2148 /**
2149 * @deprecated use $wgParser->stripSectionName()
2150 */
2151 function pseudoParseSectionAnchor( $text ) {
2152 global $wgParser;
2153 return $wgParser->stripSectionName( $text );
2154 }
2155
2156 /**
2157 * Format an anchor fragment as it would appear for a given section name
2158 * @param string $text
2159 * @return string
2160 * @private
2161 */
2162 function sectionAnchor( $text ) {
2163 global $wgParser;
2164 return $wgParser->guessSectionNameFromWikiText( $text );
2165 }
2166
2167 /**
2168 * Shows a bulletin board style toolbar for common editing functions.
2169 * It can be disabled in the user preferences.
2170 * The necessary JavaScript code can be found in skins/common/edit.js.
2171 *
2172 * @return string
2173 */
2174 static function getEditToolbar() {
2175 global $wgStylePath, $wgContLang, $wgLang;
2176
2177 /**
2178
2179 * toolarray an array of arrays which each include the filename of
2180 * the button image (without path), the opening tag, the closing tag,
2181 * and optionally a sample text that is inserted between the two when no
2182 * selection is highlighted.
2183 * The tip text is shown when the user moves the mouse over the button.
2184 *
2185 * Already here are accesskeys (key), which are not used yet until someone
2186 * can figure out a way to make them work in IE. However, we should make
2187 * sure these keys are not defined on the edit page.
2188 */
2189 $toolarray = array(
2190 array(
2191 'image' => $wgLang->getImageFile( 'button-bold' ),
2192 'id' => 'mw-editbutton-bold',
2193 'open' => '\'\'\'',
2194 'close' => '\'\'\'',
2195 'sample' => wfMsg( 'bold_sample' ),
2196 'tip' => wfMsg( 'bold_tip' ),
2197 'key' => 'B'
2198 ),
2199 array(
2200 'image' => $wgLang->getImageFile( 'button-italic' ),
2201 'id' => 'mw-editbutton-italic',
2202 'open' => '\'\'',
2203 'close' => '\'\'',
2204 'sample' => wfMsg( 'italic_sample' ),
2205 'tip' => wfMsg( 'italic_tip' ),
2206 'key' => 'I'
2207 ),
2208 array(
2209 'image' => $wgLang->getImageFile( 'button-link' ),
2210 'id' => 'mw-editbutton-link',
2211 'open' => '[[',
2212 'close' => ']]',
2213 'sample' => wfMsg( 'link_sample' ),
2214 'tip' => wfMsg( 'link_tip' ),
2215 'key' => 'L'
2216 ),
2217 array(
2218 'image' => $wgLang->getImageFile( 'button-extlink' ),
2219 'id' => 'mw-editbutton-extlink',
2220 'open' => '[',
2221 'close' => ']',
2222 'sample' => wfMsg( 'extlink_sample' ),
2223 'tip' => wfMsg( 'extlink_tip' ),
2224 'key' => 'X'
2225 ),
2226 array(
2227 'image' => $wgLang->getImageFile( 'button-headline' ),
2228 'id' => 'mw-editbutton-headline',
2229 'open' => "\n== ",
2230 'close' => " ==\n",
2231 'sample' => wfMsg( 'headline_sample' ),
2232 'tip' => wfMsg( 'headline_tip' ),
2233 'key' => 'H'
2234 ),
2235 array(
2236 'image' => $wgLang->getImageFile( 'button-image' ),
2237 'id' => 'mw-editbutton-image',
2238 'open' => '[[' . $wgContLang->getNsText( NS_FILE ) . ':',
2239 'close' => ']]',
2240 'sample' => wfMsg( 'image_sample' ),
2241 'tip' => wfMsg( 'image_tip' ),
2242 'key' => 'D'
2243 ),
2244 array(
2245 'image' => $wgLang->getImageFile( 'button-media' ),
2246 'id' => 'mw-editbutton-media',
2247 'open' => '[[' . $wgContLang->getNsText( NS_MEDIA ) . ':',
2248 'close' => ']]',
2249 'sample' => wfMsg( 'media_sample' ),
2250 'tip' => wfMsg( 'media_tip' ),
2251 'key' => 'M'
2252 ),
2253 array(
2254 'image' => $wgLang->getImageFile( 'button-math' ),
2255 'id' => 'mw-editbutton-math',
2256 'open' => "<math>",
2257 'close' => "</math>",
2258 'sample' => wfMsg( 'math_sample' ),
2259 'tip' => wfMsg( 'math_tip' ),
2260 'key' => 'C'
2261 ),
2262 array(
2263 'image' => $wgLang->getImageFile( 'button-nowiki' ),
2264 'id' => 'mw-editbutton-nowiki',
2265 'open' => "<nowiki>",
2266 'close' => "</nowiki>",
2267 'sample' => wfMsg( 'nowiki_sample' ),
2268 'tip' => wfMsg( 'nowiki_tip' ),
2269 'key' => 'N'
2270 ),
2271 array(
2272 'image' => $wgLang->getImageFile( 'button-sig' ),
2273 'id' => 'mw-editbutton-signature',
2274 'open' => '--~~~~',
2275 'close' => '',
2276 'sample' => '',
2277 'tip' => wfMsg( 'sig_tip' ),
2278 'key' => 'Y'
2279 ),
2280 array(
2281 'image' => $wgLang->getImageFile( 'button-hr' ),
2282 'id' => 'mw-editbutton-hr',
2283 'open' => "\n----\n",
2284 'close' => '',
2285 'sample' => '',
2286 'tip' => wfMsg( 'hr_tip' ),
2287 'key' => 'R'
2288 )
2289 );
2290 $toolbar = "<div id='toolbar'>\n";
2291
2292 $script = '';
2293 foreach ( $toolarray as $tool ) {
2294 $params = array(
2295 $image = $wgStylePath . '/common/images/' . $tool['image'],
2296 // Note that we use the tip both for the ALT tag and the TITLE tag of the image.
2297 // Older browsers show a "speedtip" type message only for ALT.
2298 // Ideally these should be different, realistically they
2299 // probably don't need to be.
2300 $tip = $tool['tip'],
2301 $open = $tool['open'],
2302 $close = $tool['close'],
2303 $sample = $tool['sample'],
2304 $cssId = $tool['id'],
2305 );
2306
2307 $paramList = implode( ',',
2308 array_map( array( 'Xml', 'encodeJsVar' ), $params ) );
2309 $script .= "addButton($paramList);\n";
2310 }
2311 $toolbar .= Html::inlineScript( "\n$script\n" );
2312
2313 $toolbar .= "\n</div>";
2314
2315 wfRunHooks( 'EditPageBeforeEditToolbar', array( &$toolbar ) );
2316
2317 return $toolbar;
2318 }
2319
2320 /**
2321 * Returns an array of html code of the following checkboxes:
2322 * minor and watch
2323 *
2324 * @param $tabindex Current tabindex
2325 * @param $skin Skin object
2326 * @param $checked Array of checkbox => bool, where bool indicates the checked
2327 * status of the checkbox
2328 *
2329 * @return array
2330 */
2331 public function getCheckboxes( &$tabindex, $skin, $checked ) {
2332 global $wgUser;
2333
2334 $checkboxes = array();
2335
2336 $checkboxes['minor'] = '';
2337 $minorLabel = wfMsgExt( 'minoredit', array( 'parseinline' ) );
2338 if ( $wgUser->isAllowed( 'minoredit' ) ) {
2339 $attribs = array(
2340 'tabindex' => ++$tabindex,
2341 'accesskey' => wfMsg( 'accesskey-minoredit' ),
2342 'id' => 'wpMinoredit',
2343 );
2344 $checkboxes['minor'] =
2345 Xml::check( 'wpMinoredit', $checked['minor'], $attribs ) .
2346 "&nbsp;<label for='wpMinoredit'" . $skin->tooltip( 'minoredit', 'withaccess' ) . ">{$minorLabel}</label>";
2347 }
2348
2349 $watchLabel = wfMsgExt( 'watchthis', array( 'parseinline' ) );
2350 $checkboxes['watch'] = '';
2351 if ( $wgUser->isLoggedIn() ) {
2352 $attribs = array(
2353 'tabindex' => ++$tabindex,
2354 'accesskey' => wfMsg( 'accesskey-watch' ),
2355 'id' => 'wpWatchthis',
2356 );
2357 $checkboxes['watch'] =
2358 Xml::check( 'wpWatchthis', $checked['watch'], $attribs ) .
2359 "&nbsp;<label for='wpWatchthis'" . $skin->tooltip( 'watch', 'withaccess' ) . ">{$watchLabel}</label>";
2360 }
2361 wfRunHooks( 'EditPageBeforeEditChecks', array( &$this, &$checkboxes, &$tabindex ) );
2362 return $checkboxes;
2363 }
2364
2365 /**
2366 * Returns an array of html code of the following buttons:
2367 * save, diff, preview and live
2368 *
2369 * @param $tabindex Current tabindex
2370 *
2371 * @return array
2372 */
2373 public function getEditButtons(&$tabindex) {
2374 $buttons = array();
2375
2376 $temp = array(
2377 'id' => 'wpSave',
2378 'name' => 'wpSave',
2379 'type' => 'submit',
2380 'tabindex' => ++$tabindex,
2381 'value' => wfMsg( 'savearticle' ),
2382 'accesskey' => wfMsg( 'accesskey-save' ),
2383 'title' => wfMsg( 'tooltip-save' ).' ['.wfMsg( 'accesskey-save' ).']',
2384 );
2385 $buttons['save'] = Xml::element('input', $temp, '');
2386
2387 ++$tabindex; // use the same for preview and live preview
2388 $temp = array(
2389 'id' => 'wpPreview',
2390 'name' => 'wpPreview',
2391 'type' => 'submit',
2392 'tabindex' => $tabindex,
2393 'value' => wfMsg( 'showpreview' ),
2394 'accesskey' => wfMsg( 'accesskey-preview' ),
2395 'title' => wfMsg( 'tooltip-preview' ) . ' [' . wfMsg( 'accesskey-preview' ) . ']',
2396 );
2397 $buttons['preview'] = Xml::element( 'input', $temp, '' );
2398 $buttons['live'] = '';
2399
2400 $temp = array(
2401 'id' => 'wpDiff',
2402 'name' => 'wpDiff',
2403 'type' => 'submit',
2404 'tabindex' => ++$tabindex,
2405 'value' => wfMsg( 'showdiff' ),
2406 'accesskey' => wfMsg( 'accesskey-diff' ),
2407 'title' => wfMsg( 'tooltip-diff' ) . ' [' . wfMsg( 'accesskey-diff' ) . ']',
2408 );
2409 $buttons['diff'] = Xml::element( 'input', $temp, '' );
2410
2411 wfRunHooks( 'EditPageBeforeEditButtons', array( &$this, &$buttons, &$tabindex ) );
2412 return $buttons;
2413 }
2414
2415 /**
2416 * Output preview text only. This can be sucked into the edit page
2417 * via JavaScript, and saves the server time rendering the skin as
2418 * well as theoretically being more robust on the client (doesn't
2419 * disturb the edit box's undo history, won't eat your text on
2420 * failure, etc).
2421 *
2422 * @todo This doesn't include category or interlanguage links.
2423 * Would need to enhance it a bit, <s>maybe wrap them in XML
2424 * or something...</s> that might also require more skin
2425 * initialization, so check whether that's a problem.
2426 */
2427 function livePreview() {
2428 global $wgOut;
2429 $wgOut->disable();
2430 header( 'Content-type: text/xml; charset=utf-8' );
2431 header( 'Cache-control: no-cache' );
2432
2433 $previewText = $this->getPreviewText();
2434 #$categories = $skin->getCategoryLinks();
2435
2436 $s =
2437 '<?xml version="1.0" encoding="UTF-8" ?>' . "\n" .
2438 Xml::tags( 'livepreview', null,
2439 Xml::element( 'preview', null, $previewText )
2440 #. Xml::element( 'category', null, $categories )
2441 );
2442 echo $s;
2443 }
2444
2445
2446 public function getCancelLink() {
2447 global $wgUser, $wgTitle;
2448
2449 $cancelParams = array();
2450 if ( !$this->isConflict && $this->mArticle->getOldID() > 0 ) {
2451 $cancelParams['oldid'] = $this->mArticle->getOldID();
2452 }
2453
2454 return $wgUser->getSkin()->link(
2455 $wgTitle,
2456 wfMsgExt( 'cancel', array( 'parseinline' ) ),
2457 array( 'id' => 'mw-editform-cancel' ),
2458 $cancelParams,
2459 array( 'known', 'noclasses' )
2460 );
2461 }
2462
2463 /**
2464 * Get a diff between the current contents of the edit box and the
2465 * version of the page we're editing from.
2466 *
2467 * If this is a section edit, we'll replace the section as for final
2468 * save and then make a comparison.
2469 */
2470 function showDiff() {
2471 $oldtext = $this->mArticle->fetchContent();
2472 $newtext = $this->mArticle->replaceSection(
2473 $this->section, $this->textbox1, $this->summary, $this->edittime );
2474 $newtext = $this->mArticle->preSaveTransform( $newtext );
2475 $oldtitle = wfMsgExt( 'currentrev', array( 'parseinline' ) );
2476 $newtitle = wfMsgExt( 'yourtext', array( 'parseinline' ) );
2477 if ( $oldtext !== false || $newtext != '' ) {
2478 $de = new DifferenceEngine( $this->mTitle );
2479 $de->setText( $oldtext, $newtext );
2480 $difftext = $de->getDiff( $oldtitle, $newtitle );
2481 $de->showDiffStyle();
2482 } else {
2483 $difftext = '';
2484 }
2485
2486 global $wgOut;
2487 $wgOut->addHTML( '<div id="wikiDiff">' . $difftext . '</div>' );
2488 }
2489
2490 /**
2491 * Filter an input field through a Unicode de-armoring process if it
2492 * came from an old browser with known broken Unicode editing issues.
2493 *
2494 * @param WebRequest $request
2495 * @param string $field
2496 * @return string
2497 * @private
2498 */
2499 function safeUnicodeInput( $request, $field ) {
2500 $text = rtrim( $request->getText( $field ) );
2501 return $request->getBool( 'safemode' )
2502 ? $this->unmakesafe( $text )
2503 : $text;
2504 }
2505
2506 function safeUnicodeText( $request, $text ) {
2507 $text = rtrim( $text );
2508 return $request->getBool( 'safemode' )
2509 ? $this->unmakesafe( $text )
2510 : $text;
2511 }
2512
2513 /**
2514 * Filter an output field through a Unicode armoring process if it is
2515 * going to an old browser with known broken Unicode editing issues.
2516 *
2517 * @param string $text
2518 * @return string
2519 * @private
2520 */
2521 function safeUnicodeOutput( $text ) {
2522 global $wgContLang;
2523 $codedText = $wgContLang->recodeForEdit( $text );
2524 return $this->checkUnicodeCompliantBrowser()
2525 ? $codedText
2526 : $this->makesafe( $codedText );
2527 }
2528
2529 /**
2530 * A number of web browsers are known to corrupt non-ASCII characters
2531 * in a UTF-8 text editing environment. To protect against this,
2532 * detected browsers will be served an armored version of the text,
2533 * with non-ASCII chars converted to numeric HTML character references.
2534 *
2535 * Preexisting such character references will have a 0 added to them
2536 * to ensure that round-trips do not alter the original data.
2537 *
2538 * @param string $invalue
2539 * @return string
2540 * @private
2541 */
2542 function makesafe( $invalue ) {
2543 // Armor existing references for reversability.
2544 $invalue = strtr( $invalue, array( "&#x" => "&#x0" ) );
2545
2546 $bytesleft = 0;
2547 $result = "";
2548 $working = 0;
2549 for( $i = 0; $i < strlen( $invalue ); $i++ ) {
2550 $bytevalue = ord( $invalue{$i} );
2551 if ( $bytevalue <= 0x7F ) { //0xxx xxxx
2552 $result .= chr( $bytevalue );
2553 $bytesleft = 0;
2554 } elseif ( $bytevalue <= 0xBF ) { //10xx xxxx
2555 $working = $working << 6;
2556 $working += ($bytevalue & 0x3F);
2557 $bytesleft--;
2558 if ( $bytesleft <= 0 ) {
2559 $result .= "&#x" . strtoupper( dechex( $working ) ) . ";";
2560 }
2561 } elseif ( $bytevalue <= 0xDF ) { //110x xxxx
2562 $working = $bytevalue & 0x1F;
2563 $bytesleft = 1;
2564 } elseif ( $bytevalue <= 0xEF ) { //1110 xxxx
2565 $working = $bytevalue & 0x0F;
2566 $bytesleft = 2;
2567 } else { //1111 0xxx
2568 $working = $bytevalue & 0x07;
2569 $bytesleft = 3;
2570 }
2571 }
2572 return $result;
2573 }
2574
2575 /**
2576 * Reverse the previously applied transliteration of non-ASCII characters
2577 * back to UTF-8. Used to protect data from corruption by broken web browsers
2578 * as listed in $wgBrowserBlackList.
2579 *
2580 * @param string $invalue
2581 * @return string
2582 * @private
2583 */
2584 function unmakesafe( $invalue ) {
2585 $result = "";
2586 for( $i = 0; $i < strlen( $invalue ); $i++ ) {
2587 if ( ( substr( $invalue, $i, 3 ) == "&#x" ) && ( $invalue{$i+3} != '0' ) ) {
2588 $i += 3;
2589 $hexstring = "";
2590 do {
2591 $hexstring .= $invalue{$i};
2592 $i++;
2593 } while( ctype_xdigit( $invalue{$i} ) && ( $i < strlen( $invalue ) ) );
2594
2595 // Do some sanity checks. These aren't needed for reversability,
2596 // but should help keep the breakage down if the editor
2597 // breaks one of the entities whilst editing.
2598 if ( (substr($invalue,$i,1)==";") and (strlen($hexstring) <= 6) ) {
2599 $codepoint = hexdec($hexstring);
2600 $result .= codepointToUtf8( $codepoint );
2601 } else {
2602 $result .= "&#x" . $hexstring . substr( $invalue, $i, 1 );
2603 }
2604 } else {
2605 $result .= substr( $invalue, $i, 1 );
2606 }
2607 }
2608 // reverse the transform that we made for reversability reasons.
2609 return strtr( $result, array( "&#x0" => "&#x" ) );
2610 }
2611
2612 function noCreatePermission() {
2613 global $wgOut;
2614 $wgOut->setPageTitle( wfMsg( 'nocreatetitle' ) );
2615 $wgOut->addWikiMsg( 'nocreatetext' );
2616 }
2617
2618 /**
2619 * Attempt submission
2620 * @return bool false if output is done, true if the rest of the form should be displayed
2621 */
2622 function attemptSave() {
2623 global $wgUser, $wgOut, $wgTitle;
2624
2625 $resultDetails = false;
2626 # Allow bots to exempt some edits from bot flagging
2627 $bot = $wgUser->isAllowed( 'bot' ) && $this->bot;
2628 $value = $this->internalAttemptSave( $resultDetails, $bot );
2629
2630 if ( $value == self::AS_SUCCESS_UPDATE || $value == self::AS_SUCCESS_NEW_ARTICLE ) {
2631 $this->didSave = true;
2632 }
2633
2634 switch ( $value ) {
2635 case self::AS_HOOK_ERROR_EXPECTED:
2636 case self::AS_CONTENT_TOO_BIG:
2637 case self::AS_ARTICLE_WAS_DELETED:
2638 case self::AS_CONFLICT_DETECTED:
2639 case self::AS_SUMMARY_NEEDED:
2640 case self::AS_TEXTBOX_EMPTY:
2641 case self::AS_MAX_ARTICLE_SIZE_EXCEEDED:
2642 case self::AS_END:
2643 return true;
2644
2645 case self::AS_HOOK_ERROR:
2646 case self::AS_FILTERING:
2647 case self::AS_SUCCESS_NEW_ARTICLE:
2648 case self::AS_SUCCESS_UPDATE:
2649 return false;
2650
2651 case self::AS_SPAM_ERROR:
2652 $this->spamPage( $resultDetails['spam'] );
2653 return false;
2654
2655 case self::AS_BLOCKED_PAGE_FOR_USER:
2656 $this->blockedPage();
2657 return false;
2658
2659 case self::AS_IMAGE_REDIRECT_ANON:
2660 $wgOut->showErrorPage( 'uploadnologin', 'uploadnologintext' );
2661 return false;
2662
2663 case self::AS_READ_ONLY_PAGE_ANON:
2664 $this->userNotLoggedInPage();
2665 return false;
2666
2667 case self::AS_READ_ONLY_PAGE_LOGGED:
2668 case self::AS_READ_ONLY_PAGE:
2669 $wgOut->readOnlyPage();
2670 return false;
2671
2672 case self::AS_RATE_LIMITED:
2673 $wgOut->rateLimited();
2674 return false;
2675
2676 case self::AS_NO_CREATE_PERMISSION:
2677 $this->noCreatePermission();
2678 return;
2679
2680 case self::AS_BLANK_ARTICLE:
2681 $wgOut->redirect( $wgTitle->getFullURL() );
2682 return false;
2683
2684 case self::AS_IMAGE_REDIRECT_LOGGED:
2685 $wgOut->permissionRequired( 'upload' );
2686 return false;
2687 }
2688 }
2689
2690 function getBaseRevision() {
2691 if ( $this->mBaseRevision == false ) {
2692 $db = wfGetDB( DB_MASTER );
2693 $baseRevision = Revision::loadFromTimestamp(
2694 $db, $this->mTitle, $this->edittime );
2695 return $this->mBaseRevision = $baseRevision;
2696 } else {
2697 return $this->mBaseRevision;
2698 }
2699 }
2700 }