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