Cleaned up and optimized wfBaseConvert();
[lhc/web/wiklou.git] / includes / EditPage.php
1 <?php
2 /**
3 * Page edition user interface.
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
19 *
20 * @file
21 */
22
23 /**
24 * The edit page/HTML interface (split from Article)
25 * The actual database and text munging is still in Article,
26 * but it should get easier to call those from alternate
27 * interfaces.
28 *
29 * EditPage cares about two distinct titles:
30 * $this->mContextTitle is the page that forms submit to, links point to,
31 * redirects go to, etc. $this->mTitle (as well as $mArticle) is the
32 * page in the database that is actually being edited. These are
33 * usually the same, but they are now allowed to be different.
34 *
35 * Surgeon General's Warning: prolonged exposure to this class is known to cause
36 * headaches, which may be fatal.
37 */
38 class EditPage {
39
40 /**
41 * Status: Article successfully updated
42 */
43 const AS_SUCCESS_UPDATE = 200;
44
45 /**
46 * Status: Article successfully created
47 */
48 const AS_SUCCESS_NEW_ARTICLE = 201;
49
50 /**
51 * Status: Article update aborted by a hook function
52 */
53 const AS_HOOK_ERROR = 210;
54
55 /**
56 * Status: A hook function returned an error
57 */
58 const AS_HOOK_ERROR_EXPECTED = 212;
59
60 /**
61 * Status: User is blocked from editting this page
62 */
63 const AS_BLOCKED_PAGE_FOR_USER = 215;
64
65 /**
66 * Status: Content too big (> $wgMaxArticleSize)
67 */
68 const AS_CONTENT_TOO_BIG = 216;
69
70 /**
71 * Status: User cannot edit? (not used)
72 */
73 const AS_USER_CANNOT_EDIT = 217;
74
75 /**
76 * Status: this anonymous user is not allowed to edit this page
77 */
78 const AS_READ_ONLY_PAGE_ANON = 218;
79
80 /**
81 * Status: this logged in user is not allowed to edit this page
82 */
83 const AS_READ_ONLY_PAGE_LOGGED = 219;
84
85 /**
86 * Status: wiki is in readonly mode (wfReadOnly() == true)
87 */
88 const AS_READ_ONLY_PAGE = 220;
89
90 /**
91 * Status: rate limiter for action 'edit' was tripped
92 */
93 const AS_RATE_LIMITED = 221;
94
95 /**
96 * Status: article was deleted while editting and param wpRecreate == false or form
97 * was not posted
98 */
99 const AS_ARTICLE_WAS_DELETED = 222;
100
101 /**
102 * Status: user tried to create this page, but is not allowed to do that
103 * ( Title->usercan('create') == false )
104 */
105 const AS_NO_CREATE_PERMISSION = 223;
106
107 /**
108 * Status: user tried to create a blank page
109 */
110 const AS_BLANK_ARTICLE = 224;
111
112 /**
113 * Status: (non-resolvable) edit conflict
114 */
115 const AS_CONFLICT_DETECTED = 225;
116
117 /**
118 * Status: no edit summary given and the user has forceeditsummary set and the user is not
119 * editting in his own userspace or talkspace and wpIgnoreBlankSummary == false
120 */
121 const AS_SUMMARY_NEEDED = 226;
122
123 /**
124 * Status: user tried to create a new section without content
125 */
126 const AS_TEXTBOX_EMPTY = 228;
127
128 /**
129 * Status: article is too big (> $wgMaxArticleSize), after merging in the new section
130 */
131 const AS_MAX_ARTICLE_SIZE_EXCEEDED = 229;
132
133 /**
134 * not used
135 */
136 const AS_OK = 230;
137
138 /**
139 * Status: WikiPage::doEdit() was unsuccessfull
140 */
141 const AS_END = 231;
142
143 /**
144 * Status: summary contained spam according to one of the regexes in $wgSummarySpamRegex
145 */
146 const AS_SPAM_ERROR = 232;
147
148 /**
149 * Status: anonymous user is not allowed to upload (User::isAllowed('upload') == false)
150 */
151 const AS_IMAGE_REDIRECT_ANON = 233;
152
153 /**
154 * Status: logged in user is not allowed to upload (User::isAllowed('upload') == false)
155 */
156 const AS_IMAGE_REDIRECT_LOGGED = 234;
157
158 /**
159 * Status: can't parse content
160 */
161 const AS_PARSE_ERROR = 240;
162
163 /**
164 * HTML id and name for the beginning of the edit form.
165 */
166 const EDITFORM_ID = 'editform';
167
168 /**
169 * @var Article
170 */
171 var $mArticle;
172
173 /**
174 * @var Title
175 */
176 var $mTitle;
177 private $mContextTitle = null;
178 var $action = 'submit';
179 var $isConflict = false;
180 var $isCssJsSubpage = false;
181 var $isCssSubpage = false;
182 var $isJsSubpage = false;
183 var $isWrongCaseCssJsPage = false;
184 var $isNew = false; // new page or new section
185 var $deletedSinceEdit;
186 var $formtype;
187 var $firsttime;
188 var $lastDelete;
189 var $mTokenOk = false;
190 var $mTokenOkExceptSuffix = false;
191 var $mTriedSave = false;
192 var $incompleteForm = false;
193 var $tooBig = false;
194 var $kblength = false;
195 var $missingComment = false;
196 var $missingSummary = false;
197 var $allowBlankSummary = false;
198 var $autoSumm = '';
199 var $hookError = '';
200 #var $mPreviewTemplates;
201
202 /**
203 * @var ParserOutput
204 */
205 var $mParserOutput;
206
207 /**
208 * Has a summary been preset using GET parameter &summary= ?
209 * @var Bool
210 */
211 var $hasPresetSummary = false;
212
213 var $mBaseRevision = false;
214 var $mShowSummaryField = true;
215
216 # Form values
217 var $save = false, $preview = false, $diff = false;
218 var $minoredit = false, $watchthis = false, $recreate = false;
219 var $textbox1 = '', $textbox2 = '', $summary = '', $nosummary = false;
220 var $edittime = '', $section = '', $sectiontitle = '', $starttime = '';
221 var $oldid = 0, $editintro = '', $scrolltop = null, $bot = true;
222 var $contentModel = null, $contentFormat = null;
223
224 # Placeholders for text injection by hooks (must be HTML)
225 # extensions should take care to _append_ to the present value
226 public $editFormPageTop = ''; // Before even the preview
227 public $editFormTextTop = '';
228 public $editFormTextBeforeContent = '';
229 public $editFormTextAfterWarn = '';
230 public $editFormTextAfterTools = '';
231 public $editFormTextBottom = '';
232 public $editFormTextAfterContent = '';
233 public $previewTextAfterContent = '';
234 public $mPreloadContent = null;
235
236 /* $didSave should be set to true whenever an article was succesfully altered. */
237 public $didSave = false;
238 public $undidRev = 0;
239
240 public $suppressIntro = false;
241
242 /**
243 * Set to true to allow editing of non-text content types.
244 *
245 * @var bool
246 */
247 public $allowNonTextContent = false;
248
249 /**
250 * @param $article Article
251 */
252 public function __construct( Article $article ) {
253 $this->mArticle = $article;
254 $this->mTitle = $article->getTitle();
255
256 $this->contentModel = $this->mTitle->getContentModel();
257
258 $handler = ContentHandler::getForModelID( $this->contentModel );
259 $this->contentFormat = $handler->getDefaultFormat();
260 }
261
262 /**
263 * @return Article
264 */
265 public function getArticle() {
266 return $this->mArticle;
267 }
268
269 /**
270 * @since 1.19
271 * @return Title
272 */
273 public function getTitle() {
274 return $this->mTitle;
275 }
276
277 /**
278 * Set the context Title object
279 *
280 * @param $title Title object or null
281 */
282 public function setContextTitle( $title ) {
283 $this->mContextTitle = $title;
284 }
285
286 /**
287 * Get the context title object.
288 * If not set, $wgTitle will be returned. This behavior might change in
289 * the future to return $this->mTitle instead.
290 *
291 * @return Title object
292 */
293 public function getContextTitle() {
294 if ( is_null( $this->mContextTitle ) ) {
295 global $wgTitle;
296 return $wgTitle;
297 } else {
298 return $this->mContextTitle;
299 }
300 }
301
302 function submit() {
303 $this->edit();
304 }
305
306 /**
307 * This is the function that gets called for "action=edit". It
308 * sets up various member variables, then passes execution to
309 * another function, usually showEditForm()
310 *
311 * The edit form is self-submitting, so that when things like
312 * preview and edit conflicts occur, we get the same form back
313 * with the extra stuff added. Only when the final submission
314 * is made and all is well do we actually save and redirect to
315 * the newly-edited page.
316 */
317 function edit() {
318 global $wgOut, $wgRequest, $wgUser;
319 // Allow extensions to modify/prevent this form or submission
320 if ( !wfRunHooks( 'AlternateEdit', array( $this ) ) ) {
321 return;
322 }
323
324 wfProfileIn( __METHOD__ );
325 wfDebug( __METHOD__ . ": enter\n" );
326
327 // If they used redlink=1 and the page exists, redirect to the main article
328 if ( $wgRequest->getBool( 'redlink' ) && $this->mTitle->exists() ) {
329 $wgOut->redirect( $this->mTitle->getFullURL() );
330 wfProfileOut( __METHOD__ );
331 return;
332 }
333
334 $this->importFormData( $wgRequest );
335 $this->firsttime = false;
336
337 if ( $this->live ) {
338 $this->livePreview();
339 wfProfileOut( __METHOD__ );
340 return;
341 }
342
343 if ( wfReadOnly() && $this->save ) {
344 // Force preview
345 $this->save = false;
346 $this->preview = true;
347 }
348
349 if ( $this->save ) {
350 $this->formtype = 'save';
351 } elseif ( $this->preview ) {
352 $this->formtype = 'preview';
353 } elseif ( $this->diff ) {
354 $this->formtype = 'diff';
355 } else { # First time through
356 $this->firsttime = true;
357 if ( $this->previewOnOpen() ) {
358 $this->formtype = 'preview';
359 } else {
360 $this->formtype = 'initial';
361 }
362 }
363
364 $permErrors = $this->getEditPermissionErrors();
365 if ( $permErrors ) {
366 wfDebug( __METHOD__ . ": User can't edit\n" );
367 // Auto-block user's IP if the account was "hard" blocked
368 $wgUser->spreadAnyEditBlock();
369
370 $this->displayPermissionsError( $permErrors );
371
372 wfProfileOut( __METHOD__ );
373 return;
374 }
375
376 wfProfileIn( __METHOD__ . "-business-end" );
377
378 $this->isConflict = false;
379 // css / js subpages of user pages get a special treatment
380 $this->isCssJsSubpage = $this->mTitle->isCssJsSubpage();
381 $this->isCssSubpage = $this->mTitle->isCssSubpage();
382 $this->isJsSubpage = $this->mTitle->isJsSubpage();
383 $this->isWrongCaseCssJsPage = $this->isWrongCaseCssJsPage();
384
385 # Show applicable editing introductions
386 if ( $this->formtype == 'initial' || $this->firsttime ) {
387 $this->showIntro();
388 }
389
390 # Attempt submission here. This will check for edit conflicts,
391 # and redundantly check for locked database, blocked IPs, etc.
392 # that edit() already checked just in case someone tries to sneak
393 # in the back door with a hand-edited submission URL.
394
395 if ( 'save' == $this->formtype ) {
396 if ( !$this->attemptSave() ) {
397 wfProfileOut( __METHOD__ . "-business-end" );
398 wfProfileOut( __METHOD__ );
399 return;
400 }
401 }
402
403 # First time through: get contents, set time for conflict
404 # checking, etc.
405 if ( 'initial' == $this->formtype || $this->firsttime ) {
406 if ( $this->initialiseForm() === false ) {
407 $this->noSuchSectionPage();
408 wfProfileOut( __METHOD__ . "-business-end" );
409 wfProfileOut( __METHOD__ );
410 return;
411 }
412
413 if ( !$this->mTitle->getArticleID() ) {
414 wfRunHooks( 'EditFormPreloadText', array( &$this->textbox1, &$this->mTitle ) );
415 } else {
416 wfRunHooks( 'EditFormInitialText', array( $this ) );
417 }
418
419 }
420
421 $this->showEditForm();
422 wfProfileOut( __METHOD__ . "-business-end" );
423 wfProfileOut( __METHOD__ );
424 }
425
426 /**
427 * @return array
428 */
429 protected function getEditPermissionErrors() {
430 global $wgUser;
431 $permErrors = $this->mTitle->getUserPermissionsErrors( 'edit', $wgUser );
432 # Can this title be created?
433 if ( !$this->mTitle->exists() ) {
434 $permErrors = array_merge( $permErrors,
435 wfArrayDiff2( $this->mTitle->getUserPermissionsErrors( 'create', $wgUser ), $permErrors ) );
436 }
437 # Ignore some permissions errors when a user is just previewing/viewing diffs
438 $remove = array();
439 foreach ( $permErrors as $error ) {
440 if ( ( $this->preview || $this->diff ) &&
441 ( $error[0] == 'blockedtext' || $error[0] == 'autoblockedtext' ) )
442 {
443 $remove[] = $error;
444 }
445 }
446 $permErrors = wfArrayDiff2( $permErrors, $remove );
447 return $permErrors;
448 }
449
450 /**
451 * Display a permissions error page, like OutputPage::showPermissionsErrorPage(),
452 * but with the following differences:
453 * - If redlink=1, the user will be redirected to the page
454 * - If there is content to display or the error occurs while either saving,
455 * previewing or showing the difference, it will be a
456 * "View source for ..." page displaying the source code after the error message.
457 *
458 * @since 1.19
459 * @param $permErrors Array of permissions errors, as returned by
460 * Title::getUserPermissionsErrors().
461 * @throws PermissionsError
462 */
463 protected function displayPermissionsError( array $permErrors ) {
464 global $wgRequest, $wgOut;
465
466 if ( $wgRequest->getBool( 'redlink' ) ) {
467 // The edit page was reached via a red link.
468 // Redirect to the article page and let them click the edit tab if
469 // they really want a permission error.
470 $wgOut->redirect( $this->mTitle->getFullUrl() );
471 return;
472 }
473
474 $content = $this->getContentObject();
475
476 # Use the normal message if there's nothing to display
477 if ( $this->firsttime && ( !$content || $content->isEmpty() ) ) {
478 $action = $this->mTitle->exists() ? 'edit' :
479 ( $this->mTitle->isTalkPage() ? 'createtalk' : 'createpage' );
480 throw new PermissionsError( $action, $permErrors );
481 }
482
483 $wgOut->setRobotPolicy( 'noindex,nofollow' );
484 $wgOut->setPageTitle( wfMessage( 'viewsource-title', $this->getContextTitle()->getPrefixedText() ) );
485 $wgOut->addBacklinkSubtitle( $this->getContextTitle() );
486 $wgOut->addWikiText( $wgOut->formatPermissionsErrorMessage( $permErrors, 'edit' ) );
487 $wgOut->addHTML( "<hr />\n" );
488
489 # If the user made changes, preserve them when showing the markup
490 # (This happens when a user is blocked during edit, for instance)
491 if ( !$this->firsttime ) {
492 $text = $this->textbox1;
493 $wgOut->addWikiMsg( 'viewyourtext' );
494 } else {
495 $text = $this->toEditText( $content );
496 $wgOut->addWikiMsg( 'viewsourcetext' );
497 }
498
499 $this->showTextbox( $text, 'wpTextbox1', array( 'readonly' ) );
500
501 $wgOut->addHTML( Html::rawElement( 'div', array( 'class' => 'templatesUsed' ),
502 Linker::formatTemplates( $this->getTemplates() ) ) );
503
504 if ( $this->mTitle->exists() ) {
505 $wgOut->returnToMain( null, $this->mTitle );
506 }
507 }
508
509 /**
510 * Show a read-only error
511 * Parameters are the same as OutputPage:readOnlyPage()
512 * Redirect to the article page if redlink=1
513 * @deprecated in 1.19; use displayPermissionsError() instead
514 */
515 function readOnlyPage( $source = null, $protected = false, $reasons = array(), $action = null ) {
516 wfDeprecated( __METHOD__, '1.19' );
517
518 global $wgRequest, $wgOut;
519 if ( $wgRequest->getBool( 'redlink' ) ) {
520 // The edit page was reached via a red link.
521 // Redirect to the article page and let them click the edit tab if
522 // they really want a permission error.
523 $wgOut->redirect( $this->mTitle->getFullUrl() );
524 } else {
525 $wgOut->readOnlyPage( $source, $protected, $reasons, $action );
526 }
527 }
528
529 /**
530 * Should we show a preview when the edit form is first shown?
531 *
532 * @return bool
533 */
534 protected function previewOnOpen() {
535 global $wgRequest, $wgUser, $wgPreviewOnOpenNamespaces;
536 if ( $wgRequest->getVal( 'preview' ) == 'yes' ) {
537 // Explicit override from request
538 return true;
539 } elseif ( $wgRequest->getVal( 'preview' ) == 'no' ) {
540 // Explicit override from request
541 return false;
542 } elseif ( $this->section == 'new' ) {
543 // Nothing *to* preview for new sections
544 return false;
545 } elseif ( ( $wgRequest->getVal( 'preload' ) !== null || $this->mTitle->exists() ) && $wgUser->getOption( 'previewonfirst' ) ) {
546 // Standard preference behaviour
547 return true;
548 } elseif ( !$this->mTitle->exists() &&
549 isset( $wgPreviewOnOpenNamespaces[$this->mTitle->getNamespace()] ) &&
550 $wgPreviewOnOpenNamespaces[$this->mTitle->getNamespace()] )
551 {
552 // Categories are special
553 return true;
554 } else {
555 return false;
556 }
557 }
558
559 /**
560 * Checks whether the user entered a skin name in uppercase,
561 * e.g. "User:Example/Monobook.css" instead of "monobook.css"
562 *
563 * @return bool
564 */
565 protected function isWrongCaseCssJsPage() {
566 if ( $this->mTitle->isCssJsSubpage() ) {
567 $name = $this->mTitle->getSkinFromCssJsSubpage();
568 $skins = array_merge(
569 array_keys( Skin::getSkinNames() ),
570 array( 'common' )
571 );
572 return !in_array( $name, $skins )
573 && in_array( strtolower( $name ), $skins );
574 } else {
575 return false;
576 }
577 }
578
579 /**
580 * Does this EditPage class support section editing?
581 * This is used by EditPage subclasses to indicate their ui cannot handle section edits
582 *
583 * @return bool
584 */
585 protected function isSectionEditSupported() {
586 return true;
587 }
588
589 /**
590 * This function collects the form data and uses it to populate various member variables.
591 * @param $request WebRequest
592 */
593 function importFormData( &$request ) {
594 global $wgContLang, $wgUser;
595
596 wfProfileIn( __METHOD__ );
597
598 # Section edit can come from either the form or a link
599 $this->section = $request->getVal( 'wpSection', $request->getVal( 'section' ) );
600 $this->isNew = !$this->mTitle->exists() || $this->section == 'new';
601
602 if ( $request->wasPosted() ) {
603 # These fields need to be checked for encoding.
604 # Also remove trailing whitespace, but don't remove _initial_
605 # whitespace from the text boxes. This may be significant formatting.
606 $this->textbox1 = $this->safeUnicodeInput( $request, 'wpTextbox1' );
607 if ( !$request->getCheck( 'wpTextbox2' ) ) {
608 // Skip this if wpTextbox2 has input, it indicates that we came
609 // from a conflict page with raw page text, not a custom form
610 // modified by subclasses
611 wfProfileIn( get_class( $this ) . "::importContentFormData" );
612 $textbox1 = $this->importContentFormData( $request );
613 if ( isset( $textbox1 ) ) {
614 $this->textbox1 = $textbox1;
615 }
616
617 wfProfileOut( get_class( $this ) . "::importContentFormData" );
618 }
619
620 # Truncate for whole multibyte characters
621 $this->summary = $wgContLang->truncate( $request->getText( 'wpSummary' ), 255 );
622
623 # If the summary consists of a heading, e.g. '==Foobar==', extract the title from the
624 # header syntax, e.g. 'Foobar'. This is mainly an issue when we are using wpSummary for
625 # section titles.
626 $this->summary = preg_replace( '/^\s*=+\s*(.*?)\s*=+\s*$/', '$1', $this->summary );
627
628 # Treat sectiontitle the same way as summary.
629 # Note that wpSectionTitle is not yet a part of the actual edit form, as wpSummary is
630 # currently doing double duty as both edit summary and section title. Right now this
631 # is just to allow API edits to work around this limitation, but this should be
632 # incorporated into the actual edit form when EditPage is rewritten (Bugs 18654, 26312).
633 $this->sectiontitle = $wgContLang->truncate( $request->getText( 'wpSectionTitle' ), 255 );
634 $this->sectiontitle = preg_replace( '/^\s*=+\s*(.*?)\s*=+\s*$/', '$1', $this->sectiontitle );
635
636 $this->edittime = $request->getVal( 'wpEdittime' );
637 $this->starttime = $request->getVal( 'wpStarttime' );
638
639 $this->scrolltop = $request->getIntOrNull( 'wpScrolltop' );
640
641 if ( $this->textbox1 === '' && $request->getVal( 'wpTextbox1' ) === null ) {
642 // wpTextbox1 field is missing, possibly due to being "too big"
643 // according to some filter rules such as Suhosin's setting for
644 // suhosin.request.max_value_length (d'oh)
645 $this->incompleteForm = true;
646 } else {
647 // edittime should be one of our last fields; if it's missing,
648 // the submission probably broke somewhere in the middle.
649 $this->incompleteForm = is_null( $this->edittime );
650 }
651 if ( $this->incompleteForm ) {
652 # If the form is incomplete, force to preview.
653 wfDebug( __METHOD__ . ": Form data appears to be incomplete\n" );
654 wfDebug( "POST DATA: " . var_export( $_POST, true ) . "\n" );
655 $this->preview = true;
656 } else {
657 /* Fallback for live preview */
658 $this->preview = $request->getCheck( 'wpPreview' ) || $request->getCheck( 'wpLivePreview' );
659 $this->diff = $request->getCheck( 'wpDiff' );
660
661 // Remember whether a save was requested, so we can indicate
662 // if we forced preview due to session failure.
663 $this->mTriedSave = !$this->preview;
664
665 if ( $this->tokenOk( $request ) ) {
666 # Some browsers will not report any submit button
667 # if the user hits enter in the comment box.
668 # The unmarked state will be assumed to be a save,
669 # if the form seems otherwise complete.
670 wfDebug( __METHOD__ . ": Passed token check.\n" );
671 } elseif ( $this->diff ) {
672 # Failed token check, but only requested "Show Changes".
673 wfDebug( __METHOD__ . ": Failed token check; Show Changes requested.\n" );
674 } else {
675 # Page might be a hack attempt posted from
676 # an external site. Preview instead of saving.
677 wfDebug( __METHOD__ . ": Failed token check; forcing preview\n" );
678 $this->preview = true;
679 }
680 }
681 $this->save = !$this->preview && !$this->diff;
682 if ( !preg_match( '/^\d{14}$/', $this->edittime ) ) {
683 $this->edittime = null;
684 }
685
686 if ( !preg_match( '/^\d{14}$/', $this->starttime ) ) {
687 $this->starttime = null;
688 }
689
690 $this->recreate = $request->getCheck( 'wpRecreate' );
691
692 $this->minoredit = $request->getCheck( 'wpMinoredit' );
693 $this->watchthis = $request->getCheck( 'wpWatchthis' );
694
695 # Don't force edit summaries when a user is editing their own user or talk page
696 if ( ( $this->mTitle->mNamespace == NS_USER || $this->mTitle->mNamespace == NS_USER_TALK ) &&
697 $this->mTitle->getText() == $wgUser->getName() )
698 {
699 $this->allowBlankSummary = true;
700 } else {
701 $this->allowBlankSummary = $request->getBool( 'wpIgnoreBlankSummary' ) || !$wgUser->getOption( 'forceeditsummary' );
702 }
703
704 $this->autoSumm = $request->getText( 'wpAutoSummary' );
705 } else {
706 # Not a posted form? Start with nothing.
707 wfDebug( __METHOD__ . ": Not a posted form.\n" );
708 $this->textbox1 = '';
709 $this->summary = '';
710 $this->sectiontitle = '';
711 $this->edittime = '';
712 $this->starttime = wfTimestampNow();
713 $this->edit = false;
714 $this->preview = false;
715 $this->save = false;
716 $this->diff = false;
717 $this->minoredit = false;
718 $this->watchthis = $request->getBool( 'watchthis', false ); // Watch may be overriden by request parameters
719 $this->recreate = false;
720
721 // When creating a new section, we can preload a section title by passing it as the
722 // preloadtitle parameter in the URL (Bug 13100)
723 if ( $this->section == 'new' && $request->getVal( 'preloadtitle' ) ) {
724 $this->sectiontitle = $request->getVal( 'preloadtitle' );
725 // Once wpSummary isn't being use for setting section titles, we should delete this.
726 $this->summary = $request->getVal( 'preloadtitle' );
727 }
728 elseif ( $this->section != 'new' && $request->getVal( 'summary' ) ) {
729 $this->summary = $request->getText( 'summary' );
730 if ( $this->summary !== '' ) {
731 $this->hasPresetSummary = true;
732 }
733 }
734
735 if ( $request->getVal( 'minor' ) ) {
736 $this->minoredit = true;
737 }
738 }
739
740 $this->oldid = $request->getInt( 'oldid' );
741
742 $this->bot = $request->getBool( 'bot', true );
743 $this->nosummary = $request->getBool( 'nosummary' );
744
745 $content_handler = ContentHandler::getForTitle( $this->mTitle );
746 $this->contentModel = $request->getText( 'model', $content_handler->getModelID() ); #may be overridden by revision
747 $this->contentFormat = $request->getText( 'format', $content_handler->getDefaultFormat() ); #may be overridden by revision
748
749 #TODO: check if the desired model is allowed in this namespace, and if a transition from the page's current model to the new model is allowed
750 #TODO: check if the desired content model supports the given content format!
751
752 $this->live = $request->getCheck( 'live' );
753 $this->editintro = $request->getText( 'editintro',
754 // Custom edit intro for new sections
755 $this->section === 'new' ? 'MediaWiki:addsection-editintro' : '' );
756
757 // Allow extensions to modify form data
758 wfRunHooks( 'EditPage::importFormData', array( $this, $request ) );
759
760 wfProfileOut( __METHOD__ );
761 }
762
763 /**
764 * Subpage overridable method for extracting the page content data from the
765 * posted form to be placed in $this->textbox1, if using customized input
766 * this method should be overrided and return the page text that will be used
767 * for saving, preview parsing and so on...
768 *
769 * @param $request WebRequest
770 */
771 protected function importContentFormData( &$request ) {
772 return; // Don't do anything, EditPage already extracted wpTextbox1
773 }
774
775 /**
776 * Initialise form fields in the object
777 * Called on the first invocation, e.g. when a user clicks an edit link
778 * @return bool -- if the requested section is valid
779 */
780 function initialiseForm() {
781 global $wgUser;
782 $this->edittime = $this->mArticle->getTimestamp();
783
784 $content = $this->getContentObject( false ); #TODO: track content object?!
785 if ( $content === false ) {
786 return false;
787 }
788 $this->textbox1 = $this->toEditText( $content );
789
790 // activate checkboxes if user wants them to be always active
791 # Sort out the "watch" checkbox
792 if ( $wgUser->getOption( 'watchdefault' ) ) {
793 # Watch all edits
794 $this->watchthis = true;
795 } elseif ( $wgUser->getOption( 'watchcreations' ) && !$this->mTitle->exists() ) {
796 # Watch creations
797 $this->watchthis = true;
798 } elseif ( $wgUser->isWatched( $this->mTitle ) ) {
799 # Already watched
800 $this->watchthis = true;
801 }
802 if ( $wgUser->getOption( 'minordefault' ) && !$this->isNew ) {
803 $this->minoredit = true;
804 }
805 if ( $this->textbox1 === false ) {
806 return false;
807 }
808 wfProxyCheck();
809 return true;
810 }
811
812 /**
813 * Fetch initial editing page content.
814 *
815 * @param $def_text string|bool
816 * @return mixed string on success, $def_text for invalid sections
817 * @private
818 * @deprecated since 1.21, get WikiPage::getContent() instead.
819 */
820 function getContent( $def_text = false ) {
821 ContentHandler::deprecated( __METHOD__, '1.21' );
822
823 if ( $def_text !== null && $def_text !== false && $def_text !== '' ) {
824 $def_content = $this->toEditContent( $def_text );
825 } else {
826 $def_content = false;
827 }
828
829 $content = $this->getContentObject( $def_content );
830
831 // Note: EditPage should only be used with text based content anyway.
832 return $this->toEditText( $content );
833 }
834
835 /**
836 * @param Content|null $def_content The default value to return
837 *
838 * @return mixed Content on success, $def_content for invalid sections
839 *
840 * @since 1.21
841 */
842 protected function getContentObject( $def_content = null ) {
843 global $wgOut, $wgRequest;
844
845 wfProfileIn( __METHOD__ );
846
847 $content = false;
848
849 // For message page not locally set, use the i18n message.
850 // For other non-existent articles, use preload text if any.
851 if ( !$this->mTitle->exists() || $this->section == 'new' ) {
852 if ( $this->mTitle->getNamespace() == NS_MEDIAWIKI && $this->section != 'new' ) {
853 # If this is a system message, get the default text.
854 $msg = $this->mTitle->getDefaultMessageText();
855
856 $content = $this->toEditContent( $msg );
857 }
858 if ( $content === false ) {
859 # If requested, preload some text.
860 $preload = $wgRequest->getVal( 'preload',
861 // Custom preload text for new sections
862 $this->section === 'new' ? 'MediaWiki:addsection-preload' : '' );
863
864 $content = $this->getPreloadedContent( $preload );
865 }
866 // For existing pages, get text based on "undo" or section parameters.
867 } else {
868 if ( $this->section != '' ) {
869 // Get section edit text (returns $def_text for invalid sections)
870 $orig = $this->getOriginalContent();
871 $content = $orig ? $orig->getSection( $this->section ) : null;
872
873 if ( !$content ) $content = $def_content;
874 } else {
875 $undoafter = $wgRequest->getInt( 'undoafter' );
876 $undo = $wgRequest->getInt( 'undo' );
877
878 if ( $undo > 0 && $undoafter > 0 ) {
879 if ( $undo < $undoafter ) {
880 # If they got undoafter and undo round the wrong way, switch them
881 list( $undo, $undoafter ) = array( $undoafter, $undo );
882 }
883
884 $undorev = Revision::newFromId( $undo );
885 $oldrev = Revision::newFromId( $undoafter );
886
887 # Sanity check, make sure it's the right page,
888 # the revisions exist and they were not deleted.
889 # Otherwise, $content will be left as-is.
890 if ( !is_null( $undorev ) && !is_null( $oldrev ) &&
891 $undorev->getPage() == $oldrev->getPage() &&
892 $undorev->getPage() == $this->mTitle->getArticleID() &&
893 !$undorev->isDeleted( Revision::DELETED_TEXT ) &&
894 !$oldrev->isDeleted( Revision::DELETED_TEXT ) ) {
895
896 $content = $this->mArticle->getUndoContent( $undorev, $oldrev );
897
898 if ( $content === false ) {
899 # Warn the user that something went wrong
900 $undoMsg = 'failure';
901 } else {
902 # Inform the user of our success and set an automatic edit summary
903 $undoMsg = 'success';
904
905 # If we just undid one rev, use an autosummary
906 $firstrev = $oldrev->getNext();
907 if ( $firstrev && $firstrev->getId() == $undo ) {
908 $undoSummary = wfMessage( 'undo-summary', $undo, $undorev->getUserText() )->inContentLanguage()->text();
909 if ( $this->summary === '' ) {
910 $this->summary = $undoSummary;
911 } else {
912 $this->summary = $undoSummary . wfMessage( 'colon-separator' )
913 ->inContentLanguage()->text() . $this->summary;
914 }
915 $this->undidRev = $undo;
916 }
917 $this->formtype = 'diff';
918 }
919 } else {
920 // Failed basic sanity checks.
921 // Older revisions may have been removed since the link
922 // was created, or we may simply have got bogus input.
923 $undoMsg = 'norev';
924 }
925
926 $class = ( $undoMsg == 'success' ? '' : 'error ' ) . "mw-undo-{$undoMsg}";
927 $this->editFormPageTop .= $wgOut->parse( "<div class=\"{$class}\">" .
928 wfMessage( 'undo-' . $undoMsg )->plain() . '</div>', true, /* interface */true );
929 }
930
931 if ( $content === false ) {
932 $content = $this->getOriginalContent();
933 }
934 }
935 }
936
937 wfProfileOut( __METHOD__ );
938 return $content;
939 }
940
941 /**
942 * Get the content of the wanted revision, without section extraction.
943 *
944 * The result of this function can be used to compare user's input with
945 * section replaced in its context (using WikiPage::replaceSection())
946 * to the original text of the edit.
947 *
948 * This difers from Article::getContent() that when a missing revision is
949 * encountered the result will be null and not the
950 * 'missing-revision' message.
951 *
952 * @since 1.19
953 * @return Content|null
954 */
955 private function getOriginalContent() {
956 if ( $this->section == 'new' ) {
957 return $this->getCurrentContent();
958 }
959 $revision = $this->mArticle->getRevisionFetched();
960 if ( $revision === null ) {
961 if ( !$this->contentModel ) $this->contentModel = $this->getTitle()->getContentModel();
962 $handler = ContentHandler::getForModelID( $this->contentModel );
963
964 return $handler->makeEmptyContent();
965 }
966 $content = $revision->getContent();
967 return $content;
968 }
969
970 /**
971 * Get the current content of the page. This is basically similar to
972 * WikiPage::getContent( Revision::RAW ) except that when the page doesn't exist an empty
973 * content object is returned instead of null.
974 *
975 * @since 1.21
976 * @return Content
977 */
978 protected function getCurrentContent() {
979 $rev = $this->mArticle->getRevision();
980 $content = $rev ? $rev->getContent( Revision::RAW ) : null;
981
982 if ( $content === false || $content === null ) {
983 if ( !$this->contentModel ) $this->contentModel = $this->getTitle()->getContentModel();
984 $handler = ContentHandler::getForModelID( $this->contentModel );
985
986 return $handler->makeEmptyContent();
987 } else {
988 # nasty side-effect, but needed for consistency
989 $this->contentModel = $rev->getContentModel();
990 $this->contentFormat = $rev->getContentFormat();
991
992 return $content;
993 }
994 }
995
996
997 /**
998 * Use this method before edit() to preload some text into the edit box
999 *
1000 * @param $text string
1001 * @deprecated since 1.21, use setPreloadedContent() instead.
1002 */
1003 public function setPreloadedText( $text ) {
1004 ContentHandler::deprecated( __METHOD__, "1.21" );
1005
1006 $content = $this->toEditContent( $text );
1007
1008 $this->setPreloadedContent( $content );
1009 }
1010
1011 /**
1012 * Use this method before edit() to preload some content into the edit box
1013 *
1014 * @param $content Content
1015 *
1016 * @since 1.21
1017 */
1018 public function setPreloadedContent( Content $content ) {
1019 $this->mPreloadContent = $content;
1020 }
1021
1022 /**
1023 * Get the contents to be preloaded into the box, either set by
1024 * an earlier setPreloadText() or by loading the given page.
1025 *
1026 * @param $preload String: representing the title to preload from.
1027 *
1028 * @return String
1029 *
1030 * @deprecated since 1.21, use getPreloadedContent() instead
1031 */
1032 protected function getPreloadedText( $preload ) {
1033 ContentHandler::deprecated( __METHOD__, "1.21" );
1034
1035 $content = $this->getPreloadedContent( $preload );
1036 $text = $this->toEditText( $content );
1037
1038 return $text;
1039 }
1040
1041 /**
1042 * Get the contents to be preloaded into the box, either set by
1043 * an earlier setPreloadText() or by loading the given page.
1044 *
1045 * @param $preload String: representing the title to preload from.
1046 *
1047 * @return Content
1048 *
1049 * @since 1.21
1050 */
1051 protected function getPreloadedContent( $preload ) {
1052 global $wgUser;
1053
1054 if ( !empty( $this->mPreloadContent ) ) {
1055 return $this->mPreloadContent;
1056 }
1057
1058 $handler = ContentHandler::getForTitle( $this->getTitle() );
1059
1060 if ( $preload === '' ) {
1061 return $handler->makeEmptyContent();
1062 }
1063
1064 $title = Title::newFromText( $preload );
1065 # Check for existence to avoid getting MediaWiki:Noarticletext
1066 if ( $title === null || !$title->exists() || !$title->userCan( 'read', $wgUser ) ) {
1067 //TODO: somehow show a warning to the user!
1068 return $handler->makeEmptyContent();
1069 }
1070
1071 $page = WikiPage::factory( $title );
1072 if ( $page->isRedirect() ) {
1073 $title = $page->getRedirectTarget();
1074 # Same as before
1075 if ( $title === null || !$title->exists() || !$title->userCan( 'read', $wgUser ) ) {
1076 //TODO: somehow show a warning to the user!
1077 return $handler->makeEmptyContent();
1078 }
1079 $page = WikiPage::factory( $title );
1080 }
1081
1082 $parserOptions = ParserOptions::newFromUser( $wgUser );
1083 $content = $page->getContent( Revision::RAW );
1084
1085 if ( !$content ) {
1086 //TODO: somehow show a warning to the user!
1087 return $handler->makeEmptyContent();
1088 }
1089
1090 if ( $content->getModel() !== $handler->getModelID() ) {
1091 $converted = $content->convert( $handler->getModelID() );
1092
1093 if ( !$converted ) {
1094 //TODO: somehow show a warning to the user!
1095 wfDebug( "Attempt to preload incompatible content: "
1096 . "can't convert " . $content->getModel()
1097 . " to " . $handler->getModelID() );
1098
1099 return $handler->makeEmptyContent();
1100 }
1101
1102 $content = $converted;
1103 }
1104
1105 return $content->preloadTransform( $title, $parserOptions );
1106 }
1107
1108 /**
1109 * Make sure the form isn't faking a user's credentials.
1110 *
1111 * @param $request WebRequest
1112 * @return bool
1113 * @private
1114 */
1115 function tokenOk( &$request ) {
1116 global $wgUser;
1117 $token = $request->getVal( 'wpEditToken' );
1118 $this->mTokenOk = $wgUser->matchEditToken( $token );
1119 $this->mTokenOkExceptSuffix = $wgUser->matchEditTokenNoSuffix( $token );
1120 return $this->mTokenOk;
1121 }
1122
1123 /**
1124 * Attempt submission
1125 * @throws UserBlockedError|ReadOnlyError|ThrottledError|PermissionsError
1126 * @return bool false if output is done, true if the rest of the form should be displayed
1127 */
1128 function attemptSave() {
1129 global $wgUser, $wgOut;
1130
1131 $resultDetails = false;
1132 # Allow bots to exempt some edits from bot flagging
1133 $bot = $wgUser->isAllowed( 'bot' ) && $this->bot;
1134 $status = $this->internalAttemptSave( $resultDetails, $bot );
1135 // FIXME: once the interface for internalAttemptSave() is made nicer, this should use the message in $status
1136 if ( $status->value == self::AS_SUCCESS_UPDATE || $status->value == self::AS_SUCCESS_NEW_ARTICLE ) {
1137 $this->didSave = true;
1138 }
1139
1140 switch ( $status->value ) {
1141 case self::AS_HOOK_ERROR_EXPECTED:
1142 case self::AS_CONTENT_TOO_BIG:
1143 case self::AS_ARTICLE_WAS_DELETED:
1144 case self::AS_CONFLICT_DETECTED:
1145 case self::AS_SUMMARY_NEEDED:
1146 case self::AS_TEXTBOX_EMPTY:
1147 case self::AS_MAX_ARTICLE_SIZE_EXCEEDED:
1148 case self::AS_END:
1149 return true;
1150
1151 case self::AS_HOOK_ERROR:
1152 return false;
1153
1154 case self::AS_PARSE_ERROR:
1155 $wgOut->addWikiText( '<div class="error">' . $status->getWikiText() . '</div>');
1156 return true;
1157
1158 case self::AS_SUCCESS_NEW_ARTICLE:
1159 $query = $resultDetails['redirect'] ? 'redirect=no' : '';
1160 $anchor = isset ( $resultDetails['sectionanchor'] ) ? $resultDetails['sectionanchor'] : '';
1161 $wgOut->redirect( $this->mTitle->getFullURL( $query ) . $anchor );
1162 return false;
1163
1164 case self::AS_SUCCESS_UPDATE:
1165 $extraQuery = '';
1166 $sectionanchor = $resultDetails['sectionanchor'];
1167
1168 // Give extensions a chance to modify URL query on update
1169 wfRunHooks( 'ArticleUpdateBeforeRedirect', array( $this->mArticle, &$sectionanchor, &$extraQuery ) );
1170
1171 if ( $resultDetails['redirect'] ) {
1172 if ( $extraQuery == '' ) {
1173 $extraQuery = 'redirect=no';
1174 } else {
1175 $extraQuery = 'redirect=no&' . $extraQuery;
1176 }
1177 }
1178 $wgOut->redirect( $this->mTitle->getFullURL( $extraQuery ) . $sectionanchor );
1179 return false;
1180
1181 case self::AS_BLANK_ARTICLE:
1182 $wgOut->redirect( $this->getContextTitle()->getFullURL() );
1183 return false;
1184
1185 case self::AS_SPAM_ERROR:
1186 $this->spamPageWithContent( $resultDetails['spam'] );
1187 return false;
1188
1189 case self::AS_BLOCKED_PAGE_FOR_USER:
1190 throw new UserBlockedError( $wgUser->getBlock() );
1191
1192 case self::AS_IMAGE_REDIRECT_ANON:
1193 case self::AS_IMAGE_REDIRECT_LOGGED:
1194 throw new PermissionsError( 'upload' );
1195
1196 case self::AS_READ_ONLY_PAGE_ANON:
1197 case self::AS_READ_ONLY_PAGE_LOGGED:
1198 throw new PermissionsError( 'edit' );
1199
1200 case self::AS_READ_ONLY_PAGE:
1201 throw new ReadOnlyError;
1202
1203 case self::AS_RATE_LIMITED:
1204 throw new ThrottledError();
1205
1206 case self::AS_NO_CREATE_PERMISSION:
1207 $permission = $this->mTitle->isTalkPage() ? 'createtalk' : 'createpage';
1208 throw new PermissionsError( $permission );
1209
1210 default:
1211 // We don't recognize $status->value. The only way that can happen
1212 // is if an extension hook aborted from inside ArticleSave.
1213 // Render the status object into $this->hookError
1214 // FIXME this sucks, we should just use the Status object throughout
1215 $this->hookError = '<div class="error">' . $status->getWikitext() .
1216 '</div>';
1217 return true;
1218 }
1219 }
1220
1221 /**
1222 * Attempt submission (no UI)
1223 *
1224 * @param $result
1225 * @param $bot bool
1226 *
1227 * @return Status object, possibly with a message, but always with one of the AS_* constants in $status->value,
1228 *
1229 * FIXME: This interface is TERRIBLE, but hard to get rid of due to various error display idiosyncrasies. There are
1230 * also lots of cases where error metadata is set in the object and retrieved later instead of being returned, e.g.
1231 * AS_CONTENT_TOO_BIG and AS_BLOCKED_PAGE_FOR_USER. All that stuff needs to be cleaned up some time.
1232 */
1233 function internalAttemptSave( &$result, $bot = false ) {
1234 global $wgUser, $wgRequest, $wgParser, $wgMaxArticleSize;
1235
1236 $status = Status::newGood();
1237
1238 wfProfileIn( __METHOD__ );
1239 wfProfileIn( __METHOD__ . '-checks' );
1240
1241 if ( !wfRunHooks( 'EditPage::attemptSave', array( $this ) ) ) {
1242 wfDebug( "Hook 'EditPage::attemptSave' aborted article saving\n" );
1243 $status->fatal( 'hookaborted' );
1244 $status->value = self::AS_HOOK_ERROR;
1245 wfProfileOut( __METHOD__ . '-checks' );
1246 wfProfileOut( __METHOD__ );
1247 return $status;
1248 }
1249
1250 try {
1251 # Construct Content object
1252 $textbox_content = $this->toEditContent( $this->textbox1 );
1253 } catch ( MWContentSerializationException $ex ) {
1254 $status->fatal( 'content-failed-to-parse', $this->contentModel, $this->contentFormat, $ex->getMessage() );
1255 $status->value = self::AS_PARSE_ERROR;
1256 wfProfileOut( __METHOD__ );
1257 return $status;
1258 }
1259
1260 # Check image redirect
1261 if ( $this->mTitle->getNamespace() == NS_FILE &&
1262 $textbox_content->isRedirect() &&
1263 !$wgUser->isAllowed( 'upload' ) ) {
1264 $code = $wgUser->isAnon() ? self::AS_IMAGE_REDIRECT_ANON : self::AS_IMAGE_REDIRECT_LOGGED;
1265 $status->setResult( false, $code );
1266
1267 wfProfileOut( __METHOD__ . '-checks' );
1268 wfProfileOut( __METHOD__ );
1269
1270 return $status;
1271 }
1272
1273 # Check for spam
1274 $match = self::matchSummarySpamRegex( $this->summary );
1275 if ( $match === false ) {
1276 $match = self::matchSpamRegex( $this->textbox1 );
1277 }
1278 if ( $match !== false ) {
1279 $result['spam'] = $match;
1280 $ip = $wgRequest->getIP();
1281 $pdbk = $this->mTitle->getPrefixedDBkey();
1282 $match = str_replace( "\n", '', $match );
1283 wfDebugLog( 'SpamRegex', "$ip spam regex hit [[$pdbk]]: \"$match\"" );
1284 $status->fatal( 'spamprotectionmatch', $match );
1285 $status->value = self::AS_SPAM_ERROR;
1286 wfProfileOut( __METHOD__ . '-checks' );
1287 wfProfileOut( __METHOD__ );
1288 return $status;
1289 }
1290 if ( !wfRunHooks( 'EditFilter', array( $this, $this->textbox1, $this->section, &$this->hookError, $this->summary ) ) ) {
1291 # Error messages etc. could be handled within the hook...
1292 $status->fatal( 'hookaborted' );
1293 $status->value = self::AS_HOOK_ERROR;
1294 wfProfileOut( __METHOD__ . '-checks' );
1295 wfProfileOut( __METHOD__ );
1296 return $status;
1297 } elseif ( $this->hookError != '' ) {
1298 # ...or the hook could be expecting us to produce an error
1299 $status->fatal( 'hookaborted' );
1300 $status->value = self::AS_HOOK_ERROR_EXPECTED;
1301 wfProfileOut( __METHOD__ . '-checks' );
1302 wfProfileOut( __METHOD__ );
1303 return $status;
1304 }
1305
1306 if ( $wgUser->isBlockedFrom( $this->mTitle, false ) ) {
1307 // Auto-block user's IP if the account was "hard" blocked
1308 $wgUser->spreadAnyEditBlock();
1309 # Check block state against master, thus 'false'.
1310 $status->setResult( false, self::AS_BLOCKED_PAGE_FOR_USER );
1311 wfProfileOut( __METHOD__ . '-checks' );
1312 wfProfileOut( __METHOD__ );
1313 return $status;
1314 }
1315
1316 $this->kblength = (int)( strlen( $this->textbox1 ) / 1024 );
1317 if ( $this->kblength > $wgMaxArticleSize ) {
1318 // Error will be displayed by showEditForm()
1319 $this->tooBig = true;
1320 $status->setResult( false, self::AS_CONTENT_TOO_BIG );
1321 wfProfileOut( __METHOD__ . '-checks' );
1322 wfProfileOut( __METHOD__ );
1323 return $status;
1324 }
1325
1326 if ( !$wgUser->isAllowed( 'edit' ) ) {
1327 if ( $wgUser->isAnon() ) {
1328 $status->setResult( false, self::AS_READ_ONLY_PAGE_ANON );
1329 wfProfileOut( __METHOD__ . '-checks' );
1330 wfProfileOut( __METHOD__ );
1331 return $status;
1332 } else {
1333 $status->fatal( 'readonlytext' );
1334 $status->value = self::AS_READ_ONLY_PAGE_LOGGED;
1335 wfProfileOut( __METHOD__ . '-checks' );
1336 wfProfileOut( __METHOD__ );
1337 return $status;
1338 }
1339 }
1340
1341 if ( wfReadOnly() ) {
1342 $status->fatal( 'readonlytext' );
1343 $status->value = self::AS_READ_ONLY_PAGE;
1344 wfProfileOut( __METHOD__ . '-checks' );
1345 wfProfileOut( __METHOD__ );
1346 return $status;
1347 }
1348 if ( $wgUser->pingLimiter() ) {
1349 $status->fatal( 'actionthrottledtext' );
1350 $status->value = self::AS_RATE_LIMITED;
1351 wfProfileOut( __METHOD__ . '-checks' );
1352 wfProfileOut( __METHOD__ );
1353 return $status;
1354 }
1355
1356 # If the article has been deleted while editing, don't save it without
1357 # confirmation
1358 if ( $this->wasDeletedSinceLastEdit() && !$this->recreate ) {
1359 $status->setResult( false, self::AS_ARTICLE_WAS_DELETED );
1360 wfProfileOut( __METHOD__ . '-checks' );
1361 wfProfileOut( __METHOD__ );
1362 return $status;
1363 }
1364
1365 wfProfileOut( __METHOD__ . '-checks' );
1366
1367 # Load the page data from the master. If anything changes in the meantime,
1368 # we detect it by using page_latest like a token in a 1 try compare-and-swap.
1369 $this->mArticle->loadPageData( 'fromdbmaster' );
1370 $new = !$this->mArticle->exists();
1371
1372 if ( $new ) {
1373 // Late check for create permission, just in case *PARANOIA*
1374 if ( !$this->mTitle->userCan( 'create', $wgUser ) ) {
1375 $status->fatal( 'nocreatetext' );
1376 $status->value = self::AS_NO_CREATE_PERMISSION;
1377 wfDebug( __METHOD__ . ": no create permission\n" );
1378 wfProfileOut( __METHOD__ );
1379 return $status;
1380 }
1381
1382 # Don't save a new article if it's blank.
1383 if ( $this->textbox1 == '' ) {
1384 $status->setResult( false, self::AS_BLANK_ARTICLE );
1385 wfProfileOut( __METHOD__ );
1386 return $status;
1387 }
1388
1389 // Run post-section-merge edit filter
1390 if ( !wfRunHooks( 'EditFilterMerged', array( $this, $this->textbox1, &$this->hookError, $this->summary ) ) ) {
1391 # Error messages etc. could be handled within the hook...
1392 $status->fatal( 'hookaborted' );
1393 $status->value = self::AS_HOOK_ERROR;
1394 wfProfileOut( __METHOD__ );
1395 return $status;
1396 } elseif ( $this->hookError != '' ) {
1397 # ...or the hook could be expecting us to produce an error
1398 $status->fatal( 'hookaborted' );
1399 $status->value = self::AS_HOOK_ERROR_EXPECTED;
1400 wfProfileOut( __METHOD__ );
1401 return $status;
1402 }
1403
1404 $content = $textbox_content;
1405
1406 $result['sectionanchor'] = '';
1407 if ( $this->section == 'new' ) {
1408 if ( $this->sectiontitle !== '' ) {
1409 // Insert the section title above the content.
1410 $content = $content->addSectionHeader( $this->sectiontitle );
1411
1412 // Jump to the new section
1413 $result['sectionanchor'] = $wgParser->guessLegacySectionNameFromWikiText( $this->sectiontitle );
1414
1415 // If no edit summary was specified, create one automatically from the section
1416 // title and have it link to the new section. Otherwise, respect the summary as
1417 // passed.
1418 if ( $this->summary === '' ) {
1419 $cleanSectionTitle = $wgParser->stripSectionName( $this->sectiontitle );
1420 $this->summary = wfMessage( 'newsectionsummary' )
1421 ->rawParams( $cleanSectionTitle )->inContentLanguage()->text();
1422 }
1423 } elseif ( $this->summary !== '' ) {
1424 // Insert the section title above the content.
1425 $content = $content->addSectionHeader( $this->summary );
1426
1427 // Jump to the new section
1428 $result['sectionanchor'] = $wgParser->guessLegacySectionNameFromWikiText( $this->summary );
1429
1430 // Create a link to the new section from the edit summary.
1431 $cleanSummary = $wgParser->stripSectionName( $this->summary );
1432 $this->summary = wfMessage( 'newsectionsummary' )
1433 ->rawParams( $cleanSummary )->inContentLanguage()->text();
1434 }
1435 }
1436
1437 $status->value = self::AS_SUCCESS_NEW_ARTICLE;
1438
1439 } else { # not $new
1440
1441 # Article exists. Check for edit conflict.
1442
1443 $this->mArticle->clear(); # Force reload of dates, etc.
1444 $timestamp = $this->mArticle->getTimestamp();
1445
1446 wfDebug( "timestamp: {$timestamp}, edittime: {$this->edittime}\n" );
1447
1448 if ( $timestamp != $this->edittime ) {
1449 $this->isConflict = true;
1450 if ( $this->section == 'new' ) {
1451 if ( $this->mArticle->getUserText() == $wgUser->getName() &&
1452 $this->mArticle->getComment() == $this->summary ) {
1453 // Probably a duplicate submission of a new comment.
1454 // This can happen when squid resends a request after
1455 // a timeout but the first one actually went through.
1456 wfDebug( __METHOD__ . ": duplicate new section submission; trigger edit conflict!\n" );
1457 } else {
1458 // New comment; suppress conflict.
1459 $this->isConflict = false;
1460 wfDebug( __METHOD__ . ": conflict suppressed; new section\n" );
1461 }
1462 } elseif ( $this->section == '' && Revision::userWasLastToEdit( DB_MASTER, $this->mTitle->getArticleID(),
1463 $wgUser->getId(), $this->edittime ) ) {
1464 # Suppress edit conflict with self, except for section edits where merging is required.
1465 wfDebug( __METHOD__ . ": Suppressing edit conflict, same user.\n" );
1466 $this->isConflict = false;
1467 }
1468 }
1469
1470 // If sectiontitle is set, use it, otherwise use the summary as the section title (for
1471 // backwards compatibility with old forms/bots).
1472 if ( $this->sectiontitle !== '' ) {
1473 $sectionTitle = $this->sectiontitle;
1474 } else {
1475 $sectionTitle = $this->summary;
1476 }
1477
1478 $content = null;
1479
1480 if ( $this->isConflict ) {
1481 wfDebug( __METHOD__ . ": conflict! getting section '{$this->section}' for time '{$this->edittime}'"
1482 . " (article time '{$timestamp}')\n" );
1483
1484 $content = $this->mArticle->replaceSectionContent( $this->section, $textbox_content, $sectionTitle, $this->edittime );
1485 } else {
1486 wfDebug( __METHOD__ . ": getting section '{$this->section}'\n" );
1487 $content = $this->mArticle->replaceSectionContent( $this->section, $textbox_content, $sectionTitle );
1488 }
1489
1490 if ( is_null( $content ) ) {
1491 wfDebug( __METHOD__ . ": activating conflict; section replace failed.\n" );
1492 $this->isConflict = true;
1493 $content = $textbox_content; // do not try to merge here!
1494 } elseif ( $this->isConflict ) {
1495 # Attempt merge
1496 if ( $this->mergeChangesIntoContent( $content ) ) {
1497 // Successful merge! Maybe we should tell the user the good news?
1498 $this->isConflict = false;
1499 wfDebug( __METHOD__ . ": Suppressing edit conflict, successful merge.\n" );
1500 } else {
1501 $this->section = '';
1502 $this->textbox1 = ContentHandler::getContentText( $content );
1503 wfDebug( __METHOD__ . ": Keeping edit conflict, failed merge.\n" );
1504 }
1505 }
1506
1507 if ( $this->isConflict ) {
1508 $status->setResult( false, self::AS_CONFLICT_DETECTED );
1509 wfProfileOut( __METHOD__ );
1510 return $status;
1511 }
1512
1513 // Run post-section-merge edit filter
1514 $hook_args = array( $this, $content, &$this->hookError, $this->summary );
1515
1516 if ( !ContentHandler::runLegacyHooks( 'EditFilterMerged', $hook_args )
1517 || !wfRunHooks( 'EditFilterMergedContent', $hook_args ) ) {
1518 # Error messages etc. could be handled within the hook...
1519 $status->fatal( 'hookaborted' );
1520 $status->value = self::AS_HOOK_ERROR;
1521 wfProfileOut( __METHOD__ );
1522 return $status;
1523 } elseif ( $this->hookError != '' ) {
1524 # ...or the hook could be expecting us to produce an error
1525 $status->fatal( 'hookaborted' );
1526 $status->value = self::AS_HOOK_ERROR_EXPECTED;
1527 wfProfileOut( __METHOD__ );
1528 return $status;
1529 }
1530
1531 # Handle the user preference to force summaries here, but not for null edits
1532 if ( $this->section != 'new' && !$this->allowBlankSummary
1533 && !$content->equals( $this->getOriginalContent() )
1534 && !$content->isRedirect() ) # check if it's not a redirect
1535 {
1536 if ( md5( $this->summary ) == $this->autoSumm ) {
1537 $this->missingSummary = true;
1538 $status->fatal( 'missingsummary' );
1539 $status->value = self::AS_SUMMARY_NEEDED;
1540 wfProfileOut( __METHOD__ );
1541 return $status;
1542 }
1543 }
1544
1545 # And a similar thing for new sections
1546 if ( $this->section == 'new' && !$this->allowBlankSummary ) {
1547 if ( trim( $this->summary ) == '' ) {
1548 $this->missingSummary = true;
1549 $status->fatal( 'missingsummary' ); // or 'missingcommentheader' if $section == 'new'. Blegh
1550 $status->value = self::AS_SUMMARY_NEEDED;
1551 wfProfileOut( __METHOD__ );
1552 return $status;
1553 }
1554 }
1555
1556 # All's well
1557 wfProfileIn( __METHOD__ . '-sectionanchor' );
1558 $sectionanchor = '';
1559 if ( $this->section == 'new' ) {
1560 if ( $this->textbox1 == '' ) {
1561 $this->missingComment = true;
1562 $status->fatal( 'missingcommenttext' );
1563 $status->value = self::AS_TEXTBOX_EMPTY;
1564 wfProfileOut( __METHOD__ . '-sectionanchor' );
1565 wfProfileOut( __METHOD__ );
1566 return $status;
1567 }
1568 if ( $this->sectiontitle !== '' ) {
1569 $sectionanchor = $wgParser->guessLegacySectionNameFromWikiText( $this->sectiontitle );
1570 // If no edit summary was specified, create one automatically from the section
1571 // title and have it link to the new section. Otherwise, respect the summary as
1572 // passed.
1573 if ( $this->summary === '' ) {
1574 $cleanSectionTitle = $wgParser->stripSectionName( $this->sectiontitle );
1575 $this->summary = wfMessage( 'newsectionsummary' )
1576 ->rawParams( $cleanSectionTitle )->inContentLanguage()->text();
1577 }
1578 } elseif ( $this->summary !== '' ) {
1579 $sectionanchor = $wgParser->guessLegacySectionNameFromWikiText( $this->summary );
1580 # This is a new section, so create a link to the new section
1581 # in the revision summary.
1582 $cleanSummary = $wgParser->stripSectionName( $this->summary );
1583 $this->summary = wfMessage( 'newsectionsummary' )
1584 ->rawParams( $cleanSummary )->inContentLanguage()->text();
1585 }
1586 } elseif ( $this->section != '' ) {
1587 # Try to get a section anchor from the section source, redirect to edited section if header found
1588 # XXX: might be better to integrate this into Article::replaceSection
1589 # for duplicate heading checking and maybe parsing
1590 $hasmatch = preg_match( "/^ *([=]{1,6})(.*?)(\\1) *\\n/i", $this->textbox1, $matches );
1591 # we can't deal with anchors, includes, html etc in the header for now,
1592 # headline would need to be parsed to improve this
1593 if ( $hasmatch && strlen( $matches[2] ) > 0 ) {
1594 $sectionanchor = $wgParser->guessLegacySectionNameFromWikiText( $matches[2] );
1595 }
1596 }
1597 $result['sectionanchor'] = $sectionanchor;
1598 wfProfileOut( __METHOD__ . '-sectionanchor' );
1599
1600 // Save errors may fall down to the edit form, but we've now
1601 // merged the section into full text. Clear the section field
1602 // so that later submission of conflict forms won't try to
1603 // replace that into a duplicated mess.
1604 $this->textbox1 = $this->toEditText( $content );
1605 $this->section = '';
1606
1607 $status->value = self::AS_SUCCESS_UPDATE;
1608 }
1609
1610 // Check for length errors again now that the section is merged in
1611 $this->kblength = (int)( strlen( $this->toEditText( $content ) ) / 1024 );
1612 if ( $this->kblength > $wgMaxArticleSize ) {
1613 $this->tooBig = true;
1614 $status->setResult( false, self::AS_MAX_ARTICLE_SIZE_EXCEEDED );
1615 wfProfileOut( __METHOD__ );
1616 return $status;
1617 }
1618
1619 $flags = EDIT_DEFER_UPDATES | EDIT_AUTOSUMMARY |
1620 ( $new ? EDIT_NEW : EDIT_UPDATE ) |
1621 ( ( $this->minoredit && !$this->isNew ) ? EDIT_MINOR : 0 ) |
1622 ( $bot ? EDIT_FORCE_BOT : 0 );
1623
1624 $doEditStatus = $this->mArticle->doEditContent( $content, $this->summary, $flags,
1625 false, null, $this->contentFormat );
1626
1627 if ( $doEditStatus->isOK() ) {
1628 $result['redirect'] = $content->isRedirect();
1629 $this->updateWatchlist();
1630 wfProfileOut( __METHOD__ );
1631 return $status;
1632 } else {
1633 // Failure from doEdit()
1634 // Show the edit conflict page for certain recognized errors from doEdit(),
1635 // but don't show it for errors from extension hooks
1636 $errors = $doEditStatus->getErrorsArray();
1637 if ( in_array( $errors[0][0], array( 'edit-gone-missing', 'edit-conflict',
1638 'edit-already-exists' ) ) )
1639 {
1640 $this->isConflict = true;
1641 // Destroys data doEdit() put in $status->value but who cares
1642 $doEditStatus->value = self::AS_END;
1643 }
1644 wfProfileOut( __METHOD__ );
1645 return $doEditStatus;
1646 }
1647 }
1648
1649 /**
1650 * Register the change of watch status
1651 */
1652 protected function updateWatchlist() {
1653 global $wgUser;
1654
1655 if ( $wgUser->isLoggedIn() && $this->watchthis != $wgUser->isWatched( $this->mTitle ) ) {
1656 $fname = __METHOD__;
1657 $title = $this->mTitle;
1658 $watch = $this->watchthis;
1659
1660 // Do this in its own transaction to reduce contention...
1661 $dbw = wfGetDB( DB_MASTER );
1662 $dbw->onTransactionIdle( function() use ( $dbw, $title, $watch, $wgUser, $fname ) {
1663 $dbw->begin( $fname );
1664 if ( $watch ) {
1665 WatchAction::doWatch( $title, $wgUser );
1666 } else {
1667 WatchAction::doUnwatch( $title, $wgUser );
1668 }
1669 $dbw->commit( $fname );
1670 } );
1671 }
1672 }
1673
1674 /**
1675 * Attempts to merge text content with base and current revisions
1676 *
1677 * @param $editText string
1678 *
1679 * @return bool
1680 * @deprecated since 1.21, use mergeChangesIntoContent() instead
1681 */
1682 function mergeChangesInto( &$editText ){
1683 ContentHandler::deprecated( __METHOD__, "1.21" );
1684
1685 $editContent = $this->toEditContent( $editText );
1686
1687 $ok = $this->mergeChangesIntoContent( $editContent );
1688
1689 if ( $ok ) {
1690 $editText = $this->toEditText( $editContent );
1691 return true;
1692 }
1693 return false;
1694 }
1695
1696 /**
1697 * Attempts to do 3-way merge of edit content with a base revision
1698 * and current content, in case of edit conflict, in whichever way appropriate
1699 * for the content type.
1700 *
1701 * @since 1.21
1702 *
1703 * @param $editContent
1704 *
1705 * @return bool
1706 */
1707 private function mergeChangesIntoContent( &$editContent ){
1708 wfProfileIn( __METHOD__ );
1709
1710 $db = wfGetDB( DB_MASTER );
1711
1712 // This is the revision the editor started from
1713 $baseRevision = $this->getBaseRevision();
1714 $baseContent = $baseRevision ? $baseRevision->getContent() : null;
1715
1716 if ( is_null( $baseContent ) ) {
1717 wfProfileOut( __METHOD__ );
1718 return false;
1719 }
1720
1721 // The current state, we want to merge updates into it
1722 $currentRevision = Revision::loadFromTitle( $db, $this->mTitle );
1723 $currentContent = $currentRevision ? $currentRevision->getContent() : null;
1724
1725 if ( is_null( $currentContent ) ) {
1726 wfProfileOut( __METHOD__ );
1727 return false;
1728 }
1729
1730 $handler = ContentHandler::getForModelID( $baseContent->getModel() );
1731
1732 $result = $handler->merge3( $baseContent, $editContent, $currentContent );
1733
1734 if ( $result ) {
1735 $editContent = $result;
1736 wfProfileOut( __METHOD__ );
1737 return true;
1738 } else {
1739 wfProfileOut( __METHOD__ );
1740 return false;
1741 }
1742 }
1743
1744 /**
1745 * @return Revision
1746 */
1747 function getBaseRevision() {
1748 if ( !$this->mBaseRevision ) {
1749 $db = wfGetDB( DB_MASTER );
1750 $baseRevision = Revision::loadFromTimestamp(
1751 $db, $this->mTitle, $this->edittime );
1752 return $this->mBaseRevision = $baseRevision;
1753 } else {
1754 return $this->mBaseRevision;
1755 }
1756 }
1757
1758 /**
1759 * Check given input text against $wgSpamRegex, and return the text of the first match.
1760 *
1761 * @param $text string
1762 *
1763 * @return string|bool matching string or false
1764 */
1765 public static function matchSpamRegex( $text ) {
1766 global $wgSpamRegex;
1767 // For back compatibility, $wgSpamRegex may be a single string or an array of regexes.
1768 $regexes = (array)$wgSpamRegex;
1769 return self::matchSpamRegexInternal( $text, $regexes );
1770 }
1771
1772 /**
1773 * Check given input text against $wgSpamRegex, and return the text of the first match.
1774 *
1775 * @param $text string
1776 *
1777 * @return string|bool matching string or false
1778 */
1779 public static function matchSummarySpamRegex( $text ) {
1780 global $wgSummarySpamRegex;
1781 $regexes = (array)$wgSummarySpamRegex;
1782 return self::matchSpamRegexInternal( $text, $regexes );
1783 }
1784
1785 /**
1786 * @param $text string
1787 * @param $regexes array
1788 * @return bool|string
1789 */
1790 protected static function matchSpamRegexInternal( $text, $regexes ) {
1791 foreach ( $regexes as $regex ) {
1792 $matches = array();
1793 if ( preg_match( $regex, $text, $matches ) ) {
1794 return $matches[0];
1795 }
1796 }
1797 return false;
1798 }
1799
1800 function setHeaders() {
1801 global $wgOut, $wgUser;
1802
1803 $wgOut->addModules( 'mediawiki.action.edit' );
1804
1805 if ( $wgUser->getOption( 'uselivepreview', false ) ) {
1806 $wgOut->addModules( 'mediawiki.action.edit.preview' );
1807 }
1808 // Bug #19334: textarea jumps when editing articles in IE8
1809 $wgOut->addStyle( 'common/IE80Fixes.css', 'screen', 'IE 8' );
1810
1811 $wgOut->setRobotPolicy( 'noindex,nofollow' );
1812
1813 # Enabled article-related sidebar, toplinks, etc.
1814 $wgOut->setArticleRelated( true );
1815
1816 $contextTitle = $this->getContextTitle();
1817 if ( $this->isConflict ) {
1818 $msg = 'editconflict';
1819 } elseif ( $contextTitle->exists() && $this->section != '' ) {
1820 $msg = $this->section == 'new' ? 'editingcomment' : 'editingsection';
1821 } else {
1822 $msg = $contextTitle->exists() || ( $contextTitle->getNamespace() == NS_MEDIAWIKI && $contextTitle->getDefaultMessageText() !== false ) ?
1823 'editing' : 'creating';
1824 }
1825 # Use the title defined by DISPLAYTITLE magic word when present
1826 $displayTitle = isset( $this->mParserOutput ) ? $this->mParserOutput->getDisplayTitle() : false;
1827 if ( $displayTitle === false ) {
1828 $displayTitle = $contextTitle->getPrefixedText();
1829 }
1830 $wgOut->setPageTitle( wfMessage( $msg, $displayTitle ) );
1831 }
1832
1833 /**
1834 * Show all applicable editing introductions
1835 */
1836 protected function showIntro() {
1837 global $wgOut, $wgUser;
1838 if ( $this->suppressIntro ) {
1839 return;
1840 }
1841
1842 $namespace = $this->mTitle->getNamespace();
1843
1844 if ( $namespace == NS_MEDIAWIKI ) {
1845 # Show a warning if editing an interface message
1846 $wgOut->wrapWikiMsg( "<div class='mw-editinginterface'>\n$1\n</div>", 'editinginterface' );
1847 } else if( $namespace == NS_FILE ) {
1848 # Show a hint to shared repo
1849 $file = wfFindFile( $this->mTitle );
1850 if( $file && !$file->isLocal() ) {
1851 $descUrl = $file->getDescriptionUrl();
1852 # there must be a description url to show a hint to shared repo
1853 if( $descUrl ) {
1854 if( !$this->mTitle->exists() ) {
1855 $wgOut->wrapWikiMsg( "<div class=\"mw-sharedupload-desc-create\">\n$1\n</div>", array (
1856 'sharedupload-desc-create', $file->getRepo()->getDisplayName(), $descUrl
1857 ) );
1858 } else {
1859 $wgOut->wrapWikiMsg( "<div class=\"mw-sharedupload-desc-edit\">\n$1\n</div>", array(
1860 'sharedupload-desc-edit', $file->getRepo()->getDisplayName(), $descUrl
1861 ) );
1862 }
1863 }
1864 }
1865 }
1866
1867 # Show a warning message when someone creates/edits a user (talk) page but the user does not exist
1868 # Show log extract when the user is currently blocked
1869 if ( $namespace == NS_USER || $namespace == NS_USER_TALK ) {
1870 $parts = explode( '/', $this->mTitle->getText(), 2 );
1871 $username = $parts[0];
1872 $user = User::newFromName( $username, false /* allow IP users*/ );
1873 $ip = User::isIP( $username );
1874 if ( !( $user && $user->isLoggedIn() ) && !$ip ) { # User does not exist
1875 $wgOut->wrapWikiMsg( "<div class=\"mw-userpage-userdoesnotexist error\">\n$1\n</div>",
1876 array( 'userpage-userdoesnotexist', wfEscapeWikiText( $username ) ) );
1877 } elseif ( $user->isBlocked() ) { # Show log extract if the user is currently blocked
1878 LogEventsList::showLogExtract(
1879 $wgOut,
1880 'block',
1881 $user->getUserPage(),
1882 '',
1883 array(
1884 'lim' => 1,
1885 'showIfEmpty' => false,
1886 'msgKey' => array(
1887 'blocked-notice-logextract',
1888 $user->getName() # Support GENDER in notice
1889 )
1890 )
1891 );
1892 }
1893 }
1894 # Try to add a custom edit intro, or use the standard one if this is not possible.
1895 if ( !$this->showCustomIntro() && !$this->mTitle->exists() ) {
1896 if ( $wgUser->isLoggedIn() ) {
1897 $wgOut->wrapWikiMsg( "<div class=\"mw-newarticletext\">\n$1\n</div>", 'newarticletext' );
1898 } else {
1899 $wgOut->wrapWikiMsg( "<div class=\"mw-newarticletextanon\">\n$1\n</div>", 'newarticletextanon' );
1900 }
1901 }
1902 # Give a notice if the user is editing a deleted/moved page...
1903 if ( !$this->mTitle->exists() ) {
1904 LogEventsList::showLogExtract( $wgOut, array( 'delete', 'move' ), $this->mTitle,
1905 '',
1906 array(
1907 'lim' => 10,
1908 'conds' => array( "log_action != 'revision'" ),
1909 'showIfEmpty' => false,
1910 'msgKey' => array( 'recreate-moveddeleted-warn' )
1911 )
1912 );
1913 }
1914 }
1915
1916 /**
1917 * Attempt to show a custom editing introduction, if supplied
1918 *
1919 * @return bool
1920 */
1921 protected function showCustomIntro() {
1922 if ( $this->editintro ) {
1923 $title = Title::newFromText( $this->editintro );
1924 if ( $title instanceof Title && $title->exists() && $title->userCan( 'read' ) ) {
1925 global $wgOut;
1926 // Added using template syntax, to take <noinclude>'s into account.
1927 $wgOut->addWikiTextTitleTidy( '{{:' . $title->getFullText() . '}}', $this->mTitle );
1928 return true;
1929 }
1930 }
1931 return false;
1932 }
1933
1934 /**
1935 * Gets an editable textual representation of $content.
1936 * The textual representation can be turned by into a Content object by the
1937 * toEditContent() method.
1938 *
1939 * If $content is null or false or a string, $content is returned unchanged.
1940 *
1941 * If the given Content object is not of a type that can be edited using the text base EditPage,
1942 * an exception will be raised. Set $this->allowNonTextContent to true to allow editing of non-textual
1943 * content.
1944 *
1945 * @param Content|null|bool|string $content
1946 * @return String the editable text form of the content.
1947 *
1948 * @throws MWException if $content is not an instance of TextContent and $this->allowNonTextContent is not true.
1949 */
1950 protected function toEditText( $content ) {
1951 if ( $content === null || $content === false ) {
1952 return $content;
1953 }
1954
1955 if ( is_string( $content ) ) {
1956 return $content;
1957 }
1958
1959 if ( !$this->allowNonTextContent && !( $content instanceof TextContent ) ) {
1960 throw new MWException( "This content model can not be edited as text: "
1961 . ContentHandler::getLocalizedName( $content->getModel() ) );
1962 }
1963
1964 return $content->serialize( $this->contentFormat );
1965 }
1966
1967 /**
1968 * Turns the given text into a Content object by unserializing it.
1969 *
1970 * If the resulting Content object is not of a type that can be edited using the text base EditPage,
1971 * an exception will be raised. Set $this->allowNonTextContent to true to allow editing of non-textual
1972 * content.
1973 *
1974 * @param String|null|bool $text Text to unserialize
1975 * @return Content The content object created from $text. If $text was false or null, false resp. null will be
1976 * returned instead.
1977 *
1978 * @throws MWException if unserializing the text results in a Content object that is not an instance of TextContent
1979 * and $this->allowNonTextContent is not true.
1980 */
1981 protected function toEditContent( $text ) {
1982 if ( $text === false || $text === null ) {
1983 return $text;
1984 }
1985
1986 $content = ContentHandler::makeContent( $text, $this->getTitle(),
1987 $this->contentModel, $this->contentFormat );
1988
1989 if ( !$this->allowNonTextContent && !( $content instanceof TextContent ) ) {
1990 throw new MWException( "This content model can not be edited as text: "
1991 . ContentHandler::getLocalizedName( $content->getModel() ) );
1992 }
1993
1994 return $content;
1995 }
1996
1997 /**
1998 * Send the edit form and related headers to $wgOut
1999 * @param $formCallback Callback|null that takes an OutputPage parameter; will be called
2000 * during form output near the top, for captchas and the like.
2001 */
2002 function showEditForm( $formCallback = null ) {
2003 global $wgOut, $wgUser;
2004
2005 wfProfileIn( __METHOD__ );
2006
2007 # need to parse the preview early so that we know which templates are used,
2008 # otherwise users with "show preview after edit box" will get a blank list
2009 # we parse this near the beginning so that setHeaders can do the title
2010 # setting work instead of leaving it in getPreviewText
2011 $previewOutput = '';
2012 if ( $this->formtype == 'preview' ) {
2013 $previewOutput = $this->getPreviewText();
2014 }
2015
2016 wfRunHooks( 'EditPage::showEditForm:initial', array( &$this, &$wgOut ) );
2017
2018 $this->setHeaders();
2019
2020 if ( $this->showHeader() === false ) {
2021 wfProfileOut( __METHOD__ );
2022 return;
2023 }
2024
2025 $wgOut->addHTML( $this->editFormPageTop );
2026
2027 if ( $wgUser->getOption( 'previewontop' ) ) {
2028 $this->displayPreviewArea( $previewOutput, true );
2029 }
2030
2031 $wgOut->addHTML( $this->editFormTextTop );
2032
2033 $showToolbar = true;
2034 if ( $this->wasDeletedSinceLastEdit() ) {
2035 if ( $this->formtype == 'save' ) {
2036 // Hide the toolbar and edit area, user can click preview to get it back
2037 // Add an confirmation checkbox and explanation.
2038 $showToolbar = false;
2039 } else {
2040 $wgOut->wrapWikiMsg( "<div class='error mw-deleted-while-editing'>\n$1\n</div>",
2041 'deletedwhileediting' );
2042 }
2043 }
2044
2045 //@todo: add EditForm plugin interface and use it here!
2046 // search for textarea1 and textares2, and allow EditForm to override all uses.
2047 $wgOut->addHTML( Html::openElement( 'form', array( 'id' => self::EDITFORM_ID, 'name' => self::EDITFORM_ID,
2048 'method' => 'post', 'action' => $this->getActionURL( $this->getContextTitle() ),
2049 'enctype' => 'multipart/form-data' ) ) );
2050
2051 if ( is_callable( $formCallback ) ) {
2052 call_user_func_array( $formCallback, array( &$wgOut ) );
2053 }
2054
2055 wfRunHooks( 'EditPage::showEditForm:fields', array( &$this, &$wgOut ) );
2056
2057 // Put these up at the top to ensure they aren't lost on early form submission
2058 $this->showFormBeforeText();
2059
2060 if ( $this->wasDeletedSinceLastEdit() && 'save' == $this->formtype ) {
2061 $username = $this->lastDelete->user_name;
2062 $comment = $this->lastDelete->log_comment;
2063
2064 // It is better to not parse the comment at all than to have templates expanded in the middle
2065 // TODO: can the checkLabel be moved outside of the div so that wrapWikiMsg could be used?
2066 $key = $comment === ''
2067 ? 'confirmrecreate-noreason'
2068 : 'confirmrecreate';
2069 $wgOut->addHTML(
2070 '<div class="mw-confirm-recreate">' .
2071 wfMessage( $key, $username, "<nowiki>$comment</nowiki>" )->parse() .
2072 Xml::checkLabel( wfMessage( 'recreate' )->text(), 'wpRecreate', 'wpRecreate', false,
2073 array( 'title' => Linker::titleAttrib( 'recreate' ), 'tabindex' => 1, 'id' => 'wpRecreate' )
2074 ) .
2075 '</div>'
2076 );
2077 }
2078
2079 # When the summary is hidden, also hide them on preview/show changes
2080 if( $this->nosummary ) {
2081 $wgOut->addHTML( Html::hidden( 'nosummary', true ) );
2082 }
2083
2084 # If a blank edit summary was previously provided, and the appropriate
2085 # user preference is active, pass a hidden tag as wpIgnoreBlankSummary. This will stop the
2086 # user being bounced back more than once in the event that a summary
2087 # is not required.
2088 #####
2089 # For a bit more sophisticated detection of blank summaries, hash the
2090 # automatic one and pass that in the hidden field wpAutoSummary.
2091 if ( $this->missingSummary || ( $this->section == 'new' && $this->nosummary ) ) {
2092 $wgOut->addHTML( Html::hidden( 'wpIgnoreBlankSummary', true ) );
2093 }
2094
2095 if ( $this->undidRev ) {
2096 $wgOut->addHTML( Html::hidden( 'wpUndidRevision', $this->undidRev ) );
2097 }
2098
2099 if ( $this->hasPresetSummary ) {
2100 // If a summary has been preset using &summary= we dont want to prompt for
2101 // a different summary. Only prompt for a summary if the summary is blanked.
2102 // (Bug 17416)
2103 $this->autoSumm = md5( '' );
2104 }
2105
2106 $autosumm = $this->autoSumm ? $this->autoSumm : md5( $this->summary );
2107 $wgOut->addHTML( Html::hidden( 'wpAutoSummary', $autosumm ) );
2108
2109 $wgOut->addHTML( Html::hidden( 'oldid', $this->oldid ) );
2110
2111 $wgOut->addHTML( Html::hidden( 'format', $this->contentFormat ) );
2112 $wgOut->addHTML( Html::hidden( 'model', $this->contentModel ) );
2113
2114 if ( $this->section == 'new' ) {
2115 $this->showSummaryInput( true, $this->summary );
2116 $wgOut->addHTML( $this->getSummaryPreview( true, $this->summary ) );
2117 }
2118
2119 $wgOut->addHTML( $this->editFormTextBeforeContent );
2120
2121 if ( !$this->isCssJsSubpage && $showToolbar && $wgUser->getOption( 'showtoolbar' ) ) {
2122 $wgOut->addHTML( EditPage::getEditToolbar() );
2123 }
2124
2125 if ( $this->isConflict ) {
2126 // In an edit conflict bypass the overrideable content form method
2127 // and fallback to the raw wpTextbox1 since editconflicts can't be
2128 // resolved between page source edits and custom ui edits using the
2129 // custom edit ui.
2130 $this->textbox2 = $this->textbox1;
2131
2132 $content = $this->getCurrentContent();
2133 $this->textbox1 = $this->toEditText( $content );
2134
2135 $this->showTextbox1();
2136 } else {
2137 $this->showContentForm();
2138 }
2139
2140 $wgOut->addHTML( $this->editFormTextAfterContent );
2141
2142 $this->showStandardInputs();
2143
2144 $this->showFormAfterText();
2145
2146 $this->showTosSummary();
2147
2148 $this->showEditTools();
2149
2150 $wgOut->addHTML( $this->editFormTextAfterTools . "\n" );
2151
2152 $wgOut->addHTML( Html::rawElement( 'div', array( 'class' => 'templatesUsed' ),
2153 Linker::formatTemplates( $this->getTemplates(), $this->preview, $this->section != '' ) ) );
2154
2155 $wgOut->addHTML( Html::rawElement( 'div', array( 'class' => 'hiddencats' ),
2156 Linker::formatHiddenCategories( $this->mArticle->getHiddenCategories() ) ) );
2157
2158 if ( $this->isConflict ) {
2159 try {
2160 $this->showConflict();
2161 } catch ( MWContentSerializationException $ex ) {
2162 // this can't really happen, but be nice if it does.
2163 $msg = wfMessage( 'content-failed-to-parse', $this->contentModel, $this->contentFormat, $ex->getMessage() );
2164 $wgOut->addWikiText( '<div class="error">' . $msg->text() . '</div>');
2165 }
2166 }
2167
2168 $wgOut->addHTML( $this->editFormTextBottom . "\n</form>\n" );
2169
2170 if ( !$wgUser->getOption( 'previewontop' ) ) {
2171 $this->displayPreviewArea( $previewOutput, false );
2172 }
2173
2174 wfProfileOut( __METHOD__ );
2175 }
2176
2177 /**
2178 * Extract the section title from current section text, if any.
2179 *
2180 * @param string $text
2181 * @return Mixed|string or false
2182 */
2183 public static function extractSectionTitle( $text ) {
2184 preg_match( "/^(=+)(.+)\\1\\s*(\n|$)/i", $text, $matches );
2185 if ( !empty( $matches[2] ) ) {
2186 global $wgParser;
2187 return $wgParser->stripSectionName( trim( $matches[2] ) );
2188 } else {
2189 return false;
2190 }
2191 }
2192
2193 protected function showHeader() {
2194 global $wgOut, $wgUser, $wgMaxArticleSize, $wgLang;
2195
2196 if ( $this->mTitle->isTalkPage() ) {
2197 $wgOut->addWikiMsg( 'talkpagetext' );
2198 }
2199
2200 // Add edit notices
2201 $wgOut->addHTML( implode( "\n", $this->mTitle->getEditNotices() ) );
2202
2203 if ( $this->isConflict ) {
2204 $wgOut->wrapWikiMsg( "<div class='mw-explainconflict'>\n$1\n</div>", 'explainconflict' );
2205 $this->edittime = $this->mArticle->getTimestamp();
2206 } else {
2207 if ( $this->section != '' && !$this->isSectionEditSupported() ) {
2208 // We use $this->section to much before this and getVal('wgSection') directly in other places
2209 // at this point we can't reset $this->section to '' to fallback to non-section editing.
2210 // Someone is welcome to try refactoring though
2211 $wgOut->showErrorPage( 'sectioneditnotsupported-title', 'sectioneditnotsupported-text' );
2212 return false;
2213 }
2214
2215 if ( $this->section != '' && $this->section != 'new' ) {
2216 if ( !$this->summary && !$this->preview && !$this->diff ) {
2217 $sectionTitle = self::extractSectionTitle( $this->textbox1 ); //FIXME: use Content object
2218 if ( $sectionTitle !== false ) {
2219 $this->summary = "/* $sectionTitle */ ";
2220 }
2221 }
2222 }
2223
2224 if ( $this->missingComment ) {
2225 $wgOut->wrapWikiMsg( "<div id='mw-missingcommenttext'>\n$1\n</div>", 'missingcommenttext' );
2226 }
2227
2228 if ( $this->missingSummary && $this->section != 'new' ) {
2229 $wgOut->wrapWikiMsg( "<div id='mw-missingsummary'>\n$1\n</div>", 'missingsummary' );
2230 }
2231
2232 if ( $this->missingSummary && $this->section == 'new' ) {
2233 $wgOut->wrapWikiMsg( "<div id='mw-missingcommentheader'>\n$1\n</div>", 'missingcommentheader' );
2234 }
2235
2236 if ( $this->hookError !== '' ) {
2237 $wgOut->addWikiText( $this->hookError );
2238 }
2239
2240 if ( !$this->checkUnicodeCompliantBrowser() ) {
2241 $wgOut->addWikiMsg( 'nonunicodebrowser' );
2242 }
2243
2244 if ( $this->section != 'new' ) {
2245 $revision = $this->mArticle->getRevisionFetched();
2246 if ( $revision ) {
2247 // Let sysop know that this will make private content public if saved
2248
2249 if ( !$revision->userCan( Revision::DELETED_TEXT, $wgUser ) ) {
2250 $wgOut->wrapWikiMsg( "<div class='mw-warning plainlinks'>\n$1\n</div>\n", 'rev-deleted-text-permission' );
2251 } elseif ( $revision->isDeleted( Revision::DELETED_TEXT ) ) {
2252 $wgOut->wrapWikiMsg( "<div class='mw-warning plainlinks'>\n$1\n</div>\n", 'rev-deleted-text-view' );
2253 }
2254
2255 if ( !$revision->isCurrent() ) {
2256 $this->mArticle->setOldSubtitle( $revision->getId() );
2257 $wgOut->addWikiMsg( 'editingold' );
2258 }
2259 } elseif ( $this->mTitle->exists() ) {
2260 // Something went wrong
2261
2262 $wgOut->wrapWikiMsg( "<div class='errorbox'>\n$1\n</div>\n",
2263 array( 'missing-revision', $this->oldid ) );
2264 }
2265 }
2266 }
2267
2268 if ( wfReadOnly() ) {
2269 $wgOut->wrapWikiMsg( "<div id=\"mw-read-only-warning\">\n$1\n</div>", array( 'readonlywarning', wfReadOnlyReason() ) );
2270 } elseif ( $wgUser->isAnon() ) {
2271 if ( $this->formtype != 'preview' ) {
2272 $wgOut->wrapWikiMsg( "<div id=\"mw-anon-edit-warning\">\n$1</div>", 'anoneditwarning' );
2273 } else {
2274 $wgOut->wrapWikiMsg( "<div id=\"mw-anon-preview-warning\">\n$1</div>", 'anonpreviewwarning' );
2275 }
2276 } else {
2277 if ( $this->isCssJsSubpage ) {
2278 # Check the skin exists
2279 if ( $this->isWrongCaseCssJsPage ) {
2280 $wgOut->wrapWikiMsg( "<div class='error' id='mw-userinvalidcssjstitle'>\n$1\n</div>", array( 'userinvalidcssjstitle', $this->mTitle->getSkinFromCssJsSubpage() ) );
2281 }
2282 if ( $this->formtype !== 'preview' ) {
2283 if ( $this->isCssSubpage ) {
2284 $wgOut->wrapWikiMsg( "<div id='mw-usercssyoucanpreview'>\n$1\n</div>", array( 'usercssyoucanpreview' ) );
2285 }
2286
2287 if ( $this->isJsSubpage ) {
2288 $wgOut->wrapWikiMsg( "<div id='mw-userjsyoucanpreview'>\n$1\n</div>", array( 'userjsyoucanpreview' ) );
2289 }
2290 }
2291 }
2292 }
2293
2294 if ( $this->mTitle->getNamespace() != NS_MEDIAWIKI && $this->mTitle->isProtected( 'edit' ) ) {
2295 # Is the title semi-protected?
2296 if ( $this->mTitle->isSemiProtected() ) {
2297 $noticeMsg = 'semiprotectedpagewarning';
2298 } else {
2299 # Then it must be protected based on static groups (regular)
2300 $noticeMsg = 'protectedpagewarning';
2301 }
2302 LogEventsList::showLogExtract( $wgOut, 'protect', $this->mTitle, '',
2303 array( 'lim' => 1, 'msgKey' => array( $noticeMsg ) ) );
2304 }
2305 if ( $this->mTitle->isCascadeProtected() ) {
2306 # Is this page under cascading protection from some source pages?
2307 list( $cascadeSources, /* $restrictions */ ) = $this->mTitle->getCascadeProtectionSources();
2308 $notice = "<div class='mw-cascadeprotectedwarning'>\n$1\n";
2309 $cascadeSourcesCount = count( $cascadeSources );
2310 if ( $cascadeSourcesCount > 0 ) {
2311 # Explain, and list the titles responsible
2312 foreach ( $cascadeSources as $page ) {
2313 $notice .= '* [[:' . $page->getPrefixedText() . "]]\n";
2314 }
2315 }
2316 $notice .= '</div>';
2317 $wgOut->wrapWikiMsg( $notice, array( 'cascadeprotectedwarning', $cascadeSourcesCount ) );
2318 }
2319 if ( !$this->mTitle->exists() && $this->mTitle->getRestrictions( 'create' ) ) {
2320 LogEventsList::showLogExtract( $wgOut, 'protect', $this->mTitle, '',
2321 array( 'lim' => 1,
2322 'showIfEmpty' => false,
2323 'msgKey' => array( 'titleprotectedwarning' ),
2324 'wrap' => "<div class=\"mw-titleprotectedwarning\">\n$1</div>" ) );
2325 }
2326
2327 if ( $this->kblength === false ) {
2328 $this->kblength = (int)( strlen( $this->textbox1 ) / 1024 );
2329 }
2330
2331 if ( $this->tooBig || $this->kblength > $wgMaxArticleSize ) {
2332 $wgOut->wrapWikiMsg( "<div class='error' id='mw-edit-longpageerror'>\n$1\n</div>",
2333 array( 'longpageerror', $wgLang->formatNum( $this->kblength ), $wgLang->formatNum( $wgMaxArticleSize ) ) );
2334 } else {
2335 if ( !wfMessage( 'longpage-hint' )->isDisabled() ) {
2336 $wgOut->wrapWikiMsg( "<div id='mw-edit-longpage-hint'>\n$1\n</div>",
2337 array( 'longpage-hint', $wgLang->formatSize( strlen( $this->textbox1 ) ), strlen( $this->textbox1 ) )
2338 );
2339 }
2340 }
2341 # Add header copyright warning
2342 $this->showHeaderCopyrightWarning();
2343 }
2344
2345
2346 /**
2347 * Standard summary input and label (wgSummary), abstracted so EditPage
2348 * subclasses may reorganize the form.
2349 * Note that you do not need to worry about the label's for=, it will be
2350 * inferred by the id given to the input. You can remove them both by
2351 * passing array( 'id' => false ) to $userInputAttrs.
2352 *
2353 * @param $summary string The value of the summary input
2354 * @param $labelText string The html to place inside the label
2355 * @param $inputAttrs array of attrs to use on the input
2356 * @param $spanLabelAttrs array of attrs to use on the span inside the label
2357 *
2358 * @return array An array in the format array( $label, $input )
2359 */
2360 function getSummaryInput( $summary = "", $labelText = null, $inputAttrs = null, $spanLabelAttrs = null ) {
2361 // Note: the maxlength is overriden in JS to 255 and to make it use UTF-8 bytes, not characters.
2362 $inputAttrs = ( is_array( $inputAttrs ) ? $inputAttrs : array() ) + array(
2363 'id' => 'wpSummary',
2364 'maxlength' => '200',
2365 'tabindex' => '1',
2366 'size' => 60,
2367 'spellcheck' => 'true',
2368 ) + Linker::tooltipAndAccesskeyAttribs( 'summary' );
2369
2370 $spanLabelAttrs = ( is_array( $spanLabelAttrs ) ? $spanLabelAttrs : array() ) + array(
2371 'class' => $this->missingSummary ? 'mw-summarymissed' : 'mw-summary',
2372 'id' => "wpSummaryLabel"
2373 );
2374
2375 $label = null;
2376 if ( $labelText ) {
2377 $label = Xml::tags( 'label', $inputAttrs['id'] ? array( 'for' => $inputAttrs['id'] ) : null, $labelText );
2378 $label = Xml::tags( 'span', $spanLabelAttrs, $label );
2379 }
2380
2381 $input = Html::input( 'wpSummary', $summary, 'text', $inputAttrs );
2382
2383 return array( $label, $input );
2384 }
2385
2386 /**
2387 * @param $isSubjectPreview Boolean: true if this is the section subject/title
2388 * up top, or false if this is the comment summary
2389 * down below the textarea
2390 * @param $summary String: The text of the summary to display
2391 * @return String
2392 */
2393 protected function showSummaryInput( $isSubjectPreview, $summary = "" ) {
2394 global $wgOut, $wgContLang;
2395 # Add a class if 'missingsummary' is triggered to allow styling of the summary line
2396 $summaryClass = $this->missingSummary ? 'mw-summarymissed' : 'mw-summary';
2397 if ( $isSubjectPreview ) {
2398 if ( $this->nosummary ) {
2399 return;
2400 }
2401 } else {
2402 if ( !$this->mShowSummaryField ) {
2403 return;
2404 }
2405 }
2406 $summary = $wgContLang->recodeForEdit( $summary );
2407 $labelText = wfMessage( $isSubjectPreview ? 'subject' : 'summary' )->parse();
2408 list( $label, $input ) = $this->getSummaryInput( $summary, $labelText, array( 'class' => $summaryClass ), array() );
2409 $wgOut->addHTML( "{$label} {$input}" );
2410 }
2411
2412 /**
2413 * @param $isSubjectPreview Boolean: true if this is the section subject/title
2414 * up top, or false if this is the comment summary
2415 * down below the textarea
2416 * @param $summary String: the text of the summary to display
2417 * @return String
2418 */
2419 protected function getSummaryPreview( $isSubjectPreview, $summary = "" ) {
2420 if ( !$summary || ( !$this->preview && !$this->diff ) ) {
2421 return "";
2422 }
2423
2424 global $wgParser;
2425
2426 if ( $isSubjectPreview ) {
2427 $summary = wfMessage( 'newsectionsummary', $wgParser->stripSectionName( $summary ) )
2428 ->inContentLanguage()->text();
2429 }
2430
2431 $message = $isSubjectPreview ? 'subject-preview' : 'summary-preview';
2432
2433 $summary = wfMessage( $message )->parse() . Linker::commentBlock( $summary, $this->mTitle, $isSubjectPreview );
2434 return Xml::tags( 'div', array( 'class' => 'mw-summary-preview' ), $summary );
2435 }
2436
2437 protected function showFormBeforeText() {
2438 global $wgOut;
2439 $section = htmlspecialchars( $this->section );
2440 $wgOut->addHTML( <<<HTML
2441 <input type='hidden' value="{$section}" name="wpSection" />
2442 <input type='hidden' value="{$this->starttime}" name="wpStarttime" />
2443 <input type='hidden' value="{$this->edittime}" name="wpEdittime" />
2444 <input type='hidden' value="{$this->scrolltop}" name="wpScrolltop" id="wpScrolltop" />
2445
2446 HTML
2447 );
2448 if ( !$this->checkUnicodeCompliantBrowser() ) {
2449 $wgOut->addHTML( Html::hidden( 'safemode', '1' ) );
2450 }
2451 }
2452
2453 protected function showFormAfterText() {
2454 global $wgOut, $wgUser;
2455 /**
2456 * To make it harder for someone to slip a user a page
2457 * which submits an edit form to the wiki without their
2458 * knowledge, a random token is associated with the login
2459 * session. If it's not passed back with the submission,
2460 * we won't save the page, or render user JavaScript and
2461 * CSS previews.
2462 *
2463 * For anon editors, who may not have a session, we just
2464 * include the constant suffix to prevent editing from
2465 * broken text-mangling proxies.
2466 */
2467 $wgOut->addHTML( "\n" . Html::hidden( "wpEditToken", $wgUser->getEditToken() ) . "\n" );
2468 }
2469
2470 /**
2471 * Subpage overridable method for printing the form for page content editing
2472 * By default this simply outputs wpTextbox1
2473 * Subclasses can override this to provide a custom UI for editing;
2474 * be it a form, or simply wpTextbox1 with a modified content that will be
2475 * reverse modified when extracted from the post data.
2476 * Note that this is basically the inverse for importContentFormData
2477 */
2478 protected function showContentForm() {
2479 $this->showTextbox1();
2480 }
2481
2482 /**
2483 * Method to output wpTextbox1
2484 * The $textoverride method can be used by subclasses overriding showContentForm
2485 * to pass back to this method.
2486 *
2487 * @param $customAttribs array of html attributes to use in the textarea
2488 * @param $textoverride String: optional text to override $this->textarea1 with
2489 */
2490 protected function showTextbox1( $customAttribs = null, $textoverride = null ) {
2491 if ( $this->wasDeletedSinceLastEdit() && $this->formtype == 'save' ) {
2492 $attribs = array( 'style' => 'display:none;' );
2493 } else {
2494 $classes = array(); // Textarea CSS
2495 if ( $this->mTitle->getNamespace() != NS_MEDIAWIKI && $this->mTitle->isProtected( 'edit' ) ) {
2496 # Is the title semi-protected?
2497 if ( $this->mTitle->isSemiProtected() ) {
2498 $classes[] = 'mw-textarea-sprotected';
2499 } else {
2500 # Then it must be protected based on static groups (regular)
2501 $classes[] = 'mw-textarea-protected';
2502 }
2503 # Is the title cascade-protected?
2504 if ( $this->mTitle->isCascadeProtected() ) {
2505 $classes[] = 'mw-textarea-cprotected';
2506 }
2507 }
2508
2509 $attribs = array( 'tabindex' => 1 );
2510
2511 if ( is_array( $customAttribs ) ) {
2512 $attribs += $customAttribs;
2513 }
2514
2515 if ( count( $classes ) ) {
2516 if ( isset( $attribs['class'] ) ) {
2517 $classes[] = $attribs['class'];
2518 }
2519 $attribs['class'] = implode( ' ', $classes );
2520 }
2521 }
2522
2523 $this->showTextbox( $textoverride !== null ? $textoverride : $this->textbox1, 'wpTextbox1', $attribs );
2524 }
2525
2526 protected function showTextbox2() {
2527 $this->showTextbox( $this->textbox2, 'wpTextbox2', array( 'tabindex' => 6, 'readonly' ) );
2528 }
2529
2530 protected function showTextbox( $text, $name, $customAttribs = array() ) {
2531 global $wgOut, $wgUser;
2532
2533 $wikitext = $this->safeUnicodeOutput( $text );
2534 if ( strval( $wikitext ) !== '' ) {
2535 // Ensure there's a newline at the end, otherwise adding lines
2536 // is awkward.
2537 // But don't add a newline if the ext is empty, or Firefox in XHTML
2538 // mode will show an extra newline. A bit annoying.
2539 $wikitext .= "\n";
2540 }
2541
2542 $attribs = $customAttribs + array(
2543 'accesskey' => ',',
2544 'id' => $name,
2545 'cols' => $wgUser->getIntOption( 'cols' ),
2546 'rows' => $wgUser->getIntOption( 'rows' ),
2547 'style' => '' // avoid php notices when appending preferences (appending allows customAttribs['style'] to still work
2548 );
2549
2550 $pageLang = $this->mTitle->getPageLanguage();
2551 $attribs['lang'] = $pageLang->getCode();
2552 $attribs['dir'] = $pageLang->getDir();
2553
2554 $wgOut->addHTML( Html::textarea( $name, $wikitext, $attribs ) );
2555 }
2556
2557 protected function displayPreviewArea( $previewOutput, $isOnTop = false ) {
2558 global $wgOut;
2559 $classes = array();
2560 if ( $isOnTop ) {
2561 $classes[] = 'ontop';
2562 }
2563
2564 $attribs = array( 'id' => 'wikiPreview', 'class' => implode( ' ', $classes ) );
2565
2566 if ( $this->formtype != 'preview' ) {
2567 $attribs['style'] = 'display: none;';
2568 }
2569
2570 $wgOut->addHTML( Xml::openElement( 'div', $attribs ) );
2571
2572 if ( $this->formtype == 'preview' ) {
2573 $this->showPreview( $previewOutput );
2574 }
2575
2576 $wgOut->addHTML( '</div>' );
2577
2578 if ( $this->formtype == 'diff' ) {
2579 try {
2580 $this->showDiff();
2581 } catch ( MWContentSerializationException $ex ) {
2582 $msg = wfMessage( 'content-failed-to-parse', $this->contentModel, $this->contentFormat, $ex->getMessage() );
2583 $wgOut->addWikiText( '<div class="error">' . $msg->text() . '</div>');
2584 }
2585 }
2586 }
2587
2588 /**
2589 * Append preview output to $wgOut.
2590 * Includes category rendering if this is a category page.
2591 *
2592 * @param $text String: the HTML to be output for the preview.
2593 */
2594 protected function showPreview( $text ) {
2595 global $wgOut;
2596 if ( $this->mTitle->getNamespace() == NS_CATEGORY ) {
2597 $this->mArticle->openShowCategory();
2598 }
2599 # This hook seems slightly odd here, but makes things more
2600 # consistent for extensions.
2601 wfRunHooks( 'OutputPageBeforeHTML', array( &$wgOut, &$text ) );
2602 $wgOut->addHTML( $text );
2603 if ( $this->mTitle->getNamespace() == NS_CATEGORY ) {
2604 $this->mArticle->closeShowCategory();
2605 }
2606 }
2607
2608 /**
2609 * Get a diff between the current contents of the edit box and the
2610 * version of the page we're editing from.
2611 *
2612 * If this is a section edit, we'll replace the section as for final
2613 * save and then make a comparison.
2614 */
2615 function showDiff() {
2616 global $wgUser, $wgContLang, $wgOut;
2617
2618 $oldtitlemsg = 'currentrev';
2619 # if message does not exist, show diff against the preloaded default
2620 if( $this->mTitle->getNamespace() == NS_MEDIAWIKI && !$this->mTitle->exists() ) {
2621 $oldtext = $this->mTitle->getDefaultMessageText();
2622 if( $oldtext !== false ) {
2623 $oldtitlemsg = 'defaultmessagetext';
2624 $oldContent = $this->toEditContent( $oldtext );
2625 } else {
2626 $oldContent = null;
2627 }
2628 } else {
2629 $oldContent = $this->getCurrentContent();
2630 }
2631
2632 $textboxContent = $this->toEditContent( $this->textbox1 );
2633
2634 $newContent = $this->mArticle->replaceSectionContent(
2635 $this->section, $textboxContent,
2636 $this->summary, $this->edittime );
2637
2638 if ( $newContent ) {
2639 ContentHandler::runLegacyHooks( 'EditPageGetDiffText', array( $this, &$newContent ) );
2640 wfRunHooks( 'EditPageGetDiffContent', array( $this, &$newContent ) );
2641
2642 $popts = ParserOptions::newFromUserAndLang( $wgUser, $wgContLang );
2643 $newContent = $newContent->preSaveTransform( $this->mTitle, $wgUser, $popts );
2644 }
2645
2646 if ( ( $oldContent && !$oldContent->isEmpty() ) || ( $newContent && !$newContent->isEmpty() ) ) {
2647 $oldtitle = wfMessage( $oldtitlemsg )->parse();
2648 $newtitle = wfMessage( 'yourtext' )->parse();
2649
2650 if ( !$oldContent ) {
2651 $oldContent = $newContent->getContentHandler()->makeEmptyContent();
2652 }
2653
2654 if ( !$newContent ) {
2655 $newContent = $oldContent->getContentHandler()->makeEmptyContent();
2656 }
2657
2658 $de = $oldContent->getContentHandler()->createDifferenceEngine( $this->mArticle->getContext() );
2659 $de->setContent( $oldContent, $newContent );
2660
2661 $difftext = $de->getDiff( $oldtitle, $newtitle );
2662 $de->showDiffStyle();
2663 } else {
2664 $difftext = '';
2665 }
2666
2667 $wgOut->addHTML( '<div id="wikiDiff">' . $difftext . '</div>' );
2668 }
2669
2670 /**
2671 * Show the header copyright warning.
2672 */
2673 protected function showHeaderCopyrightWarning() {
2674 $msg = 'editpage-head-copy-warn';
2675 if ( !wfMessage( $msg )->isDisabled() ) {
2676 global $wgOut;
2677 $wgOut->wrapWikiMsg( "<div class='editpage-head-copywarn'>\n$1\n</div>",
2678 'editpage-head-copy-warn' );
2679 }
2680 }
2681
2682 /**
2683 * Give a chance for site and per-namespace customizations of
2684 * terms of service summary link that might exist separately
2685 * from the copyright notice.
2686 *
2687 * This will display between the save button and the edit tools,
2688 * so should remain short!
2689 */
2690 protected function showTosSummary() {
2691 $msg = 'editpage-tos-summary';
2692 wfRunHooks( 'EditPageTosSummary', array( $this->mTitle, &$msg ) );
2693 if ( !wfMessage( $msg )->isDisabled() ) {
2694 global $wgOut;
2695 $wgOut->addHTML( '<div class="mw-tos-summary">' );
2696 $wgOut->addWikiMsg( $msg );
2697 $wgOut->addHTML( '</div>' );
2698 }
2699 }
2700
2701 protected function showEditTools() {
2702 global $wgOut;
2703 $wgOut->addHTML( '<div class="mw-editTools">' .
2704 wfMessage( 'edittools' )->inContentLanguage()->parse() .
2705 '</div>' );
2706 }
2707
2708 /**
2709 * Get the copyright warning
2710 *
2711 * Renamed to getCopyrightWarning(), old name kept around for backwards compatibility
2712 */
2713 protected function getCopywarn() {
2714 return self::getCopyrightWarning( $this->mTitle );
2715 }
2716
2717 public static function getCopyrightWarning( $title ) {
2718 global $wgRightsText;
2719 if ( $wgRightsText ) {
2720 $copywarnMsg = array( 'copyrightwarning',
2721 '[[' . wfMessage( 'copyrightpage' )->inContentLanguage()->text() . ']]',
2722 $wgRightsText );
2723 } else {
2724 $copywarnMsg = array( 'copyrightwarning2',
2725 '[[' . wfMessage( 'copyrightpage' )->inContentLanguage()->text() . ']]' );
2726 }
2727 // Allow for site and per-namespace customization of contribution/copyright notice.
2728 wfRunHooks( 'EditPageCopyrightWarning', array( $title, &$copywarnMsg ) );
2729
2730 return "<div id=\"editpage-copywarn\">\n" .
2731 call_user_func_array( 'wfMessage', $copywarnMsg )->plain() . "\n</div>";
2732 }
2733
2734 protected function showStandardInputs( &$tabindex = 2 ) {
2735 global $wgOut;
2736 $wgOut->addHTML( "<div class='editOptions'>\n" );
2737
2738 if ( $this->section != 'new' ) {
2739 $this->showSummaryInput( false, $this->summary );
2740 $wgOut->addHTML( $this->getSummaryPreview( false, $this->summary ) );
2741 }
2742
2743 $checkboxes = $this->getCheckboxes( $tabindex,
2744 array( 'minor' => $this->minoredit, 'watch' => $this->watchthis ) );
2745 $wgOut->addHTML( "<div class='editCheckboxes'>" . implode( $checkboxes, "\n" ) . "</div>\n" );
2746
2747 // Show copyright warning.
2748 $wgOut->addWikiText( $this->getCopywarn() );
2749 $wgOut->addHTML( $this->editFormTextAfterWarn );
2750
2751 $wgOut->addHTML( "<div class='editButtons'>\n" );
2752 $wgOut->addHTML( implode( $this->getEditButtons( $tabindex ), "\n" ) . "\n" );
2753
2754 $cancel = $this->getCancelLink();
2755 if ( $cancel !== '' ) {
2756 $cancel .= wfMessage( 'pipe-separator' )->text();
2757 }
2758 $edithelpurl = Skin::makeInternalOrExternalUrl( wfMessage( 'edithelppage' )->inContentLanguage()->text() );
2759 $edithelp = '<a target="helpwindow" href="' . $edithelpurl . '">' .
2760 wfMessage( 'edithelp' )->escaped() . '</a> ' .
2761 wfMessage( 'newwindow' )->parse();
2762 $wgOut->addHTML( " <span class='cancelLink'>{$cancel}</span>\n" );
2763 $wgOut->addHTML( " <span class='editHelp'>{$edithelp}</span>\n" );
2764 $wgOut->addHTML( "</div><!-- editButtons -->\n" );
2765 wfRunHooks( 'EditPage::showStandardInputs:options', array( $this, $wgOut, &$tabindex ) );
2766 $wgOut->addHTML( "</div><!-- editOptions -->\n" );
2767 }
2768
2769 /**
2770 * Show an edit conflict. textbox1 is already shown in showEditForm().
2771 * If you want to use another entry point to this function, be careful.
2772 */
2773 protected function showConflict() {
2774 global $wgOut;
2775
2776 if ( wfRunHooks( 'EditPageBeforeConflictDiff', array( &$this, &$wgOut ) ) ) {
2777 $wgOut->wrapWikiMsg( '<h2>$1</h2>', "yourdiff" );
2778
2779 $content1 = $this->toEditContent( $this->textbox1 );
2780 $content2 = $this->toEditContent( $this->textbox2 );
2781
2782 $handler = ContentHandler::getForModelID( $this->contentModel );
2783 $de = $handler->createDifferenceEngine( $this->mArticle->getContext() );
2784 $de->setContent( $content2, $content1 );
2785 $de->showDiff(
2786 wfMessage( 'yourtext' )->parse(),
2787 wfMessage( 'storedversion' )->text()
2788 );
2789
2790 $wgOut->wrapWikiMsg( '<h2>$1</h2>', "yourtext" );
2791 $this->showTextbox2();
2792 }
2793 }
2794
2795 /**
2796 * @return string
2797 */
2798 public function getCancelLink() {
2799 $cancelParams = array();
2800 if ( !$this->isConflict && $this->oldid > 0 ) {
2801 $cancelParams['oldid'] = $this->oldid;
2802 }
2803
2804 return Linker::linkKnown(
2805 $this->getContextTitle(),
2806 wfMessage( 'cancel' )->parse(),
2807 array( 'id' => 'mw-editform-cancel' ),
2808 $cancelParams
2809 );
2810 }
2811
2812 /**
2813 * Returns the URL to use in the form's action attribute.
2814 * This is used by EditPage subclasses when simply customizing the action
2815 * variable in the constructor is not enough. This can be used when the
2816 * EditPage lives inside of a Special page rather than a custom page action.
2817 *
2818 * @param $title Title object for which is being edited (where we go to for &action= links)
2819 * @return string
2820 */
2821 protected function getActionURL( Title $title ) {
2822 return $title->getLocalURL( array( 'action' => $this->action ) );
2823 }
2824
2825 /**
2826 * Check if a page was deleted while the user was editing it, before submit.
2827 * Note that we rely on the logging table, which hasn't been always there,
2828 * but that doesn't matter, because this only applies to brand new
2829 * deletes.
2830 */
2831 protected function wasDeletedSinceLastEdit() {
2832 if ( $this->deletedSinceEdit !== null ) {
2833 return $this->deletedSinceEdit;
2834 }
2835
2836 $this->deletedSinceEdit = false;
2837
2838 if ( $this->mTitle->isDeletedQuick() ) {
2839 $this->lastDelete = $this->getLastDelete();
2840 if ( $this->lastDelete ) {
2841 $deleteTime = wfTimestamp( TS_MW, $this->lastDelete->log_timestamp );
2842 if ( $deleteTime > $this->starttime ) {
2843 $this->deletedSinceEdit = true;
2844 }
2845 }
2846 }
2847
2848 return $this->deletedSinceEdit;
2849 }
2850
2851 protected function getLastDelete() {
2852 $dbr = wfGetDB( DB_SLAVE );
2853 $data = $dbr->selectRow(
2854 array( 'logging', 'user' ),
2855 array( 'log_type',
2856 'log_action',
2857 'log_timestamp',
2858 'log_user',
2859 'log_namespace',
2860 'log_title',
2861 'log_comment',
2862 'log_params',
2863 'log_deleted',
2864 'user_name' ),
2865 array( 'log_namespace' => $this->mTitle->getNamespace(),
2866 'log_title' => $this->mTitle->getDBkey(),
2867 'log_type' => 'delete',
2868 'log_action' => 'delete',
2869 'user_id=log_user' ),
2870 __METHOD__,
2871 array( 'LIMIT' => 1, 'ORDER BY' => 'log_timestamp DESC' )
2872 );
2873 // Quick paranoid permission checks...
2874 if ( is_object( $data ) ) {
2875 if ( $data->log_deleted & LogPage::DELETED_USER ) {
2876 $data->user_name = wfMessage( 'rev-deleted-user' )->escaped();
2877 }
2878
2879 if ( $data->log_deleted & LogPage::DELETED_COMMENT ) {
2880 $data->log_comment = wfMessage( 'rev-deleted-comment' )->escaped();
2881 }
2882 }
2883 return $data;
2884 }
2885
2886 /**
2887 * Get the rendered text for previewing.
2888 * @throws MWException
2889 * @return string
2890 */
2891 function getPreviewText() {
2892 global $wgOut, $wgUser, $wgRawHtml, $wgLang;
2893
2894 wfProfileIn( __METHOD__ );
2895
2896 if ( $wgRawHtml && !$this->mTokenOk ) {
2897 // Could be an offsite preview attempt. This is very unsafe if
2898 // HTML is enabled, as it could be an attack.
2899 $parsedNote = '';
2900 if ( $this->textbox1 !== '' ) {
2901 // Do not put big scary notice, if previewing the empty
2902 // string, which happens when you initially edit
2903 // a category page, due to automatic preview-on-open.
2904 $parsedNote = $wgOut->parse( "<div class='previewnote'>" .
2905 wfMessage( 'session_fail_preview_html' )->text() . "</div>", true, /* interface */true );
2906 }
2907 wfProfileOut( __METHOD__ );
2908 return $parsedNote;
2909 }
2910
2911 $note = '';
2912
2913 try {
2914 $content = $this->toEditContent( $this->textbox1 );
2915
2916 $previewHTML = '';
2917 if ( !wfRunHooks( 'AlternateEditPreview', array( $this, &$content, &$previewHTML, &$this->mParserOutput ) ) ) {
2918 wfProfileOut( __METHOD__ );
2919 return $previewHTML;
2920 }
2921
2922 if ( $this->mTriedSave && !$this->mTokenOk ) {
2923 if ( $this->mTokenOkExceptSuffix ) {
2924 $note = wfMessage( 'token_suffix_mismatch' )->plain() ;
2925
2926 } else {
2927 $note = wfMessage( 'session_fail_preview' )->plain() ;
2928 }
2929 } elseif ( $this->incompleteForm ) {
2930 $note = wfMessage( 'edit_form_incomplete' )->plain() ;
2931 } else {
2932 $note = wfMessage( 'previewnote' )->plain() .
2933 ' [[#' . self::EDITFORM_ID . '|' . $wgLang->getArrow() . ' ' . wfMessage( 'continue-editing' )->text() . ']]';
2934 }
2935
2936 $parserOptions = $this->mArticle->makeParserOptions( $this->mArticle->getContext() );
2937 $parserOptions->setEditSection( false );
2938 $parserOptions->setIsPreview( true );
2939 $parserOptions->setIsSectionPreview( !is_null($this->section) && $this->section !== '' );
2940
2941 # don't parse non-wikitext pages, show message about preview
2942 if ( $this->mTitle->isCssJsSubpage() || $this->mTitle->isCssOrJsPage() ) {
2943 if( $this->mTitle->isCssJsSubpage() ) {
2944 $level = 'user';
2945 } elseif( $this->mTitle->isCssOrJsPage() ) {
2946 $level = 'site';
2947 } else {
2948 $level = false;
2949 }
2950
2951 if ( $content->getModel() == CONTENT_MODEL_CSS ) {
2952 $format = 'css';
2953 } elseif ( $content->getModel() == CONTENT_MODEL_JAVASCRIPT ) {
2954 $format = 'js';
2955 } else {
2956 $format = false;
2957 }
2958
2959 # Used messages to make sure grep find them:
2960 # Messages: usercsspreview, userjspreview, sitecsspreview, sitejspreview
2961 if( $level && $format ) {
2962 $note = "<div id='mw-{$level}{$format}preview'>" . wfMessage( "{$level}{$format}preview" )->text() . "</div>";
2963 }
2964 }
2965
2966 $rt = $content->getRedirectChain();
2967 if ( $rt ) {
2968 $previewHTML = $this->mArticle->viewRedirect( $rt, false );
2969 } else {
2970
2971 # If we're adding a comment, we need to show the
2972 # summary as the headline
2973 if ( $this->section === "new" && $this->summary !== "" ) {
2974 $content = $content->addSectionHeader( $this->summary );
2975 }
2976
2977 $hook_args = array( $this, &$content );
2978 ContentHandler::runLegacyHooks( 'EditPageGetPreviewText', $hook_args );
2979 wfRunHooks( 'EditPageGetPreviewContent', $hook_args );
2980
2981 $parserOptions->enableLimitReport();
2982
2983 # For CSS/JS pages, we should have called the ShowRawCssJs hook here.
2984 # But it's now deprecated, so never mind
2985
2986 $content = $content->preSaveTransform( $this->mTitle, $wgUser, $parserOptions );
2987 $parserOutput = $content->getParserOutput( $this->getArticle()->getTitle(), null, $parserOptions );
2988
2989 $previewHTML = $parserOutput->getText();
2990 $this->mParserOutput = $parserOutput;
2991 $wgOut->addParserOutputNoText( $parserOutput );
2992
2993 if ( count( $parserOutput->getWarnings() ) ) {
2994 $note .= "\n\n" . implode( "\n\n", $parserOutput->getWarnings() );
2995 }
2996 }
2997 } catch ( MWContentSerializationException $ex ) {
2998 $m = wfMessage('content-failed-to-parse', $this->contentModel, $this->contentFormat, $ex->getMessage() );
2999 $note .= "\n\n" . $m->parse();
3000 $previewHTML = '';
3001 }
3002
3003 if ( $this->isConflict ) {
3004 $conflict = '<h2 id="mw-previewconflict">' . wfMessage( 'previewconflict' )->escaped() . "</h2>\n";
3005 } else {
3006 $conflict = '<hr />';
3007 }
3008
3009 $previewhead = "<div class='previewnote'>\n" .
3010 '<h2 id="mw-previewheader">' . wfMessage( 'preview' )->escaped() . "</h2>" .
3011 $wgOut->parse( $note, true, /* interface */true ) . $conflict . "</div>\n";
3012
3013 $pageLang = $this->mTitle->getPageLanguage();
3014 $attribs = array( 'lang' => $pageLang->getCode(), 'dir' => $pageLang->getDir(),
3015 'class' => 'mw-content-' . $pageLang->getDir() );
3016 $previewHTML = Html::rawElement( 'div', $attribs, $previewHTML );
3017
3018 wfProfileOut( __METHOD__ );
3019 return $previewhead . $previewHTML . $this->previewTextAfterContent;
3020 }
3021
3022 /**
3023 * @return Array
3024 */
3025 function getTemplates() {
3026 if ( $this->preview || $this->section != '' ) {
3027 $templates = array();
3028 if ( !isset( $this->mParserOutput ) ) {
3029 return $templates;
3030 }
3031 foreach ( $this->mParserOutput->getTemplates() as $ns => $template ) {
3032 foreach ( array_keys( $template ) as $dbk ) {
3033 $templates[] = Title::makeTitle( $ns, $dbk );
3034 }
3035 }
3036 return $templates;
3037 } else {
3038 return $this->mTitle->getTemplateLinksFrom();
3039 }
3040 }
3041
3042 /**
3043 * Shows a bulletin board style toolbar for common editing functions.
3044 * It can be disabled in the user preferences.
3045 * The necessary JavaScript code can be found in skins/common/edit.js.
3046 *
3047 * @return string
3048 */
3049 static function getEditToolbar() {
3050 global $wgStylePath, $wgContLang, $wgLang, $wgOut;
3051 global $wgUseTeX, $wgEnableUploads, $wgForeignFileRepos;
3052
3053 $imagesAvailable = $wgEnableUploads || count( $wgForeignFileRepos );
3054
3055 /**
3056 * $toolarray is an array of arrays each of which includes the
3057 * filename of the button image (without path), the opening
3058 * tag, the closing tag, optionally a sample text that is
3059 * inserted between the two when no selection is highlighted
3060 * and. The tip text is shown when the user moves the mouse
3061 * over the button.
3062 *
3063 * Also here: accesskeys (key), which are not used yet until
3064 * someone can figure out a way to make them work in
3065 * IE. However, we should make sure these keys are not defined
3066 * on the edit page.
3067 */
3068 $toolarray = array(
3069 array(
3070 'image' => $wgLang->getImageFile( 'button-bold' ),
3071 'id' => 'mw-editbutton-bold',
3072 'open' => '\'\'\'',
3073 'close' => '\'\'\'',
3074 'sample' => wfMessage( 'bold_sample' )->text(),
3075 'tip' => wfMessage( 'bold_tip' )->text(),
3076 'key' => 'B'
3077 ),
3078 array(
3079 'image' => $wgLang->getImageFile( 'button-italic' ),
3080 'id' => 'mw-editbutton-italic',
3081 'open' => '\'\'',
3082 'close' => '\'\'',
3083 'sample' => wfMessage( 'italic_sample' )->text(),
3084 'tip' => wfMessage( 'italic_tip' )->text(),
3085 'key' => 'I'
3086 ),
3087 array(
3088 'image' => $wgLang->getImageFile( 'button-link' ),
3089 'id' => 'mw-editbutton-link',
3090 'open' => '[[',
3091 'close' => ']]',
3092 'sample' => wfMessage( 'link_sample' )->text(),
3093 'tip' => wfMessage( 'link_tip' )->text(),
3094 'key' => 'L'
3095 ),
3096 array(
3097 'image' => $wgLang->getImageFile( 'button-extlink' ),
3098 'id' => 'mw-editbutton-extlink',
3099 'open' => '[',
3100 'close' => ']',
3101 'sample' => wfMessage( 'extlink_sample' )->text(),
3102 'tip' => wfMessage( 'extlink_tip' )->text(),
3103 'key' => 'X'
3104 ),
3105 array(
3106 'image' => $wgLang->getImageFile( 'button-headline' ),
3107 'id' => 'mw-editbutton-headline',
3108 'open' => "\n== ",
3109 'close' => " ==\n",
3110 'sample' => wfMessage( 'headline_sample' )->text(),
3111 'tip' => wfMessage( 'headline_tip' )->text(),
3112 'key' => 'H'
3113 ),
3114 $imagesAvailable ? array(
3115 'image' => $wgLang->getImageFile( 'button-image' ),
3116 'id' => 'mw-editbutton-image',
3117 'open' => '[[' . $wgContLang->getNsText( NS_FILE ) . ':',
3118 'close' => ']]',
3119 'sample' => wfMessage( 'image_sample' )->text(),
3120 'tip' => wfMessage( 'image_tip' )->text(),
3121 'key' => 'D',
3122 ) : false,
3123 $imagesAvailable ? array(
3124 'image' => $wgLang->getImageFile( 'button-media' ),
3125 'id' => 'mw-editbutton-media',
3126 'open' => '[[' . $wgContLang->getNsText( NS_MEDIA ) . ':',
3127 'close' => ']]',
3128 'sample' => wfMessage( 'media_sample' )->text(),
3129 'tip' => wfMessage( 'media_tip' )->text(),
3130 'key' => 'M'
3131 ) : false,
3132 $wgUseTeX ? array(
3133 'image' => $wgLang->getImageFile( 'button-math' ),
3134 'id' => 'mw-editbutton-math',
3135 'open' => "<math>",
3136 'close' => "</math>",
3137 'sample' => wfMessage( 'math_sample' )->text(),
3138 'tip' => wfMessage( 'math_tip' )->text(),
3139 'key' => 'C'
3140 ) : false,
3141 array(
3142 'image' => $wgLang->getImageFile( 'button-nowiki' ),
3143 'id' => 'mw-editbutton-nowiki',
3144 'open' => "<nowiki>",
3145 'close' => "</nowiki>",
3146 'sample' => wfMessage( 'nowiki_sample' )->text(),
3147 'tip' => wfMessage( 'nowiki_tip' )->text(),
3148 'key' => 'N'
3149 ),
3150 array(
3151 'image' => $wgLang->getImageFile( 'button-sig' ),
3152 'id' => 'mw-editbutton-signature',
3153 'open' => '--~~~~',
3154 'close' => '',
3155 'sample' => '',
3156 'tip' => wfMessage( 'sig_tip' )->text(),
3157 'key' => 'Y'
3158 ),
3159 array(
3160 'image' => $wgLang->getImageFile( 'button-hr' ),
3161 'id' => 'mw-editbutton-hr',
3162 'open' => "\n----\n",
3163 'close' => '',
3164 'sample' => '',
3165 'tip' => wfMessage( 'hr_tip' )->text(),
3166 'key' => 'R'
3167 )
3168 );
3169
3170 $script = 'mw.loader.using("mediawiki.action.edit", function() {';
3171 foreach ( $toolarray as $tool ) {
3172 if ( !$tool ) {
3173 continue;
3174 }
3175
3176 $params = array(
3177 $image = $wgStylePath . '/common/images/' . $tool['image'],
3178 // Note that we use the tip both for the ALT tag and the TITLE tag of the image.
3179 // Older browsers show a "speedtip" type message only for ALT.
3180 // Ideally these should be different, realistically they
3181 // probably don't need to be.
3182 $tip = $tool['tip'],
3183 $open = $tool['open'],
3184 $close = $tool['close'],
3185 $sample = $tool['sample'],
3186 $cssId = $tool['id'],
3187 );
3188
3189 $script .= Xml::encodeJsCall( 'mw.toolbar.addButton', $params );
3190 }
3191
3192 // This used to be called on DOMReady from mediawiki.action.edit, which
3193 // ended up causing race conditions with the setup code above.
3194 $script .= "\n" .
3195 "// Create button bar\n" .
3196 "$(function() { mw.toolbar.init(); } );\n";
3197
3198 $script .= '});';
3199 $wgOut->addScript( Html::inlineScript( ResourceLoader::makeLoaderConditionalScript( $script ) ) );
3200
3201 $toolbar = '<div id="toolbar"></div>';
3202
3203 wfRunHooks( 'EditPageBeforeEditToolbar', array( &$toolbar ) );
3204
3205 return $toolbar;
3206 }
3207
3208 /**
3209 * Returns an array of html code of the following checkboxes:
3210 * minor and watch
3211 *
3212 * @param $tabindex int Current tabindex
3213 * @param $checked Array of checkbox => bool, where bool indicates the checked
3214 * status of the checkbox
3215 *
3216 * @return array
3217 */
3218 public function getCheckboxes( &$tabindex, $checked ) {
3219 global $wgUser;
3220
3221 $checkboxes = array();
3222
3223 // don't show the minor edit checkbox if it's a new page or section
3224 if ( !$this->isNew ) {
3225 $checkboxes['minor'] = '';
3226 $minorLabel = wfMessage( 'minoredit' )->parse();
3227 if ( $wgUser->isAllowed( 'minoredit' ) ) {
3228 $attribs = array(
3229 'tabindex' => ++$tabindex,
3230 'accesskey' => wfMessage( 'accesskey-minoredit' )->text(),
3231 'id' => 'wpMinoredit',
3232 );
3233 $checkboxes['minor'] =
3234 Xml::check( 'wpMinoredit', $checked['minor'], $attribs ) .
3235 "&#160;<label for='wpMinoredit' id='mw-editpage-minoredit'" .
3236 Xml::expandAttributes( array( 'title' => Linker::titleAttrib( 'minoredit', 'withaccess' ) ) ) .
3237 ">{$minorLabel}</label>";
3238 }
3239 }
3240
3241 $watchLabel = wfMessage( 'watchthis' )->parse();
3242 $checkboxes['watch'] = '';
3243 if ( $wgUser->isLoggedIn() ) {
3244 $attribs = array(
3245 'tabindex' => ++$tabindex,
3246 'accesskey' => wfMessage( 'accesskey-watch' )->text(),
3247 'id' => 'wpWatchthis',
3248 );
3249 $checkboxes['watch'] =
3250 Xml::check( 'wpWatchthis', $checked['watch'], $attribs ) .
3251 "&#160;<label for='wpWatchthis' id='mw-editpage-watch'" .
3252 Xml::expandAttributes( array( 'title' => Linker::titleAttrib( 'watch', 'withaccess' ) ) ) .
3253 ">{$watchLabel}</label>";
3254 }
3255 wfRunHooks( 'EditPageBeforeEditChecks', array( &$this, &$checkboxes, &$tabindex ) );
3256 return $checkboxes;
3257 }
3258
3259 /**
3260 * Returns an array of html code of the following buttons:
3261 * save, diff, preview and live
3262 *
3263 * @param $tabindex int Current tabindex
3264 *
3265 * @return array
3266 */
3267 public function getEditButtons( &$tabindex ) {
3268 $buttons = array();
3269
3270 $temp = array(
3271 'id' => 'wpSave',
3272 'name' => 'wpSave',
3273 'type' => 'submit',
3274 'tabindex' => ++$tabindex,
3275 'value' => wfMessage( 'savearticle' )->text(),
3276 'accesskey' => wfMessage( 'accesskey-save' )->text(),
3277 'title' => wfMessage( 'tooltip-save' )->text() . ' [' . wfMessage( 'accesskey-save' )->text() . ']',
3278 );
3279 $buttons['save'] = Xml::element( 'input', $temp, '' );
3280
3281 ++$tabindex; // use the same for preview and live preview
3282 $temp = array(
3283 'id' => 'wpPreview',
3284 'name' => 'wpPreview',
3285 'type' => 'submit',
3286 'tabindex' => $tabindex,
3287 'value' => wfMessage( 'showpreview' )->text(),
3288 'accesskey' => wfMessage( 'accesskey-preview' )->text(),
3289 'title' => wfMessage( 'tooltip-preview' )->text() . ' [' . wfMessage( 'accesskey-preview' )->text() . ']',
3290 );
3291 $buttons['preview'] = Xml::element( 'input', $temp, '' );
3292 $buttons['live'] = '';
3293
3294 $temp = array(
3295 'id' => 'wpDiff',
3296 'name' => 'wpDiff',
3297 'type' => 'submit',
3298 'tabindex' => ++$tabindex,
3299 'value' => wfMessage( 'showdiff' )->text(),
3300 'accesskey' => wfMessage( 'accesskey-diff' )->text(),
3301 'title' => wfMessage( 'tooltip-diff' )->text() . ' [' . wfMessage( 'accesskey-diff' )->text() . ']',
3302 );
3303 $buttons['diff'] = Xml::element( 'input', $temp, '' );
3304
3305 wfRunHooks( 'EditPageBeforeEditButtons', array( &$this, &$buttons, &$tabindex ) );
3306 return $buttons;
3307 }
3308
3309 /**
3310 * Output preview text only. This can be sucked into the edit page
3311 * via JavaScript, and saves the server time rendering the skin as
3312 * well as theoretically being more robust on the client (doesn't
3313 * disturb the edit box's undo history, won't eat your text on
3314 * failure, etc).
3315 *
3316 * @todo This doesn't include category or interlanguage links.
3317 * Would need to enhance it a bit, "<s>maybe wrap them in XML
3318 * or something...</s>" that might also require more skin
3319 * initialization, so check whether that's a problem.
3320 */
3321 function livePreview() {
3322 global $wgOut;
3323 $wgOut->disable();
3324 header( 'Content-type: text/xml; charset=utf-8' );
3325 header( 'Cache-control: no-cache' );
3326
3327 $previewText = $this->getPreviewText();
3328 #$categories = $skin->getCategoryLinks();
3329
3330 $s =
3331 '<?xml version="1.0" encoding="UTF-8" ?>' . "\n" .
3332 Xml::tags( 'livepreview', null,
3333 Xml::element( 'preview', null, $previewText )
3334 #. Xml::element( 'category', null, $categories )
3335 );
3336 echo $s;
3337 }
3338
3339 /**
3340 * Call the stock "user is blocked" page
3341 *
3342 * @deprecated in 1.19; throw an exception directly instead
3343 */
3344 function blockedPage() {
3345 wfDeprecated( __METHOD__, '1.19' );
3346 global $wgUser;
3347
3348 throw new UserBlockedError( $wgUser->getBlock() );
3349 }
3350
3351 /**
3352 * Produce the stock "please login to edit pages" page
3353 *
3354 * @deprecated in 1.19; throw an exception directly instead
3355 */
3356 function userNotLoggedInPage() {
3357 wfDeprecated( __METHOD__, '1.19' );
3358 throw new PermissionsError( 'edit' );
3359 }
3360
3361 /**
3362 * Show an error page saying to the user that he has insufficient permissions
3363 * to create a new page
3364 *
3365 * @deprecated in 1.19; throw an exception directly instead
3366 */
3367 function noCreatePermission() {
3368 wfDeprecated( __METHOD__, '1.19' );
3369 $permission = $this->mTitle->isTalkPage() ? 'createtalk' : 'createpage';
3370 throw new PermissionsError( $permission );
3371 }
3372
3373 /**
3374 * Creates a basic error page which informs the user that
3375 * they have attempted to edit a nonexistent section.
3376 */
3377 function noSuchSectionPage() {
3378 global $wgOut;
3379
3380 $wgOut->prepareErrorPage( wfMessage( 'nosuchsectiontitle' ) );
3381
3382 $res = wfMessage( 'nosuchsectiontext', $this->section )->parseAsBlock();
3383 wfRunHooks( 'EditPageNoSuchSection', array( &$this, &$res ) );
3384 $wgOut->addHTML( $res );
3385
3386 $wgOut->returnToMain( false, $this->mTitle );
3387 }
3388
3389 /**
3390 * Produce the stock "your edit contains spam" page
3391 *
3392 * @param $match string|bool Text which triggered one or more filters
3393 * @deprecated since 1.17 Use method spamPageWithContent() instead
3394 */
3395 static function spamPage( $match = false ) {
3396 wfDeprecated( __METHOD__, '1.17' );
3397
3398 global $wgOut, $wgTitle;
3399
3400 $wgOut->prepareErrorPage( wfMessage( 'spamprotectiontitle' ) );
3401
3402 $wgOut->addHTML( '<div id="spamprotected">' );
3403 $wgOut->addWikiMsg( 'spamprotectiontext' );
3404 if ( $match ) {
3405 $wgOut->addWikiMsg( 'spamprotectionmatch', wfEscapeWikiText( $match ) );
3406 }
3407 $wgOut->addHTML( '</div>' );
3408
3409 $wgOut->returnToMain( false, $wgTitle );
3410 }
3411
3412 /**
3413 * Show "your edit contains spam" page with your diff and text
3414 *
3415 * @param $match string|Array|bool Text (or array of texts) which triggered one or more filters
3416 */
3417 public function spamPageWithContent( $match = false ) {
3418 global $wgOut, $wgLang;
3419 $this->textbox2 = $this->textbox1;
3420
3421 if( is_array( $match ) ){
3422 $match = $wgLang->listToText( $match );
3423 }
3424 $wgOut->prepareErrorPage( wfMessage( 'spamprotectiontitle' ) );
3425
3426 $wgOut->addHTML( '<div id="spamprotected">' );
3427 $wgOut->addWikiMsg( 'spamprotectiontext' );
3428 if ( $match ) {
3429 $wgOut->addWikiMsg( 'spamprotectionmatch', wfEscapeWikiText( $match ) );
3430 }
3431 $wgOut->addHTML( '</div>' );
3432
3433 $wgOut->wrapWikiMsg( '<h2>$1</h2>', "yourdiff" );
3434 $this->showDiff();
3435
3436 $wgOut->wrapWikiMsg( '<h2>$1</h2>', "yourtext" );
3437 $this->showTextbox2();
3438
3439 $wgOut->addReturnTo( $this->getContextTitle(), array( 'action' => 'edit' ) );
3440 }
3441
3442 /**
3443 * Format an anchor fragment as it would appear for a given section name
3444 * @param $text String
3445 * @return String
3446 * @private
3447 */
3448 function sectionAnchor( $text ) {
3449 global $wgParser;
3450 return $wgParser->guessSectionNameFromWikiText( $text );
3451 }
3452
3453 /**
3454 * Check if the browser is on a blacklist of user-agents known to
3455 * mangle UTF-8 data on form submission. Returns true if Unicode
3456 * should make it through, false if it's known to be a problem.
3457 * @return bool
3458 * @private
3459 */
3460 function checkUnicodeCompliantBrowser() {
3461 global $wgBrowserBlackList, $wgRequest;
3462
3463 $currentbrowser = $wgRequest->getHeader( 'User-Agent' );
3464 if ( $currentbrowser === false ) {
3465 // No User-Agent header sent? Trust it by default...
3466 return true;
3467 }
3468
3469 foreach ( $wgBrowserBlackList as $browser ) {
3470 if ( preg_match( $browser, $currentbrowser ) ) {
3471 return false;
3472 }
3473 }
3474 return true;
3475 }
3476
3477 /**
3478 * Filter an input field through a Unicode de-armoring process if it
3479 * came from an old browser with known broken Unicode editing issues.
3480 *
3481 * @param $request WebRequest
3482 * @param $field String
3483 * @return String
3484 * @private
3485 */
3486 function safeUnicodeInput( $request, $field ) {
3487 $text = rtrim( $request->getText( $field ) );
3488 return $request->getBool( 'safemode' )
3489 ? $this->unmakesafe( $text )
3490 : $text;
3491 }
3492
3493 /**
3494 * @param $request WebRequest
3495 * @param $text string
3496 * @return string
3497 */
3498 function safeUnicodeText( $request, $text ) {
3499 $text = rtrim( $text );
3500 return $request->getBool( 'safemode' )
3501 ? $this->unmakesafe( $text )
3502 : $text;
3503 }
3504
3505 /**
3506 * Filter an output field through a Unicode armoring process if it is
3507 * going to an old browser with known broken Unicode editing issues.
3508 *
3509 * @param $text String
3510 * @return String
3511 * @private
3512 */
3513 function safeUnicodeOutput( $text ) {
3514 global $wgContLang;
3515 $codedText = $wgContLang->recodeForEdit( $text );
3516 return $this->checkUnicodeCompliantBrowser()
3517 ? $codedText
3518 : $this->makesafe( $codedText );
3519 }
3520
3521 /**
3522 * A number of web browsers are known to corrupt non-ASCII characters
3523 * in a UTF-8 text editing environment. To protect against this,
3524 * detected browsers will be served an armored version of the text,
3525 * with non-ASCII chars converted to numeric HTML character references.
3526 *
3527 * Preexisting such character references will have a 0 added to them
3528 * to ensure that round-trips do not alter the original data.
3529 *
3530 * @param $invalue String
3531 * @return String
3532 * @private
3533 */
3534 function makesafe( $invalue ) {
3535 // Armor existing references for reversability.
3536 $invalue = strtr( $invalue, array( "&#x" => "&#x0" ) );
3537
3538 $bytesleft = 0;
3539 $result = "";
3540 $working = 0;
3541 for ( $i = 0; $i < strlen( $invalue ); $i++ ) {
3542 $bytevalue = ord( $invalue[$i] );
3543 if ( $bytevalue <= 0x7F ) { // 0xxx xxxx
3544 $result .= chr( $bytevalue );
3545 $bytesleft = 0;
3546 } elseif ( $bytevalue <= 0xBF ) { // 10xx xxxx
3547 $working = $working << 6;
3548 $working += ( $bytevalue & 0x3F );
3549 $bytesleft--;
3550 if ( $bytesleft <= 0 ) {
3551 $result .= "&#x" . strtoupper( dechex( $working ) ) . ";";
3552 }
3553 } elseif ( $bytevalue <= 0xDF ) { // 110x xxxx
3554 $working = $bytevalue & 0x1F;
3555 $bytesleft = 1;
3556 } elseif ( $bytevalue <= 0xEF ) { // 1110 xxxx
3557 $working = $bytevalue & 0x0F;
3558 $bytesleft = 2;
3559 } else { // 1111 0xxx
3560 $working = $bytevalue & 0x07;
3561 $bytesleft = 3;
3562 }
3563 }
3564 return $result;
3565 }
3566
3567 /**
3568 * Reverse the previously applied transliteration of non-ASCII characters
3569 * back to UTF-8. Used to protect data from corruption by broken web browsers
3570 * as listed in $wgBrowserBlackList.
3571 *
3572 * @param $invalue String
3573 * @return String
3574 * @private
3575 */
3576 function unmakesafe( $invalue ) {
3577 $result = "";
3578 for ( $i = 0; $i < strlen( $invalue ); $i++ ) {
3579 if ( ( substr( $invalue, $i, 3 ) == "&#x" ) && ( $invalue[$i + 3] != '0' ) ) {
3580 $i += 3;
3581 $hexstring = "";
3582 do {
3583 $hexstring .= $invalue[$i];
3584 $i++;
3585 } while ( ctype_xdigit( $invalue[$i] ) && ( $i < strlen( $invalue ) ) );
3586
3587 // Do some sanity checks. These aren't needed for reversability,
3588 // but should help keep the breakage down if the editor
3589 // breaks one of the entities whilst editing.
3590 if ( ( substr( $invalue, $i, 1 ) == ";" ) and ( strlen( $hexstring ) <= 6 ) ) {
3591 $codepoint = hexdec( $hexstring );
3592 $result .= codepointToUtf8( $codepoint );
3593 } else {
3594 $result .= "&#x" . $hexstring . substr( $invalue, $i, 1 );
3595 }
3596 } else {
3597 $result .= substr( $invalue, $i, 1 );
3598 }
3599 }
3600 // reverse the transform that we made for reversability reasons.
3601 return strtr( $result, array( "&#x0" => "&#x" ) );
3602 }
3603 }