whoops
[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
21 # Form values
22 var $save = false, $preview = false, $diff = false;
23 var $minoredit = false, $watchthis = false;
24 var $textbox1 = '', $textbox2 = '', $summary = '';
25 var $edittime = '', $section = '';
26 var $oldid = 0;
27
28 /**
29 * @todo document
30 * @param $article
31 */
32 function EditPage( $article ) {
33 $this->mArticle =& $article;
34 global $wgTitle;
35 $this->mTitle =& $wgTitle;
36 }
37
38 /**
39 * This is the function that extracts metadata from the article body on the first view.
40 * To turn the feature on, set $wgUseMetadataEdit = true ; in LocalSettings
41 * and set $wgMetadataWhitelist to the *full* title of the template whitelist
42 */
43 function extractMetaDataFromArticle () {
44 global $wgUseMetadataEdit , $wgMetadataWhitelist , $wgLang ;
45 $this->mMetaData = '' ;
46 if ( !$wgUseMetadataEdit ) return ;
47 if ( $wgMetadataWhitelist == '' ) return ;
48 $s = '' ;
49 $t = $this->mArticle->getContent ( true ) ;
50
51 # MISSING : <nowiki> filtering
52
53 # Categories and language links
54 $t = explode ( "\n" , $t ) ;
55 $catlow = strtolower ( $wgLang->getNsText ( NS_CATEGORY ) ) ;
56 $cat = $ll = array() ;
57 foreach ( $t AS $key => $x )
58 {
59 $y = trim ( strtolower ( $x ) ) ;
60 while ( substr ( $y , 0 , 2 ) == '[[' )
61 {
62 $y = explode ( ']]' , trim ( $x ) ) ;
63 $first = array_shift ( $y ) ;
64 $first = explode ( ':' , $first ) ;
65 $ns = array_shift ( $first ) ;
66 $ns = trim ( str_replace ( '[' , '' , $ns ) ) ;
67 if ( strlen ( $ns ) == 2 OR strtolower ( $ns ) == $catlow )
68 {
69 $add = '[[' . $ns . ':' . implode ( ':' , $first ) . ']]' ;
70 if ( strtolower ( $ns ) == $catlow ) $cat[] = $add ;
71 else $ll[] = $add ;
72 $x = implode ( ']]' , $y ) ;
73 $t[$key] = $x ;
74 $y = trim ( strtolower ( $x ) ) ;
75 }
76 }
77 }
78 if ( count ( $cat ) ) $s .= implode ( ' ' , $cat ) . "\n" ;
79 if ( count ( $ll ) ) $s .= implode ( ' ' , $ll ) . "\n" ;
80 $t = implode ( "\n" , $t ) ;
81
82 # Load whitelist
83 $sat = array () ; # stand-alone-templates; must be lowercase
84 $wl_title = Title::newFromText ( $wgMetadataWhitelist ) ;
85 $wl_article = new Article ( $wl_title ) ;
86 $wl = explode ( "\n" , $wl_article->getContent(true) ) ;
87 foreach ( $wl AS $x )
88 {
89 $isentry = false ;
90 $x = trim ( $x ) ;
91 while ( substr ( $x , 0 , 1 ) == '*' )
92 {
93 $isentry = true ;
94 $x = trim ( substr ( $x , 1 ) ) ;
95 }
96 if ( $isentry )
97 {
98 $sat[] = strtolower ( $x ) ;
99 }
100
101 }
102
103 # Templates, but only some
104 $t = explode ( '{{' , $t ) ;
105 $tl = array () ;
106 foreach ( $t AS $key => $x )
107 {
108 $y = explode ( '}}' , $x , 2 ) ;
109 if ( count ( $y ) == 2 )
110 {
111 $z = $y[0] ;
112 $z = explode ( '|' , $z ) ;
113 $tn = array_shift ( $z ) ;
114 if ( in_array ( strtolower ( $tn ) , $sat ) )
115 {
116 $tl[] = '{{' . $y[0] . '}}' ;
117 $t[$key] = $y[1] ;
118 $y = explode ( '}}' , $y[1] , 2 ) ;
119 }
120 else $t[$key] = '{{' . $x ;
121 }
122 else if ( $key != 0 ) $t[$key] = '{{' . $x ;
123 else $t[$key] = $x ;
124 }
125 if ( count ( $tl ) ) $s .= implode ( ' ' , $tl ) ;
126 $t = implode ( '' , $t ) ;
127
128 $t = str_replace ( "\n\n\n" , "\n" , $t ) ;
129 $this->mArticle->mContent = $t ;
130 $this->mMetaData = $s ;
131 }
132
133 /**
134 * This is the function that gets called for "action=edit".
135 */
136 function edit() {
137 global $wgOut, $wgUser, $wgRequest;
138 // this is not an article
139 $wgOut->setArticleFlag(false);
140
141 $this->importFormData( $wgRequest );
142
143 if( $this->live ) {
144 $this->livePreview();
145 return;
146 }
147
148 if ( ! $this->mTitle->userCanEdit() ) {
149 $wgOut->readOnlyPage( $this->mArticle->getContent( true ), true );
150 return;
151 }
152 if ( !$this->preview && !$this->diff && $wgUser->isBlockedFrom( $this->mTitle, !$this->save ) ) {
153 # When previewing, don't check blocked state - will get caught at save time.
154 # Also, check when starting edition is done against slave to improve performance.
155 $this->blockedIPpage();
156 return;
157 }
158 if ( !$wgUser->isAllowed('edit') ) {
159 if ( $wgUser->isAnon() ) {
160 $this->userNotLoggedInPage();
161 return;
162 } else {
163 $wgOut->readOnlyPage( $this->mArticle->getContent( true ), true );
164 return;
165 }
166 }
167 if ( wfReadOnly() ) {
168 if( $this->save || $this->preview ) {
169 $this->editForm( 'preview' );
170 } else if ( $this->diff ) {
171 $this->editForm( 'diff' );
172 } else {
173 $wgOut->readOnlyPage( $this->mArticle->getContent( true ) );
174 }
175 return;
176 }
177 if ( $this->save ) {
178 $this->editForm( 'save' );
179 } else if ( $this->preview ) {
180 $this->editForm( 'preview' );
181 } else if ( $this->diff ) {
182 $this->editForm( 'diff' );
183 } else { # First time through
184 if( $this->previewOnOpen() ) {
185 $this->editForm( 'preview', true );
186 } else {
187 $this->extractMetaDataFromArticle () ;
188 $this->editForm( 'initial', true );
189 }
190 }
191 }
192
193 /**
194 * Return true if this page should be previewed when the edit form
195 * is initially opened.
196 * @return bool
197 * @access private
198 */
199 function previewOnOpen() {
200 global $wgUser;
201 return $wgUser->getOption( 'previewonfirst' ) ||
202 ( $this->mTitle->getNamespace() == NS_CATEGORY &&
203 !$this->mTitle->exists() );
204 }
205
206 /**
207 * @todo document
208 */
209 function importFormData( &$request ) {
210 if( $request->wasPosted() ) {
211 # These fields need to be checked for encoding.
212 # Also remove trailing whitespace, but don't remove _initial_
213 # whitespace from the text boxes. This may be significant formatting.
214 $this->textbox1 = rtrim( $request->getText( 'wpTextbox1' ) );
215 $this->textbox2 = rtrim( $request->getText( 'wpTextbox2' ) );
216 $this->mMetaData = rtrim( $request->getText( 'metadata' ) );
217 $this->summary = $request->getText( 'wpSummary' );
218
219 $this->edittime = $request->getVal( 'wpEdittime' );
220 if( is_null( $this->edittime ) ) {
221 # If the form is incomplete, force to preview.
222 $this->preview = true;
223 } else {
224 if( $this->tokenOk( $request ) ) {
225 # Some browsers will not report any submit button
226 # if the user hits enter in the comment box.
227 # The unmarked state will be assumed to be a save,
228 # if the form seems otherwise complete.
229 $this->preview = $request->getCheck( 'wpPreview' );
230 $this->diff = $request->getCheck( 'wpDiff' );
231 } else {
232 # Page might be a hack attempt posted from
233 # an external site. Preview instead of saving.
234 $this->preview = true;
235 }
236 }
237 $this->save = ! ( $this->preview OR $this->diff );
238 if( !preg_match( '/^\d{14}$/', $this->edittime )) {
239 $this->edittime = null;
240 }
241
242 $this->minoredit = $request->getCheck( 'wpMinoredit' );
243 $this->watchthis = $request->getCheck( 'wpWatchthis' );
244 } else {
245 # Not a posted form? Start with nothing.
246 $this->textbox1 = '';
247 $this->textbox2 = '';
248 $this->mMetaData = '';
249 $this->summary = '';
250 $this->edittime = '';
251 $this->preview = false;
252 $this->save = false;
253 $this->diff = false;
254 $this->minoredit = false;
255 $this->watchthis = false;
256 }
257
258 $this->oldid = $request->getInt( 'oldid' );
259
260 # Section edit can come from either the form or a link
261 $this->section = $request->getVal( 'wpSection', $request->getVal( 'section' ) );
262
263 $this->live = $request->getCheck( 'live' );
264 }
265
266 /**
267 * Make sure the form isn't faking a user's credentials.
268 *
269 * @param WebRequest $request
270 * @return bool
271 * @access private
272 */
273 function tokenOk( &$request ) {
274 global $wgUser;
275 if( $wgUser->isAnon() ) {
276 # Anonymous users may not have a session
277 # open. Don't tokenize.
278 return true;
279 } else {
280 return $wgUser->matchEditToken( $request->getVal( 'wpEditToken' ) );
281 }
282 }
283
284 function submit() {
285 $this->edit();
286 }
287
288 /**
289 * The edit form is self-submitting, so that when things like
290 * preview and edit conflicts occur, we get the same form back
291 * with the extra stuff added. Only when the final submission
292 * is made and all is well do we actually save and redirect to
293 * the newly-edited page.
294 *
295 * @param string $formtype Type of form either : save, initial, diff or preview
296 * @param bool $firsttime True to load form data from db
297 */
298 function editForm( $formtype, $firsttime = false ) {
299 global $wgOut, $wgUser;
300 global $wgLang, $wgContLang, $wgParser, $wgTitle;
301 global $wgAllowAnonymousMinor, $wgRequest;
302 global $wgSpamRegex, $wgFilterCallback;
303
304 $sk = $wgUser->getSkin();
305 $isConflict = false;
306 // css / js subpages of user pages get a special treatment
307 $isCssJsSubpage = $wgTitle->isCssJsSubpage();
308
309 if(!$this->mTitle->getArticleID()) { # new article
310 $editintro = $wgRequest->getText( 'editintro' );
311 $addstandardintro=true;
312 if($editintro) {
313 $introtitle=Title::newFromText($editintro);
314 if(isset($introtitle) && $introtitle->userCanRead()) {
315 $rev=Revision::newFromTitle($introtitle);
316 if($rev) {
317 $wgOut->addWikiText($rev->getText());
318 $addstandardintro=false;
319 }
320 }
321 }
322 if($addstandardintro) {
323 $wgOut->addWikiText(wfmsg('newarticletext'));
324 }
325 }
326
327 if( $this->mTitle->isTalkPage() ) {
328 $wgOut->addWikiText(wfmsg('talkpagetext'));
329 }
330
331 # Attempt submission here. This will check for edit conflicts,
332 # and redundantly check for locked database, blocked IPs, etc.
333 # that edit() already checked just in case someone tries to sneak
334 # in the back door with a hand-edited submission URL.
335
336 if ( 'save' == $formtype ) {
337 # Reintegrate metadata
338 if ( $this->mMetaData != '' ) $this->textbox1 .= "\n" . $this->mMetaData ;
339 $this->mMetaData = '' ;
340
341 # Check for spam
342 if ( $wgSpamRegex && preg_match( $wgSpamRegex, $this->textbox1, $matches ) ) {
343 $this->spamPage ( $matches[0] );
344 return;
345 }
346 if ( $wgFilterCallback && $wgFilterCallback( $this->mTitle, $this->textbox1, $this->section ) ) {
347 # Error messages or other handling should be performed by the filter function
348 return;
349 }
350 if ( $wgUser->isBlockedFrom( $this->mTitle, false ) ) {
351 # Check block state against master, thus 'false'.
352 $this->blockedIPpage();
353 return;
354 }
355
356 if ( !$wgUser->isAllowed('edit') ) {
357 if ( $wgUser->isAnon() ) {
358 $this->userNotLoggedInPage();
359 return;
360 }
361 else {
362 $wgOut->readOnlyPage();
363 return;
364 }
365 }
366
367 if ( wfReadOnly() ) {
368 $wgOut->readOnlyPage();
369 return;
370 }
371 if ( $wgUser->pingLimiter() ) {
372 $wgOut->rateLimited();
373 return;
374 }
375
376 # If article is new, insert it.
377 $aid = $this->mTitle->getArticleID( GAID_FOR_UPDATE );
378 if ( 0 == $aid ) {
379 # Don't save a new article if it's blank.
380 if ( ( '' == $this->textbox1 ) ||
381 ( wfMsg( 'newarticletext' ) == $this->textbox1 ) ) {
382 $wgOut->redirect( $this->mTitle->getFullURL() );
383 return;
384 }
385 if (wfRunHooks('ArticleSave', array(&$this->mArticle, &$wgUser, &$this->textbox1,
386 &$this->summary, &$this->minoredit, &$this->watchthis, NULL)))
387 {
388
389 $isComment=($this->section=='new');
390 $this->mArticle->insertNewArticle( $this->textbox1, $this->summary,
391 $this->minoredit, $this->watchthis, false, $isComment);
392 wfRunHooks('ArticleSaveComplete', array(&$this->mArticle, &$wgUser, $this->textbox1,
393 $this->summary, $this->minoredit,
394 $this->watchthis, NULL));
395 }
396 return;
397 }
398
399 # Article exists. Check for edit conflict.
400
401 $this->mArticle->clear(); # Force reload of dates, etc.
402 $this->mArticle->forUpdate( true ); # Lock the article
403
404 if( ( $this->section != 'new' ) &&
405 ($this->mArticle->getTimestamp() != $this->edittime ) ) {
406 $isConflict = true;
407 }
408 $userid = $wgUser->getID();
409
410 if ( $isConflict) {
411 wfDebug( "EditPage::editForm conflict! getting section '$this->section' for time '$this->edittime' (article time '" .
412 $this->mArticle->getTimestamp() . "'\n" );
413 $text = $this->mArticle->getTextOfLastEditWithSectionReplacedOrAdded(
414 $this->section, $this->textbox1, $this->summary, $this->edittime);
415 }
416 else {
417 wfDebug( "EditPage::editForm getting section '$this->section'\n" );
418 $text = $this->mArticle->getTextOfLastEditWithSectionReplacedOrAdded(
419 $this->section, $this->textbox1, $this->summary);
420 }
421 # Suppress edit conflict with self
422
423 if ( ( 0 != $userid ) && ( $this->mArticle->getUser() == $userid ) ) {
424 wfDebug( "Suppressing edit conflict, same user.\n" );
425 $isConflict = false;
426 } else {
427 # switch from section editing to normal editing in edit conflict
428 if($isConflict) {
429 # Attempt merge
430 if( $this->mergeChangesInto( $text ) ){
431 // Successful merge! Maybe we should tell the user the good news?
432 $isConflict = false;
433 wfDebug( "Suppressing edit conflict, successful merge.\n" );
434 } else {
435 $this->section = '';
436 $this->textbox1 = $text;
437 wfDebug( "Keeping edit conflict, failed merge.\n" );
438 }
439 }
440 }
441 if ( ! $isConflict ) {
442 # All's well
443 $sectionanchor = '';
444 if( $this->section == 'new' ) {
445 if( $this->summary != '' ) {
446 $sectionanchor = $this->sectionAnchor( $this->summary );
447 }
448 } elseif( $this->section != '' ) {
449 # Try to get a section anchor from the section source, redirect to edited section if header found
450 # XXX: might be better to integrate this into Article::getTextOfLastEditWithSectionReplacedOrAdded
451 # for duplicate heading checking and maybe parsing
452 $hasmatch = preg_match( "/^ *([=]{1,6})(.*?)(\\1) *\\n/i", $this->textbox1, $matches );
453 # we can't deal with anchors, includes, html etc in the header for now,
454 # headline would need to be parsed to improve this
455 #if($hasmatch and strlen($matches[2]) > 0 and !preg_match( "/[\\['{<>]/", $matches[2])) {
456 if($hasmatch and strlen($matches[2]) > 0) {
457 $sectionanchor = $this->sectionAnchor( $matches[2] );
458 }
459 }
460
461 // Save errors may fall down to the edit form, but we've now
462 // merged the section into full text. Clear the section field
463 // so that later submission of conflict forms won't try to
464 // replace that into a duplicated mess.
465 $this->textbox1 = $text;
466 $this->section = '';
467
468 if (wfRunHooks('ArticleSave', array(&$this->mArticle, &$wgUser, &$text,
469 &$this->summary, &$this->minoredit,
470 &$this->watchthis, &$sectionanchor)))
471 {
472 # update the article here
473 if($this->mArticle->updateArticle( $text, $this->summary, $this->minoredit,
474 $this->watchthis, '', $sectionanchor ))
475 {
476 wfRunHooks('ArticleSaveComplete', array(&$this->mArticle, &$wgUser, $text,
477 $this->summary, $this->minoredit,
478 $this->watchthis, $sectionanchor));
479 return;
480 } else {
481 $isConflict = true;
482 }
483 }
484 }
485 }
486 # First time through: get contents, set time for conflict
487 # checking, etc.
488
489 if ( 'initial' == $formtype || $firsttime ) {
490 $this->edittime = $this->mArticle->getTimestamp();
491 $this->textbox1 = $this->mArticle->getContent( true );
492 $this->summary = '';
493 $this->proxyCheck();
494 }
495 $wgOut->setRobotpolicy( 'noindex,nofollow' );
496
497 # Enabled article-related sidebar, toplinks, etc.
498 $wgOut->setArticleRelated( true );
499
500 if ( $isConflict ) {
501 $s = wfMsg( 'editconflict', $this->mTitle->getPrefixedText() );
502 $wgOut->setPageTitle( $s );
503 $wgOut->addWikiText( wfMsg( 'explainconflict' ) );
504
505 $this->textbox2 = $this->textbox1;
506 $this->textbox1 = $this->mArticle->getContent( true );
507 $this->edittime = $this->mArticle->getTimestamp();
508 } else {
509
510 if( $this->section != '' ) {
511 if( $this->section == 'new' ) {
512 $s = wfMsg('editingcomment', $this->mTitle->getPrefixedText() );
513 } else {
514 $s = wfMsg('editingsection', $this->mTitle->getPrefixedText() );
515 if( !$this->preview && !$this->diff ) {
516 preg_match( "/^(=+)(.+)\\1/mi",
517 $this->textbox1,
518 $matches );
519 if( !empty( $matches[2] ) ) {
520 $this->summary = "/* ". trim($matches[2])." */ ";
521 }
522 }
523 }
524 } else {
525 $s = wfMsg( 'editing', $this->mTitle->getPrefixedText() );
526 }
527 $wgOut->setPageTitle( $s );
528 if ( !$this->checkUnicodeCompliantBrowser() ) {
529 $this->mArticle->setOldSubtitle();
530 $wgOut->addWikiText( wfMsg( 'nonunicodebrowser') );
531 }
532 if ( isset( $this->mArticle )
533 && isset( $this->mArticle->mRevision )
534 && !$this->mArticle->mRevision->isCurrent() ) {
535 $this->mArticle->setOldSubtitle();
536 $wgOut->addWikiText( wfMsg( 'editingold' ) );
537 }
538 }
539
540 if( wfReadOnly() ) {
541 $wgOut->addWikiText( wfMsg( 'readonlywarning' ) );
542 } else if ( $isCssJsSubpage and 'preview' != $formtype) {
543 $wgOut->addWikiText( wfMsg( 'usercssjsyoucanpreview' ));
544 }
545 if( $this->mTitle->isProtected('edit') ) {
546 $wgOut->addWikiText( wfMsg( 'protectedpagewarning' ) );
547 }
548
549 $kblength = (int)(strlen( $this->textbox1 ) / 1024);
550 if( $kblength > 29 ) {
551 $wgOut->addWikiText( wfMsg( 'longpagewarning', $wgLang->formatNum( $kblength ) ) );
552 }
553
554 $rows = $wgUser->getOption( 'rows' );
555 $cols = $wgUser->getOption( 'cols' );
556
557 $ew = $wgUser->getOption( 'editwidth' );
558 if ( $ew ) $ew = " style=\"width:100%\"";
559 else $ew = '';
560
561 $q = 'action=submit';
562 #if ( "no" == $redirect ) { $q .= "&redirect=no"; }
563 $action = $this->mTitle->escapeLocalURL( $q );
564
565 $summary = wfMsg('summary');
566 $subject = wfMsg('subject');
567 $minor = wfMsg('minoredit');
568 $watchthis = wfMsg ('watchthis');
569 $save = wfMsg('savearticle');
570 $prev = wfMsg('showpreview');
571 $diff = wfMsg('showdiff');
572
573 $cancel = $sk->makeKnownLink( $this->mTitle->getPrefixedText(),
574 wfMsg('cancel') );
575 $edithelpurl = $sk->makeInternalOrExternalUrl( wfMsg( 'edithelppage' ));
576 $edithelp = '<a target="helpwindow" href="'.$edithelpurl.'">'.
577 htmlspecialchars( wfMsg( 'edithelp' ) ).'</a> '.
578 htmlspecialchars( wfMsg( 'newwindow' ) );
579
580 global $wgRightsText;
581 $copywarn = "<div id=\"editpage-copywarn\">\n" .
582 wfMsg( $wgRightsText ? 'copyrightwarning' : 'copyrightwarning2',
583 '[[' . wfMsgForContent( 'copyrightpage' ) . ']]',
584 $wgRightsText ) . "\n</div>";
585
586 if( $wgUser->getOption('showtoolbar') and !$isCssJsSubpage ) {
587 # prepare toolbar for edit buttons
588 $toolbar = $this->getEditToolbar();
589 } else {
590 $toolbar = '';
591 }
592
593 // activate checkboxes if user wants them to be always active
594 if( !$this->preview && !$this->diff ) {
595 if( $wgUser->getOption( 'watchdefault' ) ) $this->watchthis = true;
596 if( $wgUser->getOption( 'minordefault' ) ) $this->minoredit = true;
597
598 // activate checkbox also if user is already watching the page,
599 // require wpWatchthis to be unset so that second condition is not
600 // checked unnecessarily
601 if( !$this->watchthis && $this->mTitle->userIsWatching() ) $this->watchthis = true;
602 }
603
604 $minoredithtml = '';
605
606 if ( $wgUser->isLoggedIn() || $wgAllowAnonymousMinor ) {
607 $minoredithtml =
608 "<input tabindex='3' type='checkbox' value='1' name='wpMinoredit'".($this->minoredit?" checked='checked'":"").
609 " accesskey='".wfMsg('accesskey-minoredit')."' id='wpMinoredit' />".
610 "<label for='wpMinoredit' title='".wfMsg('tooltip-minoredit')."'>{$minor}</label>";
611 }
612
613 $watchhtml = '';
614
615 if ( $wgUser->isLoggedIn() ) {
616 $watchhtml = "<input tabindex='4' type='checkbox' name='wpWatchthis'".($this->watchthis?" checked='checked'":"").
617 " accesskey='".wfMsg('accesskey-watch')."' id='wpWatchthis' />".
618 "<label for='wpWatchthis' title='".wfMsg('tooltip-watch')."'>{$watchthis}</label>";
619 }
620
621 $checkboxhtml = $minoredithtml . $watchhtml . '<br />';
622
623 $wgOut->addHTML( '<div id="wikiPreview">' );
624 if ( 'preview' == $formtype) {
625 $previewOutput = $this->getPreviewText( $isConflict, $isCssJsSubpage );
626 if ( $wgUser->getOption('previewontop' ) ) {
627 $wgOut->addHTML( $previewOutput );
628 if($this->mTitle->getNamespace() == NS_CATEGORY) {
629 $this->mArticle->closeShowCategory();
630 }
631 $wgOut->addHTML( "<br style=\"clear:both;\" />\n" );
632 }
633 }
634 $wgOut->addHTML( '</div>' );
635 if ( 'diff' == $formtype ) {
636 if ( $wgUser->getOption('previewontop' ) ) {
637 $wgOut->addHTML( $this->getDiff() );
638 }
639 }
640
641
642 # if this is a comment, show a subject line at the top, which is also the edit summary.
643 # Otherwise, show a summary field at the bottom
644 $summarytext = htmlspecialchars( $wgContLang->recodeForEdit( $this->summary ) ); # FIXME
645 if( $this->section == 'new' ) {
646 $commentsubject="{$subject}: <input tabindex='1' type='text' value=\"$summarytext\" name=\"wpSummary\" maxlength='200' size='60' /><br />";
647 $editsummary = '';
648 } else {
649 $commentsubject = '';
650 $editsummary="{$summary}: <input tabindex='2' type='text' value=\"$summarytext\" name=\"wpSummary\" maxlength='200' size='60' /><br />";
651 }
652
653 if( !$this->preview && !$this->diff ) {
654 # Don't select the edit box on preview; this interferes with seeing what's going on.
655 $wgOut->setOnloadHandler( 'document.editform.wpTextbox1.focus()' );
656 }
657 # Prepare a list of templates used by this page
658 $templates = '';
659 $articleTemplates = $this->mArticle->getUsedTemplates();
660 if ( count( $articleTemplates ) > 0 ) {
661 $templates = '<br />'. wfMsg( 'templatesused' ) . '<ul>';
662 foreach ( $articleTemplates as $tpl ) {
663 if ( $titleObj = Title::makeTitle( NS_TEMPLATE, $tpl ) ) {
664 $templates .= '<li>' . $sk->makeLinkObj( $titleObj ) . '</li>';
665 }
666 }
667 $templates .= '</ul>';
668 }
669
670 global $wgLivePreview, $wgStylePath;
671 /**
672 * Live Preview lets us fetch rendered preview page content and
673 * add it to the page without refreshing the whole page.
674 * Set up the button for it; if not supported by the browser
675 * it will fall through to the normal form submission method.
676 */
677 if( $wgLivePreview ) {
678 global $wgJsMimeType;
679 $wgOut->addHTML( '<script type="'.$wgJsMimeType.'" src="' .
680 htmlspecialchars( $wgStylePath . '/common/preview.js' ) .
681 '"></script>' . "\n" );
682 $liveAction = $wgTitle->getLocalUrl( 'action=submit&wpPreview=true&live=true' );
683 $liveOnclick = 'onclick="return !livePreview('.
684 'getElementById(\'wikiPreview\'),' .
685 'editform.wpTextbox1.value,' .
686 htmlspecialchars( '"' . $liveAction . '"' ) . ')"';
687 } else {
688 $liveOnclick = '';
689 }
690
691 global $wgUseMetadataEdit ;
692 if ( $wgUseMetadataEdit )
693 {
694 $metadata = $this->mMetaData ;
695 $metadata = htmlspecialchars( $wgContLang->recodeForEdit( $metadata ) ) ;
696 $helppage = Title::newFromText ( wfmsg("metadata_page") ) ;
697 $top = str_replace ( "$1" , $helppage->getInternalURL() , wfmsg("metadata") ) ;
698 $metadata = $top . "<textarea name='metadata' rows='3' cols='{$cols}'{$ew}>{$metadata}</textarea>" ;
699 }
700 else $metadata = "" ;
701
702
703 $wgOut->addHTML( <<<END
704 {$toolbar}
705 <form id="editform" name="editform" method="post" action="$action"
706 enctype="multipart/form-data">
707 {$commentsubject}
708 <textarea tabindex='1' accesskey="," name="wpTextbox1" rows='{$rows}'
709 cols='{$cols}'{$ew}>
710 END
711 . htmlspecialchars( $wgContLang->recodeForEdit( $this->textbox1 ) ) .
712 "
713 </textarea>
714 {$metadata}
715 <br />{$editsummary}
716 {$checkboxhtml}
717 <input tabindex='5' id='wpSave' type='submit' value=\"{$save}\" name=\"wpSave\" accesskey=\"".wfMsg('accesskey-save')."\"".
718 " title=\"".wfMsg('tooltip-save')."\"/>
719 <input tabindex='6' id='wpPreview' type='submit' $liveOnclick value=\"{$prev}\" name=\"wpPreview\" accesskey=\"".wfMsg('accesskey-preview')."\"".
720 " title=\"".wfMsg('tooltip-preview')."\"/>
721 <input tabindex='7' id='wpDiff' type='submit' value=\"{$diff}\" name=\"wpDiff\" accesskey=\"".wfMsg('accesskey-diff')."\"".
722 " title=\"".wfMsg('tooltip-diff')."\"/>
723 <em>{$cancel}</em> | <em>{$edithelp}</em>{$templates}" );
724 $wgOut->addWikiText( $copywarn );
725 $wgOut->addHTML( "
726 <input type='hidden' value=\"" . htmlspecialchars( $this->section ) . "\" name=\"wpSection\" />
727 <input type='hidden' value=\"{$this->edittime}\" name=\"wpEdittime\" />\n" );
728
729 if ( $wgUser->isLoggedIn() ) {
730 /**
731 * To make it harder for someone to slip a user a page
732 * which submits an edit form to the wiki without their
733 * knowledge, a random token is associated with the login
734 * session. If it's not passed back with the submission,
735 * we won't save the page, or render user JavaScript and
736 * CSS previews.
737 */
738 $token = htmlspecialchars( $wgUser->editToken() );
739 $wgOut->addHTML( "
740 <input type='hidden' value=\"$token\" name=\"wpEditToken\" />\n" );
741 }
742
743
744 if ( $isConflict ) {
745 require_once( "DifferenceEngine.php" );
746 $wgOut->addWikiText( '==' . wfMsg( "yourdiff" ) . '==' );
747 DifferenceEngine::showDiff( $this->textbox2, $this->textbox1,
748 wfMsg( "yourtext" ), wfMsg( "storedversion" ) );
749
750 $wgOut->addWikiText( '==' . wfMsg( "yourtext" ) . '==' );
751 $wgOut->addHTML( "<textarea tabindex=6 id='wpTextbox2' name=\"wpTextbox2\" rows='{$rows}' cols='{$cols}' wrap='virtual'>"
752 . htmlspecialchars( $wgContLang->recodeForEdit( $this->textbox2 ) ) .
753 "
754 </textarea>" );
755 }
756 $wgOut->addHTML( "</form>\n" );
757 if ( $formtype == 'preview' && !$wgUser->getOption( 'previewontop' ) ) {
758 $wgOut->addHTML( '<div id="wikiPreview">' . $previewOutput . '</div>' );
759 }
760 if ( $formtype == 'diff' && !$wgUser->getOption( 'previewontop' ) ) {
761 #$wgOut->addHTML( '<div id="wikiPreview">' . $difftext . '</div>' );
762 $wgOut->addHTML( $this->getDiff() );
763 }
764 }
765
766 /**
767 * @todo document
768 */
769 function getPreviewText( $isConflict, $isCssJsSubpage ) {
770 global $wgOut, $wgUser, $wgTitle, $wgParser, $wgAllowDiffPreview, $wgEnableDiffPreviewPreference;
771 $previewhead = '<h2>' . htmlspecialchars( wfMsg( 'preview' ) ) . "</h2>\n" .
772 "<p class='previewnote'>" . htmlspecialchars( wfMsg( 'previewnote' ) ) . "</p>\n";
773 if ( $isConflict ) {
774 $previewhead.='<h2>' . htmlspecialchars( wfMsg( 'previewconflict' ) ) .
775 "</h2>\n";
776 }
777
778 $parserOptions = ParserOptions::newFromUser( $wgUser );
779 $parserOptions->setEditSection( false );
780
781 # don't parse user css/js, show message about preview
782 # XXX: stupid php bug won't let us use $wgTitle->isCssJsSubpage() here
783
784 if ( $isCssJsSubpage ) {
785 if(preg_match("/\\.css$/", $wgTitle->getText() ) ) {
786 $previewtext = wfMsg('usercsspreview');
787 } else if(preg_match("/\\.js$/", $wgTitle->getText() ) ) {
788 $previewtext = wfMsg('userjspreview');
789 }
790 $parserOutput = $wgParser->parse( $previewtext , $wgTitle, $parserOptions );
791 $wgOut->addHTML( $parserOutput->mText );
792 return $previewhead;
793 } else {
794 # if user want to see preview when he edit an article
795 if( $wgUser->getOption('previewonfirst') and ($this->textbox1 == '')) {
796 $this->textbox1 = $this->mArticle->getContent(true);
797 }
798
799 $toparse = $this->textbox1;
800
801 # If we're adding a comment, we need to show the
802 # summary as the headline
803 if($this->section=="new" && $this->summary!="") {
804 $toparse="== {$this->summary} ==\n\n".$toparse;
805 }
806
807 if ( $this->mMetaData != "" ) $toparse .= "\n" . $this->mMetaData ;
808
809 $parserOutput = $wgParser->parse( $this->mArticle->preSaveTransform( $toparse ) ."\n\n",
810 $wgTitle, $parserOptions );
811
812 $previewHTML = $parserOutput->mText;
813
814 $wgOut->addCategoryLinks($parserOutput->getCategoryLinks());
815 $wgOut->addLanguageLinks($parserOutput->getLanguageLinks());
816 return $previewhead . $previewHTML;
817 }
818 }
819
820 /**
821 * @todo document
822 */
823 function blockedIPpage() {
824 global $wgOut, $wgUser, $wgContLang, $wgIP;
825
826 $wgOut->setPageTitle( wfMsg( 'blockedtitle' ) );
827 $wgOut->setRobotpolicy( 'noindex,nofollow' );
828 $wgOut->setArticleRelated( false );
829
830 $id = $wgUser->blockedBy();
831 $reason = $wgUser->blockedFor();
832 $ip = $wgIP;
833
834 if ( is_numeric( $id ) ) {
835 $name = User::whoIs( $id );
836 } else {
837 $name = $id;
838 }
839 $link = '[[' . $wgContLang->getNsText( NS_USER ) .
840 ":{$name}|{$name}]]";
841
842 $wgOut->addWikiText( wfMsg( 'blockedtext', $link, $reason, $ip, $name ) );
843 $wgOut->returnToMain( false );
844 }
845
846 /**
847 * @todo document
848 */
849 function userNotLoggedInPage() {
850 global $wgOut;
851
852 $wgOut->setPageTitle( wfMsg( 'whitelistedittitle' ) );
853 $wgOut->setRobotpolicy( 'noindex,nofollow' );
854 $wgOut->setArticleRelated( false );
855
856 $wgOut->addWikiText( wfMsg( 'whitelistedittext' ) );
857 $wgOut->returnToMain( false );
858 }
859
860 /**
861 * @todo document
862 */
863 function spamPage ( $match = false )
864 {
865 global $wgOut;
866 $wgOut->setPageTitle( wfMsg( 'spamprotectiontitle' ) );
867 $wgOut->setRobotpolicy( 'noindex,nofollow' );
868 $wgOut->setArticleRelated( false );
869
870 $wgOut->addWikiText( wfMsg( 'spamprotectiontext' ) );
871 if ( $match ) {
872 $wgOut->addWikiText( wfMsg( 'spamprotectionmatch', "<nowiki>{$match}</nowiki>" ) );
873 }
874 $wgOut->returnToMain( false );
875 }
876
877 /**
878 * Forks processes to scan the originating IP for an open proxy server
879 * MemCached can be used to skip IPs that have already been scanned
880 */
881 function proxyCheck() {
882 global $wgBlockOpenProxies, $wgProxyPorts, $wgProxyScriptPath;
883 global $wgIP, $wgUseMemCached, $wgMemc, $wgDBname, $wgProxyMemcExpiry;
884
885 if ( !$wgBlockOpenProxies ) {
886 return;
887 }
888
889 # Get MemCached key
890 $skip = false;
891 if ( $wgUseMemCached ) {
892 $mcKey = $wgDBname.':proxy:ip:'.$wgIP;
893 $mcValue = $wgMemc->get( $mcKey );
894 if ( $mcValue ) {
895 $skip = true;
896 }
897 }
898
899 # Fork the processes
900 if ( !$skip ) {
901 $title = Title::makeTitle( NS_SPECIAL, 'Blockme' );
902 $iphash = md5( $wgIP . $wgProxyKey );
903 $url = $title->getFullURL( 'ip='.$iphash );
904
905 foreach ( $wgProxyPorts as $port ) {
906 $params = implode( ' ', array(
907 escapeshellarg( $wgProxyScriptPath ),
908 escapeshellarg( $wgIP ),
909 escapeshellarg( $port ),
910 escapeshellarg( $url )
911 ));
912 exec( "php $params &>/dev/null &" );
913 }
914 # Set MemCached key
915 if ( $wgUseMemCached ) {
916 $wgMemc->set( $mcKey, 1, $wgProxyMemcExpiry );
917 }
918 }
919 }
920
921 /**
922 * @access private
923 * @todo document
924 */
925 function mergeChangesInto( &$editText ){
926 $db =& wfGetDB( DB_MASTER );
927
928 // This is the revision the editor started from
929 $baseRevision = Revision::loadFromTimestamp(
930 $db, $this->mArticle->mTitle, $this->edittime );
931 if( is_null( $baseRevision ) ) {
932 return false;
933 }
934 $baseText = $baseRevision->getText();
935
936 // The current state, we want to merge updates into it
937 $currentRevision = Revision::loadFromTitle(
938 $db, $this->mArticle->mTitle );
939 if( is_null( $currentRevision ) ) {
940 return false;
941 }
942 $currentText = $currentRevision->getText();
943
944 if( wfMerge( $baseText, $editText, $currentText, $result ) ){
945 $editText = $result;
946 return true;
947 } else {
948 return false;
949 }
950 }
951
952
953 function checkUnicodeCompliantBrowser() {
954 global $wgBrowserBlackList;
955 $currentbrowser = $_SERVER["HTTP_USER_AGENT"];
956 foreach ( $wgBrowserBlackList as $browser ) {
957 if ( preg_match($browser, $currentbrowser) ) {
958 return false;
959 }
960 }
961 return true;
962 }
963
964 /**
965 * Format an anchor fragment as it would appear for a given section name
966 * @param string $text
967 * @return string
968 * @access private
969 */
970 function sectionAnchor( $text ) {
971 $headline = Sanitizer::decodeCharReferences( $text );
972 # strip out HTML
973 $headline = preg_replace( '/<.*?' . '>/', '', $headline );
974 $headline = trim( $headline );
975 $sectionanchor = '#' . urlencode( str_replace( ' ', '_', $headline ) );
976 $replacearray = array(
977 '%3A' => ':',
978 '%' => '.'
979 );
980 return str_replace(
981 array_keys( $replacearray ),
982 array_values( $replacearray ),
983 $sectionanchor );
984 }
985
986 /**
987 * Shows a bulletin board style toolbar for common editing functions.
988 * It can be disabled in the user preferences.
989 * The necessary JavaScript code can be found in style/wikibits.js.
990 */
991 function getEditToolbar() {
992 global $wgStylePath, $wgLang, $wgMimeType, $wgJsMimeType;
993
994 /**
995 * toolarray an array of arrays which each include the filename of
996 * the button image (without path), the opening tag, the closing tag,
997 * and optionally a sample text that is inserted between the two when no
998 * selection is highlighted.
999 * The tip text is shown when the user moves the mouse over the button.
1000 *
1001 * Already here are accesskeys (key), which are not used yet until someone
1002 * can figure out a way to make them work in IE. However, we should make
1003 * sure these keys are not defined on the edit page.
1004 */
1005 $toolarray=array(
1006 array( 'image'=>'button_bold.png',
1007 'open' => "\'\'\'",
1008 'close' => "\'\'\'",
1009 'sample'=> wfMsg('bold_sample'),
1010 'tip' => wfMsg('bold_tip'),
1011 'key' => 'B'
1012 ),
1013 array( 'image'=>'button_italic.png',
1014 'open' => "\'\'",
1015 'close' => "\'\'",
1016 'sample'=> wfMsg('italic_sample'),
1017 'tip' => wfMsg('italic_tip'),
1018 'key' => 'I'
1019 ),
1020 array( 'image'=>'button_link.png',
1021 'open' => '[[',
1022 'close' => ']]',
1023 'sample'=> wfMsg('link_sample'),
1024 'tip' => wfMsg('link_tip'),
1025 'key' => 'L'
1026 ),
1027 array( 'image'=>'button_extlink.png',
1028 'open' => '[',
1029 'close' => ']',
1030 'sample'=> wfMsg('extlink_sample'),
1031 'tip' => wfMsg('extlink_tip'),
1032 'key' => 'X'
1033 ),
1034 array( 'image'=>'button_headline.png',
1035 'open' => "\\n== ",
1036 'close' => " ==\\n",
1037 'sample'=> wfMsg('headline_sample'),
1038 'tip' => wfMsg('headline_tip'),
1039 'key' => 'H'
1040 ),
1041 array( 'image'=>'button_image.png',
1042 'open' => '[['.$wgLang->getNsText(NS_IMAGE).":",
1043 'close' => ']]',
1044 'sample'=> wfMsg('image_sample'),
1045 'tip' => wfMsg('image_tip'),
1046 'key' => 'D'
1047 ),
1048 array( 'image' =>'button_media.png',
1049 'open' => '[['.$wgLang->getNsText(NS_MEDIA).':',
1050 'close' => ']]',
1051 'sample'=> wfMsg('media_sample'),
1052 'tip' => wfMsg('media_tip'),
1053 'key' => 'M'
1054 ),
1055 array( 'image' =>'button_math.png',
1056 'open' => "\\<math\\>",
1057 'close' => "\\</math\\>",
1058 'sample'=> wfMsg('math_sample'),
1059 'tip' => wfMsg('math_tip'),
1060 'key' => 'C'
1061 ),
1062 array( 'image' =>'button_nowiki.png',
1063 'open' => "\\<nowiki\\>",
1064 'close' => "\\</nowiki\\>",
1065 'sample'=> wfMsg('nowiki_sample'),
1066 'tip' => wfMsg('nowiki_tip'),
1067 'key' => 'N'
1068 ),
1069 array( 'image' =>'button_sig.png',
1070 'open' => '--~~~~',
1071 'close' => '',
1072 'sample'=> '',
1073 'tip' => wfMsg('sig_tip'),
1074 'key' => 'Y'
1075 ),
1076 array( 'image' =>'button_hr.png',
1077 'open' => "\\n----\\n",
1078 'close' => '',
1079 'sample'=> '',
1080 'tip' => wfMsg('hr_tip'),
1081 'key' => 'R'
1082 )
1083 );
1084 $toolbar ="<script type='$wgJsMimeType'>\n/*<![CDATA[*/\n";
1085
1086 $toolbar.="document.writeln(\"<div id='toolbar'>\");\n";
1087 foreach($toolarray as $tool) {
1088
1089 $image=$wgStylePath.'/common/images/'.$tool['image'];
1090 $open=$tool['open'];
1091 $close=$tool['close'];
1092 $sample = wfEscapeJsString( $tool['sample'] );
1093
1094 // Note that we use the tip both for the ALT tag and the TITLE tag of the image.
1095 // Older browsers show a "speedtip" type message only for ALT.
1096 // Ideally these should be different, realistically they
1097 // probably don't need to be.
1098 $tip = wfEscapeJsString( $tool['tip'] );
1099
1100 #$key = $tool["key"];
1101
1102 $toolbar.="addButton('$image','$tip','$open','$close','$sample');\n";
1103 }
1104
1105 $toolbar.="addInfobox('" . wfEscapeJsString( wfMsg( "infobox" ) ) .
1106 "','" . wfEscapeJsString( wfMsg( "infobox_alert" ) ) . "');\n";
1107 $toolbar.="document.writeln(\"</div>\");\n";
1108
1109 $toolbar.="/*]]>*/\n</script>";
1110 return $toolbar;
1111 }
1112
1113 /**
1114 * Output preview text only. This can be sucked into the edit page
1115 * via JavaScript, and saves the server time rendering the skin as
1116 * well as theoretically being more robust on the client (doesn't
1117 * disturb the edit box's undo history, won't eat your text on
1118 * failure, etc).
1119 *
1120 * @todo This doesn't include category or interlanguage links.
1121 * Would need to enhance it a bit, maybe wrap them in XML
1122 * or something... that might also require more skin
1123 * initialization, so check whether that's a problem.
1124 */
1125 function livePreview() {
1126 global $wgOut;
1127 $wgOut->disable();
1128 header( 'Content-type: text/xml' );
1129 header( 'Cache-control: no-cache' );
1130 # FIXME
1131 echo $this->getPreviewText( false, false );
1132 }
1133
1134
1135 /**
1136 * Get a diff between the current contents of the edit box and the
1137 * version of the page we're editing from.
1138 *
1139 * If this is a section edit, we'll replace the section as for final
1140 * save and then make a comparison.
1141 *
1142 * @return string HTML
1143 */
1144 function getDiff() {
1145 require_once( 'DifferenceEngine.php' );
1146 $oldtext = $this->mArticle->fetchContent();
1147 $newtext = $this->mArticle->getTextOfLastEditWithSectionReplacedOrAdded(
1148 $this->section, $this->textbox1, $this->summary, $this->edittime );
1149 $oldtitle = wfMsg( 'currentrev' );
1150 $newtitle = wfMsg( 'yourtext' );
1151 if ( $oldtext != wfMsg( 'noarticletext' ) || $newtext != '' ) {
1152 $difftext = DifferenceEngine::getDiff( $oldtext, $newtext, $oldtitle, $newtitle );
1153 }
1154
1155 return '<div id="wikiDiff">' . $difftext . '</div>';
1156 }
1157
1158 }
1159
1160 ?>