Add blanket support for mediawiki ui via globals
[lhc/web/wiklou.git] / includes / htmlform / HTMLForm.php
1 <?php
2
3 /**
4 * HTML form generation and submission handling.
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License along
17 * with this program; if not, write to the Free Software Foundation, Inc.,
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
19 * http://www.gnu.org/copyleft/gpl.html
20 *
21 * @file
22 */
23
24 /**
25 * Object handling generic submission, CSRF protection, layout and
26 * other logic for UI forms. in a reusable manner.
27 *
28 * In order to generate the form, the HTMLForm object takes an array
29 * structure detailing the form fields available. Each element of the
30 * array is a basic property-list, including the type of field, the
31 * label it is to be given in the form, callbacks for validation and
32 * 'filtering', and other pertinent information.
33 *
34 * Field types are implemented as subclasses of the generic HTMLFormField
35 * object, and typically implement at least getInputHTML, which generates
36 * the HTML for the input field to be placed in the table.
37 *
38 * You can find extensive documentation on the www.mediawiki.org wiki:
39 * - https://www.mediawiki.org/wiki/HTMLForm
40 * - https://www.mediawiki.org/wiki/HTMLForm/tutorial
41 *
42 * The constructor input is an associative array of $fieldname => $info,
43 * where $info is an Associative Array with any of the following:
44 *
45 * 'class' -- the subclass of HTMLFormField that will be used
46 * to create the object. *NOT* the CSS class!
47 * 'type' -- roughly translates into the <select> type attribute.
48 * if 'class' is not specified, this is used as a map
49 * through HTMLForm::$typeMappings to get the class name.
50 * 'default' -- default value when the form is displayed
51 * 'id' -- HTML id attribute
52 * 'cssclass' -- CSS class
53 * 'csshelpclass' -- CSS class used to style help text
54 * 'options' -- associative array mapping labels to values.
55 * Some field types support multi-level arrays.
56 * 'options-messages' -- associative array mapping message keys to values.
57 * Some field types support multi-level arrays.
58 * 'options-message' -- message key to be parsed to extract the list of
59 * options (like 'ipbreason-dropdown').
60 * 'label-message' -- message key for a message to use as the label.
61 * can be an array of msg key and then parameters to
62 * the message.
63 * 'label' -- alternatively, a raw text message. Overridden by
64 * label-message
65 * 'help' -- message text for a message to use as a help text.
66 * 'help-message' -- message key for a message to use as a help text.
67 * can be an array of msg key and then parameters to
68 * the message.
69 * Overwrites 'help-messages' and 'help'.
70 * 'help-messages' -- array of message key. As above, each item can
71 * be an array of msg key and then parameters.
72 * Overwrites 'help'.
73 * 'required' -- passed through to the object, indicating that it
74 * is a required field.
75 * 'size' -- the length of text fields
76 * 'filter-callback -- a function name to give you the chance to
77 * massage the inputted value before it's processed.
78 * @see HTMLForm::filter()
79 * 'validation-callback' -- a function name to give you the chance
80 * to impose extra validation on the field input.
81 * @see HTMLForm::validate()
82 * 'name' -- By default, the 'name' attribute of the input field
83 * is "wp{$fieldname}". If you want a different name
84 * (eg one without the "wp" prefix), specify it here and
85 * it will be used without modification.
86 *
87 * Since 1.20, you can chain mutators to ease the form generation:
88 * @par Example:
89 * @code
90 * $form = new HTMLForm( $someFields );
91 * $form->setMethod( 'get' )
92 * ->setWrapperLegendMsg( 'message-key' )
93 * ->prepareForm()
94 * ->displayForm( '' );
95 * @endcode
96 * Note that you will have prepareForm and displayForm at the end. Other
97 * methods call done after that would simply not be part of the form :(
98 *
99 * @todo Document 'section' / 'subsection' stuff
100 */
101 class HTMLForm extends ContextSource {
102 // A mapping of 'type' inputs onto standard HTMLFormField subclasses
103 public static $typeMappings = array(
104 'api' => 'HTMLApiField',
105 'text' => 'HTMLTextField',
106 'textarea' => 'HTMLTextAreaField',
107 'select' => 'HTMLSelectField',
108 'radio' => 'HTMLRadioField',
109 'multiselect' => 'HTMLMultiSelectField',
110 'check' => 'HTMLCheckField',
111 'toggle' => 'HTMLCheckField',
112 'int' => 'HTMLIntField',
113 'float' => 'HTMLFloatField',
114 'info' => 'HTMLInfoField',
115 'selectorother' => 'HTMLSelectOrOtherField',
116 'selectandother' => 'HTMLSelectAndOtherField',
117 'submit' => 'HTMLSubmitField',
118 'hidden' => 'HTMLHiddenField',
119 'edittools' => 'HTMLEditTools',
120 'checkmatrix' => 'HTMLCheckMatrix',
121 'cloner' => 'HTMLFormFieldCloner',
122 // HTMLTextField will output the correct type="" attribute automagically.
123 // There are about four zillion other HTML5 input types, like range, but
124 // we don't use those at the moment, so no point in adding all of them.
125 'email' => 'HTMLTextField',
126 'password' => 'HTMLTextField',
127 'url' => 'HTMLTextField',
128 );
129
130 public $mFieldData;
131
132 protected $mMessagePrefix;
133
134 /** @var HTMLFormField[] */
135 protected $mFlatFields;
136
137 protected $mFieldTree;
138 protected $mShowReset = false;
139 protected $mShowSubmit = true;
140
141 protected $mSubmitCallback;
142 protected $mValidationErrorMessage;
143
144 protected $mPre = '';
145 protected $mHeader = '';
146 protected $mFooter = '';
147 protected $mSectionHeaders = array();
148 protected $mSectionFooters = array();
149 protected $mPost = '';
150 protected $mId;
151 protected $mTableId = '';
152
153 protected $mSubmitID;
154 protected $mSubmitName;
155 protected $mSubmitText;
156 protected $mSubmitTooltip;
157
158 protected $mTitle;
159 protected $mMethod = 'post';
160 protected $mWasSubmitted = false;
161
162 /**
163 * Form action URL. false means we will use the URL to set Title
164 * @since 1.19
165 * @var bool|string
166 */
167 protected $mAction = false;
168
169 protected $mUseMultipart = false;
170 protected $mHiddenFields = array();
171 protected $mButtons = array();
172
173 protected $mWrapperLegend = false;
174
175 /**
176 * Salt for the edit token.
177 * @var string|array
178 */
179 protected $mTokenSalt = '';
180
181 /**
182 * If true, sections that contain both fields and subsections will
183 * render their subsections before their fields.
184 *
185 * Subclasses may set this to false to render subsections after fields
186 * instead.
187 */
188 protected $mSubSectionBeforeFields = true;
189
190 /**
191 * Format in which to display form. For viable options,
192 * @see $availableDisplayFormats
193 * @var string
194 */
195 protected $displayFormat = 'table';
196
197 /**
198 * Available formats in which to display the form
199 * @var array
200 */
201 protected $availableDisplayFormats = array(
202 'table',
203 'div',
204 'raw',
205 'vform',
206 );
207
208 /**
209 * Build a new HTMLForm from an array of field attributes
210 *
211 * @param array $descriptor Array of Field constructs, as described above
212 * @param IContextSource $context Available since 1.18, will become compulsory in 1.18.
213 * Obviates the need to call $form->setTitle()
214 * @param string $messagePrefix A prefix to go in front of default messages
215 */
216 public function __construct( $descriptor, /*IContextSource*/ $context = null,
217 $messagePrefix = ''
218 ) {
219 if ( $context instanceof IContextSource ) {
220 $this->setContext( $context );
221 $this->mTitle = false; // We don't need them to set a title
222 $this->mMessagePrefix = $messagePrefix;
223 } elseif ( is_null( $context ) && $messagePrefix !== '' ) {
224 $this->mMessagePrefix = $messagePrefix;
225 } elseif ( is_string( $context ) && $messagePrefix === '' ) {
226 // B/C since 1.18
227 // it's actually $messagePrefix
228 $this->mMessagePrefix = $context;
229 }
230
231 // Expand out into a tree.
232 $loadedDescriptor = array();
233 $this->mFlatFields = array();
234
235 foreach ( $descriptor as $fieldname => $info ) {
236 $section = isset( $info['section'] )
237 ? $info['section']
238 : '';
239
240 if ( isset( $info['type'] ) && $info['type'] == 'file' ) {
241 $this->mUseMultipart = true;
242 }
243
244 $field = self::loadInputFromParameters( $fieldname, $info );
245 // FIXME During field's construct, the parent form isn't available!
246 // could add a 'parent' name-value to $info, could add a third parameter.
247 $field->mParent = $this;
248
249 // vform gets too much space if empty labels generate HTML.
250 if ( $this->isVForm() ) {
251 $field->setShowEmptyLabel( false );
252 }
253
254 $setSection =& $loadedDescriptor;
255 if ( $section ) {
256 $sectionParts = explode( '/', $section );
257
258 while ( count( $sectionParts ) ) {
259 $newName = array_shift( $sectionParts );
260
261 if ( !isset( $setSection[$newName] ) ) {
262 $setSection[$newName] = array();
263 }
264
265 $setSection =& $setSection[$newName];
266 }
267 }
268
269 $setSection[$fieldname] = $field;
270 $this->mFlatFields[$fieldname] = $field;
271 }
272
273 $this->mFieldTree = $loadedDescriptor;
274 }
275
276 /**
277 * Set format in which to display the form
278 *
279 * @param string $format The name of the format to use, must be one of
280 * $this->availableDisplayFormats
281 *
282 * @throws MWException
283 * @since 1.20
284 * @return HTMLForm $this for chaining calls (since 1.20)
285 */
286 public function setDisplayFormat( $format ) {
287 if ( !in_array( $format, $this->availableDisplayFormats ) ) {
288 throw new MWException( 'Display format must be one of ' .
289 print_r( $this->availableDisplayFormats, true ) );
290 }
291 $this->displayFormat = $format;
292
293 return $this;
294 }
295
296 /**
297 * Getter for displayFormat
298 * @since 1.20
299 * @return string
300 */
301 public function getDisplayFormat() {
302 global $wgHTMLFormAllowTableFormat;
303 $format = $this->displayFormat;
304 if ( !$wgHTMLFormAllowTableFormat && $format === 'table' ) {
305 $format = 'div';
306 }
307 return $format;
308 }
309
310 /**
311 * Test if displayFormat is 'vform'
312 * @since 1.22
313 * @return bool
314 */
315 public function isVForm() {
316 return $this->displayFormat === 'vform';
317 }
318
319 /**
320 * Get the HTMLFormField subclass for this descriptor.
321 *
322 * The descriptor can be passed either 'class' which is the name of
323 * a HTMLFormField subclass, or a shorter 'type' which is an alias.
324 * This makes sure the 'class' is always set, and also is returned by
325 * this function for ease.
326 *
327 * @since 1.23
328 *
329 * @param string $fieldname Name of the field
330 * @param array $descriptor Input Descriptor, as described above
331 *
332 * @throws MWException
333 * @return string Name of a HTMLFormField subclass
334 */
335 public static function getClassFromDescriptor( $fieldname, &$descriptor ) {
336 if ( isset( $descriptor['class'] ) ) {
337 $class = $descriptor['class'];
338 } elseif ( isset( $descriptor['type'] ) ) {
339 $class = self::$typeMappings[$descriptor['type']];
340 $descriptor['class'] = $class;
341 } else {
342 $class = null;
343 }
344
345 if ( !$class ) {
346 throw new MWException( "Descriptor with no class for $fieldname: "
347 . print_r( $descriptor, true ) );
348 }
349
350 return $class;
351 }
352
353 /**
354 * Initialise a new Object for the field
355 *
356 * @param string $fieldname Name of the field
357 * @param array $descriptor Input Descriptor, as described above
358 *
359 * @throws MWException
360 * @return HTMLFormField Instance of a subclass of HTMLFormField
361 */
362 public static function loadInputFromParameters( $fieldname, $descriptor ) {
363 $class = self::getClassFromDescriptor( $fieldname, $descriptor );
364
365 $descriptor['fieldname'] = $fieldname;
366
367 # @todo This will throw a fatal error whenever someone try to use
368 # 'class' to feed a CSS class instead of 'cssclass'. Would be
369 # great to avoid the fatal error and show a nice error.
370 $obj = new $class( $descriptor );
371
372 return $obj;
373 }
374
375 /**
376 * Prepare form for submission.
377 *
378 * @attention When doing method chaining, that should be the very last
379 * method call before displayForm().
380 *
381 * @throws MWException
382 * @return HTMLForm $this for chaining calls (since 1.20)
383 */
384 function prepareForm() {
385 # Check if we have the info we need
386 if ( !$this->mTitle instanceof Title && $this->mTitle !== false ) {
387 throw new MWException( "You must call setTitle() on an HTMLForm" );
388 }
389
390 # Load data from the request.
391 $this->loadData();
392
393 return $this;
394 }
395
396 /**
397 * Try submitting, with edit token check first
398 * @return Status|bool
399 */
400 function tryAuthorizedSubmit() {
401 $result = false;
402
403 $submit = false;
404 if ( $this->getMethod() != 'post' ) {
405 $submit = true; // no session check needed
406 } elseif ( $this->getRequest()->wasPosted() ) {
407 $editToken = $this->getRequest()->getVal( 'wpEditToken' );
408 if ( $this->getUser()->isLoggedIn() || $editToken != null ) {
409 // Session tokens for logged-out users have no security value.
410 // However, if the user gave one, check it in order to give a nice
411 // "session expired" error instead of "permission denied" or such.
412 $submit = $this->getUser()->matchEditToken( $editToken, $this->mTokenSalt );
413 } else {
414 $submit = true;
415 }
416 }
417
418 if ( $submit ) {
419 $this->mWasSubmitted = true;
420 $result = $this->trySubmit();
421 }
422
423 return $result;
424 }
425
426 /**
427 * The here's-one-I-made-earlier option: do the submission if
428 * posted, or display the form with or without funky validation
429 * errors
430 * @return bool|Status Whether submission was successful.
431 */
432 function show() {
433 $this->prepareForm();
434
435 $result = $this->tryAuthorizedSubmit();
436 if ( $result === true || ( $result instanceof Status && $result->isGood() ) ) {
437 return $result;
438 }
439
440 $this->displayForm( $result );
441
442 return false;
443 }
444
445 /**
446 * Validate all the fields, and call the submission callback
447 * function if everything is kosher.
448 * @throws MWException
449 * @return bool|string|array|Status
450 * - Bool true or a good Status object indicates success,
451 * - Bool false indicates no submission was attempted,
452 * - Anything else indicates failure. The value may be a fatal Status
453 * object, an HTML string, or an array of arrays (message keys and
454 * params) or strings (message keys)
455 */
456 function trySubmit() {
457 $this->mWasSubmitted = true;
458
459 # Check for cancelled submission
460 foreach ( $this->mFlatFields as $fieldname => $field ) {
461 if ( !empty( $field->mParams['nodata'] ) ) {
462 continue;
463 }
464 if ( $field->cancelSubmit( $this->mFieldData[$fieldname], $this->mFieldData ) ) {
465 $this->mWasSubmitted = false;
466 return false;
467 }
468 }
469
470 # Check for validation
471 foreach ( $this->mFlatFields as $fieldname => $field ) {
472 if ( !empty( $field->mParams['nodata'] ) ) {
473 continue;
474 }
475 if ( $field->validate(
476 $this->mFieldData[$fieldname],
477 $this->mFieldData )
478 !== true
479 ) {
480 return isset( $this->mValidationErrorMessage )
481 ? $this->mValidationErrorMessage
482 : array( 'htmlform-invalid-input' );
483 }
484 }
485
486 $callback = $this->mSubmitCallback;
487 if ( !is_callable( $callback ) ) {
488 throw new MWException( 'HTMLForm: no submit callback provided. Use ' .
489 'setSubmitCallback() to set one.' );
490 }
491
492 $data = $this->filterDataForSubmit( $this->mFieldData );
493
494 $res = call_user_func( $callback, $data, $this );
495 if ( $res === false ) {
496 $this->mWasSubmitted = false;
497 }
498
499 return $res;
500 }
501
502 /**
503 * Test whether the form was considered to have been submitted or not, i.e.
504 * whether the last call to tryAuthorizedSubmit or trySubmit returned
505 * non-false.
506 *
507 * This will return false until HTMLForm::tryAuthorizedSubmit or
508 * HTMLForm::trySubmit is called.
509 *
510 * @since 1.23
511 * @return bool
512 */
513 function wasSubmitted() {
514 return $this->mWasSubmitted;
515 }
516
517 /**
518 * Set a callback to a function to do something with the form
519 * once it's been successfully validated.
520 *
521 * @param callable $cb The function will be passed the output from
522 * HTMLForm::filterDataForSubmit and this HTMLForm object, and must
523 * return as documented for HTMLForm::trySubmit
524 *
525 * @return HTMLForm $this for chaining calls (since 1.20)
526 */
527 function setSubmitCallback( $cb ) {
528 $this->mSubmitCallback = $cb;
529
530 return $this;
531 }
532
533 /**
534 * Set a message to display on a validation error.
535 *
536 * @param string|array $msg String or Array of valid inputs to wfMessage()
537 * (so each entry can be either a String or Array)
538 *
539 * @return HTMLForm $this for chaining calls (since 1.20)
540 */
541 function setValidationErrorMessage( $msg ) {
542 $this->mValidationErrorMessage = $msg;
543
544 return $this;
545 }
546
547 /**
548 * Set the introductory message, overwriting any existing message.
549 *
550 * @param string $msg Complete text of message to display
551 *
552 * @return HTMLForm $this for chaining calls (since 1.20)
553 */
554 function setIntro( $msg ) {
555 $this->setPreText( $msg );
556
557 return $this;
558 }
559
560 /**
561 * Set the introductory message, overwriting any existing message.
562 * @since 1.19
563 *
564 * @param string $msg Complete text of message to display
565 *
566 * @return HTMLForm $this for chaining calls (since 1.20)
567 */
568 function setPreText( $msg ) {
569 $this->mPre = $msg;
570
571 return $this;
572 }
573
574 /**
575 * Add introductory text.
576 *
577 * @param string $msg Complete text of message to display
578 *
579 * @return HTMLForm $this for chaining calls (since 1.20)
580 */
581 function addPreText( $msg ) {
582 $this->mPre .= $msg;
583
584 return $this;
585 }
586
587 /**
588 * Add header text, inside the form.
589 *
590 * @param string $msg Complete text of message to display
591 * @param string|null $section The section to add the header to
592 *
593 * @return HTMLForm $this for chaining calls (since 1.20)
594 */
595 function addHeaderText( $msg, $section = null ) {
596 if ( is_null( $section ) ) {
597 $this->mHeader .= $msg;
598 } else {
599 if ( !isset( $this->mSectionHeaders[$section] ) ) {
600 $this->mSectionHeaders[$section] = '';
601 }
602 $this->mSectionHeaders[$section] .= $msg;
603 }
604
605 return $this;
606 }
607
608 /**
609 * Set header text, inside the form.
610 * @since 1.19
611 *
612 * @param string $msg Complete text of message to display
613 * @param string|null $section The section to add the header to
614 *
615 * @return HTMLForm $this for chaining calls (since 1.20)
616 */
617 function setHeaderText( $msg, $section = null ) {
618 if ( is_null( $section ) ) {
619 $this->mHeader = $msg;
620 } else {
621 $this->mSectionHeaders[$section] = $msg;
622 }
623
624 return $this;
625 }
626
627 /**
628 * Add footer text, inside the form.
629 *
630 * @param string $msg Complete text of message to display
631 * @param string|null $section The section to add the footer text to
632 *
633 * @return HTMLForm $this for chaining calls (since 1.20)
634 */
635 function addFooterText( $msg, $section = null ) {
636 if ( is_null( $section ) ) {
637 $this->mFooter .= $msg;
638 } else {
639 if ( !isset( $this->mSectionFooters[$section] ) ) {
640 $this->mSectionFooters[$section] = '';
641 }
642 $this->mSectionFooters[$section] .= $msg;
643 }
644
645 return $this;
646 }
647
648 /**
649 * Set footer text, inside the form.
650 * @since 1.19
651 *
652 * @param string $msg Complete text of message to display
653 * @param string|null $section The section to add the footer text to
654 *
655 * @return HTMLForm $this for chaining calls (since 1.20)
656 */
657 function setFooterText( $msg, $section = null ) {
658 if ( is_null( $section ) ) {
659 $this->mFooter = $msg;
660 } else {
661 $this->mSectionFooters[$section] = $msg;
662 }
663
664 return $this;
665 }
666
667 /**
668 * Add text to the end of the display.
669 *
670 * @param string $msg Complete text of message to display
671 *
672 * @return HTMLForm $this for chaining calls (since 1.20)
673 */
674 function addPostText( $msg ) {
675 $this->mPost .= $msg;
676
677 return $this;
678 }
679
680 /**
681 * Set text at the end of the display.
682 *
683 * @param string $msg Complete text of message to display
684 *
685 * @return HTMLForm $this for chaining calls (since 1.20)
686 */
687 function setPostText( $msg ) {
688 $this->mPost = $msg;
689
690 return $this;
691 }
692
693 /**
694 * Add a hidden field to the output
695 *
696 * @param string $name Field name. This will be used exactly as entered
697 * @param string $value Field value
698 * @param array $attribs
699 *
700 * @return HTMLForm $this for chaining calls (since 1.20)
701 */
702 public function addHiddenField( $name, $value, $attribs = array() ) {
703 $attribs += array( 'name' => $name );
704 $this->mHiddenFields[] = array( $value, $attribs );
705
706 return $this;
707 }
708
709 /**
710 * Add an array of hidden fields to the output
711 *
712 * @since 1.22
713 *
714 * @param array $fields Associative array of fields to add;
715 * mapping names to their values
716 *
717 * @return HTMLForm $this for chaining calls
718 */
719 public function addHiddenFields( array $fields ) {
720 foreach ( $fields as $name => $value ) {
721 $this->mHiddenFields[] = array( $value, array( 'name' => $name ) );
722 }
723
724 return $this;
725 }
726
727 /**
728 * Add a button to the form
729 *
730 * @param string $name Field name.
731 * @param string $value Field value
732 * @param string $id DOM id for the button (default: null)
733 * @param array $attribs
734 *
735 * @return HTMLForm $this for chaining calls (since 1.20)
736 */
737 public function addButton( $name, $value, $id = null, $attribs = null ) {
738 $this->mButtons[] = compact( 'name', 'value', 'id', 'attribs' );
739
740 return $this;
741 }
742
743 /**
744 * Set the salt for the edit token.
745 *
746 * Only useful when the method is "post".
747 *
748 * @since 1.24
749 * @param string|array $salt Salt to use
750 * @return HTMLForm $this For chaining calls
751 */
752 public function setTokenSalt( $salt ) {
753 $this->mTokenSalt = $salt;
754
755 return $this;
756 }
757
758 /**
759 * Display the form (sending to the context's OutputPage object), with an
760 * appropriate error message or stack of messages, and any validation errors, etc.
761 *
762 * @attention You should call prepareForm() before calling this function.
763 * Moreover, when doing method chaining this should be the very last method
764 * call just after prepareForm().
765 *
766 * @param bool|string|array|Status $submitResult Output from HTMLForm::trySubmit()
767 *
768 * @return void Nothing, should be last call
769 */
770 function displayForm( $submitResult ) {
771 $this->getOutput()->addHTML( $this->getHTML( $submitResult ) );
772 }
773
774 /**
775 * Returns the raw HTML generated by the form
776 *
777 * @param bool|string|array|Status $submitResult Output from HTMLForm::trySubmit()
778 *
779 * @return string
780 */
781 function getHTML( $submitResult ) {
782 # For good measure (it is the default)
783 $this->getOutput()->preventClickjacking();
784 $this->getOutput()->addModules( 'mediawiki.htmlform' );
785 if ( $this->isVForm() ) {
786 $this->getOutput()->addModuleStyles( array(
787 'mediawiki.ui',
788 'mediawiki.ui.button',
789 ) );
790 // @todo Should vertical form set setWrapperLegend( false )
791 // to hide ugly fieldsets?
792 }
793
794 $html = ''
795 . $this->getErrors( $submitResult )
796 . $this->mHeader
797 . $this->getBody()
798 . $this->getHiddenFields()
799 . $this->getButtons()
800 . $this->mFooter;
801
802 $html = $this->wrapForm( $html );
803
804 return '' . $this->mPre . $html . $this->mPost;
805 }
806
807 /**
808 * Wrap the form innards in an actual "<form>" element
809 *
810 * @param string $html HTML contents to wrap.
811 *
812 * @return string Wrapped HTML.
813 */
814 function wrapForm( $html ) {
815
816 # Include a <fieldset> wrapper for style, if requested.
817 if ( $this->mWrapperLegend !== false ) {
818 $html = Xml::fieldset( $this->mWrapperLegend, $html );
819 }
820 # Use multipart/form-data
821 $encType = $this->mUseMultipart
822 ? 'multipart/form-data'
823 : 'application/x-www-form-urlencoded';
824 # Attributes
825 $attribs = array(
826 'action' => $this->getAction(),
827 'method' => $this->getMethod(),
828 'class' => array( 'visualClear' ),
829 'enctype' => $encType,
830 );
831 if ( !empty( $this->mId ) ) {
832 $attribs['id'] = $this->mId;
833 }
834
835 if ( $this->isVForm() ) {
836 array_push( $attribs['class'], 'mw-ui-vform', 'mw-ui-container' );
837 }
838
839 return Html::rawElement( 'form', $attribs, $html );
840 }
841
842 /**
843 * Get the hidden fields that should go inside the form.
844 * @return string HTML.
845 */
846 function getHiddenFields() {
847 global $wgArticlePath;
848
849 $html = '';
850 if ( $this->getMethod() == 'post' ) {
851 $html .= Html::hidden(
852 'wpEditToken',
853 $this->getUser()->getEditToken( $this->mTokenSalt ),
854 array( 'id' => 'wpEditToken' )
855 ) . "\n";
856 $html .= Html::hidden( 'title', $this->getTitle()->getPrefixedText() ) . "\n";
857 }
858
859 if ( strpos( $wgArticlePath, '?' ) !== false && $this->getMethod() == 'get' ) {
860 $html .= Html::hidden( 'title', $this->getTitle()->getPrefixedText() ) . "\n";
861 }
862
863 foreach ( $this->mHiddenFields as $data ) {
864 list( $value, $attribs ) = $data;
865 $html .= Html::hidden( $attribs['name'], $value, $attribs ) . "\n";
866 }
867
868 return $html;
869 }
870
871 /**
872 * Get the submit and (potentially) reset buttons.
873 * @return string HTML.
874 */
875 function getButtons() {
876 global $wgUseMediaWikiUIEverywhere;
877 $buttons = '';
878
879 if ( $this->mShowSubmit ) {
880 $attribs = array();
881
882 if ( isset( $this->mSubmitID ) ) {
883 $attribs['id'] = $this->mSubmitID;
884 }
885
886 if ( isset( $this->mSubmitName ) ) {
887 $attribs['name'] = $this->mSubmitName;
888 }
889
890 if ( isset( $this->mSubmitTooltip ) ) {
891 $attribs += Linker::tooltipAndAccesskeyAttribs( $this->mSubmitTooltip );
892 }
893
894 $attribs['class'] = array( 'mw-htmlform-submit' );
895
896 if ( $this->isVForm() || $wgUseMediaWikiUIEverywhere ) {
897 array_push( $attribs['class'], 'mw-ui-button', 'mw-ui-constructive' );
898 }
899
900 if ( $this->isVForm() ) {
901 // mw-ui-block is necessary because the buttons aren't necessarily in an
902 // immediate child div of the vform.
903 // @todo Let client specify if the primary submit button is progressive or destructive
904 array_push(
905 $attribs['class'],
906 'mw-ui-big',
907 'mw-ui-block'
908 );
909 }
910
911 $buttons .= Xml::submitButton( $this->getSubmitText(), $attribs ) . "\n";
912 }
913
914 if ( $this->mShowReset ) {
915 $buttons .= Html::element(
916 'input',
917 array(
918 'type' => 'reset',
919 'value' => $this->msg( 'htmlform-reset' )->text()
920 )
921 ) . "\n";
922 }
923
924 foreach ( $this->mButtons as $button ) {
925 $attrs = array(
926 'type' => 'submit',
927 'name' => $button['name'],
928 'value' => $button['value']
929 );
930
931 if ( $button['attribs'] ) {
932 $attrs += $button['attribs'];
933 }
934
935 if ( isset( $button['id'] ) ) {
936 $attrs['id'] = $button['id'];
937 }
938
939 if ( $wgUseMediaWikiUIEverywhere ) {
940 if ( isset( $attrs['class' ] ) ) {
941 $attrs['class'] .= ' mw-ui-button';
942 } else {
943 $attrs['class'] = 'mw-ui-button';
944 }
945 }
946
947 $buttons .= Html::element( 'input', $attrs ) . "\n";
948 }
949
950 $html = Html::rawElement( 'span',
951 array( 'class' => 'mw-htmlform-submit-buttons' ), "\n$buttons" ) . "\n";
952
953 // Buttons are top-level form elements in table and div layouts,
954 // but vform wants all elements inside divs to get spaced-out block
955 // styling.
956 if ( $this->mShowSubmit && $this->isVForm() ) {
957 $html = Html::rawElement( 'div', null, "\n$html" ) . "\n";
958 }
959
960 return $html;
961 }
962
963 /**
964 * Get the whole body of the form.
965 * @return string
966 */
967 function getBody() {
968 return $this->displaySection( $this->mFieldTree, $this->mTableId );
969 }
970
971 /**
972 * Format and display an error message stack.
973 *
974 * @param string|array|Status $errors
975 *
976 * @return string
977 */
978 function getErrors( $errors ) {
979 if ( $errors instanceof Status ) {
980 if ( $errors->isOK() ) {
981 $errorstr = '';
982 } else {
983 $errorstr = $this->getOutput()->parse( $errors->getWikiText() );
984 }
985 } elseif ( is_array( $errors ) ) {
986 $errorstr = $this->formatErrors( $errors );
987 } else {
988 $errorstr = $errors;
989 }
990
991 return $errorstr
992 ? Html::rawElement( 'div', array( 'class' => 'error' ), $errorstr )
993 : '';
994 }
995
996 /**
997 * Format a stack of error messages into a single HTML string
998 *
999 * @param array $errors Array of message keys/values
1000 *
1001 * @return string HTML, a "<ul>" list of errors
1002 */
1003 public static function formatErrors( $errors ) {
1004 $errorstr = '';
1005
1006 foreach ( $errors as $error ) {
1007 if ( is_array( $error ) ) {
1008 $msg = array_shift( $error );
1009 } else {
1010 $msg = $error;
1011 $error = array();
1012 }
1013
1014 $errorstr .= Html::rawElement(
1015 'li',
1016 array(),
1017 wfMessage( $msg, $error )->parse()
1018 );
1019 }
1020
1021 $errorstr = Html::rawElement( 'ul', array(), $errorstr );
1022
1023 return $errorstr;
1024 }
1025
1026 /**
1027 * Set the text for the submit button
1028 *
1029 * @param string $t Plaintext
1030 *
1031 * @return HTMLForm $this for chaining calls (since 1.20)
1032 */
1033 function setSubmitText( $t ) {
1034 $this->mSubmitText = $t;
1035
1036 return $this;
1037 }
1038
1039 /**
1040 * Set the text for the submit button to a message
1041 * @since 1.19
1042 *
1043 * @param string|Message $msg Message key or Message object
1044 *
1045 * @return HTMLForm $this for chaining calls (since 1.20)
1046 */
1047 public function setSubmitTextMsg( $msg ) {
1048 if ( !$msg instanceof Message ) {
1049 $msg = $this->msg( $msg );
1050 }
1051 $this->setSubmitText( $msg->text() );
1052
1053 return $this;
1054 }
1055
1056 /**
1057 * Get the text for the submit button, either customised or a default.
1058 * @return string
1059 */
1060 function getSubmitText() {
1061 return $this->mSubmitText
1062 ? $this->mSubmitText
1063 : $this->msg( 'htmlform-submit' )->text();
1064 }
1065
1066 /**
1067 * @param string $name Submit button name
1068 *
1069 * @return HTMLForm $this for chaining calls (since 1.20)
1070 */
1071 public function setSubmitName( $name ) {
1072 $this->mSubmitName = $name;
1073
1074 return $this;
1075 }
1076
1077 /**
1078 * @param string $name Tooltip for the submit button
1079 *
1080 * @return HTMLForm $this for chaining calls (since 1.20)
1081 */
1082 public function setSubmitTooltip( $name ) {
1083 $this->mSubmitTooltip = $name;
1084
1085 return $this;
1086 }
1087
1088 /**
1089 * Set the id for the submit button.
1090 *
1091 * @param string $t
1092 *
1093 * @todo FIXME: Integrity of $t is *not* validated
1094 * @return HTMLForm $this for chaining calls (since 1.20)
1095 */
1096 function setSubmitID( $t ) {
1097 $this->mSubmitID = $t;
1098
1099 return $this;
1100 }
1101
1102 /**
1103 * Stop a default submit button being shown for this form. This implies that an
1104 * alternate submit method must be provided manually.
1105 *
1106 * @since 1.22
1107 *
1108 * @param bool $suppressSubmit Set to false to re-enable the button again
1109 *
1110 * @return HTMLForm $this for chaining calls
1111 */
1112 function suppressDefaultSubmit( $suppressSubmit = true ) {
1113 $this->mShowSubmit = !$suppressSubmit;
1114
1115 return $this;
1116 }
1117
1118 /**
1119 * Set the id of the \<table\> or outermost \<div\> element.
1120 *
1121 * @since 1.22
1122 *
1123 * @param string $id New value of the id attribute, or "" to remove
1124 *
1125 * @return HTMLForm $this for chaining calls
1126 */
1127 public function setTableId( $id ) {
1128 $this->mTableId = $id;
1129
1130 return $this;
1131 }
1132
1133 /**
1134 * @param string $id DOM id for the form
1135 *
1136 * @return HTMLForm $this for chaining calls (since 1.20)
1137 */
1138 public function setId( $id ) {
1139 $this->mId = $id;
1140
1141 return $this;
1142 }
1143
1144 /**
1145 * Prompt the whole form to be wrapped in a "<fieldset>", with
1146 * this text as its "<legend>" element.
1147 *
1148 * @param string|bool $legend HTML to go inside the "<legend>" element, or
1149 * false for no <legend>
1150 * Will be escaped
1151 *
1152 * @return HTMLForm $this for chaining calls (since 1.20)
1153 */
1154 public function setWrapperLegend( $legend ) {
1155 $this->mWrapperLegend = $legend;
1156
1157 return $this;
1158 }
1159
1160 /**
1161 * Prompt the whole form to be wrapped in a "<fieldset>", with
1162 * this message as its "<legend>" element.
1163 * @since 1.19
1164 *
1165 * @param string|Message $msg Message key or Message object
1166 *
1167 * @return HTMLForm $this for chaining calls (since 1.20)
1168 */
1169 public function setWrapperLegendMsg( $msg ) {
1170 if ( !$msg instanceof Message ) {
1171 $msg = $this->msg( $msg );
1172 }
1173 $this->setWrapperLegend( $msg->text() );
1174
1175 return $this;
1176 }
1177
1178 /**
1179 * Set the prefix for various default messages
1180 * @todo Currently only used for the "<fieldset>" legend on forms
1181 * with multiple sections; should be used elsewhere?
1182 *
1183 * @param string $p
1184 *
1185 * @return HTMLForm $this for chaining calls (since 1.20)
1186 */
1187 function setMessagePrefix( $p ) {
1188 $this->mMessagePrefix = $p;
1189
1190 return $this;
1191 }
1192
1193 /**
1194 * Set the title for form submission
1195 *
1196 * @param Title $t Title of page the form is on/should be posted to
1197 *
1198 * @return HTMLForm $this for chaining calls (since 1.20)
1199 */
1200 function setTitle( $t ) {
1201 $this->mTitle = $t;
1202
1203 return $this;
1204 }
1205
1206 /**
1207 * Get the title
1208 * @return Title
1209 */
1210 function getTitle() {
1211 return $this->mTitle === false
1212 ? $this->getContext()->getTitle()
1213 : $this->mTitle;
1214 }
1215
1216 /**
1217 * Set the method used to submit the form
1218 *
1219 * @param string $method
1220 *
1221 * @return HTMLForm $this for chaining calls (since 1.20)
1222 */
1223 public function setMethod( $method = 'post' ) {
1224 $this->mMethod = $method;
1225
1226 return $this;
1227 }
1228
1229 public function getMethod() {
1230 return $this->mMethod;
1231 }
1232
1233 /**
1234 * @todo Document
1235 *
1236 * @param array[]|HTMLFormField[] $fields Array of fields (either arrays or
1237 * objects).
1238 * @param string $sectionName ID attribute of the "<table>" tag for this
1239 * section, ignored if empty.
1240 * @param string $fieldsetIDPrefix ID prefix for the "<fieldset>" tag of
1241 * each subsection, ignored if empty.
1242 * @param bool &$hasUserVisibleFields Whether the section had user-visible fields.
1243 *
1244 * @return string
1245 */
1246 public function displaySection( $fields,
1247 $sectionName = '',
1248 $fieldsetIDPrefix = '',
1249 &$hasUserVisibleFields = false ) {
1250 $displayFormat = $this->getDisplayFormat();
1251
1252 $html = '';
1253 $subsectionHtml = '';
1254 $hasLabel = false;
1255
1256 switch ( $displayFormat ) {
1257 case 'table':
1258 $getFieldHtmlMethod = 'getTableRow';
1259 break;
1260 case 'vform':
1261 // Close enough to a div.
1262 $getFieldHtmlMethod = 'getDiv';
1263 break;
1264 case 'div':
1265 $getFieldHtmlMethod = 'getDiv';
1266 break;
1267 default:
1268 $getFieldHtmlMethod = 'get' . ucfirst( $displayFormat );
1269 }
1270
1271 foreach ( $fields as $key => $value ) {
1272 if ( $value instanceof HTMLFormField ) {
1273 $v = empty( $value->mParams['nodata'] )
1274 ? $this->mFieldData[$key]
1275 : $value->getDefault();
1276 $html .= $value->$getFieldHtmlMethod( $v );
1277
1278 $labelValue = trim( $value->getLabel() );
1279 if ( $labelValue != '&#160;' && $labelValue !== '' ) {
1280 $hasLabel = true;
1281 }
1282
1283 if ( get_class( $value ) !== 'HTMLHiddenField' &&
1284 get_class( $value ) !== 'HTMLApiField'
1285 ) {
1286 $hasUserVisibleFields = true;
1287 }
1288 } elseif ( is_array( $value ) ) {
1289 $subsectionHasVisibleFields = false;
1290 $section =
1291 $this->displaySection( $value,
1292 "mw-htmlform-$key",
1293 "$fieldsetIDPrefix$key-",
1294 $subsectionHasVisibleFields );
1295 $legend = null;
1296
1297 if ( $subsectionHasVisibleFields === true ) {
1298 // Display the section with various niceties.
1299 $hasUserVisibleFields = true;
1300
1301 $legend = $this->getLegend( $key );
1302
1303 if ( isset( $this->mSectionHeaders[$key] ) ) {
1304 $section = $this->mSectionHeaders[$key] . $section;
1305 }
1306 if ( isset( $this->mSectionFooters[$key] ) ) {
1307 $section .= $this->mSectionFooters[$key];
1308 }
1309
1310 $attributes = array();
1311 if ( $fieldsetIDPrefix ) {
1312 $attributes['id'] = Sanitizer::escapeId( "$fieldsetIDPrefix$key" );
1313 }
1314 $subsectionHtml .= Xml::fieldset( $legend, $section, $attributes ) . "\n";
1315 } else {
1316 // Just return the inputs, nothing fancy.
1317 $subsectionHtml .= $section;
1318 }
1319 }
1320 }
1321
1322 if ( $displayFormat !== 'raw' ) {
1323 $classes = array();
1324
1325 if ( !$hasLabel ) { // Avoid strange spacing when no labels exist
1326 $classes[] = 'mw-htmlform-nolabel';
1327 }
1328
1329 $attribs = array(
1330 'class' => implode( ' ', $classes ),
1331 );
1332
1333 if ( $sectionName ) {
1334 $attribs['id'] = Sanitizer::escapeId( $sectionName );
1335 }
1336
1337 if ( $displayFormat === 'table' ) {
1338 $html = Html::rawElement( 'table',
1339 $attribs,
1340 Html::rawElement( 'tbody', array(), "\n$html\n" ) ) . "\n";
1341 } elseif ( $displayFormat === 'div' || $displayFormat === 'vform' ) {
1342 $html = Html::rawElement( 'div', $attribs, "\n$html\n" );
1343 }
1344 }
1345
1346 if ( $this->mSubSectionBeforeFields ) {
1347 return $subsectionHtml . "\n" . $html;
1348 } else {
1349 return $html . "\n" . $subsectionHtml;
1350 }
1351 }
1352
1353 /**
1354 * Construct the form fields from the Descriptor array
1355 */
1356 function loadData() {
1357 $fieldData = array();
1358
1359 foreach ( $this->mFlatFields as $fieldname => $field ) {
1360 if ( !empty( $field->mParams['nodata'] ) ) {
1361 continue;
1362 } elseif ( !empty( $field->mParams['disabled'] ) ) {
1363 $fieldData[$fieldname] = $field->getDefault();
1364 } else {
1365 $fieldData[$fieldname] = $field->loadDataFromRequest( $this->getRequest() );
1366 }
1367 }
1368
1369 # Filter data.
1370 foreach ( $fieldData as $name => &$value ) {
1371 $field = $this->mFlatFields[$name];
1372 $value = $field->filter( $value, $this->mFlatFields );
1373 }
1374
1375 $this->mFieldData = $fieldData;
1376 }
1377
1378 /**
1379 * Stop a reset button being shown for this form
1380 *
1381 * @param bool $suppressReset Set to false to re-enable the button again
1382 *
1383 * @return HTMLForm $this for chaining calls (since 1.20)
1384 */
1385 function suppressReset( $suppressReset = true ) {
1386 $this->mShowReset = !$suppressReset;
1387
1388 return $this;
1389 }
1390
1391 /**
1392 * Overload this if you want to apply special filtration routines
1393 * to the form as a whole, after it's submitted but before it's
1394 * processed.
1395 *
1396 * @param array $data
1397 *
1398 * @return array
1399 */
1400 function filterDataForSubmit( $data ) {
1401 return $data;
1402 }
1403
1404 /**
1405 * Get a string to go in the "<legend>" of a section fieldset.
1406 * Override this if you want something more complicated.
1407 *
1408 * @param string $key
1409 *
1410 * @return string
1411 */
1412 public function getLegend( $key ) {
1413 return $this->msg( "{$this->mMessagePrefix}-$key" )->text();
1414 }
1415
1416 /**
1417 * Set the value for the action attribute of the form.
1418 * When set to false (which is the default state), the set title is used.
1419 *
1420 * @since 1.19
1421 *
1422 * @param string|bool $action
1423 *
1424 * @return HTMLForm $this for chaining calls (since 1.20)
1425 */
1426 public function setAction( $action ) {
1427 $this->mAction = $action;
1428
1429 return $this;
1430 }
1431
1432 /**
1433 * Get the value for the action attribute of the form.
1434 *
1435 * @since 1.22
1436 *
1437 * @return string
1438 */
1439 public function getAction() {
1440 global $wgScript, $wgArticlePath;
1441
1442 // If an action is alredy provided, return it
1443 if ( $this->mAction !== false ) {
1444 return $this->mAction;
1445 }
1446
1447 // Check whether we are in GET mode and $wgArticlePath contains a "?"
1448 // meaning that getLocalURL() would return something like "index.php?title=...".
1449 // As browser remove the query string before submitting GET forms,
1450 // it means that the title would be lost. In such case use $wgScript instead
1451 // and put title in an hidden field (see getHiddenFields()).
1452 if ( strpos( $wgArticlePath, '?' ) !== false && $this->getMethod() === 'get' ) {
1453 return $wgScript;
1454 }
1455
1456 return $this->getTitle()->getLocalURL();
1457 }
1458 }