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