020af5e26ffd728f28159b91a6acf48f1ccf951b
[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 $action = $wgTitle->escapeLocalURL( array( 'action' => $this->action ) );
1286
1287 $summary = wfMsgExt( 'summary', 'parseinline' );
1288 $subject = wfMsgExt( 'subject', 'parseinline' );
1289
1290 $cancel = $sk->link(
1291 $wgTitle->getPrefixedText(),
1292 wfMsgExt( 'cancel', array( 'parseinline' ) ),
1293 array(),
1294 array(),
1295 array( 'known', 'noclasses' )
1296 );
1297 $separator = wfMsgExt( 'pipe-separator' , 'escapenoentities' );
1298 $edithelpurl = Skin::makeInternalOrExternalUrl( wfMsgForContent( 'edithelppage' ));
1299 $edithelp = '<a target="helpwindow" href="'.$edithelpurl.'">'.
1300 htmlspecialchars( wfMsg( 'edithelp' ) ).'</a> '.
1301 htmlspecialchars( wfMsg( 'newwindow' ) );
1302
1303 global $wgRightsText;
1304 if ( $wgRightsText ) {
1305 $copywarnMsg = array( 'copyrightwarning',
1306 '[[' . wfMsgForContent( 'copyrightpage' ) . ']]',
1307 $wgRightsText );
1308 } else {
1309 $copywarnMsg = array( 'copyrightwarning2',
1310 '[[' . wfMsgForContent( 'copyrightpage' ) . ']]' );
1311 }
1312
1313 if ( $wgUser->getOption('showtoolbar') and !$this->isCssJsSubpage ) {
1314 # prepare toolbar for edit buttons
1315 $toolbar = EditPage::getEditToolbar();
1316 } else {
1317 $toolbar = '';
1318 }
1319
1320 // activate checkboxes if user wants them to be always active
1321 if ( !$this->preview && !$this->diff ) {
1322 # Sort out the "watch" checkbox
1323 if ( $wgUser->getOption( 'watchdefault' ) ) {
1324 # Watch all edits
1325 $this->watchthis = true;
1326 } elseif ( $wgUser->getOption( 'watchcreations' ) && !$this->mTitle->exists() ) {
1327 # Watch creations
1328 $this->watchthis = true;
1329 } elseif ( $this->mTitle->userIsWatching() ) {
1330 # Already watched
1331 $this->watchthis = true;
1332 }
1333
1334 # May be overriden by request parameters
1335 if( $wgRequest->getBool( 'watchthis' ) ) {
1336 $this->watchthis = true;
1337 }
1338
1339 if ( $wgUser->getOption( 'minordefault' ) ) $this->minoredit = true;
1340 }
1341
1342 $wgOut->addHTML( $this->editFormPageTop );
1343
1344 if ( $wgUser->getOption( 'previewontop' ) ) {
1345 $this->displayPreviewArea( $previewOutput, true );
1346 }
1347
1348
1349 $wgOut->addHTML( $this->editFormTextTop );
1350
1351 # if this is a comment, show a subject line at the top, which is also the edit summary.
1352 # Otherwise, show a summary field at the bottom
1353 $summarytext = $wgContLang->recodeForEdit( $this->summary );
1354
1355 # If a blank edit summary was previously provided, and the appropriate
1356 # user preference is active, pass a hidden tag as wpIgnoreBlankSummary. This will stop the
1357 # user being bounced back more than once in the event that a summary
1358 # is not required.
1359 #####
1360 # For a bit more sophisticated detection of blank summaries, hash the
1361 # automatic one and pass that in the hidden field wpAutoSummary.
1362 $summaryhiddens = '';
1363 if ( $this->missingSummary ) $summaryhiddens .= Xml::hidden( 'wpIgnoreBlankSummary', true );
1364 $autosumm = $this->autoSumm ? $this->autoSumm : md5( $this->summary );
1365 $summaryhiddens .= Xml::hidden( 'wpAutoSummary', $autosumm );
1366 if ( $this->section == 'new' ) {
1367 $commentsubject = '';
1368 if ( !$wgRequest->getBool( 'nosummary' ) ) {
1369 # Add a class if 'missingsummary' is triggered to allow styling of the summary line
1370 $summaryClass = $this->missingSummary ? 'mw-summarymissed' : 'mw-summary';
1371
1372 $commentsubject =
1373 Xml::tags( 'label', array( 'for' => 'wpSummary' ), $subject );
1374 $commentsubject =
1375 Xml::tags( 'span', array( 'class' => $summaryClass, 'id' => "wpSummaryLabel" ),
1376 $commentsubject );
1377 $commentsubject .= '&nbsp;';
1378 $commentsubject .= Xml::input( 'wpSummary',
1379 60,
1380 $summarytext,
1381 array(
1382 'id' => 'wpSummary',
1383 'maxlength' => '200',
1384 'tabindex' => '1'
1385 ) );
1386 }
1387 $editsummary = "<div class='editOptions'>\n";
1388 global $wgParser;
1389 $formattedSummary = wfMsgForContent( 'newsectionsummary', $wgParser->stripSectionName( $this->summary ) );
1390 $subjectpreview = $summarytext && $this->preview ?
1391 "<div class=\"mw-summary-preview\">". wfMsgExt('subject-preview', 'parseinline') . $sk->commentBlock( $formattedSummary, $this->mTitle, true )."</div>\n" : '';
1392 $summarypreview = '';
1393 } else {
1394 $commentsubject = '';
1395
1396 # Add a class if 'missingsummary' is triggered to allow styling of the summary line
1397 $summaryClass = $this->missingSummary ? 'mw-summarymissed' : 'mw-summary';
1398
1399 $editsummary = Xml::tags( 'label', array( 'for' => 'wpSummary' ), $summary );
1400 $editsummary = Xml::tags( 'span', array( 'class' => $summaryClass, 'id' => "wpSummaryLabel" ),
1401 $editsummary ) . ' ';
1402
1403 $editsummary .= Xml::input( 'wpSummary',
1404 60,
1405 $summarytext,
1406 array(
1407 'id' => 'wpSummary',
1408 'maxlength' => '200',
1409 'tabindex' => '1'
1410 ) );
1411
1412 // No idea where this is closed.
1413 $editsummary = Xml::openElement( 'div', array( 'class' => 'editOptions' ) )
1414 . $editsummary . '<br/>';
1415
1416 $summarypreview = '';
1417 if ( $summarytext && $this->preview ) {
1418 $summarypreview =
1419 Xml::tags( 'div',
1420 array( 'class' => 'mw-summary-preview' ),
1421 wfMsgExt( 'summary-preview', 'parseinline' ) .
1422 $sk->commentBlock( $this->summary, $this->mTitle )
1423 );
1424 }
1425 $subjectpreview = '';
1426 }
1427 $commentsubject .= $summaryhiddens;
1428
1429 # Set focus to the edit box on load, except on preview or diff, where it would interfere with the display
1430 if ( !$this->preview && !$this->diff ) {
1431 $wgOut->setOnloadHandler( 'document.editform.wpTextbox1.focus()' );
1432 }
1433 $templates = $this->getTemplates();
1434 $formattedtemplates = $sk->formatTemplates( $templates, $this->preview, $this->section != '');
1435
1436 $hiddencats = $this->mArticle->getHiddenCategories();
1437 $formattedhiddencats = $sk->formatHiddenCategories( $hiddencats );
1438
1439 global $wgUseMetadataEdit ;
1440 if ( $wgUseMetadataEdit ) {
1441 $metadata = $this->mMetaData ;
1442 $metadata = htmlspecialchars( $wgContLang->recodeForEdit( $metadata ) ) ;
1443 $top = wfMsgWikiHtml( 'metadata_help' );
1444 /* ToDo: Replace with clean code */
1445 $ew = $wgUser->getOption( 'editwidth' );
1446 if ( $ew ) $ew = " style=\"width:100%\"";
1447 else $ew = '';
1448 $cols = $wgUser->getIntOption( 'cols' );
1449 /* /ToDo */
1450 $metadata = $top . "<textarea name='metadata' rows='3' cols='{$cols}'{$ew}>{$metadata}</textarea>" ;
1451 }
1452 else $metadata = "" ;
1453
1454 $recreate = '';
1455 if ( $this->wasDeletedSinceLastEdit() ) {
1456 if ( 'save' != $this->formtype ) {
1457 $wgOut->wrapWikiMsg(
1458 "<div class='error mw-deleted-while-editing'>\n$1</div>",
1459 'deletedwhileediting' );
1460 } else {
1461 // Hide the toolbar and edit area, user can click preview to get it back
1462 // Add an confirmation checkbox and explanation.
1463 $toolbar = '';
1464 $recreate = '<div class="mw-confirm-recreate">' .
1465 $wgOut->parse( wfMsg( 'confirmrecreate', $this->lastDelete->user_name , $this->lastDelete->log_comment ) ) .
1466 Xml::checkLabel( wfMsg( 'recreate' ), 'wpRecreate', 'wpRecreate', false,
1467 array( 'title' => $sk->titleAttrib( 'recreate' ), 'tabindex' => 1, 'id' => 'wpRecreate' )
1468 ) . '</div>';
1469 }
1470 }
1471
1472 $tabindex = 2;
1473
1474 $checkboxes = $this->getCheckboxes( $tabindex, $sk,
1475 array( 'minor' => $this->minoredit, 'watch' => $this->watchthis ) );
1476
1477 $checkboxhtml = implode( $checkboxes, "\n" );
1478
1479 $buttons = $this->getEditButtons( $tabindex );
1480 $buttonshtml = implode( $buttons, "\n" );
1481
1482 $safemodehtml = $this->checkUnicodeCompliantBrowser()
1483 ? '' : Xml::hidden( 'safemode', '1' );
1484
1485 $wgOut->addHTML( <<<END
1486 {$toolbar}
1487 <form id="editform" name="editform" method="post" action="$action" enctype="multipart/form-data">
1488 END
1489 );
1490
1491 if ( is_callable( $formCallback ) ) {
1492 call_user_func_array( $formCallback, array( &$wgOut ) );
1493 }
1494
1495 wfRunHooks( 'EditPage::showEditForm:fields', array( &$this, &$wgOut ) );
1496
1497 // Put these up at the top to ensure they aren't lost on early form submission
1498 $this->showFormBeforeText();
1499
1500 $wgOut->addHTML( <<<END
1501 {$recreate}
1502 {$commentsubject}
1503 {$subjectpreview}
1504 {$this->editFormTextBeforeContent}
1505 END
1506 );
1507 $this->showTextbox1( $classes );
1508
1509 $wgOut->wrapWikiMsg( "<div id=\"editpage-copywarn\">\n$1\n</div>", $copywarnMsg );
1510 $wgOut->addHTML( <<<END
1511 {$this->editFormTextAfterWarn}
1512 {$metadata}
1513 {$editsummary}
1514 {$summarypreview}
1515 {$checkboxhtml}
1516 {$safemodehtml}
1517 END
1518 );
1519
1520 $wgOut->addHTML(
1521 "<div class='editButtons'>
1522 {$buttonshtml}
1523 <span class='editHelp'>{$cancel}{$separator}{$edithelp}</span>
1524 </div><!-- editButtons -->
1525 </div><!-- editOptions -->");
1526
1527 /**
1528 * To make it harder for someone to slip a user a page
1529 * which submits an edit form to the wiki without their
1530 * knowledge, a random token is associated with the login
1531 * session. If it's not passed back with the submission,
1532 * we won't save the page, or render user JavaScript and
1533 * CSS previews.
1534 *
1535 * For anon editors, who may not have a session, we just
1536 * include the constant suffix to prevent editing from
1537 * broken text-mangling proxies.
1538 */
1539 $token = htmlspecialchars( $wgUser->editToken() );
1540 $wgOut->addHTML( "\n<input type='hidden' value=\"$token\" name=\"wpEditToken\" />\n" );
1541
1542 $this->showEditTools();
1543
1544 $wgOut->addHTML( <<<END
1545 {$this->editFormTextAfterTools}
1546 <div class='templatesUsed'>
1547 {$formattedtemplates}
1548 </div>
1549 <div class='hiddencats'>
1550 {$formattedhiddencats}
1551 </div>
1552 END
1553 );
1554
1555 if ( $this->isConflict && wfRunHooks( 'EditPageBeforeConflictDiff', array( &$this, &$wgOut ) ) ) {
1556 $wgOut->wrapWikiMsg( '==$1==', "yourdiff" );
1557
1558 $de = new DifferenceEngine( $this->mTitle );
1559 $de->setText( $this->textbox2, $this->textbox1 );
1560 $de->showDiff( wfMsg( "yourtext" ), wfMsg( "storedversion" ) );
1561
1562 $wgOut->wrapWikiMsg( '==$1==', "yourtext" );
1563 $this->showTextbox2();
1564 }
1565 $wgOut->addHTML( $this->editFormTextBottom );
1566 $wgOut->addHTML( "</form>\n" );
1567 if ( !$wgUser->getOption( 'previewontop' ) ) {
1568 $this->displayPreviewArea( $previewOutput, false );
1569 }
1570
1571 wfProfileOut( $fname );
1572 }
1573
1574 protected function showFormBeforeText() {
1575 global $wgOut;
1576 $wgOut->addHTML( "
1577 <input type='hidden' value=\"" . htmlspecialchars( $this->section ) . "\" name=\"wpSection\" />
1578 <input type='hidden' value=\"{$this->starttime}\" name=\"wpStarttime\" />\n
1579 <input type='hidden' value=\"{$this->edittime}\" name=\"wpEdittime\" />\n
1580 <input type='hidden' value=\"{$this->scrolltop}\" name=\"wpScrolltop\" id=\"wpScrolltop\" />\n" );
1581 }
1582
1583 protected function showTextbox1( $classes ) {
1584 $attribs = array( 'tabindex' => 1 );
1585
1586 if ( $this->wasDeletedSinceLastEdit() )
1587 $attribs['type'] = 'hidden';
1588 if ( !empty($classes) )
1589 $attribs['class'] = implode(' ',$classes);
1590
1591 $this->showTextbox( $this->textbox1, 'wpTextbox1', $attribs );
1592 }
1593
1594 protected function showTextbox2() {
1595 $this->showTextbox( $this->textbox2, 'wpTextbox2', array( 'tabindex' => 6 ) );
1596 }
1597
1598 protected function showTextbox( $content, $name, $attribs = array() ) {
1599 global $wgOut, $wgUser;
1600
1601 $wikitext = $this->safeUnicodeOutput( $content );
1602 if ( $wikitext !== '' ) {
1603 // Ensure there's a newline at the end, otherwise adding lines
1604 // is awkward.
1605 // But don't add a newline if the ext is empty, or Firefox in XHTML
1606 // mode will show an extra newline. A bit annoying.
1607 $wikitext .= "\n";
1608 }
1609
1610 $attribs['accesskey'] = ',';
1611 $attribs['id'] = $name;
1612
1613 if ( $wgUser->getOption( 'editwidth' ) )
1614 $attribs['style'] = 'width: 100%';
1615
1616 $wgOut->addHTML( Xml::textarea(
1617 $name,
1618 $wikitext,
1619 $wgUser->getIntOption( 'cols' ), $wgUser->getIntOption( 'rows' ),
1620 $attribs ) );
1621 }
1622
1623 protected function displayPreviewArea( $previewOutput, $isOnTop = false ) {
1624 global $wgOut;
1625 $classes = array();
1626 if ( $isOnTop )
1627 $classes[] = 'ontop';
1628
1629 $attribs = array( 'id' => 'wikiPreview', 'class' => implode( ' ', $classes ) );
1630
1631 if ( $this->formtype != 'preview' )
1632 $attribs['style'] = 'display: none;';
1633
1634 $wgOut->addHTML( Xml::openElement( 'div', $attribs ) );
1635
1636 if ( $this->formtype == 'preview' ) {
1637 $this->showPreview( $previewOutput );
1638 }
1639
1640 $wgOut->addHTML( '</div>' );
1641
1642 if ( $this->formtype == 'diff') {
1643 $this->showDiff();
1644 }
1645 }
1646
1647 /**
1648 * Append preview output to $wgOut.
1649 * Includes category rendering if this is a category page.
1650 *
1651 * @param string $text The HTML to be output for the preview.
1652 */
1653 protected function showPreview( $text ) {
1654 global $wgOut;
1655 if ( $this->mTitle->getNamespace() == NS_CATEGORY) {
1656 $this->mArticle->openShowCategory();
1657 }
1658 # This hook seems slightly odd here, but makes things more
1659 # consistent for extensions.
1660 wfRunHooks( 'OutputPageBeforeHTML',array( &$wgOut, &$text ) );
1661 $wgOut->addHTML( $text );
1662 if ( $this->mTitle->getNamespace() == NS_CATEGORY ) {
1663 $this->mArticle->closeShowCategory();
1664 }
1665 }
1666
1667 /**
1668 * Live Preview lets us fetch rendered preview page content and
1669 * add it to the page without refreshing the whole page.
1670 * If not supported by the browser it will fall through to the normal form
1671 * submission method.
1672 *
1673 * This function outputs a script tag to support live preview, and
1674 * returns an onclick handler which should be added to the attributes
1675 * of the preview button
1676 */
1677 function doLivePreviewScript() {
1678 global $wgOut, $wgTitle;
1679 $wgOut->addScriptFile( 'preview.js' );
1680 $liveAction = $wgTitle->getLocalUrl( array(
1681 'action' => $this->action,
1682 'wpPreview' => 'true',
1683 'live' => 'true'
1684 ) );
1685 return "return !lpDoPreview(" .
1686 "editform.wpTextbox1.value," .
1687 '"' . $liveAction . '"' . ")";
1688 }
1689
1690 protected function showEditTools() {
1691 global $wgOut;
1692 $wgOut->addHTML( '<div class="mw-editTools">' );
1693 $wgOut->addWikiMsgArray( 'edittools', array(), array( 'content' ) );
1694 $wgOut->addHTML( '</div>' );
1695 }
1696
1697 protected function getLastDelete() {
1698 $dbr = wfGetDB( DB_SLAVE );
1699 $data = $dbr->selectRow(
1700 array( 'logging', 'user' ),
1701 array( 'log_type',
1702 'log_action',
1703 'log_timestamp',
1704 'log_user',
1705 'log_namespace',
1706 'log_title',
1707 'log_comment',
1708 'log_params',
1709 'log_deleted',
1710 'user_name' ),
1711 array( 'log_namespace' => $this->mTitle->getNamespace(),
1712 'log_title' => $this->mTitle->getDBkey(),
1713 'log_type' => 'delete',
1714 'log_action' => 'delete',
1715 'user_id=log_user' ),
1716 __METHOD__,
1717 array( 'LIMIT' => 1, 'ORDER BY' => 'log_timestamp DESC' )
1718 );
1719 // Quick paranoid permission checks...
1720 if( is_object($data) ) {
1721 if( $data->log_deleted & LogPage::DELETED_USER )
1722 $data->user_name = wfMsgHtml('rev-deleted-user');
1723 if( $data->log_deleted & LogPage::DELETED_COMMENT )
1724 $data->log_comment = wfMsgHtml('rev-deleted-comment');
1725 }
1726 return $data;
1727 }
1728
1729 /**
1730 * Get the rendered text for previewing.
1731 * @return string
1732 */
1733 function getPreviewText() {
1734 global $wgOut, $wgUser, $wgTitle, $wgParser, $wgLang, $wgContLang, $wgMessageCache;
1735
1736 wfProfileIn( __METHOD__ );
1737
1738 if ( $this->mTriedSave && !$this->mTokenOk ) {
1739 if ( $this->mTokenOkExceptSuffix ) {
1740 $note = wfMsg( 'token_suffix_mismatch' );
1741 } else {
1742 $note = wfMsg( 'session_fail_preview' );
1743 }
1744 } else {
1745 $note = wfMsg( 'previewnote' );
1746 }
1747
1748 $parserOptions = ParserOptions::newFromUser( $wgUser );
1749 $parserOptions->setEditSection( false );
1750 $parserOptions->setIsPreview( true );
1751 $parserOptions->setIsSectionPreview( !is_null($this->section) && $this->section !== '' );
1752
1753 global $wgRawHtml;
1754 if ( $wgRawHtml && !$this->mTokenOk ) {
1755 // Could be an offsite preview attempt. This is very unsafe if
1756 // HTML is enabled, as it could be an attack.
1757 return $wgOut->parse( "<div class='previewnote'>" .
1758 wfMsg( 'session_fail_preview_html' ) . "</div>" );
1759 }
1760
1761 # don't parse user css/js, show message about preview
1762 # XXX: stupid php bug won't let us use $wgTitle->isCssJsSubpage() here
1763
1764 if ( $this->isCssJsSubpage ) {
1765 if (preg_match("/\\.css$/", $this->mTitle->getText() ) ) {
1766 $previewtext = wfMsg('usercsspreview');
1767 } else if (preg_match("/\\.js$/", $this->mTitle->getText() ) ) {
1768 $previewtext = wfMsg('userjspreview');
1769 }
1770 $parserOptions->setTidy(true);
1771 $parserOutput = $wgParser->parse( $previewtext, $this->mTitle, $parserOptions );
1772 $previewHTML = $parserOutput->mText;
1773 } elseif ( $rt = Title::newFromRedirectArray( $this->textbox1 ) ) {
1774 $previewHTML = $this->mArticle->viewRedirect( $rt, false );
1775 } else {
1776 $toparse = $this->textbox1;
1777
1778 # If we're adding a comment, we need to show the
1779 # summary as the headline
1780 if ( $this->section=="new" && $this->summary!="" ) {
1781 $toparse="== {$this->summary} ==\n\n".$toparse;
1782 }
1783
1784 if ( $this->mMetaData != "" ) $toparse .= "\n" . $this->mMetaData;
1785
1786 // Parse mediawiki messages with correct target language
1787 if ( $this->mTitle->getNamespace() == NS_MEDIAWIKI ) {
1788 list( /* $unused */, $lang ) = $wgMessageCache->figureMessage( $this->mTitle->getText() );
1789 $obj = wfGetLangObj( $lang );
1790 $parserOptions->setTargetLanguage( $obj );
1791 }
1792
1793
1794 $parserOptions->setTidy(true);
1795 $parserOptions->enableLimitReport();
1796 $parserOutput = $wgParser->parse( $this->mArticle->preSaveTransform( $toparse ),
1797 $this->mTitle, $parserOptions );
1798
1799 $previewHTML = $parserOutput->getText();
1800 $this->mParserOutput = $parserOutput;
1801 $wgOut->addParserOutputNoText( $parserOutput );
1802
1803 if ( count( $parserOutput->getWarnings() ) ) {
1804 $note .= "\n\n" . implode( "\n\n", $parserOutput->getWarnings() );
1805 }
1806 }
1807
1808 if( $this->isConflict ) {
1809 $conflict = '<h2 id="mw-previewconflict">' . htmlspecialchars( wfMsg( 'previewconflict' ) ) . "</h2>\n";
1810 } else {
1811 $conflict = '<hr />';
1812 }
1813
1814 $previewhead = "<div class='previewnote'>\n" .
1815 '<h2 id="mw-previewheader">' . htmlspecialchars( wfMsg( 'preview' ) ) . "</h2>" .
1816 $wgOut->parse( $note ) . $conflict . "</div>\n";
1817
1818 wfProfileOut( __METHOD__ );
1819 return $previewhead . $previewHTML;
1820 }
1821
1822 function getTemplates() {
1823 if ( $this->preview || $this->section != '' ) {
1824 $templates = array();
1825 if ( !isset($this->mParserOutput) ) return $templates;
1826 foreach( $this->mParserOutput->getTemplates() as $ns => $template) {
1827 foreach( array_keys( $template ) as $dbk ) {
1828 $templates[] = Title::makeTitle($ns, $dbk);
1829 }
1830 }
1831 return $templates;
1832 } else {
1833 return $this->mArticle->getUsedTemplates();
1834 }
1835 }
1836
1837 /**
1838 * Call the stock "user is blocked" page
1839 */
1840 function blockedPage() {
1841 global $wgOut, $wgUser;
1842 $wgOut->blockedPage( false ); # Standard block notice on the top, don't 'return'
1843
1844 # If the user made changes, preserve them when showing the markup
1845 # (This happens when a user is blocked during edit, for instance)
1846 $first = $this->firsttime || ( !$this->save && $this->textbox1 == '' );
1847 if ( $first ) {
1848 $source = $this->mTitle->exists() ? $this->getContent() : false;
1849 } else {
1850 $source = $this->textbox1;
1851 }
1852
1853 # Spit out the source or the user's modified version
1854 if ( $source !== false ) {
1855 $rows = $wgUser->getIntOption( 'rows' );
1856 $cols = $wgUser->getIntOption( 'cols' );
1857 $attribs = array( 'id' => 'wpTextbox1', 'name' => 'wpTextbox1', 'cols' => $cols, 'rows' => $rows, 'readonly' => 'readonly' );
1858 $wgOut->addHTML( '<hr />' );
1859 $wgOut->addWikiMsg( $first ? 'blockedoriginalsource' : 'blockededitsource', $this->mTitle->getPrefixedText() );
1860 # Why we don't use Xml::element here?
1861 # Is it because if $source is '', it returns <textarea />?
1862 $wgOut->addHTML( Xml::openElement( 'textarea', $attribs ) . htmlspecialchars( $source ) . Xml::closeElement( 'textarea' ) );
1863 }
1864 }
1865
1866 /**
1867 * Produce the stock "please login to edit pages" page
1868 */
1869 function userNotLoggedInPage() {
1870 global $wgUser, $wgOut, $wgTitle;
1871 $skin = $wgUser->getSkin();
1872
1873 $loginTitle = SpecialPage::getTitleFor( 'Userlogin' );
1874 $loginLink = $skin->link(
1875 $loginTitle,
1876 wfMsgHtml( 'loginreqlink' ),
1877 array(),
1878 array( 'returnto' => $wgTitle->getPrefixedText() ),
1879 array( 'known', 'noclasses' )
1880 );
1881
1882 $wgOut->setPageTitle( wfMsg( 'whitelistedittitle' ) );
1883 $wgOut->setRobotPolicy( 'noindex,nofollow' );
1884 $wgOut->setArticleRelated( false );
1885
1886 $wgOut->addHTML( wfMsgWikiHtml( 'whitelistedittext', $loginLink ) );
1887 $wgOut->returnToMain( false, $wgTitle );
1888 }
1889
1890 /**
1891 * Creates a basic error page which informs the user that
1892 * they have attempted to edit a nonexistent section.
1893 */
1894 function noSuchSectionPage() {
1895 global $wgOut, $wgTitle;
1896
1897 $wgOut->setPageTitle( wfMsg( 'nosuchsectiontitle' ) );
1898 $wgOut->setRobotPolicy( 'noindex,nofollow' );
1899 $wgOut->setArticleRelated( false );
1900
1901 $wgOut->addWikiMsg( 'nosuchsectiontext', $this->section );
1902 $wgOut->returnToMain( false, $wgTitle );
1903 }
1904
1905 /**
1906 * Produce the stock "your edit contains spam" page
1907 *
1908 * @param $match Text which triggered one or more filters
1909 */
1910 function spamPage( $match = false ) {
1911 global $wgOut, $wgTitle;
1912
1913 $wgOut->setPageTitle( wfMsg( 'spamprotectiontitle' ) );
1914 $wgOut->setRobotPolicy( 'noindex,nofollow' );
1915 $wgOut->setArticleRelated( false );
1916
1917 $wgOut->addHTML( '<div id="spamprotected">' );
1918 $wgOut->addWikiMsg( 'spamprotectiontext' );
1919 if ( $match )
1920 $wgOut->addWikiMsg( 'spamprotectionmatch', wfEscapeWikiText( $match ) );
1921 $wgOut->addHTML( '</div>' );
1922
1923 $wgOut->returnToMain( false, $wgTitle );
1924 }
1925
1926 /**
1927 * @private
1928 * @todo document
1929 */
1930 function mergeChangesInto( &$editText ){
1931 $fname = 'EditPage::mergeChangesInto';
1932 wfProfileIn( $fname );
1933
1934 $db = wfGetDB( DB_MASTER );
1935
1936 // This is the revision the editor started from
1937 $baseRevision = $this->getBaseRevision();
1938 if ( is_null( $baseRevision ) ) {
1939 wfProfileOut( $fname );
1940 return false;
1941 }
1942 $baseText = $baseRevision->getText();
1943
1944 // The current state, we want to merge updates into it
1945 $currentRevision = Revision::loadFromTitle( $db, $this->mTitle );
1946 if ( is_null( $currentRevision ) ) {
1947 wfProfileOut( $fname );
1948 return false;
1949 }
1950 $currentText = $currentRevision->getText();
1951
1952 $result = '';
1953 if ( wfMerge( $baseText, $editText, $currentText, $result ) ) {
1954 $editText = $result;
1955 wfProfileOut( $fname );
1956 return true;
1957 } else {
1958 wfProfileOut( $fname );
1959 return false;
1960 }
1961 }
1962
1963 /**
1964 * Check if the browser is on a blacklist of user-agents known to
1965 * mangle UTF-8 data on form submission. Returns true if Unicode
1966 * should make it through, false if it's known to be a problem.
1967 * @return bool
1968 * @private
1969 */
1970 function checkUnicodeCompliantBrowser() {
1971 global $wgBrowserBlackList;
1972 if ( empty( $_SERVER["HTTP_USER_AGENT"] ) ) {
1973 // No User-Agent header sent? Trust it by default...
1974 return true;
1975 }
1976 $currentbrowser = $_SERVER["HTTP_USER_AGENT"];
1977 foreach ( $wgBrowserBlackList as $browser ) {
1978 if ( preg_match($browser, $currentbrowser) ) {
1979 return false;
1980 }
1981 }
1982 return true;
1983 }
1984
1985 /**
1986 * @deprecated use $wgParser->stripSectionName()
1987 */
1988 function pseudoParseSectionAnchor( $text ) {
1989 global $wgParser;
1990 return $wgParser->stripSectionName( $text );
1991 }
1992
1993 /**
1994 * Format an anchor fragment as it would appear for a given section name
1995 * @param string $text
1996 * @return string
1997 * @private
1998 */
1999 function sectionAnchor( $text ) {
2000 global $wgParser;
2001 return $wgParser->guessSectionNameFromWikiText( $text );
2002 }
2003
2004 /**
2005 * Shows a bulletin board style toolbar for common editing functions.
2006 * It can be disabled in the user preferences.
2007 * The necessary JavaScript code can be found in skins/common/edit.js.
2008 *
2009 * @return string
2010 */
2011 static function getEditToolbar() {
2012 global $wgStylePath, $wgContLang, $wgLang, $wgJsMimeType;
2013
2014 /**
2015 * toolarray an array of arrays which each include the filename of
2016 * the button image (without path), the opening tag, the closing tag,
2017 * and optionally a sample text that is inserted between the two when no
2018 * selection is highlighted.
2019 * The tip text is shown when the user moves the mouse over the button.
2020 *
2021 * Already here are accesskeys (key), which are not used yet until someone
2022 * can figure out a way to make them work in IE. However, we should make
2023 * sure these keys are not defined on the edit page.
2024 */
2025 $toolarray = array(
2026 array(
2027 'image' => $wgLang->getImageFile('button-bold'),
2028 'id' => 'mw-editbutton-bold',
2029 'open' => '\'\'\'',
2030 'close' => '\'\'\'',
2031 'sample' => wfMsg('bold_sample'),
2032 'tip' => wfMsg('bold_tip'),
2033 'key' => 'B'
2034 ),
2035 array(
2036 'image' => $wgLang->getImageFile('button-italic'),
2037 'id' => 'mw-editbutton-italic',
2038 'open' => '\'\'',
2039 'close' => '\'\'',
2040 'sample' => wfMsg('italic_sample'),
2041 'tip' => wfMsg('italic_tip'),
2042 'key' => 'I'
2043 ),
2044 array(
2045 'image' => $wgLang->getImageFile('button-link'),
2046 'id' => 'mw-editbutton-link',
2047 'open' => '[[',
2048 'close' => ']]',
2049 'sample' => wfMsg('link_sample'),
2050 'tip' => wfMsg('link_tip'),
2051 'key' => 'L'
2052 ),
2053 array(
2054 'image' => $wgLang->getImageFile('button-extlink'),
2055 'id' => 'mw-editbutton-extlink',
2056 'open' => '[',
2057 'close' => ']',
2058 'sample' => wfMsg('extlink_sample'),
2059 'tip' => wfMsg('extlink_tip'),
2060 'key' => 'X'
2061 ),
2062 array(
2063 'image' => $wgLang->getImageFile('button-headline'),
2064 'id' => 'mw-editbutton-headline',
2065 'open' => "\n== ",
2066 'close' => " ==\n",
2067 'sample' => wfMsg('headline_sample'),
2068 'tip' => wfMsg('headline_tip'),
2069 'key' => 'H'
2070 ),
2071 array(
2072 'image' => $wgLang->getImageFile('button-image'),
2073 'id' => 'mw-editbutton-image',
2074 'open' => '[['.$wgContLang->getNsText(NS_FILE).':',
2075 'close' => ']]',
2076 'sample' => wfMsg('image_sample'),
2077 'tip' => wfMsg('image_tip'),
2078 'key' => 'D'
2079 ),
2080 array(
2081 'image' => $wgLang->getImageFile('button-media'),
2082 'id' => 'mw-editbutton-media',
2083 'open' => '[['.$wgContLang->getNsText(NS_MEDIA).':',
2084 'close' => ']]',
2085 'sample' => wfMsg('media_sample'),
2086 'tip' => wfMsg('media_tip'),
2087 'key' => 'M'
2088 ),
2089 array(
2090 'image' => $wgLang->getImageFile('button-math'),
2091 'id' => 'mw-editbutton-math',
2092 'open' => "<math>",
2093 'close' => "</math>",
2094 'sample' => wfMsg('math_sample'),
2095 'tip' => wfMsg('math_tip'),
2096 'key' => 'C'
2097 ),
2098 array(
2099 'image' => $wgLang->getImageFile('button-nowiki'),
2100 'id' => 'mw-editbutton-nowiki',
2101 'open' => "<nowiki>",
2102 'close' => "</nowiki>",
2103 'sample' => wfMsg('nowiki_sample'),
2104 'tip' => wfMsg('nowiki_tip'),
2105 'key' => 'N'
2106 ),
2107 array(
2108 'image' => $wgLang->getImageFile('button-sig'),
2109 'id' => 'mw-editbutton-signature',
2110 'open' => '--~~~~',
2111 'close' => '',
2112 'sample' => '',
2113 'tip' => wfMsg('sig_tip'),
2114 'key' => 'Y'
2115 ),
2116 array(
2117 'image' => $wgLang->getImageFile('button-hr'),
2118 'id' => 'mw-editbutton-hr',
2119 'open' => "\n----\n",
2120 'close' => '',
2121 'sample' => '',
2122 'tip' => wfMsg('hr_tip'),
2123 'key' => 'R'
2124 )
2125 );
2126 $toolbar = "<div id='toolbar'>\n";
2127 $toolbar.="<script type='$wgJsMimeType'>\n/*<![CDATA[*/\n";
2128
2129 foreach($toolarray as $tool) {
2130 $params = array(
2131 $image = $wgStylePath.'/common/images/'.$tool['image'],
2132 // Note that we use the tip both for the ALT tag and the TITLE tag of the image.
2133 // Older browsers show a "speedtip" type message only for ALT.
2134 // Ideally these should be different, realistically they
2135 // probably don't need to be.
2136 $tip = $tool['tip'],
2137 $open = $tool['open'],
2138 $close = $tool['close'],
2139 $sample = $tool['sample'],
2140 $cssId = $tool['id'],
2141 );
2142
2143 $paramList = implode( ',',
2144 array_map( array( 'Xml', 'encodeJsVar' ), $params ) );
2145 $toolbar.="addButton($paramList);\n";
2146 }
2147
2148 $toolbar.="/*]]>*/\n</script>";
2149 $toolbar.="\n</div>";
2150
2151 wfRunHooks( 'EditPageBeforeEditToolbar', array( &$toolbar ) );
2152
2153 return $toolbar;
2154 }
2155
2156 /**
2157 * Returns an array of html code of the following checkboxes:
2158 * minor and watch
2159 *
2160 * @param $tabindex Current tabindex
2161 * @param $skin Skin object
2162 * @param $checked Array of checkbox => bool, where bool indicates the checked
2163 * status of the checkbox
2164 *
2165 * @return array
2166 */
2167 public function getCheckboxes( &$tabindex, $skin, $checked ) {
2168 global $wgUser;
2169
2170 $checkboxes = array();
2171
2172 $checkboxes['minor'] = '';
2173 $minorLabel = wfMsgExt('minoredit', array('parseinline'));
2174 if ( $wgUser->isAllowed('minoredit') ) {
2175 $attribs = array(
2176 'tabindex' => ++$tabindex,
2177 'accesskey' => wfMsg( 'accesskey-minoredit' ),
2178 'id' => 'wpMinoredit',
2179 );
2180 $checkboxes['minor'] =
2181 Xml::check( 'wpMinoredit', $checked['minor'], $attribs ) .
2182 "&nbsp;<label for='wpMinoredit'".$skin->tooltip('minoredit', 'withaccess').">{$minorLabel}</label>";
2183 }
2184
2185 $watchLabel = wfMsgExt('watchthis', array('parseinline'));
2186 $checkboxes['watch'] = '';
2187 if ( $wgUser->isLoggedIn() ) {
2188 $attribs = array(
2189 'tabindex' => ++$tabindex,
2190 'accesskey' => wfMsg( 'accesskey-watch' ),
2191 'id' => 'wpWatchthis',
2192 );
2193 $checkboxes['watch'] =
2194 Xml::check( 'wpWatchthis', $checked['watch'], $attribs ) .
2195 "&nbsp;<label for='wpWatchthis'".$skin->tooltip('watch', 'withaccess').">{$watchLabel}</label>";
2196 }
2197 wfRunHooks( 'EditPageBeforeEditChecks', array( &$this, &$checkboxes, &$tabindex ) );
2198 return $checkboxes;
2199 }
2200
2201 /**
2202 * Returns an array of html code of the following buttons:
2203 * save, diff, preview and live
2204 *
2205 * @param $tabindex Current tabindex
2206 *
2207 * @return array
2208 */
2209 public function getEditButtons(&$tabindex) {
2210 global $wgLivePreview, $wgUser;
2211
2212 $buttons = array();
2213
2214 $temp = array(
2215 'id' => 'wpSave',
2216 'name' => 'wpSave',
2217 'type' => 'submit',
2218 'tabindex' => ++$tabindex,
2219 'value' => wfMsg('savearticle'),
2220 'accesskey' => wfMsg('accesskey-save'),
2221 'title' => wfMsg( 'tooltip-save' ).' ['.wfMsg( 'accesskey-save' ).']',
2222 );
2223 $buttons['save'] = Xml::element('input', $temp, '');
2224
2225 ++$tabindex; // use the same for preview and live preview
2226 if ( $wgLivePreview && $wgUser->getOption( 'uselivepreview' ) ) {
2227 $temp = array(
2228 'id' => 'wpPreview',
2229 'name' => 'wpPreview',
2230 'type' => 'submit',
2231 'tabindex' => $tabindex,
2232 'value' => wfMsg('showpreview'),
2233 'accesskey' => '',
2234 'title' => wfMsg( 'tooltip-preview' ).' ['.wfMsg( 'accesskey-preview' ).']',
2235 'style' => 'display: none;',
2236 );
2237 $buttons['preview'] = Xml::element('input', $temp, '');
2238
2239 $temp = array(
2240 'id' => 'wpLivePreview',
2241 'name' => 'wpLivePreview',
2242 'type' => 'submit',
2243 'tabindex' => $tabindex,
2244 'value' => wfMsg('showlivepreview'),
2245 'accesskey' => wfMsg('accesskey-preview'),
2246 'title' => '',
2247 'onclick' => $this->doLivePreviewScript(),
2248 );
2249 $buttons['live'] = Xml::element('input', $temp, '');
2250 } else {
2251 $temp = array(
2252 'id' => 'wpPreview',
2253 'name' => 'wpPreview',
2254 'type' => 'submit',
2255 'tabindex' => $tabindex,
2256 'value' => wfMsg('showpreview'),
2257 'accesskey' => wfMsg('accesskey-preview'),
2258 'title' => wfMsg( 'tooltip-preview' ).' ['.wfMsg( 'accesskey-preview' ).']',
2259 );
2260 $buttons['preview'] = Xml::element('input', $temp, '');
2261 $buttons['live'] = '';
2262 }
2263
2264 $temp = array(
2265 'id' => 'wpDiff',
2266 'name' => 'wpDiff',
2267 'type' => 'submit',
2268 'tabindex' => ++$tabindex,
2269 'value' => wfMsg('showdiff'),
2270 'accesskey' => wfMsg('accesskey-diff'),
2271 'title' => wfMsg( 'tooltip-diff' ).' ['.wfMsg( 'accesskey-diff' ).']',
2272 );
2273 $buttons['diff'] = Xml::element('input', $temp, '');
2274
2275 wfRunHooks( 'EditPageBeforeEditButtons', array( &$this, &$buttons, &$tabindex ) );
2276 return $buttons;
2277 }
2278
2279 /**
2280 * Output preview text only. This can be sucked into the edit page
2281 * via JavaScript, and saves the server time rendering the skin as
2282 * well as theoretically being more robust on the client (doesn't
2283 * disturb the edit box's undo history, won't eat your text on
2284 * failure, etc).
2285 *
2286 * @todo This doesn't include category or interlanguage links.
2287 * Would need to enhance it a bit, <s>maybe wrap them in XML
2288 * or something...</s> that might also require more skin
2289 * initialization, so check whether that's a problem.
2290 */
2291 function livePreview() {
2292 global $wgOut;
2293 $wgOut->disable();
2294 header( 'Content-type: text/xml; charset=utf-8' );
2295 header( 'Cache-control: no-cache' );
2296
2297 $previewText = $this->getPreviewText();
2298 #$categories = $skin->getCategoryLinks();
2299
2300 $s =
2301 '<?xml version="1.0" encoding="UTF-8" ?>' . "\n" .
2302 Xml::tags( 'livepreview', null,
2303 Xml::element( 'preview', null, $previewText )
2304 #. Xml::element( 'category', null, $categories )
2305 );
2306 echo $s;
2307 }
2308
2309
2310 /**
2311 * Get a diff between the current contents of the edit box and the
2312 * version of the page we're editing from.
2313 *
2314 * If this is a section edit, we'll replace the section as for final
2315 * save and then make a comparison.
2316 */
2317 function showDiff() {
2318 $oldtext = $this->mArticle->fetchContent();
2319 $newtext = $this->mArticle->replaceSection(
2320 $this->section, $this->textbox1, $this->summary, $this->edittime );
2321 $newtext = $this->mArticle->preSaveTransform( $newtext );
2322 $oldtitle = wfMsgExt( 'currentrev', array('parseinline') );
2323 $newtitle = wfMsgExt( 'yourtext', array('parseinline') );
2324 if ( $oldtext !== false || $newtext != '' ) {
2325 $de = new DifferenceEngine( $this->mTitle );
2326 $de->setText( $oldtext, $newtext );
2327 $difftext = $de->getDiff( $oldtitle, $newtitle );
2328 $de->showDiffStyle();
2329 } else {
2330 $difftext = '';
2331 }
2332
2333 global $wgOut;
2334 $wgOut->addHTML( '<div id="wikiDiff">' . $difftext . '</div>' );
2335 }
2336
2337 /**
2338 * Filter an input field through a Unicode de-armoring process if it
2339 * came from an old browser with known broken Unicode editing issues.
2340 *
2341 * @param WebRequest $request
2342 * @param string $field
2343 * @return string
2344 * @private
2345 */
2346 function safeUnicodeInput( $request, $field ) {
2347 $text = rtrim( $request->getText( $field ) );
2348 return $request->getBool( 'safemode' )
2349 ? $this->unmakesafe( $text )
2350 : $text;
2351 }
2352
2353 /**
2354 * Filter an output field through a Unicode armoring process if it is
2355 * going to an old browser with known broken Unicode editing issues.
2356 *
2357 * @param string $text
2358 * @return string
2359 * @private
2360 */
2361 function safeUnicodeOutput( $text ) {
2362 global $wgContLang;
2363 $codedText = $wgContLang->recodeForEdit( $text );
2364 return $this->checkUnicodeCompliantBrowser()
2365 ? $codedText
2366 : $this->makesafe( $codedText );
2367 }
2368
2369 /**
2370 * A number of web browsers are known to corrupt non-ASCII characters
2371 * in a UTF-8 text editing environment. To protect against this,
2372 * detected browsers will be served an armored version of the text,
2373 * with non-ASCII chars converted to numeric HTML character references.
2374 *
2375 * Preexisting such character references will have a 0 added to them
2376 * to ensure that round-trips do not alter the original data.
2377 *
2378 * @param string $invalue
2379 * @return string
2380 * @private
2381 */
2382 function makesafe( $invalue ) {
2383 // Armor existing references for reversability.
2384 $invalue = strtr( $invalue, array( "&#x" => "&#x0" ) );
2385
2386 $bytesleft = 0;
2387 $result = "";
2388 $working = 0;
2389 for( $i = 0; $i < strlen( $invalue ); $i++ ) {
2390 $bytevalue = ord( $invalue{$i} );
2391 if ( $bytevalue <= 0x7F ) { //0xxx xxxx
2392 $result .= chr( $bytevalue );
2393 $bytesleft = 0;
2394 } elseif ( $bytevalue <= 0xBF ) { //10xx xxxx
2395 $working = $working << 6;
2396 $working += ($bytevalue & 0x3F);
2397 $bytesleft--;
2398 if ( $bytesleft <= 0 ) {
2399 $result .= "&#x" . strtoupper( dechex( $working ) ) . ";";
2400 }
2401 } elseif ( $bytevalue <= 0xDF ) { //110x xxxx
2402 $working = $bytevalue & 0x1F;
2403 $bytesleft = 1;
2404 } elseif ( $bytevalue <= 0xEF ) { //1110 xxxx
2405 $working = $bytevalue & 0x0F;
2406 $bytesleft = 2;
2407 } else { //1111 0xxx
2408 $working = $bytevalue & 0x07;
2409 $bytesleft = 3;
2410 }
2411 }
2412 return $result;
2413 }
2414
2415 /**
2416 * Reverse the previously applied transliteration of non-ASCII characters
2417 * back to UTF-8. Used to protect data from corruption by broken web browsers
2418 * as listed in $wgBrowserBlackList.
2419 *
2420 * @param string $invalue
2421 * @return string
2422 * @private
2423 */
2424 function unmakesafe( $invalue ) {
2425 $result = "";
2426 for( $i = 0; $i < strlen( $invalue ); $i++ ) {
2427 if ( ( substr( $invalue, $i, 3 ) == "&#x" ) && ( $invalue{$i+3} != '0' ) ) {
2428 $i += 3;
2429 $hexstring = "";
2430 do {
2431 $hexstring .= $invalue{$i};
2432 $i++;
2433 } while( ctype_xdigit( $invalue{$i} ) && ( $i < strlen( $invalue ) ) );
2434
2435 // Do some sanity checks. These aren't needed for reversability,
2436 // but should help keep the breakage down if the editor
2437 // breaks one of the entities whilst editing.
2438 if ( (substr($invalue,$i,1)==";") and (strlen($hexstring) <= 6) ) {
2439 $codepoint = hexdec($hexstring);
2440 $result .= codepointToUtf8( $codepoint );
2441 } else {
2442 $result .= "&#x" . $hexstring . substr( $invalue, $i, 1 );
2443 }
2444 } else {
2445 $result .= substr( $invalue, $i, 1 );
2446 }
2447 }
2448 // reverse the transform that we made for reversability reasons.
2449 return strtr( $result, array( "&#x0" => "&#x" ) );
2450 }
2451
2452 function noCreatePermission() {
2453 global $wgOut;
2454 $wgOut->setPageTitle( wfMsg( 'nocreatetitle' ) );
2455 $wgOut->addWikiMsg( 'nocreatetext' );
2456 }
2457
2458 /**
2459 * If there are rows in the deletion/move log for this page, show them,
2460 * along with a nice little note for the user
2461 *
2462 * @param OutputPage $out
2463 */
2464 protected function showLogs( $out ) {
2465 global $wgUser;
2466 $loglist = new LogEventsList( $wgUser->getSkin(), $out );
2467 $pager = new LogPager( $loglist, array('move', 'delete'), false,
2468 $this->mTitle->getPrefixedText(), '', array('log_action'=>'delete') );
2469 $count = $pager->getNumRows();
2470 if ( $count > 0 ) {
2471 $pager->mLimit = 10;
2472 $out->addHTML( '<div class="mw-warning-with-logexcerpt">' );
2473 $out->addWikiMsg( 'recreate-moveddeleted-warn' );
2474 $out->addHTML(
2475 $loglist->beginLogEventsList() .
2476 $pager->getBody() .
2477 $loglist->endLogEventsList()
2478 );
2479 if($count > 10){
2480 $out->addHTML( $wgUser->getSkin()->link(
2481 SpecialPage::getTitleFor( 'Log' ),
2482 wfMsgHtml( 'log-fulllog' ),
2483 array(),
2484 array( 'page' => $this->mTitle->getPrefixedText() ) ) );
2485 }
2486 $out->addHTML( '</div>' );
2487 return true;
2488 }
2489
2490 return false;
2491 }
2492
2493 /**
2494 * Attempt submission
2495 * @return bool false if output is done, true if the rest of the form should be displayed
2496 */
2497 function attemptSave() {
2498 global $wgUser, $wgOut, $wgTitle, $wgRequest;
2499
2500 $resultDetails = false;
2501 # Allow bots to exempt some edits from bot flagging
2502 $bot = $wgUser->isAllowed('bot') && $wgRequest->getBool('bot',true);
2503 $value = $this->internalAttemptSave( $resultDetails, $bot );
2504
2505 if ( $value == self::AS_SUCCESS_UPDATE || $value == self::AS_SUCCESS_NEW_ARTICLE ) {
2506 $this->didSave = true;
2507 }
2508
2509 switch ($value) {
2510 case self::AS_HOOK_ERROR_EXPECTED:
2511 case self::AS_CONTENT_TOO_BIG:
2512 case self::AS_ARTICLE_WAS_DELETED:
2513 case self::AS_CONFLICT_DETECTED:
2514 case self::AS_SUMMARY_NEEDED:
2515 case self::AS_TEXTBOX_EMPTY:
2516 case self::AS_MAX_ARTICLE_SIZE_EXCEEDED:
2517 case self::AS_END:
2518 return true;
2519
2520 case self::AS_HOOK_ERROR:
2521 case self::AS_FILTERING:
2522 case self::AS_SUCCESS_NEW_ARTICLE:
2523 case self::AS_SUCCESS_UPDATE:
2524 return false;
2525
2526 case self::AS_SPAM_ERROR:
2527 $this->spamPage ( $resultDetails['spam'] );
2528 return false;
2529
2530 case self::AS_BLOCKED_PAGE_FOR_USER:
2531 $this->blockedPage();
2532 return false;
2533
2534 case self::AS_IMAGE_REDIRECT_ANON:
2535 $wgOut->showErrorPage( 'uploadnologin', 'uploadnologintext' );
2536 return false;
2537
2538 case self::AS_READ_ONLY_PAGE_ANON:
2539 $this->userNotLoggedInPage();
2540 return false;
2541
2542 case self::AS_READ_ONLY_PAGE_LOGGED:
2543 case self::AS_READ_ONLY_PAGE:
2544 $wgOut->readOnlyPage();
2545 return false;
2546
2547 case self::AS_RATE_LIMITED:
2548 $wgOut->rateLimited();
2549 return false;
2550
2551 case self::AS_NO_CREATE_PERMISSION;
2552 $this->noCreatePermission();
2553 return;
2554
2555 case self::AS_BLANK_ARTICLE:
2556 $wgOut->redirect( $wgTitle->getFullURL() );
2557 return false;
2558
2559 case self::AS_IMAGE_REDIRECT_LOGGED:
2560 $wgOut->permissionRequired( 'upload' );
2561 return false;
2562 }
2563 }
2564
2565 function getBaseRevision() {
2566 if ( $this->mBaseRevision == false ) {
2567 $db = wfGetDB( DB_MASTER );
2568 $baseRevision = Revision::loadFromTimestamp(
2569 $db, $this->mTitle, $this->edittime );
2570 return $this->mBaseRevision = $baseRevision;
2571 } else {
2572 return $this->mBaseRevision;
2573 }
2574 }
2575 }