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