Fix regression in 22905
[lhc/web/wiklou.git] / includes / EditPage.php
1 <?php
2 /**
3 * Contains the EditPage class
4 */
5
6 /**
7 * The edit page/HTML interface (split from Article)
8 * The actual database and text munging is still in Article,
9 * but it should get easier to call those from alternate
10 * interfaces.
11 */
12 class EditPage {
13 var $mArticle;
14 var $mTitle;
15 var $mMetaData = '';
16 var $isConflict = false;
17 var $isCssJsSubpage = false;
18 var $deletedSinceEdit = false;
19 var $formtype;
20 var $firsttime;
21 var $lastDelete;
22 var $mTokenOk = false;
23 var $mTriedSave = false;
24 var $tooBig = false;
25 var $kblength = false;
26 var $missingComment = false;
27 var $missingSummary = false;
28 var $allowBlankSummary = false;
29 var $autoSumm = '';
30 var $hookError = '';
31 var $mPreviewTemplates;
32
33 # Form values
34 var $save = false, $preview = false, $diff = false;
35 var $minoredit = false, $watchthis = false, $recreate = false;
36 var $textbox1 = '', $textbox2 = '', $summary = '';
37 var $edittime = '', $section = '', $starttime = '';
38 var $oldid = 0, $editintro = '', $scrolltop = null;
39
40 # Placeholders for text injection by hooks (must be HTML)
41 # extensions should take care to _append_ to the present value
42 public $editFormPageTop; // Before even the preview
43 public $editFormTextTop;
44 public $editFormTextAfterWarn;
45 public $editFormTextAfterTools;
46 public $editFormTextBottom;
47
48 /**
49 * @todo document
50 * @param $article
51 */
52 function EditPage( $article ) {
53 $this->mArticle =& $article;
54 global $wgTitle;
55 $this->mTitle =& $wgTitle;
56
57 # Placeholders for text injection by hooks (empty per default)
58 $this->editFormPageTop =
59 $this->editFormTextTop =
60 $this->editFormTextAfterWarn =
61 $this->editFormTextAfterTools =
62 $this->editFormTextBottom = "";
63 }
64
65 /**
66 * Fetch initial editing page content.
67 */
68 private function getContent( $def_text = '' ) {
69 global $wgOut, $wgRequest, $wgParser;
70
71 # Get variables from query string :P
72 $section = $wgRequest->getVal( 'section' );
73 $preload = $wgRequest->getVal( 'preload' );
74 $undoafter = $wgRequest->getVal( 'undoafter' );
75 $undo = $wgRequest->getVal( 'undo' );
76
77 wfProfileIn( __METHOD__ );
78
79 $text = '';
80 if( !$this->mTitle->exists() ) {
81 if ( $this->mTitle->getNamespace() == NS_MEDIAWIKI ) {
82 # If this is a system message, get the default text.
83 $text = wfMsgWeirdKey ( $this->mTitle->getText() ) ;
84 } else {
85 # If requested, preload some text.
86 $text = $this->getPreloadedText( $preload );
87 }
88 # We used to put MediaWiki:Newarticletext here if
89 # $text was empty at this point.
90 # This is now shown above the edit box instead.
91 } else {
92 // FIXME: may be better to use Revision class directly
93 // But don't mess with it just yet. Article knows how to
94 // fetch the page record from the high-priority server,
95 // which is needed to guarantee we don't pick up lagged
96 // information.
97
98 $text = $this->mArticle->getContent();
99
100 if ( $undo > 0 && $undo > $undoafter ) {
101 # Undoing a specific edit overrides section editing; section-editing
102 # doesn't work with undoing.
103 if ( $undoafter ) {
104 $undorev = Revision::newFromId($undo);
105 $oldrev = Revision::newFromId($undoafter);
106 } else {
107 $undorev = Revision::newFromId($undo);
108 $oldrev = $undorev ? $undorev->getPrevious() : null;
109 }
110
111 #Sanity check, make sure it's the right page.
112 # Otherwise, $text will be left as-is.
113 if ( !is_null($undorev) && !is_null($oldrev) && $undorev->getPage()==$oldrev->getPage() && $undorev->getPage()==$this->mArticle->getID() ) {
114 $undorev_text = $undorev->getText();
115 $oldrev_text = $oldrev->getText();
116 $currev_text = $text;
117
118 #No use doing a merge if it's just a straight revert.
119 if ( $currev_text != $undorev_text ) {
120 $result = wfMerge($undorev_text, $oldrev_text, $currev_text, $text);
121 } else {
122 $text = $oldrev_text;
123 $result = true;
124 }
125 } else {
126 // Failed basic sanity checks.
127 // Older revisions may have been removed since the link
128 // was created, or we may simply have got bogus input.
129 $result = false;
130 }
131
132 if( $result ) {
133 # Inform the user of our success and set an automatic edit summary
134 $this->editFormPageTop .= $wgOut->parse( wfMsgNoTrans( 'undo-success' ) );
135 $firstrev = $oldrev->getNext();
136 # If we just undid one rev, use an autosummary
137 if ( $firstrev->mId == $undo ) {
138 $this->summary = wfMsgForContent('undo-summary', $undo, $undorev->getUserText());
139 }
140 $this->formtype = 'diff';
141 } else {
142 # Warn the user that something went wrong
143 $this->editFormPageTop .= $wgOut->parse( wfMsgNoTrans( 'undo-failure' ) );
144 }
145 } else if( $section != '' ) {
146 if( $section == 'new' ) {
147 $text = $this->getPreloadedText( $preload );
148 } else {
149 $text = $wgParser->getSection( $text, $section, $def_text );
150 }
151 }
152 }
153
154 wfProfileOut( __METHOD__ );
155 return $text;
156 }
157
158 /**
159 * Get the contents of a page from its title and remove includeonly tags
160 *
161 * @param $preload String: the title of the page.
162 * @return string The contents of the page.
163 */
164 private function getPreloadedText($preload) {
165 if ( $preload === '' )
166 return '';
167 else {
168 $preloadTitle = Title::newFromText( $preload );
169 if ( isset( $preloadTitle ) && $preloadTitle->userCanRead() ) {
170 $rev=Revision::newFromTitle($preloadTitle);
171 if ( is_object( $rev ) ) {
172 $text = $rev->getText();
173 // TODO FIXME: AAAAAAAAAAA, this shouldn't be implementing
174 // its own mini-parser! -ævar
175 $text = preg_replace( '~</?includeonly>~', '', $text );
176 return $text;
177 } else
178 return '';
179 }
180 }
181 }
182
183 /**
184 * This is the function that extracts metadata from the article body on the first view.
185 * To turn the feature on, set $wgUseMetadataEdit = true ; in LocalSettings
186 * and set $wgMetadataWhitelist to the *full* title of the template whitelist
187 */
188 function extractMetaDataFromArticle () {
189 global $wgUseMetadataEdit , $wgMetadataWhitelist , $wgLang ;
190 $this->mMetaData = '' ;
191 if ( !$wgUseMetadataEdit ) return ;
192 if ( $wgMetadataWhitelist == '' ) return ;
193 $s = '' ;
194 $t = $this->getContent();
195
196 # MISSING : <nowiki> filtering
197
198 # Categories and language links
199 $t = explode ( "\n" , $t ) ;
200 $catlow = strtolower ( $wgLang->getNsText ( NS_CATEGORY ) ) ;
201 $cat = $ll = array() ;
202 foreach ( $t AS $key => $x )
203 {
204 $y = trim ( strtolower ( $x ) ) ;
205 while ( substr ( $y , 0 , 2 ) == '[[' )
206 {
207 $y = explode ( ']]' , trim ( $x ) ) ;
208 $first = array_shift ( $y ) ;
209 $first = explode ( ':' , $first ) ;
210 $ns = array_shift ( $first ) ;
211 $ns = trim ( str_replace ( '[' , '' , $ns ) ) ;
212 if ( strlen ( $ns ) == 2 OR strtolower ( $ns ) == $catlow )
213 {
214 $add = '[[' . $ns . ':' . implode ( ':' , $first ) . ']]' ;
215 if ( strtolower ( $ns ) == $catlow ) $cat[] = $add ;
216 else $ll[] = $add ;
217 $x = implode ( ']]' , $y ) ;
218 $t[$key] = $x ;
219 $y = trim ( strtolower ( $x ) ) ;
220 }
221 }
222 }
223 if ( count ( $cat ) ) $s .= implode ( ' ' , $cat ) . "\n" ;
224 if ( count ( $ll ) ) $s .= implode ( ' ' , $ll ) . "\n" ;
225 $t = implode ( "\n" , $t ) ;
226
227 # Load whitelist
228 $sat = array () ; # stand-alone-templates; must be lowercase
229 $wl_title = Title::newFromText ( $wgMetadataWhitelist ) ;
230 $wl_article = new Article ( $wl_title ) ;
231 $wl = explode ( "\n" , $wl_article->getContent() ) ;
232 foreach ( $wl AS $x )
233 {
234 $isentry = false ;
235 $x = trim ( $x ) ;
236 while ( substr ( $x , 0 , 1 ) == '*' )
237 {
238 $isentry = true ;
239 $x = trim ( substr ( $x , 1 ) ) ;
240 }
241 if ( $isentry )
242 {
243 $sat[] = strtolower ( $x ) ;
244 }
245
246 }
247
248 # Templates, but only some
249 $t = explode ( '{{' , $t ) ;
250 $tl = array () ;
251 foreach ( $t AS $key => $x )
252 {
253 $y = explode ( '}}' , $x , 2 ) ;
254 if ( count ( $y ) == 2 )
255 {
256 $z = $y[0] ;
257 $z = explode ( '|' , $z ) ;
258 $tn = array_shift ( $z ) ;
259 if ( in_array ( strtolower ( $tn ) , $sat ) )
260 {
261 $tl[] = '{{' . $y[0] . '}}' ;
262 $t[$key] = $y[1] ;
263 $y = explode ( '}}' , $y[1] , 2 ) ;
264 }
265 else $t[$key] = '{{' . $x ;
266 }
267 else if ( $key != 0 ) $t[$key] = '{{' . $x ;
268 else $t[$key] = $x ;
269 }
270 if ( count ( $tl ) ) $s .= implode ( ' ' , $tl ) ;
271 $t = implode ( '' , $t ) ;
272
273 $t = str_replace ( "\n\n\n" , "\n" , $t ) ;
274 $this->mArticle->mContent = $t ;
275 $this->mMetaData = $s ;
276 }
277
278 function submit() {
279 $this->edit();
280 }
281
282 /**
283 * This is the function that gets called for "action=edit". It
284 * sets up various member variables, then passes execution to
285 * another function, usually showEditForm()
286 *
287 * The edit form is self-submitting, so that when things like
288 * preview and edit conflicts occur, we get the same form back
289 * with the extra stuff added. Only when the final submission
290 * is made and all is well do we actually save and redirect to
291 * the newly-edited page.
292 */
293 function edit() {
294 global $wgOut, $wgUser, $wgRequest, $wgTitle;
295 global $wgEmailConfirmToEdit;
296
297 if ( ! wfRunHooks( 'AlternateEdit', array( &$this ) ) )
298 return;
299
300 $fname = 'EditPage::edit';
301 wfProfileIn( $fname );
302 wfDebug( "$fname: enter\n" );
303
304 // this is not an article
305 $wgOut->setArticleFlag(false);
306
307 $this->importFormData( $wgRequest );
308 $this->firsttime = false;
309
310 if( $this->live ) {
311 $this->livePreview();
312 wfProfileOut( $fname );
313 return;
314 }
315
316 if ( ! $this->mTitle->userCan( 'edit' ) ) {
317 wfDebug( "$fname: user can't edit\n" );
318 $wgOut->readOnlyPage( $this->getContent(), true );
319 wfProfileOut( $fname );
320 return;
321 }
322 wfDebug( "$fname: Checking blocks\n" );
323 if ( !$this->preview && !$this->diff && $wgUser->isBlockedFrom( $this->mTitle, !$this->save ) ) {
324 # When previewing, don't check blocked state - will get caught at save time.
325 # Also, check when starting edition is done against slave to improve performance.
326 wfDebug( "$fname: user is blocked\n" );
327 $this->blockedPage();
328 wfProfileOut( $fname );
329 return;
330 }
331 if ( !$wgUser->isAllowed('edit') ) {
332 if ( $wgUser->isAnon() ) {
333 wfDebug( "$fname: user must log in\n" );
334 $this->userNotLoggedInPage();
335 wfProfileOut( $fname );
336 return;
337 } else {
338 wfDebug( "$fname: read-only page\n" );
339 $wgOut->readOnlyPage( $this->getContent(), true );
340 wfProfileOut( $fname );
341 return;
342 }
343 }
344 if ($wgEmailConfirmToEdit && !$wgUser->isEmailConfirmed()) {
345 wfDebug("$fname: user must confirm e-mail address\n");
346 $this->userNotConfirmedPage();
347 wfProfileOut($fname);
348 return;
349 }
350 if ( !$this->mTitle->userCan( 'create' ) && !$this->mTitle->exists() ) {
351 wfDebug( "$fname: no create permission\n" );
352 $this->noCreatePermission();
353 wfProfileOut( $fname );
354 return;
355 }
356 if ( wfReadOnly() ) {
357 wfDebug( "$fname: read-only mode is engaged\n" );
358 if( $this->save || $this->preview ) {
359 $this->formtype = 'preview';
360 } else if ( $this->diff ) {
361 $this->formtype = 'diff';
362 } else {
363 $wgOut->readOnlyPage( $this->getContent() );
364 wfProfileOut( $fname );
365 return;
366 }
367 } else {
368 if ( $this->save ) {
369 $this->formtype = 'save';
370 } else if ( $this->preview ) {
371 $this->formtype = 'preview';
372 } else if ( $this->diff ) {
373 $this->formtype = 'diff';
374 } else { # First time through
375 $this->firsttime = true;
376 if( $this->previewOnOpen() ) {
377 $this->formtype = 'preview';
378 } else {
379 $this->extractMetaDataFromArticle () ;
380 $this->formtype = 'initial';
381 }
382 }
383 }
384
385 wfProfileIn( "$fname-business-end" );
386
387 $this->isConflict = false;
388 // css / js subpages of user pages get a special treatment
389 $this->isCssJsSubpage = $wgTitle->isCssJsSubpage();
390 $this->isValidCssJsSubpage = $wgTitle->isValidCssJsSubpage();
391
392 /* Notice that we can't use isDeleted, because it returns true if article is ever deleted
393 * no matter it's current state
394 */
395 $this->deletedSinceEdit = false;
396 if ( $this->edittime != '' ) {
397 /* Note that we rely on logging table, which hasn't been always there,
398 * but that doesn't matter, because this only applies to brand new
399 * deletes. This is done on every preview and save request. Move it further down
400 * to only perform it on saves
401 */
402 if ( $this->mTitle->isDeleted() ) {
403 $this->lastDelete = $this->getLastDelete();
404 if ( !is_null($this->lastDelete) ) {
405 $deletetime = $this->lastDelete->log_timestamp;
406 if ( ($deletetime - $this->starttime) > 0 ) {
407 $this->deletedSinceEdit = true;
408 }
409 }
410 }
411 }
412
413 # Show applicable editing introductions
414 if( $this->formtype == 'initial' || $this->firsttime )
415 $this->showIntro();
416
417 if( $this->mTitle->isTalkPage() ) {
418 $wgOut->addWikiText( wfMsg( 'talkpagetext' ) );
419 }
420
421 # Attempt submission here. This will check for edit conflicts,
422 # and redundantly check for locked database, blocked IPs, etc.
423 # that edit() already checked just in case someone tries to sneak
424 # in the back door with a hand-edited submission URL.
425
426 if ( 'save' == $this->formtype ) {
427 if ( !$this->attemptSave() ) {
428 wfProfileOut( "$fname-business-end" );
429 wfProfileOut( $fname );
430 return;
431 }
432 }
433
434 # First time through: get contents, set time for conflict
435 # checking, etc.
436 if ( 'initial' == $this->formtype || $this->firsttime ) {
437 if ($this->initialiseForm() === false) {
438 $this->noSuchSectionPage();
439 wfProfileOut( "$fname-business-end" );
440 wfProfileOut( $fname );
441 return;
442 }
443 if( !$this->mTitle->getArticleId() )
444 wfRunHooks( 'EditFormPreloadText', array( &$this->textbox1, &$this->mTitle ) );
445 }
446
447 $this->showEditForm();
448 wfProfileOut( "$fname-business-end" );
449 wfProfileOut( $fname );
450 }
451
452 /**
453 * Return true if this page should be previewed when the edit form
454 * is initially opened.
455 * @return bool
456 * @private
457 */
458 function previewOnOpen() {
459 global $wgUser;
460 return $this->section != 'new' &&
461 ( ( $wgUser->getOption( 'previewonfirst' ) && $this->mTitle->exists() ) ||
462 ( $this->mTitle->getNamespace() == NS_CATEGORY &&
463 !$this->mTitle->exists() ) );
464 }
465
466 /**
467 * @todo document
468 * @param $request
469 */
470 function importFormData( &$request ) {
471 global $wgLang, $wgUser;
472 $fname = 'EditPage::importFormData';
473 wfProfileIn( $fname );
474
475 if( $request->wasPosted() ) {
476 # These fields need to be checked for encoding.
477 # Also remove trailing whitespace, but don't remove _initial_
478 # whitespace from the text boxes. This may be significant formatting.
479 $this->textbox1 = $this->safeUnicodeInput( $request, 'wpTextbox1' );
480 $this->textbox2 = $this->safeUnicodeInput( $request, 'wpTextbox2' );
481 $this->mMetaData = rtrim( $request->getText( 'metadata' ) );
482 # Truncate for whole multibyte characters. +5 bytes for ellipsis
483 $this->summary = $wgLang->truncate( $request->getText( 'wpSummary' ), 250 );
484
485 $this->edittime = $request->getVal( 'wpEdittime' );
486 $this->starttime = $request->getVal( 'wpStarttime' );
487
488 $this->scrolltop = $request->getIntOrNull( 'wpScrolltop' );
489
490 if( is_null( $this->edittime ) ) {
491 # If the form is incomplete, force to preview.
492 wfDebug( "$fname: Form data appears to be incomplete\n" );
493 wfDebug( "POST DATA: " . var_export( $_POST, true ) . "\n" );
494 $this->preview = true;
495 } else {
496 /* Fallback for live preview */
497 $this->preview = $request->getCheck( 'wpPreview' ) || $request->getCheck( 'wpLivePreview' );
498 $this->diff = $request->getCheck( 'wpDiff' );
499
500 // Remember whether a save was requested, so we can indicate
501 // if we forced preview due to session failure.
502 $this->mTriedSave = !$this->preview;
503
504 if ( $this->tokenOk( $request ) ) {
505 # Some browsers will not report any submit button
506 # if the user hits enter in the comment box.
507 # The unmarked state will be assumed to be a save,
508 # if the form seems otherwise complete.
509 wfDebug( "$fname: Passed token check.\n" );
510 } else if ( $this->diff ) {
511 # Failed token check, but only requested "Show Changes".
512 wfDebug( "$fname: Failed token check; Show Changes requested.\n" );
513 } else {
514 # Page might be a hack attempt posted from
515 # an external site. Preview instead of saving.
516 wfDebug( "$fname: Failed token check; forcing preview\n" );
517 $this->preview = true;
518 }
519 }
520 $this->save = ! ( $this->preview OR $this->diff );
521 if( !preg_match( '/^\d{14}$/', $this->edittime )) {
522 $this->edittime = null;
523 }
524
525 if( !preg_match( '/^\d{14}$/', $this->starttime )) {
526 $this->starttime = null;
527 }
528
529 $this->recreate = $request->getCheck( 'wpRecreate' );
530
531 $this->minoredit = $request->getCheck( 'wpMinoredit' );
532 $this->watchthis = $request->getCheck( 'wpWatchthis' );
533
534 # Don't force edit summaries when a user is editing their own user or talk page
535 if( ( $this->mTitle->mNamespace == NS_USER || $this->mTitle->mNamespace == NS_USER_TALK ) && $this->mTitle->getText() == $wgUser->getName() ) {
536 $this->allowBlankSummary = true;
537 } else {
538 $this->allowBlankSummary = $request->getBool( 'wpIgnoreBlankSummary' );
539 }
540
541 $this->autoSumm = $request->getText( 'wpAutoSummary' );
542 } else {
543 # Not a posted form? Start with nothing.
544 wfDebug( "$fname: Not a posted form.\n" );
545 $this->textbox1 = '';
546 $this->textbox2 = '';
547 $this->mMetaData = '';
548 $this->summary = '';
549 $this->edittime = '';
550 $this->starttime = wfTimestampNow();
551 $this->preview = false;
552 $this->save = false;
553 $this->diff = false;
554 $this->minoredit = false;
555 $this->watchthis = false;
556 $this->recreate = false;
557 }
558
559 $this->oldid = $request->getInt( 'oldid' );
560
561 # Section edit can come from either the form or a link
562 $this->section = $request->getVal( 'wpSection', $request->getVal( 'section' ) );
563
564 $this->live = $request->getCheck( 'live' );
565 $this->editintro = $request->getText( 'editintro' );
566
567 wfProfileOut( $fname );
568 }
569
570 /**
571 * Make sure the form isn't faking a user's credentials.
572 *
573 * @param $request WebRequest
574 * @return bool
575 * @private
576 */
577 function tokenOk( &$request ) {
578 global $wgUser;
579 if( $wgUser->isAnon() ) {
580 # Anonymous users may not have a session
581 # open. Check for suffix anyway.
582 $this->mTokenOk = ( EDIT_TOKEN_SUFFIX == $request->getVal( 'wpEditToken' ) );
583 } else {
584 $this->mTokenOk = $wgUser->matchEditToken( $request->getVal( 'wpEditToken' ) );
585 }
586 return $this->mTokenOk;
587 }
588
589 /**
590 * Show all applicable editing introductions
591 */
592 private function showIntro() {
593 global $wgOut, $wgUser;
594 if( !$this->showCustomIntro() && !$this->mTitle->exists() ) {
595 if( $wgUser->isLoggedIn() ) {
596 $wgOut->addWikiText( wfMsg( 'newarticletext' ) );
597 } else {
598 $wgOut->addWikiText( wfMsg( 'newarticletextanon' ) );
599 $this->showDeletionLog( $wgOut );
600 }
601 }
602 }
603
604 /**
605 * Attempt to show a custom editing introduction, if supplied
606 *
607 * @return bool
608 */
609 private function showCustomIntro() {
610 if( $this->editintro ) {
611 $title = Title::newFromText( $this->editintro );
612 if( $title instanceof Title && $title->exists() && $title->userCanRead() ) {
613 global $wgOut;
614 $revision = Revision::newFromTitle( $title );
615 $wgOut->addSecondaryWikiText( $revision->getText() );
616 return true;
617 } else {
618 return false;
619 }
620 } else {
621 return false;
622 }
623 }
624
625 /**
626 * Attempt submission
627 * @return bool false if output is done, true if the rest of the form should be displayed
628 */
629 function attemptSave() {
630 global $wgSpamRegex, $wgFilterCallback, $wgUser, $wgOut;
631 global $wgMaxArticleSize;
632
633 $fname = 'EditPage::attemptSave';
634 wfProfileIn( $fname );
635 wfProfileIn( "$fname-checks" );
636
637 if( !wfRunHooks( 'EditPage::attemptSave', array( &$this ) ) )
638 {
639 wfDebug( "Hook 'EditPage::attemptSave' aborted article saving" );
640 return false;
641 }
642
643 # Reintegrate metadata
644 if ( $this->mMetaData != '' ) $this->textbox1 .= "\n" . $this->mMetaData ;
645 $this->mMetaData = '' ;
646
647 # Check for spam
648 $matches = array();
649 if ( $wgSpamRegex && preg_match( $wgSpamRegex, $this->textbox1, $matches ) ) {
650 $this->spamPage ( $matches[0] );
651 wfProfileOut( "$fname-checks" );
652 wfProfileOut( $fname );
653 return false;
654 }
655 if ( $wgFilterCallback && $wgFilterCallback( $this->mTitle, $this->textbox1, $this->section ) ) {
656 # Error messages or other handling should be performed by the filter function
657 wfProfileOut( $fname );
658 wfProfileOut( "$fname-checks" );
659 return false;
660 }
661 if ( !wfRunHooks( 'EditFilter', array( $this, $this->textbox1, $this->section, &$this->hookError ) ) ) {
662 # Error messages etc. could be handled within the hook...
663 wfProfileOut( $fname );
664 wfProfileOut( "$fname-checks" );
665 return false;
666 } elseif( $this->hookError != '' ) {
667 # ...or the hook could be expecting us to produce an error
668 wfProfileOut( "$fname-checks " );
669 wfProfileOut( $fname );
670 return true;
671 }
672 if ( $wgUser->isBlockedFrom( $this->mTitle, false ) ) {
673 # Check block state against master, thus 'false'.
674 $this->blockedPage();
675 wfProfileOut( "$fname-checks" );
676 wfProfileOut( $fname );
677 return false;
678 }
679 $this->kblength = (int)(strlen( $this->textbox1 ) / 1024);
680 if ( $this->kblength > $wgMaxArticleSize ) {
681 // Error will be displayed by showEditForm()
682 $this->tooBig = true;
683 wfProfileOut( "$fname-checks" );
684 wfProfileOut( $fname );
685 return true;
686 }
687
688 if ( !$wgUser->isAllowed('edit') ) {
689 if ( $wgUser->isAnon() ) {
690 $this->userNotLoggedInPage();
691 wfProfileOut( "$fname-checks" );
692 wfProfileOut( $fname );
693 return false;
694 }
695 else {
696 $wgOut->readOnlyPage();
697 wfProfileOut( "$fname-checks" );
698 wfProfileOut( $fname );
699 return false;
700 }
701 }
702
703 if ( wfReadOnly() ) {
704 $wgOut->readOnlyPage();
705 wfProfileOut( "$fname-checks" );
706 wfProfileOut( $fname );
707 return false;
708 }
709 if ( $wgUser->pingLimiter() ) {
710 $wgOut->rateLimited();
711 wfProfileOut( "$fname-checks" );
712 wfProfileOut( $fname );
713 return false;
714 }
715
716 # If the article has been deleted while editing, don't save it without
717 # confirmation
718 if ( $this->deletedSinceEdit && !$this->recreate ) {
719 wfProfileOut( "$fname-checks" );
720 wfProfileOut( $fname );
721 return true;
722 }
723
724 wfProfileOut( "$fname-checks" );
725
726 # If article is new, insert it.
727 $aid = $this->mTitle->getArticleID( GAID_FOR_UPDATE );
728 if ( 0 == $aid ) {
729
730 // Late check for create permission, just in case *PARANOIA*
731 if ( !$this->mTitle->userCan( 'create' ) ) {
732 wfDebug( "$fname: no create permission\n" );
733 $this->noCreatePermission();
734 wfProfileOut( $fname );
735 return;
736 }
737
738 # Don't save a new article if it's blank.
739 if ( ( '' == $this->textbox1 ) ) {
740 $wgOut->redirect( $this->mTitle->getFullURL() );
741 wfProfileOut( $fname );
742 return false;
743 }
744
745 $isComment=($this->section=='new');
746 $this->mArticle->insertNewArticle( $this->textbox1, $this->summary,
747 $this->minoredit, $this->watchthis, false, $isComment);
748
749 wfProfileOut( $fname );
750 return false;
751 }
752
753 # Article exists. Check for edit conflict.
754
755 $this->mArticle->clear(); # Force reload of dates, etc.
756 $this->mArticle->forUpdate( true ); # Lock the article
757
758 wfDebug("timestamp: {$this->mArticle->getTimestamp()}, edittime: {$this->edittime}\n");
759
760 if( $this->mArticle->getTimestamp() != $this->edittime ) {
761 $this->isConflict = true;
762 if( $this->section == 'new' ) {
763 if( $this->mArticle->getUserText() == $wgUser->getName() &&
764 $this->mArticle->getComment() == $this->summary ) {
765 // Probably a duplicate submission of a new comment.
766 // This can happen when squid resends a request after
767 // a timeout but the first one actually went through.
768 wfDebug( "EditPage::editForm duplicate new section submission; trigger edit conflict!\n" );
769 } else {
770 // New comment; suppress conflict.
771 $this->isConflict = false;
772 wfDebug( "EditPage::editForm conflict suppressed; new section\n" );
773 }
774 }
775 }
776 $userid = $wgUser->getID();
777
778 if ( $this->isConflict) {
779 wfDebug( "EditPage::editForm conflict! getting section '$this->section' for time '$this->edittime' (article time '" .
780 $this->mArticle->getTimestamp() . "'\n" );
781 $text = $this->mArticle->replaceSection( $this->section, $this->textbox1, $this->summary, $this->edittime);
782 }
783 else {
784 wfDebug( "EditPage::editForm getting section '$this->section'\n" );
785 $text = $this->mArticle->replaceSection( $this->section, $this->textbox1, $this->summary);
786 }
787 if( is_null( $text ) ) {
788 wfDebug( "EditPage::editForm activating conflict; section replace failed.\n" );
789 $this->isConflict = true;
790 $text = $this->textbox1;
791 }
792
793 # Suppress edit conflict with self, except for section edits where merging is required.
794 if ( ( $this->section == '' ) && ( 0 != $userid ) && ( $this->mArticle->getUser() == $userid ) ) {
795 wfDebug( "Suppressing edit conflict, same user.\n" );
796 $this->isConflict = false;
797 } else {
798 # switch from section editing to normal editing in edit conflict
799 if($this->isConflict) {
800 # Attempt merge
801 if( $this->mergeChangesInto( $text ) ){
802 // Successful merge! Maybe we should tell the user the good news?
803 $this->isConflict = false;
804 wfDebug( "Suppressing edit conflict, successful merge.\n" );
805 } else {
806 $this->section = '';
807 $this->textbox1 = $text;
808 wfDebug( "Keeping edit conflict, failed merge.\n" );
809 }
810 }
811 }
812
813 if ( $this->isConflict ) {
814 wfProfileOut( $fname );
815 return true;
816 }
817
818 $oldtext = $this->mArticle->getContent();
819
820 # Handle the user preference to force summaries here, but not for null edits
821 if( $this->section != 'new' && !$this->allowBlankSummary && $wgUser->getOption( 'forceeditsummary')
822 && 0 != strcmp($oldtext, $text) && !Article::getRedirectAutosummary( $text )) {
823 if( md5( $this->summary ) == $this->autoSumm ) {
824 $this->missingSummary = true;
825 wfProfileOut( $fname );
826 return( true );
827 }
828 }
829
830 #And a similar thing for new sections
831 if( $this->section == 'new' && !$this->allowBlankSummary && $wgUser->getOption( 'forceeditsummary' ) ) {
832 if (trim($this->summary) == '') {
833 $this->missingSummary = true;
834 wfProfileOut( $fname );
835 return( true );
836 }
837 }
838
839 # All's well
840 wfProfileIn( "$fname-sectionanchor" );
841 $sectionanchor = '';
842 if( $this->section == 'new' ) {
843 if ( $this->textbox1 == '' ) {
844 $this->missingComment = true;
845 return true;
846 }
847 if( $this->summary != '' ) {
848 $sectionanchor = $this->sectionAnchor( $this->summary );
849 }
850 } elseif( $this->section != '' ) {
851 # Try to get a section anchor from the section source, redirect to edited section if header found
852 # XXX: might be better to integrate this into Article::replaceSection
853 # for duplicate heading checking and maybe parsing
854 $hasmatch = preg_match( "/^ *([=]{1,6})(.*?)(\\1) *\\n/i", $this->textbox1, $matches );
855 # we can't deal with anchors, includes, html etc in the header for now,
856 # headline would need to be parsed to improve this
857 if($hasmatch and strlen($matches[2]) > 0) {
858 $sectionanchor = $this->sectionAnchor( $matches[2] );
859 }
860 }
861 wfProfileOut( "$fname-sectionanchor" );
862
863 // Save errors may fall down to the edit form, but we've now
864 // merged the section into full text. Clear the section field
865 // so that later submission of conflict forms won't try to
866 // replace that into a duplicated mess.
867 $this->textbox1 = $text;
868 $this->section = '';
869
870 // Check for length errors again now that the section is merged in
871 $this->kblength = (int)(strlen( $text ) / 1024);
872 if ( $this->kblength > $wgMaxArticleSize ) {
873 $this->tooBig = true;
874 wfProfileOut( $fname );
875 return true;
876 }
877
878 # update the article here
879 if( $this->mArticle->updateArticle( $text, $this->summary, $this->minoredit,
880 $this->watchthis, '', $sectionanchor ) ) {
881 wfProfileOut( $fname );
882 return false;
883 } else {
884 $this->isConflict = true;
885 }
886 wfProfileOut( $fname );
887 return true;
888 }
889
890 /**
891 * Initialise form fields in the object
892 * Called on the first invocation, e.g. when a user clicks an edit link
893 */
894 function initialiseForm() {
895 $this->edittime = $this->mArticle->getTimestamp();
896 $this->summary = '';
897 $this->textbox1 = $this->getContent(false);
898 if ($this->textbox1 === false) return false;
899
900 if ( !$this->mArticle->exists() && $this->mArticle->mTitle->getNamespace() == NS_MEDIAWIKI )
901 $this->textbox1 = wfMsgWeirdKey( $this->mArticle->mTitle->getText() );
902 wfProxyCheck();
903 return true;
904 }
905
906 /**
907 * Send the edit form and related headers to $wgOut
908 * @param $formCallback Optional callable that takes an OutputPage
909 * parameter; will be called during form output
910 * near the top, for captchas and the like.
911 */
912 function showEditForm( $formCallback=null ) {
913 global $wgOut, $wgUser, $wgLang, $wgContLang, $wgMaxArticleSize;
914
915 $fname = 'EditPage::showEditForm';
916 wfProfileIn( $fname );
917
918 $sk = $wgUser->getSkin();
919
920 wfRunHooks( 'EditPage::showEditForm:initial', array( &$this ) ) ;
921
922 $wgOut->setRobotpolicy( 'noindex,nofollow' );
923
924 # Enabled article-related sidebar, toplinks, etc.
925 $wgOut->setArticleRelated( true );
926
927 if ( $this->isConflict ) {
928 $s = wfMsg( 'editconflict', $this->mTitle->getPrefixedText() );
929 $wgOut->setPageTitle( $s );
930 $wgOut->addWikiText( wfMsg( 'explainconflict' ) );
931
932 $this->textbox2 = $this->textbox1;
933 $this->textbox1 = $this->getContent();
934 $this->edittime = $this->mArticle->getTimestamp();
935 } else {
936
937 if( $this->section != '' ) {
938 if( $this->section == 'new' ) {
939 $s = wfMsg('editingcomment', $this->mTitle->getPrefixedText() );
940 } else {
941 $s = wfMsg('editingsection', $this->mTitle->getPrefixedText() );
942 $matches = array();
943 if( !$this->summary && !$this->preview && !$this->diff ) {
944 preg_match( "/^(=+)(.+)\\1/mi",
945 $this->textbox1,
946 $matches );
947 if( !empty( $matches[2] ) ) {
948 $this->summary = "/* ". trim($matches[2])." */ ";
949 }
950 }
951 }
952 } else {
953 $s = wfMsg( 'editing', $this->mTitle->getPrefixedText() );
954 }
955 $wgOut->setPageTitle( $s );
956
957 if ( $this->missingComment ) {
958 $wgOut->addWikiText( wfMsg( 'missingcommenttext' ) );
959 }
960
961 if( $this->missingSummary && $this->section != 'new' ) {
962 $wgOut->addWikiText( wfMsg( 'missingsummary' ) );
963 }
964
965 if( $this->missingSummary && $this->section == 'new' ) {
966 $wgOut->addWikiText( wfMsg( 'missingcommentheader' ) );
967 }
968
969 if( !$this->hookError == '' ) {
970 $wgOut->addWikiText( $this->hookError );
971 }
972
973 if ( !$this->checkUnicodeCompliantBrowser() ) {
974 $wgOut->addWikiText( wfMsg( 'nonunicodebrowser') );
975 }
976 if ( isset( $this->mArticle ) && isset( $this->mArticle->mRevision ) ) {
977 // Let sysop know that this will make private content public if saved
978 if( $this->mArticle->mRevision->isDeleted( Revision::DELETED_TEXT ) ) {
979 $wgOut->addWikiText( wfMsg( 'rev-deleted-text-view' ) );
980 }
981 if( !$this->mArticle->mRevision->isCurrent() ) {
982 $this->mArticle->setOldSubtitle( $this->mArticle->mRevision->getId() );
983 $wgOut->addWikiText( wfMsg( 'editingold' ) );
984 }
985 }
986 }
987
988 if( wfReadOnly() ) {
989 $wgOut->addWikiText( wfMsg( 'readonlywarning' ) );
990 } elseif( $wgUser->isAnon() && $this->formtype != 'preview' ) {
991 $wgOut->addWikiText( wfMsg( 'anoneditwarning' ) );
992 } else {
993 if( $this->isCssJsSubpage && $this->formtype != 'preview' ) {
994 # Check the skin exists
995 if( $this->isValidCssJsSubpage ) {
996 $wgOut->addWikiText( wfMsg( 'usercssjsyoucanpreview' ) );
997 } else {
998 $wgOut->addWikiText( wfMsg( 'userinvalidcssjstitle', $this->mTitle->getSkinFromCssJsSubpage() ) );
999 }
1000 }
1001 }
1002
1003 if( $this->mTitle->getNamespace() == NS_MEDIAWIKI ) {
1004 # Show a warning if editing an interface message
1005 $wgOut->addWikiText( wfMsg( 'editinginterface' ) );
1006 } elseif( $this->mTitle->isProtected( 'edit' ) ) {
1007 # Is the title semi-protected?
1008 if( $this->mTitle->isSemiProtected() ) {
1009 $notice = wfMsg( 'semiprotectedpagewarning' );
1010 if( wfEmptyMsg( 'semiprotectedpagewarning', $notice ) || $notice == '-' )
1011 $notice = '';
1012 } else {
1013 # Then it must be protected based on static groups (regular)
1014 $notice = wfMsg( 'protectedpagewarning' );
1015 }
1016 $wgOut->addWikiText( $notice );
1017 }
1018 if ( $this->mTitle->isCascadeProtected() ) {
1019 # Is this page under cascading protection from some source pages?
1020 list($cascadeSources, /* $restrictions */) = $this->mTitle->getCascadeProtectionSources();
1021 if ( count($cascadeSources) > 0 ) {
1022 # Explain, and list the titles responsible
1023 $notice = wfMsgExt( 'cascadeprotectedwarning', array('parsemag'), count($cascadeSources) ) . "\n";
1024 foreach( $cascadeSources as $id => $page )
1025 $notice .= '* [[:' . $page->getPrefixedText() . "]]\n";
1026 }
1027 $wgOut->addWikiText( $notice );
1028 }
1029
1030 if ( $this->kblength === false ) {
1031 $this->kblength = (int)(strlen( $this->textbox1 ) / 1024);
1032 }
1033 if ( $this->tooBig || $this->kblength > $wgMaxArticleSize ) {
1034 $wgOut->addWikiText( wfMsg( 'longpageerror', $wgLang->formatNum( $this->kblength ), $wgMaxArticleSize ) );
1035 } elseif( $this->kblength > 29 ) {
1036 $wgOut->addWikiText( wfMsg( 'longpagewarning', $wgLang->formatNum( $this->kblength ) ) );
1037 }
1038
1039 #need to parse the preview early so that we know which templates are used,
1040 #otherwise users with "show preview after edit box" will get a blank list
1041 if ( $this->formtype == 'preview' ) {
1042 $previewOutput = $this->getPreviewText();
1043 }
1044
1045 $rows = $wgUser->getIntOption( 'rows' );
1046 $cols = $wgUser->getIntOption( 'cols' );
1047
1048 $ew = $wgUser->getOption( 'editwidth' );
1049 if ( $ew ) $ew = " style=\"width:100%\"";
1050 else $ew = '';
1051
1052 $q = 'action=submit';
1053 #if ( "no" == $redirect ) { $q .= "&redirect=no"; }
1054 $action = $this->mTitle->escapeLocalURL( $q );
1055
1056 $summary = wfMsg('summary');
1057 $subject = wfMsg('subject');
1058
1059 $cancel = $sk->makeKnownLink( $this->mTitle->getPrefixedText(),
1060 wfMsgExt('cancel', array('parseinline')) );
1061 $edithelpurl = Skin::makeInternalOrExternalUrl( wfMsgForContent( 'edithelppage' ));
1062 $edithelp = '<a target="helpwindow" href="'.$edithelpurl.'">'.
1063 htmlspecialchars( wfMsg( 'edithelp' ) ).'</a> '.
1064 htmlspecialchars( wfMsg( 'newwindow' ) );
1065
1066 global $wgRightsText;
1067 $copywarn = "<div id=\"editpage-copywarn\">\n" .
1068 wfMsg( $wgRightsText ? 'copyrightwarning' : 'copyrightwarning2',
1069 '[[' . wfMsgForContent( 'copyrightpage' ) . ']]',
1070 $wgRightsText ) . "\n</div>";
1071
1072 if( $wgUser->getOption('showtoolbar') and !$this->isCssJsSubpage ) {
1073 # prepare toolbar for edit buttons
1074 $toolbar = $this->getEditToolbar();
1075 } else {
1076 $toolbar = '';
1077 }
1078
1079 // activate checkboxes if user wants them to be always active
1080 if( !$this->preview && !$this->diff ) {
1081 # Sort out the "watch" checkbox
1082 if( $wgUser->getOption( 'watchdefault' ) ) {
1083 # Watch all edits
1084 $this->watchthis = true;
1085 } elseif( $wgUser->getOption( 'watchcreations' ) && !$this->mTitle->exists() ) {
1086 # Watch creations
1087 $this->watchthis = true;
1088 } elseif( $this->mTitle->userIsWatching() ) {
1089 # Already watched
1090 $this->watchthis = true;
1091 }
1092
1093 if( $wgUser->getOption( 'minordefault' ) ) $this->minoredit = true;
1094 }
1095
1096 $wgOut->addHTML( $this->editFormPageTop );
1097
1098 if ( $wgUser->getOption( 'previewontop' ) ) {
1099
1100 if ( 'preview' == $this->formtype ) {
1101 $this->showPreview( $previewOutput );
1102 } else {
1103 $wgOut->addHTML( '<div id="wikiPreview"></div>' );
1104 }
1105
1106 if ( 'diff' == $this->formtype ) {
1107 $wgOut->addStyle( 'common/diff.css' );
1108 $wgOut->addHTML( $this->getDiff() );
1109 }
1110 }
1111
1112
1113 $wgOut->addHTML( $this->editFormTextTop );
1114
1115 # if this is a comment, show a subject line at the top, which is also the edit summary.
1116 # Otherwise, show a summary field at the bottom
1117 $summarytext = htmlspecialchars( $wgContLang->recodeForEdit( $this->summary ) ); # FIXME
1118 if( $this->section == 'new' ) {
1119 $commentsubject="<span id='wpSummaryLabel'><label for='wpSummary'>{$subject}:</label></span>\n<div class='editOptions'>\n<input tabindex='1' type='text' value=\"$summarytext\" name='wpSummary' id='wpSummary' maxlength='200' size='60' /><br />";
1120 $editsummary = '';
1121 $subjectpreview = $summarytext && $this->preview ? "<div class=\"mw-summary-preview\">".wfMsg('subject-preview').':'.$sk->commentBlock( $this->summary, $this->mTitle )."</div>\n" : '';
1122 $summarypreview = '';
1123 } else {
1124 $commentsubject = '';
1125 $editsummary="<span id='wpSummaryLabel'><label for='wpSummary'>{$summary}:</label></span>\n<div class='editOptions'>\n<input tabindex='2' type='text' value=\"$summarytext\" name='wpSummary' id='wpSummary' maxlength='200' size='60' /><br />";
1126 $summarypreview = $summarytext && $this->preview ? "<div class=\"mw-summary-preview\">".wfMsg('summary-preview').':'.$sk->commentBlock( $this->summary, $this->mTitle )."</div>\n" : '';
1127 $subjectpreview = '';
1128 }
1129
1130 # Set focus to the edit box on load, except on preview or diff, where it would interfere with the display
1131 if( !$this->preview && !$this->diff ) {
1132 $wgOut->setOnloadHandler( 'document.editform.wpTextbox1.focus()' );
1133 }
1134 $templates = ($this->preview || $this->section != '') ? $this->mPreviewTemplates : $this->mArticle->getUsedTemplates();
1135 $formattedtemplates = $sk->formatTemplates( $templates, $this->preview, $this->section != '');
1136
1137 global $wgUseMetadataEdit ;
1138 if ( $wgUseMetadataEdit ) {
1139 $metadata = $this->mMetaData ;
1140 $metadata = htmlspecialchars( $wgContLang->recodeForEdit( $metadata ) ) ;
1141 $top = wfMsgWikiHtml( 'metadata_help' );
1142 $metadata = $top . "<textarea name='metadata' rows='3' cols='{$cols}'{$ew}>{$metadata}</textarea>" ;
1143 }
1144 else $metadata = "" ;
1145
1146 $hidden = '';
1147 $recreate = '';
1148 if ($this->deletedSinceEdit) {
1149 if ( 'save' != $this->formtype ) {
1150 $wgOut->addWikiText( wfMsg('deletedwhileediting'));
1151 } else {
1152 // Hide the toolbar and edit area, use can click preview to get it back
1153 // Add an confirmation checkbox and explanation.
1154 $toolbar = '';
1155 $hidden = 'type="hidden" style="display:none;"';
1156 $recreate = $wgOut->parse( wfMsg( 'confirmrecreate', $this->lastDelete->user_name , $this->lastDelete->log_comment ));
1157 $recreate .=
1158 "<br /><input tabindex='1' type='checkbox' value='1' name='wpRecreate' id='wpRecreate' />".
1159 "<label for='wpRecreate' title='".wfMsg('tooltip-recreate')."'>". wfMsg('recreate')."</label>";
1160 }
1161 }
1162
1163 $tabindex = 2;
1164
1165 $checkboxes = self::getCheckboxes( $tabindex, $sk,
1166 array( 'minor' => $this->minoredit, 'watch' => $this->watchthis ) );
1167
1168 $checkboxhtml = implode( $checkboxes, "\n" );
1169
1170 $buttons = $this->getEditButtons( $tabindex );
1171 $buttonshtml = implode( $buttons, "\n" );
1172
1173 $safemodehtml = $this->checkUnicodeCompliantBrowser()
1174 ? '' : Xml::hidden( 'safemode', '1' );
1175
1176 $wgOut->addHTML( <<<END
1177 {$toolbar}
1178 <form id="editform" name="editform" method="post" action="$action" enctype="multipart/form-data">
1179 END
1180 );
1181
1182 if( is_callable( $formCallback ) ) {
1183 call_user_func_array( $formCallback, array( &$wgOut ) );
1184 }
1185
1186 wfRunHooks( 'EditPage::showEditForm:fields', array( &$this, &$wgOut ) );
1187
1188 // Put these up at the top to ensure they aren't lost on early form submission
1189 $wgOut->addHTML( "
1190 <input type='hidden' value=\"" . htmlspecialchars( $this->section ) . "\" name=\"wpSection\" />
1191 <input type='hidden' value=\"{$this->starttime}\" name=\"wpStarttime\" />\n
1192 <input type='hidden' value=\"{$this->edittime}\" name=\"wpEdittime\" />\n
1193 <input type='hidden' value=\"{$this->scrolltop}\" name=\"wpScrolltop\" id=\"wpScrolltop\" />\n" );
1194
1195 $wgOut->addHTML( <<<END
1196 $recreate
1197 {$commentsubject}
1198 {$subjectpreview}
1199 <textarea tabindex='1' accesskey="," name="wpTextbox1" id="wpTextbox1" rows='{$rows}'
1200 cols='{$cols}'{$ew} $hidden>
1201 END
1202 . htmlspecialchars( $this->safeUnicodeOutput( $this->textbox1 ) ) .
1203 "
1204 </textarea>
1205 " );
1206
1207 $wgOut->addWikiText( $copywarn );
1208 $wgOut->addHTML( $this->editFormTextAfterWarn );
1209 $wgOut->addHTML( "
1210 {$metadata}
1211 {$editsummary}
1212 {$summarypreview}
1213 {$checkboxhtml}
1214 {$safemodehtml}
1215 ");
1216
1217 $wgOut->addHTML(
1218 "<div class='editButtons'>
1219 {$buttonshtml}
1220 <span class='editHelp'>{$cancel} | {$edithelp}</span>
1221 </div><!-- editButtons -->
1222 </div><!-- editOptions -->");
1223
1224 $wgOut->addHtml( '<div class="mw-editTools">' );
1225 $wgOut->addWikiText( wfMsgForContent( 'edittools' ) );
1226 $wgOut->addHtml( '</div>' );
1227
1228 $wgOut->addHTML( $this->editFormTextAfterTools );
1229
1230 $wgOut->addHTML( "
1231 <div class='templatesUsed'>
1232 {$formattedtemplates}
1233 </div>
1234 " );
1235
1236 /**
1237 * To make it harder for someone to slip a user a page
1238 * which submits an edit form to the wiki without their
1239 * knowledge, a random token is associated with the login
1240 * session. If it's not passed back with the submission,
1241 * we won't save the page, or render user JavaScript and
1242 * CSS previews.
1243 *
1244 * For anon editors, who may not have a session, we just
1245 * include the constant suffix to prevent editing from
1246 * broken text-mangling proxies.
1247 */
1248 if ( $wgUser->isLoggedIn() )
1249 $token = htmlspecialchars( $wgUser->editToken() );
1250 else
1251 $token = EDIT_TOKEN_SUFFIX;
1252 $wgOut->addHTML( "\n<input type='hidden' value=\"$token\" name=\"wpEditToken\" />\n" );
1253
1254
1255 # If a blank edit summary was previously provided, and the appropriate
1256 # user preference is active, pass a hidden tag here. This will stop the
1257 # user being bounced back more than once in the event that a summary
1258 # is not required.
1259 if( $this->missingSummary ) {
1260 $wgOut->addHTML( "<input type=\"hidden\" name=\"wpIgnoreBlankSummary\" value=\"1\" />\n" );
1261 }
1262
1263 # For a bit more sophisticated detection of blank summaries, hash the
1264 # automatic one and pass that in a hidden field.
1265 $autosumm = $this->autoSumm ? $this->autoSumm : md5( $this->summary );
1266 $wgOut->addHtml( wfHidden( 'wpAutoSummary', $autosumm ) );
1267
1268 if ( $this->isConflict ) {
1269 $wgOut->addWikiText( '==' . wfMsg( "yourdiff" ) . '==' );
1270
1271 $de = new DifferenceEngine( $this->mTitle );
1272 $de->setText( $this->textbox2, $this->textbox1 );
1273 $de->showDiff( wfMsg( "yourtext" ), wfMsg( "storedversion" ) );
1274
1275 $wgOut->addWikiText( '==' . wfMsg( "yourtext" ) . '==' );
1276 $wgOut->addHTML( "<textarea tabindex=6 id='wpTextbox2' name=\"wpTextbox2\" rows='{$rows}' cols='{$cols}' wrap='virtual'>"
1277 . htmlspecialchars( $this->safeUnicodeOutput( $this->textbox2 ) ) . "\n</textarea>" );
1278 }
1279 $wgOut->addHTML( $this->editFormTextBottom );
1280 $wgOut->addHTML( "</form>\n" );
1281 if ( !$wgUser->getOption( 'previewontop' ) ) {
1282
1283 if ( $this->formtype == 'preview') {
1284 $this->showPreview( $previewOutput );
1285 } else {
1286 $wgOut->addHTML( '<div id="wikiPreview"></div>' );
1287 }
1288
1289 if ( $this->formtype == 'diff') {
1290 $wgOut->addStyle( 'common/diff.css' );
1291 $wgOut->addHTML( $this->getDiff() );
1292 }
1293
1294 }
1295
1296 wfProfileOut( $fname );
1297 }
1298
1299 /**
1300 * Append preview output to $wgOut.
1301 * Includes category rendering if this is a category page.
1302 *
1303 * @param string $text The HTML to be output for the preview.
1304 */
1305 private function showPreview( $text ) {
1306 global $wgOut;
1307
1308 $wgOut->addHTML( '<div id="wikiPreview">' );
1309 if($this->mTitle->getNamespace() == NS_CATEGORY) {
1310 $this->mArticle->openShowCategory();
1311 }
1312 $wgOut->addHTML( $text );
1313 if($this->mTitle->getNamespace() == NS_CATEGORY) {
1314 $this->mArticle->closeShowCategory();
1315 }
1316 $wgOut->addHTML( '</div>' );
1317 }
1318
1319 /**
1320 * Live Preview lets us fetch rendered preview page content and
1321 * add it to the page without refreshing the whole page.
1322 * If not supported by the browser it will fall through to the normal form
1323 * submission method.
1324 *
1325 * This function outputs a script tag to support live preview, and
1326 * returns an onclick handler which should be added to the attributes
1327 * of the preview button
1328 */
1329 function doLivePreviewScript() {
1330 global $wgStylePath, $wgJsMimeType, $wgStyleVersion, $wgOut, $wgTitle;
1331 $wgOut->addHTML( '<script type="'.$wgJsMimeType.'" src="' .
1332 htmlspecialchars( "$wgStylePath/common/preview.js?$wgStyleVersion" ) .
1333 '"></script>' . "\n" );
1334 $liveAction = $wgTitle->getLocalUrl( 'action=submit&wpPreview=true&live=true' );
1335 return "return !livePreview(" .
1336 "getElementById('wikiPreview')," .
1337 "editform.wpTextbox1.value," .
1338 '"' . $liveAction . '"' . ")";
1339 }
1340
1341 function getLastDelete() {
1342 $dbr = wfGetDB( DB_SLAVE );
1343 $fname = 'EditPage::getLastDelete';
1344 $res = $dbr->select(
1345 array( 'logging', 'user' ),
1346 array( 'log_type',
1347 'log_action',
1348 'log_timestamp',
1349 'log_user',
1350 'log_namespace',
1351 'log_title',
1352 'log_comment',
1353 'log_params',
1354 'user_name', ),
1355 array( 'log_namespace' => $this->mTitle->getNamespace(),
1356 'log_title' => $this->mTitle->getDBkey(),
1357 'log_type' => 'delete',
1358 'log_action' => 'delete',
1359 'user_id=log_user' ),
1360 $fname,
1361 array( 'LIMIT' => 1, 'ORDER BY' => 'log_timestamp DESC' ) );
1362
1363 if($dbr->numRows($res) == 1) {
1364 while ( $x = $dbr->fetchObject ( $res ) )
1365 $data = $x;
1366 $dbr->freeResult ( $res ) ;
1367 } else {
1368 $data = null;
1369 }
1370 return $data;
1371 }
1372
1373 /**
1374 * @todo document
1375 */
1376 function getPreviewText() {
1377 global $wgOut, $wgUser, $wgTitle, $wgParser;
1378
1379 $fname = 'EditPage::getPreviewText';
1380 wfProfileIn( $fname );
1381
1382 if ( $this->mTriedSave && !$this->mTokenOk ) {
1383 $msg = 'session_fail_preview';
1384 } else {
1385 $msg = 'previewnote';
1386 }
1387 $previewhead = '<h2>' . htmlspecialchars( wfMsg( 'preview' ) ) . "</h2>\n" .
1388 "<div class='previewnote'>" . $wgOut->parse( wfMsg( $msg ) ) . "</div>\n";
1389 if ( $this->isConflict ) {
1390 $previewhead.='<h2>' . htmlspecialchars( wfMsg( 'previewconflict' ) ) . "</h2>\n";
1391 }
1392
1393 $parserOptions = ParserOptions::newFromUser( $wgUser );
1394 $parserOptions->setEditSection( false );
1395
1396 global $wgRawHtml;
1397 if( $wgRawHtml && !$this->mTokenOk ) {
1398 // Could be an offsite preview attempt. This is very unsafe if
1399 // HTML is enabled, as it could be an attack.
1400 return $wgOut->parse( "<div class='previewnote'>" .
1401 wfMsg( 'session_fail_preview_html' ) . "</div>" );
1402 }
1403
1404 # don't parse user css/js, show message about preview
1405 # XXX: stupid php bug won't let us use $wgTitle->isCssJsSubpage() here
1406
1407 if ( $this->isCssJsSubpage ) {
1408 if(preg_match("/\\.css$/", $wgTitle->getText() ) ) {
1409 $previewtext = wfMsg('usercsspreview');
1410 } else if(preg_match("/\\.js$/", $wgTitle->getText() ) ) {
1411 $previewtext = wfMsg('userjspreview');
1412 }
1413 $parserOptions->setTidy(true);
1414 $parserOutput = $wgParser->parse( $previewtext , $wgTitle, $parserOptions );
1415 $wgOut->addHTML( $parserOutput->mText );
1416 wfProfileOut( $fname );
1417 return $previewhead;
1418 } else {
1419 $toparse = $this->textbox1;
1420
1421 # If we're adding a comment, we need to show the
1422 # summary as the headline
1423 if($this->section=="new" && $this->summary!="") {
1424 $toparse="== {$this->summary} ==\n\n".$toparse;
1425 }
1426
1427 if ( $this->mMetaData != "" ) $toparse .= "\n" . $this->mMetaData ;
1428 $parserOptions->setTidy(true);
1429 $parserOutput = $wgParser->parse( $this->mArticle->preSaveTransform( $toparse ) ."\n\n",
1430 $wgTitle, $parserOptions );
1431
1432 $previewHTML = $parserOutput->getText();
1433 $wgOut->addParserOutputNoText( $parserOutput );
1434
1435 foreach ( $parserOutput->getTemplates() as $ns => $template)
1436 foreach ( array_keys( $template ) as $dbk)
1437 $this->mPreviewTemplates[] = Title::makeTitle($ns, $dbk);
1438
1439 wfProfileOut( $fname );
1440 return $previewhead . $previewHTML;
1441 }
1442 }
1443
1444 /**
1445 * Call the stock "user is blocked" page
1446 */
1447 function blockedPage() {
1448 global $wgOut, $wgUser;
1449 $wgOut->blockedPage( false ); # Standard block notice on the top, don't 'return'
1450
1451 # If the user made changes, preserve them when showing the markup
1452 # (This happens when a user is blocked during edit, for instance)
1453 $first = $this->firsttime || ( !$this->save && $this->textbox1 == '' );
1454 if( $first ) {
1455 $source = $this->mTitle->exists() ? $this->getContent() : false;
1456 } else {
1457 $source = $this->textbox1;
1458 }
1459
1460 # Spit out the source or the user's modified version
1461 if( $source !== false ) {
1462 $rows = $wgUser->getOption( 'rows' );
1463 $cols = $wgUser->getOption( 'cols' );
1464 $attribs = array( 'id' => 'wpTextbox1', 'name' => 'wpTextbox1', 'cols' => $cols, 'rows' => $rows, 'readonly' => 'readonly' );
1465 $wgOut->addHtml( '<hr />' );
1466 $wgOut->addWikiText( wfMsg( $first ? 'blockedoriginalsource' : 'blockededitsource', $this->mTitle->getPrefixedText() ) );
1467 $wgOut->addHtml( wfOpenElement( 'textarea', $attribs ) . htmlspecialchars( $source ) . wfCloseElement( 'textarea' ) );
1468 }
1469 }
1470
1471 /**
1472 * Produce the stock "please login to edit pages" page
1473 */
1474 function userNotLoggedInPage() {
1475 global $wgUser, $wgOut;
1476 $skin = $wgUser->getSkin();
1477
1478 $loginTitle = SpecialPage::getTitleFor( 'Userlogin' );
1479 $loginLink = $skin->makeKnownLinkObj( $loginTitle, wfMsgHtml( 'loginreqlink' ), 'returnto=' . $this->mTitle->getPrefixedUrl() );
1480
1481 $wgOut->setPageTitle( wfMsg( 'whitelistedittitle' ) );
1482 $wgOut->setRobotPolicy( 'noindex,nofollow' );
1483 $wgOut->setArticleRelated( false );
1484
1485 $wgOut->addHtml( wfMsgWikiHtml( 'whitelistedittext', $loginLink ) );
1486 $wgOut->returnToMain( false, $this->mTitle->getPrefixedUrl() );
1487 }
1488
1489 /**
1490 * Creates a basic error page which informs the user that
1491 * they have to validate their email address before being
1492 * allowed to edit.
1493 */
1494 function userNotConfirmedPage() {
1495 global $wgOut;
1496
1497 $wgOut->setPageTitle( wfMsg( 'confirmedittitle' ) );
1498 $wgOut->setRobotPolicy( 'noindex,nofollow' );
1499 $wgOut->setArticleRelated( false );
1500
1501 $wgOut->addWikiText( wfMsg( 'confirmedittext' ) );
1502 $wgOut->returnToMain( false );
1503 }
1504
1505 /**
1506 * Creates a basic error page which informs the user that
1507 * they have attempted to edit a nonexistant section.
1508 */
1509 function noSuchSectionPage() {
1510 global $wgOut;
1511
1512 $wgOut->setPageTitle( wfMsg( 'nosuchsectiontitle' ) );
1513 $wgOut->setRobotPolicy( 'noindex,nofollow' );
1514 $wgOut->setArticleRelated( false );
1515
1516 $wgOut->addWikiText( wfMsg( 'nosuchsectiontext', $this->section ) );
1517 $wgOut->returnToMain( false, $this->mTitle->getPrefixedUrl() );
1518 }
1519
1520 /**
1521 * Produce the stock "your edit contains spam" page
1522 *
1523 * @param $match Text which triggered one or more filters
1524 */
1525 function spamPage( $match = false ) {
1526 global $wgOut;
1527
1528 $wgOut->setPageTitle( wfMsg( 'spamprotectiontitle' ) );
1529 $wgOut->setRobotPolicy( 'noindex,nofollow' );
1530 $wgOut->setArticleRelated( false );
1531
1532 $wgOut->addWikiText( wfMsg( 'spamprotectiontext' ) );
1533 if ( $match )
1534 $wgOut->addWikiText( wfMsg( 'spamprotectionmatch', "<nowiki>{$match}</nowiki>" ) );
1535
1536 $wgOut->returnToMain( false );
1537 }
1538
1539 /**
1540 * @private
1541 * @todo document
1542 */
1543 function mergeChangesInto( &$editText ){
1544 $fname = 'EditPage::mergeChangesInto';
1545 wfProfileIn( $fname );
1546
1547 $db = wfGetDB( DB_MASTER );
1548
1549 // This is the revision the editor started from
1550 $baseRevision = Revision::loadFromTimestamp(
1551 $db, $this->mArticle->mTitle, $this->edittime );
1552 if( is_null( $baseRevision ) ) {
1553 wfProfileOut( $fname );
1554 return false;
1555 }
1556 $baseText = $baseRevision->getText();
1557
1558 // The current state, we want to merge updates into it
1559 $currentRevision = Revision::loadFromTitle(
1560 $db, $this->mArticle->mTitle );
1561 if( is_null( $currentRevision ) ) {
1562 wfProfileOut( $fname );
1563 return false;
1564 }
1565 $currentText = $currentRevision->getText();
1566
1567 $result = '';
1568 if( wfMerge( $baseText, $editText, $currentText, $result ) ){
1569 $editText = $result;
1570 wfProfileOut( $fname );
1571 return true;
1572 } else {
1573 wfProfileOut( $fname );
1574 return false;
1575 }
1576 }
1577
1578 /**
1579 * Check if the browser is on a blacklist of user-agents known to
1580 * mangle UTF-8 data on form submission. Returns true if Unicode
1581 * should make it through, false if it's known to be a problem.
1582 * @return bool
1583 * @private
1584 */
1585 function checkUnicodeCompliantBrowser() {
1586 global $wgBrowserBlackList;
1587 if( empty( $_SERVER["HTTP_USER_AGENT"] ) ) {
1588 // No User-Agent header sent? Trust it by default...
1589 return true;
1590 }
1591 $currentbrowser = $_SERVER["HTTP_USER_AGENT"];
1592 foreach ( $wgBrowserBlackList as $browser ) {
1593 if ( preg_match($browser, $currentbrowser) ) {
1594 return false;
1595 }
1596 }
1597 return true;
1598 }
1599
1600 /**
1601 * Format an anchor fragment as it would appear for a given section name
1602 * @param string $text
1603 * @return string
1604 * @private
1605 */
1606 function sectionAnchor( $text ) {
1607 $headline = Sanitizer::decodeCharReferences( $text );
1608 # strip out HTML
1609 $headline = preg_replace( '/<.*?' . '>/', '', $headline );
1610 $headline = trim( $headline );
1611 $sectionanchor = '#' . urlencode( str_replace( ' ', '_', $headline ) );
1612 $replacearray = array(
1613 '%3A' => ':',
1614 '%' => '.'
1615 );
1616 return str_replace(
1617 array_keys( $replacearray ),
1618 array_values( $replacearray ),
1619 $sectionanchor );
1620 }
1621
1622 /**
1623 * Shows a bulletin board style toolbar for common editing functions.
1624 * It can be disabled in the user preferences.
1625 * The necessary JavaScript code can be found in style/wikibits.js.
1626 */
1627 function getEditToolbar() {
1628 global $wgStylePath, $wgContLang, $wgJsMimeType;
1629
1630 /**
1631 * toolarray an array of arrays which each include the filename of
1632 * the button image (without path), the opening tag, the closing tag,
1633 * and optionally a sample text that is inserted between the two when no
1634 * selection is highlighted.
1635 * The tip text is shown when the user moves the mouse over the button.
1636 *
1637 * Already here are accesskeys (key), which are not used yet until someone
1638 * can figure out a way to make them work in IE. However, we should make
1639 * sure these keys are not defined on the edit page.
1640 */
1641 $toolarray = array(
1642 array( 'image' => 'button_bold.png',
1643 'id' => 'mw-editbutton-bold',
1644 'open' => '\\\'\\\'\\\'',
1645 'close' => '\\\'\\\'\\\'',
1646 'sample'=> wfMsg('bold_sample'),
1647 'tip' => wfMsg('bold_tip'),
1648 'key' => 'B'
1649 ),
1650 array( 'image' => 'button_italic.png',
1651 'id' => 'mw-editbutton-italic',
1652 'open' => '\\\'\\\'',
1653 'close' => '\\\'\\\'',
1654 'sample'=> wfMsg('italic_sample'),
1655 'tip' => wfMsg('italic_tip'),
1656 'key' => 'I'
1657 ),
1658 array( 'image' => 'button_link.png',
1659 'id' => 'mw-editbutton-link',
1660 'open' => '[[',
1661 'close' => ']]',
1662 'sample'=> wfMsg('link_sample'),
1663 'tip' => wfMsg('link_tip'),
1664 'key' => 'L'
1665 ),
1666 array( 'image' => 'button_extlink.png',
1667 'id' => 'mw-editbutton-extlink',
1668 'open' => '[',
1669 'close' => ']',
1670 'sample'=> wfMsg('extlink_sample'),
1671 'tip' => wfMsg('extlink_tip'),
1672 'key' => 'X'
1673 ),
1674 array( 'image' => 'button_headline.png',
1675 'id' => 'mw-editbutton-headline',
1676 'open' => "\\n== ",
1677 'close' => " ==\\n",
1678 'sample'=> wfMsg('headline_sample'),
1679 'tip' => wfMsg('headline_tip'),
1680 'key' => 'H'
1681 ),
1682 array( 'image' => 'button_image.png',
1683 'id' => 'mw-editbutton-image',
1684 'open' => '[['.$wgContLang->getNsText(NS_IMAGE).":",
1685 'close' => ']]',
1686 'sample'=> wfMsg('image_sample'),
1687 'tip' => wfMsg('image_tip'),
1688 'key' => 'D'
1689 ),
1690 array( 'image' => 'button_media.png',
1691 'id' => 'mw-editbutton-media',
1692 'open' => '[['.$wgContLang->getNsText(NS_MEDIA).':',
1693 'close' => ']]',
1694 'sample'=> wfMsg('media_sample'),
1695 'tip' => wfMsg('media_tip'),
1696 'key' => 'M'
1697 ),
1698 array( 'image' => 'button_math.png',
1699 'id' => 'mw-editbutton-math',
1700 'open' => "<math>",
1701 'close' => "<\\/math>",
1702 'sample'=> wfMsg('math_sample'),
1703 'tip' => wfMsg('math_tip'),
1704 'key' => 'C'
1705 ),
1706 array( 'image' => 'button_nowiki.png',
1707 'id' => 'mw-editbutton-nowiki',
1708 'open' => "<nowiki>",
1709 'close' => "<\\/nowiki>",
1710 'sample'=> wfMsg('nowiki_sample'),
1711 'tip' => wfMsg('nowiki_tip'),
1712 'key' => 'N'
1713 ),
1714 array( 'image' => 'button_sig.png',
1715 'id' => 'mw-editbutton-signature',
1716 'open' => '--~~~~',
1717 'close' => '',
1718 'sample'=> '',
1719 'tip' => wfMsg('sig_tip'),
1720 'key' => 'Y'
1721 ),
1722 array( 'image' => 'button_hr.png',
1723 'id' => 'mw-editbutton-hr',
1724 'open' => "\\n----\\n",
1725 'close' => '',
1726 'sample'=> '',
1727 'tip' => wfMsg('hr_tip'),
1728 'key' => 'R'
1729 )
1730 );
1731 $toolbar = "<div id='toolbar'>\n";
1732 $toolbar.="<script type='$wgJsMimeType'>\n/*<![CDATA[*/\n";
1733
1734 foreach($toolarray as $tool) {
1735
1736 $cssId = $tool['id'];
1737 $image=$wgStylePath.'/common/images/'.$tool['image'];
1738 $open=$tool['open'];
1739 $close=$tool['close'];
1740 $sample = wfEscapeJsString( $tool['sample'] );
1741
1742 // Note that we use the tip both for the ALT tag and the TITLE tag of the image.
1743 // Older browsers show a "speedtip" type message only for ALT.
1744 // Ideally these should be different, realistically they
1745 // probably don't need to be.
1746 $tip = wfEscapeJsString( $tool['tip'] );
1747
1748 #$key = $tool["key"];
1749
1750 $toolbar.="addButton('$image','$tip','$open','$close','$sample','$cssId');\n";
1751 }
1752
1753 $toolbar.="/*]]>*/\n</script>";
1754 $toolbar.="\n</div>";
1755 return $toolbar;
1756 }
1757
1758 /**
1759 * Returns an array of html code of the following checkboxes:
1760 * minor and watch
1761 *
1762 * @param $tabindex Current tabindex
1763 * @param $skin Skin object
1764 * @param $checked Array of checkbox => bool, where bool indicates the checked
1765 * status of the checkbox
1766 *
1767 * @return array
1768 */
1769 public static function getCheckboxes( &$tabindex, $skin, $checked ) {
1770 global $wgUser;
1771
1772 $checkboxes = array();
1773
1774 $checkboxes['minor'] = '';
1775 $minorLabel = wfMsgExt('minoredit', array('parseinline'));
1776 if ( $wgUser->isAllowed('minoredit') ) {
1777 $attribs = array(
1778 'tabindex' => ++$tabindex,
1779 'accesskey' => wfMsg( 'accesskey-minoredit' ),
1780 'id' => 'wpMinoredit',
1781 );
1782 $checkboxes['minor'] =
1783 Xml::check( 'wpMinoredit', $checked['minor'], $attribs ) .
1784 "&nbsp;<label for='wpMinoredit'".$skin->tooltipAndAccesskey('minoredit').">{$minorLabel}</label>";
1785 }
1786
1787 $watchLabel = wfMsgExt('watchthis', array('parseinline'));
1788 $checkboxes['watch'] = '';
1789 if ( $wgUser->isLoggedIn() ) {
1790 $attribs = array(
1791 'tabindex' => ++$tabindex,
1792 'accesskey' => wfMsg( 'accesskey-watch' ),
1793 'id' => 'wpWatchthis',
1794 );
1795 $checkboxes['watch'] =
1796 Xml::check( 'wpWatchthis', $checked['watch'], $attribs ) .
1797 "&nbsp;<label for='wpWatchthis'".$skin->tooltipAndAccesskey('watch').">{$watchLabel}</label>";
1798 }
1799 return $checkboxes;
1800 }
1801
1802 /**
1803 * Returns an array of html code of the following buttons:
1804 * save, diff, preview and live
1805 *
1806 * @param $tabindex Current tabindex
1807 *
1808 * @return array
1809 */
1810 public function getEditButtons(&$tabindex) {
1811 global $wgLivePreview, $wgUser;
1812
1813 $buttons = array();
1814
1815 $temp = array(
1816 'id' => 'wpSave',
1817 'name' => 'wpSave',
1818 'type' => 'submit',
1819 'tabindex' => ++$tabindex,
1820 'value' => wfMsg('savearticle'),
1821 'accesskey' => wfMsg('accesskey-save'),
1822 'title' => wfMsg( 'tooltip-save' ).' ['.wfMsg( 'accesskey-save' ).']',
1823 );
1824 $buttons['save'] = wfElement('input', $temp, '');
1825
1826 ++$tabindex; // use the same for preview and live preview
1827 if ( $wgLivePreview && $wgUser->getOption( 'uselivepreview' ) ) {
1828 $temp = array(
1829 'id' => 'wpPreview',
1830 'name' => 'wpPreview',
1831 'type' => 'submit',
1832 'tabindex' => $tabindex,
1833 'value' => wfMsg('showpreview'),
1834 'accesskey' => '',
1835 'title' => wfMsg( 'tooltip-preview' ).' ['.wfMsg( 'accesskey-preview' ).']',
1836 'style' => 'display: none;',
1837 );
1838 $buttons['preview'] = wfElement('input', $temp, '');
1839
1840 $temp = array(
1841 'id' => 'wpLivePreview',
1842 'name' => 'wpLivePreview',
1843 'type' => 'submit',
1844 'tabindex' => $tabindex,
1845 'value' => wfMsg('showlivepreview'),
1846 'accesskey' => wfMsg('accesskey-preview'),
1847 'title' => '',
1848 'onclick' => $this->doLivePreviewScript(),
1849 );
1850 $buttons['live'] = wfElement('input', $temp, '');
1851 } else {
1852 $temp = array(
1853 'id' => 'wpPreview',
1854 'name' => 'wpPreview',
1855 'type' => 'submit',
1856 'tabindex' => $tabindex,
1857 'value' => wfMsg('showpreview'),
1858 'accesskey' => wfMsg('accesskey-preview'),
1859 'title' => wfMsg( 'tooltip-preview' ).' ['.wfMsg( 'accesskey-preview' ).']',
1860 );
1861 $buttons['preview'] = wfElement('input', $temp, '');
1862 $buttons['live'] = '';
1863 }
1864
1865 $temp = array(
1866 'id' => 'wpDiff',
1867 'name' => 'wpDiff',
1868 'type' => 'submit',
1869 'tabindex' => ++$tabindex,
1870 'value' => wfMsg('showdiff'),
1871 'accesskey' => wfMsg('accesskey-diff'),
1872 'title' => wfMsg( 'tooltip-diff' ).' ['.wfMsg( 'accesskey-diff' ).']',
1873 );
1874 $buttons['diff'] = wfElement('input', $temp, '');
1875
1876 return $buttons;
1877 }
1878
1879 /**
1880 * Output preview text only. This can be sucked into the edit page
1881 * via JavaScript, and saves the server time rendering the skin as
1882 * well as theoretically being more robust on the client (doesn't
1883 * disturb the edit box's undo history, won't eat your text on
1884 * failure, etc).
1885 *
1886 * @todo This doesn't include category or interlanguage links.
1887 * Would need to enhance it a bit, <s>maybe wrap them in XML
1888 * or something...</s> that might also require more skin
1889 * initialization, so check whether that's a problem.
1890 */
1891 function livePreview() {
1892 global $wgOut;
1893 $wgOut->disable();
1894 header( 'Content-type: text/xml; charset=utf-8' );
1895 header( 'Cache-control: no-cache' );
1896
1897 $s =
1898 '<?xml version="1.0" encoding="UTF-8" ?>' . "\n" .
1899 Xml::openElement( 'livepreview' ) .
1900 Xml::element( 'preview', null, $this->getPreviewText() ) .
1901 Xml::element( 'br', array( 'style' => 'clear: both;' ) ) .
1902 Xml::closeElement( 'livepreview' );
1903 echo $s;
1904 }
1905
1906
1907 /**
1908 * Get a diff between the current contents of the edit box and the
1909 * version of the page we're editing from.
1910 *
1911 * If this is a section edit, we'll replace the section as for final
1912 * save and then make a comparison.
1913 *
1914 * @return string HTML
1915 */
1916 function getDiff() {
1917 $oldtext = $this->mArticle->fetchContent();
1918 $newtext = $this->mArticle->replaceSection(
1919 $this->section, $this->textbox1, $this->summary, $this->edittime );
1920 $newtext = $this->mArticle->preSaveTransform( $newtext );
1921 $oldtitle = wfMsgExt( 'currentrev', array('parseinline') );
1922 $newtitle = wfMsgExt( 'yourtext', array('parseinline') );
1923 if ( $oldtext !== false || $newtext != '' ) {
1924 $de = new DifferenceEngine( $this->mTitle );
1925 $de->setText( $oldtext, $newtext );
1926 $difftext = $de->getDiff( $oldtitle, $newtitle );
1927 } else {
1928 $difftext = '';
1929 }
1930
1931 return '<div id="wikiDiff">' . $difftext . '</div>';
1932 }
1933
1934 /**
1935 * Filter an input field through a Unicode de-armoring process if it
1936 * came from an old browser with known broken Unicode editing issues.
1937 *
1938 * @param WebRequest $request
1939 * @param string $field
1940 * @return string
1941 * @private
1942 */
1943 function safeUnicodeInput( $request, $field ) {
1944 $text = rtrim( $request->getText( $field ) );
1945 return $request->getBool( 'safemode' )
1946 ? $this->unmakesafe( $text )
1947 : $text;
1948 }
1949
1950 /**
1951 * Filter an output field through a Unicode armoring process if it is
1952 * going to an old browser with known broken Unicode editing issues.
1953 *
1954 * @param string $text
1955 * @return string
1956 * @private
1957 */
1958 function safeUnicodeOutput( $text ) {
1959 global $wgContLang;
1960 $codedText = $wgContLang->recodeForEdit( $text );
1961 return $this->checkUnicodeCompliantBrowser()
1962 ? $codedText
1963 : $this->makesafe( $codedText );
1964 }
1965
1966 /**
1967 * A number of web browsers are known to corrupt non-ASCII characters
1968 * in a UTF-8 text editing environment. To protect against this,
1969 * detected browsers will be served an armored version of the text,
1970 * with non-ASCII chars converted to numeric HTML character references.
1971 *
1972 * Preexisting such character references will have a 0 added to them
1973 * to ensure that round-trips do not alter the original data.
1974 *
1975 * @param string $invalue
1976 * @return string
1977 * @private
1978 */
1979 function makesafe( $invalue ) {
1980 // Armor existing references for reversability.
1981 $invalue = strtr( $invalue, array( "&#x" => "&#x0" ) );
1982
1983 $bytesleft = 0;
1984 $result = "";
1985 $working = 0;
1986 for( $i = 0; $i < strlen( $invalue ); $i++ ) {
1987 $bytevalue = ord( $invalue{$i} );
1988 if( $bytevalue <= 0x7F ) { //0xxx xxxx
1989 $result .= chr( $bytevalue );
1990 $bytesleft = 0;
1991 } elseif( $bytevalue <= 0xBF ) { //10xx xxxx
1992 $working = $working << 6;
1993 $working += ($bytevalue & 0x3F);
1994 $bytesleft--;
1995 if( $bytesleft <= 0 ) {
1996 $result .= "&#x" . strtoupper( dechex( $working ) ) . ";";
1997 }
1998 } elseif( $bytevalue <= 0xDF ) { //110x xxxx
1999 $working = $bytevalue & 0x1F;
2000 $bytesleft = 1;
2001 } elseif( $bytevalue <= 0xEF ) { //1110 xxxx
2002 $working = $bytevalue & 0x0F;
2003 $bytesleft = 2;
2004 } else { //1111 0xxx
2005 $working = $bytevalue & 0x07;
2006 $bytesleft = 3;
2007 }
2008 }
2009 return $result;
2010 }
2011
2012 /**
2013 * Reverse the previously applied transliteration of non-ASCII characters
2014 * back to UTF-8. Used to protect data from corruption by broken web browsers
2015 * as listed in $wgBrowserBlackList.
2016 *
2017 * @param string $invalue
2018 * @return string
2019 * @private
2020 */
2021 function unmakesafe( $invalue ) {
2022 $result = "";
2023 for( $i = 0; $i < strlen( $invalue ); $i++ ) {
2024 if( ( substr( $invalue, $i, 3 ) == "&#x" ) && ( $invalue{$i+3} != '0' ) ) {
2025 $i += 3;
2026 $hexstring = "";
2027 do {
2028 $hexstring .= $invalue{$i};
2029 $i++;
2030 } while( ctype_xdigit( $invalue{$i} ) && ( $i < strlen( $invalue ) ) );
2031
2032 // Do some sanity checks. These aren't needed for reversability,
2033 // but should help keep the breakage down if the editor
2034 // breaks one of the entities whilst editing.
2035 if ((substr($invalue,$i,1)==";") and (strlen($hexstring) <= 6)) {
2036 $codepoint = hexdec($hexstring);
2037 $result .= codepointToUtf8( $codepoint );
2038 } else {
2039 $result .= "&#x" . $hexstring . substr( $invalue, $i, 1 );
2040 }
2041 } else {
2042 $result .= substr( $invalue, $i, 1 );
2043 }
2044 }
2045 // reverse the transform that we made for reversability reasons.
2046 return strtr( $result, array( "&#x0" => "&#x" ) );
2047 }
2048
2049 function noCreatePermission() {
2050 global $wgOut;
2051 $wgOut->setPageTitle( wfMsg( 'nocreatetitle' ) );
2052 $wgOut->addWikiText( wfMsg( 'nocreatetext' ) );
2053 }
2054
2055 /**
2056 * If there are rows in the deletion log for this page, show them,
2057 * along with a nice little note for the user
2058 *
2059 * @param OutputPage $out
2060 */
2061 private function showDeletionLog( $out ) {
2062 $title = $this->mArticle->getTitle();
2063 $reader = new LogReader(
2064 new FauxRequest(
2065 array(
2066 'page' => $title->getPrefixedText(),
2067 'type' => 'delete',
2068 )
2069 )
2070 );
2071 if( $reader->hasRows() ) {
2072 $out->addHtml( '<div id="mw-recreate-deleted-warn">' );
2073 $out->addWikiText( wfMsg( 'recreate-deleted-warn' ) );
2074 $viewer = new LogViewer( $reader );
2075 $viewer->showList( $out );
2076 $out->addHtml( '</div>' );
2077 }
2078 }
2079
2080 }
2081
2082 ?>