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