HTMLForm:
[lhc/web/wiklou.git] / includes / HTMLForm.php
1 <?php
2 /**
3 * Object handling generic submission, CSRF protection, layout and
4 * other logic for UI forms. in a reusable manner.
5 *
6 * In order to generate the form, the HTMLForm object takes an array
7 * structure detailing the form fields available. Each element of the
8 * array is a basic property-list, including the type of field, the
9 * label it is to be given in the form, callbacks for validation and
10 * 'filtering', and other pertinent information.
11 *
12 * Field types are implemented as subclasses of the generic HTMLFormField
13 * object, and typically implement at least getInputHTML, which generates
14 * the HTML for the input field to be placed in the table.
15 *
16 * The constructor input is an associative array of $fieldname => $info,
17 * where $info is an Associative Array with any of the following:
18 *
19 * 'class' -- the subclass of HTMLFormField that will be used
20 * to create the object. *NOT* the CSS class!
21 * 'type' -- roughly translates into the <select> type attribute.
22 * if 'class' is not specified, this is used as a map
23 * through HTMLForm::$typeMappings to get the class name.
24 * 'default' -- default value when the form is displayed
25 * 'id' -- HTML id attribute
26 * 'cssclass' -- CSS class
27 * 'options' -- varies according to the specific object.
28 * 'label-message' -- message key for a message to use as the label.
29 * can be an array of msg key and then parameters to
30 * the message.
31 * 'label' -- alternatively, a raw text message. Overridden by
32 * label-message
33 * 'help-message' -- message key for a message to use as a help text.
34 * can be an array of msg key and then parameters to
35 * the message.
36 * Overwrites 'help-messages'.
37 * 'help-messages' -- array of message key. As above, each item can
38 * be an array of msg key and then parameters.
39 * Overwrites 'help-message'.
40 * 'required' -- passed through to the object, indicating that it
41 * is a required field.
42 * 'size' -- the length of text fields
43 * 'filter-callback -- a function name to give you the chance to
44 * massage the inputted value before it's processed.
45 * @see HTMLForm::filter()
46 * 'validation-callback' -- a function name to give you the chance
47 * to impose extra validation on the field input.
48 * @see HTMLForm::validate()
49 * 'name' -- By default, the 'name' attribute of the input field
50 * is "wp{$fieldname}". If you want a different name
51 * (eg one without the "wp" prefix), specify it here and
52 * it will be used without modification.
53 *
54 * TODO: Document 'section' / 'subsection' stuff
55 */
56 class HTMLForm {
57
58 # A mapping of 'type' inputs onto standard HTMLFormField subclasses
59 static $typeMappings = array(
60 'text' => 'HTMLTextField',
61 'textarea' => 'HTMLTextAreaField',
62 'select' => 'HTMLSelectField',
63 'radio' => 'HTMLRadioField',
64 'multiselect' => 'HTMLMultiSelectField',
65 'check' => 'HTMLCheckField',
66 'toggle' => 'HTMLCheckField',
67 'int' => 'HTMLIntField',
68 'float' => 'HTMLFloatField',
69 'info' => 'HTMLInfoField',
70 'selectorother' => 'HTMLSelectOrOtherField',
71 'selectandother' => 'HTMLSelectAndOtherField',
72 'submit' => 'HTMLSubmitField',
73 'hidden' => 'HTMLHiddenField',
74 'edittools' => 'HTMLEditTools',
75
76 # HTMLTextField will output the correct type="" attribute automagically.
77 # There are about four zillion other HTML5 input types, like url, but
78 # we don't use those at the moment, so no point in adding all of them.
79 'email' => 'HTMLTextField',
80 'password' => 'HTMLTextField',
81 );
82
83 protected $mMessagePrefix;
84 protected $mFlatFields;
85 protected $mFieldTree;
86 protected $mShowReset = false;
87 public $mFieldData;
88
89 protected $mSubmitCallback;
90 protected $mValidationErrorMessage;
91
92 protected $mPre = '';
93 protected $mHeader = '';
94 protected $mFooter = '';
95 protected $mSectionHeaders = array();
96 protected $mSectionFooters = array();
97 protected $mPost = '';
98 protected $mId;
99
100 protected $mSubmitID;
101 protected $mSubmitName;
102 protected $mSubmitText;
103 protected $mSubmitTooltip;
104 protected $mTitle;
105 protected $mMethod = 'post';
106
107 protected $mUseMultipart = false;
108 protected $mHiddenFields = array();
109 protected $mButtons = array();
110
111 protected $mWrapperLegend = false;
112
113 /**
114 * Build a new HTMLForm from an array of field attributes
115 * @param $descriptor Array of Field constructs, as described above
116 * @param $messagePrefix String a prefix to go in front of default messages
117 */
118 public function __construct( $descriptor, $messagePrefix = '' ) {
119 $this->mMessagePrefix = $messagePrefix;
120
121 // Expand out into a tree.
122 $loadedDescriptor = array();
123 $this->mFlatFields = array();
124
125 foreach ( $descriptor as $fieldname => $info ) {
126 $section = isset( $info['section'] )
127 ? $info['section']
128 : '';
129
130 if ( isset( $info['type'] ) && $info['type'] == 'file' ) {
131 $this->mUseMultipart = true;
132 }
133
134 $field = self::loadInputFromParameters( $fieldname, $info );
135 $field->mParent = $this;
136
137 $setSection =& $loadedDescriptor;
138 if ( $section ) {
139 $sectionParts = explode( '/', $section );
140
141 while ( count( $sectionParts ) ) {
142 $newName = array_shift( $sectionParts );
143
144 if ( !isset( $setSection[$newName] ) ) {
145 $setSection[$newName] = array();
146 }
147
148 $setSection =& $setSection[$newName];
149 }
150 }
151
152 $setSection[$fieldname] = $field;
153 $this->mFlatFields[$fieldname] = $field;
154 }
155
156 $this->mFieldTree = $loadedDescriptor;
157 }
158
159 /**
160 * Add the HTMLForm-specific JavaScript, if it hasn't been
161 * done already.
162 * @deprecated since 1.18 load modules with ResourceLoader instead
163 */
164 static function addJS() { }
165
166 /**
167 * Initialise a new Object for the field
168 * @param $descriptor input Descriptor, as described above
169 * @return HTMLFormField subclass
170 */
171 static function loadInputFromParameters( $fieldname, $descriptor ) {
172 if ( isset( $descriptor['class'] ) ) {
173 $class = $descriptor['class'];
174 } elseif ( isset( $descriptor['type'] ) ) {
175 $class = self::$typeMappings[$descriptor['type']];
176 $descriptor['class'] = $class;
177 }
178
179 if ( !$class ) {
180 throw new MWException( "Descriptor with no class: " . print_r( $descriptor, true ) );
181 }
182
183 $descriptor['fieldname'] = $fieldname;
184
185 $obj = new $class( $descriptor );
186
187 return $obj;
188 }
189
190 /**
191 * Prepare form for submission
192 */
193 function prepareForm() {
194 # Check if we have the info we need
195 if ( ! $this->mTitle ) {
196 throw new MWException( "You must call setTitle() on an HTMLForm" );
197 }
198
199 # Load data from the request.
200 $this->loadData();
201 }
202
203 /**
204 * Try submitting, with edit token check first
205 * @return Status|boolean
206 */
207 function tryAuthorizedSubmit() {
208 global $wgUser, $wgRequest;
209 $editToken = $wgRequest->getVal( 'wpEditToken' );
210
211 $result = false;
212 if ( $this->getMethod() != 'post' || $wgUser->matchEditToken( $editToken ) ) {
213 $result = $this->trySubmit();
214 }
215 return $result;
216 }
217
218 /**
219 * The here's-one-I-made-earlier option: do the submission if
220 * posted, or display the form with or without funky valiation
221 * errors
222 * @return Bool or Status whether submission was successful.
223 */
224 function show() {
225 $this->prepareForm();
226
227 $result = $this->tryAuthorizedSubmit();
228 if ( $result === true || ( $result instanceof Status && $result->isGood() ) ){
229 return $result;
230 }
231
232 $this->displayForm( $result );
233 return false;
234 }
235
236 /**
237 * Validate all the fields, and call the submision callback
238 * function if everything is kosher.
239 * @return Mixed Bool true == Successful submission, Bool false
240 * == No submission attempted, anything else == Error to
241 * display.
242 */
243 function trySubmit() {
244 # Check for validation
245 foreach ( $this->mFlatFields as $fieldname => $field ) {
246 if ( !empty( $field->mParams['nodata'] ) ) {
247 continue;
248 }
249 if ( $field->validate(
250 $this->mFieldData[$fieldname],
251 $this->mFieldData )
252 !== true
253 ) {
254 return isset( $this->mValidationErrorMessage )
255 ? $this->mValidationErrorMessage
256 : array( 'htmlform-invalid-input' );
257 }
258 }
259
260 $callback = $this->mSubmitCallback;
261
262 $data = $this->filterDataForSubmit( $this->mFieldData );
263
264 $res = call_user_func( $callback, $data );
265
266 return $res;
267 }
268
269 /**
270 * Set a callback to a function to do something with the form
271 * once it's been successfully validated.
272 * @param $cb String function name. The function will be passed
273 * the output from HTMLForm::filterDataForSubmit, and must
274 * return Bool true on success, Bool false if no submission
275 * was attempted, or String HTML output to display on error.
276 */
277 function setSubmitCallback( $cb ) {
278 $this->mSubmitCallback = $cb;
279 }
280
281 /**
282 * Set a message to display on a validation error.
283 * @param $msg Mixed String or Array of valid inputs to wfMsgExt()
284 * (so each entry can be either a String or Array)
285 */
286 function setValidationErrorMessage( $msg ) {
287 $this->mValidationErrorMessage = $msg;
288 }
289
290 /**
291 * Set the introductory message, overwriting any existing message.
292 * @param $msg String complete text of message to display
293 */
294 function setIntro( $msg ) { $this->mPre = $msg; }
295
296 /**
297 * Add introductory text.
298 * @param $msg String complete text of message to display
299 */
300 function addPreText( $msg ) { $this->mPre .= $msg; }
301
302 /**
303 * Add header text, inside the form.
304 * @param $msg String complete text of message to display
305 */
306 function addHeaderText( $msg, $section = null ) {
307 if ( is_null( $section ) ) {
308 $this->mHeader .= $msg;
309 } else {
310 if ( !isset( $this->mSectionHeaders[$section] ) ) {
311 $this->mSectionHeaders[$section] = '';
312 }
313 $this->mSectionHeaders[$section] .= $msg;
314 }
315 }
316
317 /**
318 * Add footer text, inside the form.
319 * @param $msg String complete text of message to display
320 */
321 function addFooterText( $msg, $section = null ) {
322 if ( is_null( $section ) ) {
323 $this->mFooter .= $msg;
324 } else {
325 if ( !isset( $this->mSectionFooters[$section] ) ) {
326 $this->mSectionFooters[$section] = '';
327 }
328 $this->mSectionFooters[$section] .= $msg;
329 }
330 }
331
332 /**
333 * Add text to the end of the display.
334 * @param $msg String complete text of message to display
335 */
336 function addPostText( $msg ) { $this->mPost .= $msg; }
337
338 /**
339 * Add a hidden field to the output
340 * @param $name String field name. This will be used exactly as entered
341 * @param $value String field value
342 * @param $attribs Array
343 */
344 public function addHiddenField( $name, $value, $attribs = array() ) {
345 $attribs += array( 'name' => $name );
346 $this->mHiddenFields[] = array( $value, $attribs );
347 }
348
349 public function addButton( $name, $value, $id = null, $attribs = null ) {
350 $this->mButtons[] = compact( 'name', 'value', 'id', 'attribs' );
351 }
352
353 /**
354 * Display the form (sending to wgOut), with an appropriate error
355 * message or stack of messages, and any validation errors, etc.
356 * @param $submitResult Mixed output from HTMLForm::trySubmit()
357 */
358 function displayForm( $submitResult ) {
359 global $wgOut;
360
361 # For good measure (it is the default)
362 $wgOut->preventClickjacking();
363 $wgOut->addModules( 'mediawiki.htmlform' );
364
365 $html = ''
366 . $this->getErrors( $submitResult )
367 . $this->mHeader
368 . $this->getBody()
369 . $this->getHiddenFields()
370 . $this->getButtons()
371 . $this->mFooter
372 ;
373
374 $html = $this->wrapForm( $html );
375
376 $wgOut->addHTML( ''
377 . $this->mPre
378 . $html
379 . $this->mPost
380 );
381 }
382
383 /**
384 * Wrap the form innards in an actual <form> element
385 * @param $html String HTML contents to wrap.
386 * @return String wrapped HTML.
387 */
388 function wrapForm( $html ) {
389
390 # Include a <fieldset> wrapper for style, if requested.
391 if ( $this->mWrapperLegend !== false ) {
392 $html = Xml::fieldset( $this->mWrapperLegend, $html );
393 }
394 # Use multipart/form-data
395 $encType = $this->mUseMultipart
396 ? 'multipart/form-data'
397 : 'application/x-www-form-urlencoded';
398 # Attributes
399 $attribs = array(
400 'action' => $this->getTitle()->getFullURL(),
401 'method' => $this->mMethod,
402 'class' => 'visualClear',
403 'enctype' => $encType,
404 );
405 if ( !empty( $this->mId ) ) {
406 $attribs['id'] = $this->mId;
407 }
408
409 return Html::rawElement( 'form', $attribs, $html );
410 }
411
412 /**
413 * Get the hidden fields that should go inside the form.
414 * @return String HTML.
415 */
416 function getHiddenFields() {
417 global $wgUser;
418
419 $html = '';
420 if( $this->getMethod() == 'post' ){
421 $html .= Html::hidden( 'wpEditToken', $wgUser->editToken(), array( 'id' => 'wpEditToken' ) ) . "\n";
422 $html .= Html::hidden( 'title', $this->getTitle()->getPrefixedText() ) . "\n";
423 }
424
425 foreach ( $this->mHiddenFields as $data ) {
426 list( $value, $attribs ) = $data;
427 $html .= Html::hidden( $attribs['name'], $value, $attribs ) . "\n";
428 }
429
430 return $html;
431 }
432
433 /**
434 * Get the submit and (potentially) reset buttons.
435 * @return String HTML.
436 */
437 function getButtons() {
438 $html = '';
439 $attribs = array();
440
441 if ( isset( $this->mSubmitID ) ) {
442 $attribs['id'] = $this->mSubmitID;
443 }
444
445 if ( isset( $this->mSubmitName ) ) {
446 $attribs['name'] = $this->mSubmitName;
447 }
448
449 if ( isset( $this->mSubmitTooltip ) ) {
450 global $wgUser;
451 $attribs += $wgUser->getSkin()->tooltipAndAccessKeyAttribs( $this->mSubmitTooltip );
452 }
453
454 $attribs['class'] = 'mw-htmlform-submit';
455
456 $html .= Xml::submitButton( $this->getSubmitText(), $attribs ) . "\n";
457
458 if ( $this->mShowReset ) {
459 $html .= Html::element(
460 'input',
461 array(
462 'type' => 'reset',
463 'value' => wfMsg( 'htmlform-reset' )
464 )
465 ) . "\n";
466 }
467
468 foreach ( $this->mButtons as $button ) {
469 $attrs = array(
470 'type' => 'submit',
471 'name' => $button['name'],
472 'value' => $button['value']
473 );
474
475 if ( $button['attribs'] ) {
476 $attrs += $button['attribs'];
477 }
478
479 if ( isset( $button['id'] ) ) {
480 $attrs['id'] = $button['id'];
481 }
482
483 $html .= Html::element( 'input', $attrs );
484 }
485
486 return $html;
487 }
488
489 /**
490 * Get the whole body of the form.
491 */
492 function getBody() {
493 return $this->displaySection( $this->mFieldTree );
494 }
495
496 /**
497 * Format and display an error message stack.
498 * @param $errors Mixed String or Array of message keys
499 * @return String
500 */
501 function getErrors( $errors ) {
502 if ( $errors instanceof Status ) {
503 global $wgOut;
504 if ( $errors->isOK() ) {
505 $errorstr = '';
506 } else {
507 $errorstr = $wgOut->parse( $errors->getWikiText() );
508 }
509 } elseif ( is_array( $errors ) ) {
510 $errorstr = $this->formatErrors( $errors );
511 } else {
512 $errorstr = $errors;
513 }
514
515 return $errorstr
516 ? Html::rawElement( 'div', array( 'class' => 'error' ), $errorstr )
517 : '';
518 }
519
520 /**
521 * Format a stack of error messages into a single HTML string
522 * @param $errors Array of message keys/values
523 * @return String HTML, a <ul> list of errors
524 */
525 static function formatErrors( $errors ) {
526 $errorstr = '';
527
528 foreach ( $errors as $error ) {
529 if ( is_array( $error ) ) {
530 $msg = array_shift( $error );
531 } else {
532 $msg = $error;
533 $error = array();
534 }
535
536 $errorstr .= Html::rawElement(
537 'li',
538 null,
539 wfMsgExt( $msg, array( 'parseinline' ), $error )
540 );
541 }
542
543 $errorstr = Html::rawElement( 'ul', array(), $errorstr );
544
545 return $errorstr;
546 }
547
548 /**
549 * Set the text for the submit button
550 * @param $t String plaintext.
551 */
552 function setSubmitText( $t ) {
553 $this->mSubmitText = $t;
554 }
555
556 /**
557 * Get the text for the submit button, either customised or a default.
558 * @return unknown_type
559 */
560 function getSubmitText() {
561 return $this->mSubmitText
562 ? $this->mSubmitText
563 : wfMsg( 'htmlform-submit' );
564 }
565
566 public function setSubmitName( $name ) {
567 $this->mSubmitName = $name;
568 }
569
570 public function setSubmitTooltip( $name ) {
571 $this->mSubmitTooltip = $name;
572 }
573
574 /**
575 * Set the id for the submit button.
576 * @param $t String. FIXME: Integrity is *not* validated
577 */
578 function setSubmitID( $t ) {
579 $this->mSubmitID = $t;
580 }
581
582 public function setId( $id ) {
583 $this->mId = $id;
584 }
585 /**
586 * Prompt the whole form to be wrapped in a <fieldset>, with
587 * this text as its <legend> element.
588 * @param $legend String HTML to go inside the <legend> element.
589 * Will be escaped
590 */
591 public function setWrapperLegend( $legend ) { $this->mWrapperLegend = $legend; }
592
593 /**
594 * Set the prefix for various default messages
595 * TODO: currently only used for the <fieldset> legend on forms
596 * with multiple sections; should be used elsewhre?
597 * @param $p String
598 */
599 function setMessagePrefix( $p ) {
600 $this->mMessagePrefix = $p;
601 }
602
603 /**
604 * Set the title for form submission
605 * @param $t Title of page the form is on/should be posted to
606 */
607 function setTitle( $t ) {
608 $this->mTitle = $t;
609 }
610
611 /**
612 * Get the title
613 * @return Title
614 */
615 function getTitle() {
616 return $this->mTitle;
617 }
618
619 /**
620 * Set the method used to submit the form
621 * @param $method String
622 */
623 public function setMethod( $method='post' ){
624 $this->mMethod = $method;
625 }
626
627 public function getMethod(){
628 return $this->mMethod;
629 }
630
631 /**
632 * TODO: Document
633 * @param $fields
634 */
635 function displaySection( $fields, $sectionName = '' ) {
636 $tableHtml = '';
637 $subsectionHtml = '';
638 $hasLeftColumn = false;
639
640 foreach ( $fields as $key => $value ) {
641 if ( is_object( $value ) ) {
642 $v = empty( $value->mParams['nodata'] )
643 ? $this->mFieldData[$key]
644 : $value->getDefault();
645 $tableHtml .= $value->getTableRow( $v );
646
647 if ( $value->getLabel() != '&#160;' )
648 $hasLeftColumn = true;
649 } elseif ( is_array( $value ) ) {
650 $section = $this->displaySection( $value, $key );
651 $legend = wfMsg( "{$this->mMessagePrefix}-$key" );
652 if ( isset( $this->mSectionHeaders[$key] ) ) {
653 $section = $this->mSectionHeaders[$key] . $section;
654 }
655 if ( isset( $this->mSectionFooters[$key] ) ) {
656 $section .= $this->mSectionFooters[$key];
657 }
658 $subsectionHtml .= Xml::fieldset( $legend, $section ) . "\n";
659 }
660 }
661
662 $classes = array();
663
664 if ( !$hasLeftColumn ) { // Avoid strange spacing when no labels exist
665 $classes[] = 'mw-htmlform-nolabel';
666 }
667
668 $attribs = array(
669 'class' => implode( ' ', $classes ),
670 );
671
672 if ( $sectionName ) {
673 $attribs['id'] = Sanitizer::escapeId( "mw-htmlform-$sectionName" );
674 }
675
676 $tableHtml = Html::rawElement( 'table', $attribs,
677 Html::rawElement( 'tbody', array(), "\n$tableHtml\n" ) ) . "\n";
678
679 return $subsectionHtml . "\n" . $tableHtml;
680 }
681
682 /**
683 * Construct the form fields from the Descriptor array
684 */
685 function loadData() {
686 global $wgRequest;
687
688 $fieldData = array();
689
690 foreach ( $this->mFlatFields as $fieldname => $field ) {
691 if ( !empty( $field->mParams['nodata'] ) ) {
692 continue;
693 } elseif ( !empty( $field->mParams['disabled'] ) ) {
694 $fieldData[$fieldname] = $field->getDefault();
695 } else {
696 $fieldData[$fieldname] = $field->loadDataFromRequest( $wgRequest );
697 }
698 }
699
700 # Filter data.
701 foreach ( $fieldData as $name => &$value ) {
702 $field = $this->mFlatFields[$name];
703 $value = $field->filter( $value, $this->mFlatFields );
704 }
705
706 $this->mFieldData = $fieldData;
707 }
708
709 /**
710 * Stop a reset button being shown for this form
711 * @param $suppressReset Bool set to false to re-enable the
712 * button again
713 */
714 function suppressReset( $suppressReset = true ) {
715 $this->mShowReset = !$suppressReset;
716 }
717
718 /**
719 * Overload this if you want to apply special filtration routines
720 * to the form as a whole, after it's submitted but before it's
721 * processed.
722 * @param $data
723 * @return unknown_type
724 */
725 function filterDataForSubmit( $data ) {
726 return $data;
727 }
728 }
729
730 /**
731 * The parent class to generate form fields. Any field type should
732 * be a subclass of this.
733 */
734 abstract class HTMLFormField {
735
736 protected $mValidationCallback;
737 protected $mFilterCallback;
738 protected $mName;
739 public $mParams;
740 protected $mLabel; # String label. Set on construction
741 protected $mID;
742 protected $mClass = '';
743 protected $mDefault;
744 public $mParent;
745
746 /**
747 * This function must be implemented to return the HTML to generate
748 * the input object itself. It should not implement the surrounding
749 * table cells/rows, or labels/help messages.
750 * @param $value String the value to set the input to; eg a default
751 * text for a text input.
752 * @return String valid HTML.
753 */
754 abstract function getInputHTML( $value );
755
756 /**
757 * Override this function to add specific validation checks on the
758 * field input. Don't forget to call parent::validate() to ensure
759 * that the user-defined callback mValidationCallback is still run
760 * @param $value String the value the field was submitted with
761 * @param $alldata Array the data collected from the form
762 * @return Mixed Bool true on success, or String error to display.
763 */
764 function validate( $value, $alldata ) {
765 if ( isset( $this->mValidationCallback ) ) {
766 return call_user_func( $this->mValidationCallback, $value, $alldata );
767 }
768
769 if ( isset( $this->mParams['required'] ) && $value === '' ) {
770 return wfMsgExt( 'htmlform-required', 'parseinline' );
771 }
772
773 return true;
774 }
775
776 function filter( $value, $alldata ) {
777 if ( isset( $this->mFilterCallback ) ) {
778 $value = call_user_func( $this->mFilterCallback, $value, $alldata );
779 }
780
781 return $value;
782 }
783
784 /**
785 * Should this field have a label, or is there no input element with the
786 * appropriate id for the label to point to?
787 *
788 * @return bool True to output a label, false to suppress
789 */
790 protected function needsLabel() {
791 return true;
792 }
793
794 /**
795 * Get the value that this input has been set to from a posted form,
796 * or the input's default value if it has not been set.
797 * @param $request WebRequest
798 * @return String the value
799 */
800 function loadDataFromRequest( $request ) {
801 if ( $request->getCheck( $this->mName ) ) {
802 return $request->getText( $this->mName );
803 } else {
804 return $this->getDefault();
805 }
806 }
807
808 /**
809 * Initialise the object
810 * @param $params Associative Array. See HTMLForm doc for syntax.
811 */
812 function __construct( $params ) {
813 $this->mParams = $params;
814
815 # Generate the label from a message, if possible
816 if ( isset( $params['label-message'] ) ) {
817 $msgInfo = $params['label-message'];
818
819 if ( is_array( $msgInfo ) ) {
820 $msg = array_shift( $msgInfo );
821 } else {
822 $msg = $msgInfo;
823 $msgInfo = array();
824 }
825
826 $this->mLabel = wfMsgExt( $msg, 'parseinline', $msgInfo );
827 } elseif ( isset( $params['label'] ) ) {
828 $this->mLabel = $params['label'];
829 }
830
831 $this->mName = "wp{$params['fieldname']}";
832 if ( isset( $params['name'] ) ) {
833 $this->mName = $params['name'];
834 }
835
836 $validName = Sanitizer::escapeId( $this->mName );
837 if ( $this->mName != $validName && !isset( $params['nodata'] ) ) {
838 throw new MWException( "Invalid name '{$this->mName}' passed to " . __METHOD__ );
839 }
840
841 $this->mID = "mw-input-{$this->mName}";
842
843 if ( isset( $params['default'] ) ) {
844 $this->mDefault = $params['default'];
845 }
846
847 if ( isset( $params['id'] ) ) {
848 $id = $params['id'];
849 $validId = Sanitizer::escapeId( $id );
850
851 if ( $id != $validId ) {
852 throw new MWException( "Invalid id '$id' passed to " . __METHOD__ );
853 }
854
855 $this->mID = $id;
856 }
857
858 if ( isset( $params['cssclass'] ) ) {
859 $this->mClass = $params['cssclass'];
860 }
861
862 if ( isset( $params['validation-callback'] ) ) {
863 $this->mValidationCallback = $params['validation-callback'];
864 }
865
866 if ( isset( $params['filter-callback'] ) ) {
867 $this->mFilterCallback = $params['filter-callback'];
868 }
869 }
870
871 /**
872 * Get the complete table row for the input, including help text,
873 * labels, and whatever.
874 * @param $value String the value to set the input to.
875 * @return String complete HTML table row.
876 */
877 function getTableRow( $value ) {
878 # Check for invalid data.
879 global $wgRequest;
880
881 $errors = $this->validate( $value, $this->mParent->mFieldData );
882
883 $cellAttributes = array();
884 $verticalLabel = false;
885
886 if ( !empty($this->mParams['vertical-label']) ) {
887 $cellAttributes['colspan'] = 2;
888 $verticalLabel = true;
889 }
890
891 if ( $errors === true || ( !$wgRequest->wasPosted() && ( $this->mParent->getMethod() == 'post' ) ) ) {
892 $errors = '';
893 $errorClass = '';
894 } else {
895 $errors = self::formatErrors( $errors );
896 $errorClass = 'mw-htmlform-invalid-input';
897 }
898
899 $label = $this->getLabelHtml( $cellAttributes );
900 $field = Html::rawElement(
901 'td',
902 array( 'class' => 'mw-input' ) + $cellAttributes,
903 $this->getInputHTML( $value ) . "\n$errors"
904 );
905
906 $fieldType = get_class( $this );
907
908 if ( $verticalLabel ) {
909 $html = Html::rawElement( 'tr',
910 array( 'class' => 'mw-htmlform-vertical-label' ), $label );
911 $html .= Html::rawElement( 'tr',
912 array( 'class' => "mw-htmlform-field-$fieldType {$this->mClass} $errorClass" ),
913 $field );
914 } else {
915 $html = Html::rawElement( 'tr',
916 array( 'class' => "mw-htmlform-field-$fieldType {$this->mClass} $errorClass" ),
917 $label . $field );
918 }
919
920 $helptext = null;
921
922 if ( isset( $this->mParams['help-message'] ) ) {
923 $msg = $this->mParams['help-message'];
924 $helptext = wfMsgExt( $msg, 'parseinline' );
925 if ( wfEmptyMsg( $msg ) ) {
926 # Never mind
927 $helptext = null;
928 }
929 } elseif ( isset( $this->mParams['help-messages'] ) ) {
930 # help-message can be passed a message key (string) or an array containing
931 # a message key and additional parameters. This makes it impossible to pass
932 # an array of message key
933 foreach( $this->mParams['help-messages'] as $msg ) {
934 $candidate = wfMsgExt( $msg, 'parseinline' );
935 if( wfEmptyMsg( $msg ) ) {
936 $candidate = null;
937 }
938 $helptext .= $candidate; // append message
939 }
940 } elseif ( isset( $this->mParams['help'] ) ) {
941 $helptext = $this->mParams['help'];
942 }
943
944 if ( !is_null( $helptext ) ) {
945 $row = Html::rawElement( 'td', array( 'colspan' => 2, 'class' => 'htmlform-tip' ),
946 $helptext );
947 $row = Html::rawElement( 'tr', array(), $row );
948 $html .= "$row\n";
949 }
950
951 return $html;
952 }
953
954 function getLabel() {
955 return $this->mLabel;
956 }
957 function getLabelHtml( $cellAttributes = array() ) {
958 # Don't output a for= attribute for labels with no associated input.
959 # Kind of hacky here, possibly we don't want these to be <label>s at all.
960 $for = array();
961
962 if ( $this->needsLabel() ) {
963 $for['for'] = $this->mID;
964 }
965
966 return Html::rawElement( 'td', array( 'class' => 'mw-label' ) + $cellAttributes,
967 Html::rawElement( 'label', $for, $this->getLabel() )
968 );
969 }
970
971 function getDefault() {
972 if ( isset( $this->mDefault ) ) {
973 return $this->mDefault;
974 } else {
975 return null;
976 }
977 }
978
979 /**
980 * Returns the attributes required for the tooltip and accesskey.
981 *
982 * @return array Attributes
983 */
984 public function getTooltipAndAccessKey() {
985 if ( empty( $this->mParams['tooltip'] ) ) {
986 return array();
987 }
988
989 global $wgUser;
990
991 return $wgUser->getSkin()->tooltipAndAccessKeyAttribs( $this->mParams['tooltip'] );
992 }
993
994 /**
995 * flatten an array of options to a single array, for instance,
996 * a set of <options> inside <optgroups>.
997 * @param $options Associative Array with values either Strings
998 * or Arrays
999 * @return Array flattened input
1000 */
1001 public static function flattenOptions( $options ) {
1002 $flatOpts = array();
1003
1004 foreach ( $options as $value ) {
1005 if ( is_array( $value ) ) {
1006 $flatOpts = array_merge( $flatOpts, self::flattenOptions( $value ) );
1007 } else {
1008 $flatOpts[] = $value;
1009 }
1010 }
1011
1012 return $flatOpts;
1013 }
1014
1015 /**
1016 * @param $errors String|Message|Array of strings or Message instances
1017 * @return String html
1018 */
1019 protected static function formatErrors( $errors ) {
1020 if ( is_array( $errors ) && count( $errors ) === 1 ) {
1021 $errors = array_shift( $errors );
1022 }
1023
1024 if ( is_array( $errors ) ) {
1025 $lines = array();
1026 foreach ( $errors as $error ) {
1027 if ( $error instanceof Message ) {
1028 $lines[] = Html::rawElement( 'li', array(), $error->parse() );
1029 } else {
1030 $lines[] = Html::rawElement( 'li', array(), $error );
1031 }
1032 }
1033 return Html::rawElement( 'ul', array( 'class' => 'error' ), implode( "\n", $lines ) );
1034 } else {
1035 if ( $errors instanceof Message ) {
1036 $errors = $errors->parse();
1037 }
1038 return Html::rawElement( 'span', array( 'class' => 'error' ), $errors );
1039 }
1040 }
1041 }
1042
1043 class HTMLTextField extends HTMLFormField {
1044 function getSize() {
1045 return isset( $this->mParams['size'] )
1046 ? $this->mParams['size']
1047 : 45;
1048 }
1049
1050 function getInputHTML( $value ) {
1051 $attribs = array(
1052 'id' => $this->mID,
1053 'name' => $this->mName,
1054 'size' => $this->getSize(),
1055 'value' => $value,
1056 ) + $this->getTooltipAndAccessKey();
1057
1058 if ( isset( $this->mParams['maxlength'] ) ) {
1059 $attribs['maxlength'] = $this->mParams['maxlength'];
1060 }
1061
1062 if ( !empty( $this->mParams['disabled'] ) ) {
1063 $attribs['disabled'] = 'disabled';
1064 }
1065
1066 # TODO: Enforce pattern, step, required, readonly on the server side as
1067 # well
1068 foreach ( array( 'min', 'max', 'pattern', 'title', 'step',
1069 'placeholder' ) as $param ) {
1070 if ( isset( $this->mParams[$param] ) ) {
1071 $attribs[$param] = $this->mParams[$param];
1072 }
1073 }
1074
1075 foreach ( array( 'required', 'autofocus', 'multiple', 'readonly' ) as $param ) {
1076 if ( isset( $this->mParams[$param] ) ) {
1077 $attribs[$param] = '';
1078 }
1079 }
1080
1081 # Implement tiny differences between some field variants
1082 # here, rather than creating a new class for each one which
1083 # is essentially just a clone of this one.
1084 if ( isset( $this->mParams['type'] ) ) {
1085 switch ( $this->mParams['type'] ) {
1086 case 'email':
1087 $attribs['type'] = 'email';
1088 break;
1089 case 'int':
1090 $attribs['type'] = 'number';
1091 break;
1092 case 'float':
1093 $attribs['type'] = 'number';
1094 $attribs['step'] = 'any';
1095 break;
1096 # Pass through
1097 case 'password':
1098 case 'file':
1099 $attribs['type'] = $this->mParams['type'];
1100 break;
1101 }
1102 }
1103
1104 return Html::element( 'input', $attribs );
1105 }
1106 }
1107 class HTMLTextAreaField extends HTMLFormField {
1108 function getCols() {
1109 return isset( $this->mParams['cols'] )
1110 ? $this->mParams['cols']
1111 : 80;
1112 }
1113
1114 function getRows() {
1115 return isset( $this->mParams['rows'] )
1116 ? $this->mParams['rows']
1117 : 25;
1118 }
1119
1120 function getInputHTML( $value ) {
1121 $attribs = array(
1122 'id' => $this->mID,
1123 'name' => $this->mName,
1124 'cols' => $this->getCols(),
1125 'rows' => $this->getRows(),
1126 ) + $this->getTooltipAndAccessKey();
1127
1128
1129 if ( !empty( $this->mParams['disabled'] ) ) {
1130 $attribs['disabled'] = 'disabled';
1131 }
1132
1133 if ( !empty( $this->mParams['readonly'] ) ) {
1134 $attribs['readonly'] = 'readonly';
1135 }
1136
1137 foreach ( array( 'required', 'autofocus' ) as $param ) {
1138 if ( isset( $this->mParams[$param] ) ) {
1139 $attribs[$param] = '';
1140 }
1141 }
1142
1143 return Html::element( 'textarea', $attribs, $value );
1144 }
1145 }
1146
1147 /**
1148 * A field that will contain a numeric value
1149 */
1150 class HTMLFloatField extends HTMLTextField {
1151 function getSize() {
1152 return isset( $this->mParams['size'] )
1153 ? $this->mParams['size']
1154 : 20;
1155 }
1156
1157 function validate( $value, $alldata ) {
1158 $p = parent::validate( $value, $alldata );
1159
1160 if ( $p !== true ) {
1161 return $p;
1162 }
1163
1164 $value = trim( $value );
1165
1166 # http://dev.w3.org/html5/spec/common-microsyntaxes.html#real-numbers
1167 # with the addition that a leading '+' sign is ok.
1168 if ( !preg_match( '/^((\+|\-)?\d+(\.\d+)?(E(\+|\-)?\d+)?)?$/i', $value ) ) {
1169 return wfMsgExt( 'htmlform-float-invalid', 'parse' );
1170 }
1171
1172 # The "int" part of these message names is rather confusing.
1173 # They make equal sense for all numbers.
1174 if ( isset( $this->mParams['min'] ) ) {
1175 $min = $this->mParams['min'];
1176
1177 if ( $min > $value ) {
1178 return wfMsgExt( 'htmlform-int-toolow', 'parse', array( $min ) );
1179 }
1180 }
1181
1182 if ( isset( $this->mParams['max'] ) ) {
1183 $max = $this->mParams['max'];
1184
1185 if ( $max < $value ) {
1186 return wfMsgExt( 'htmlform-int-toohigh', 'parse', array( $max ) );
1187 }
1188 }
1189
1190 return true;
1191 }
1192 }
1193
1194 /**
1195 * A field that must contain a number
1196 */
1197 class HTMLIntField extends HTMLFloatField {
1198 function validate( $value, $alldata ) {
1199 $p = parent::validate( $value, $alldata );
1200
1201 if ( $p !== true ) {
1202 return $p;
1203 }
1204
1205 # http://dev.w3.org/html5/spec/common-microsyntaxes.html#signed-integers
1206 # with the addition that a leading '+' sign is ok. Note that leading zeros
1207 # are fine, and will be left in the input, which is useful for things like
1208 # phone numbers when you know that they are integers (the HTML5 type=tel
1209 # input does not require its value to be numeric). If you want a tidier
1210 # value to, eg, save in the DB, clean it up with intval().
1211 if ( !preg_match( '/^((\+|\-)?\d+)?$/', trim( $value ) )
1212 ) {
1213 return wfMsgExt( 'htmlform-int-invalid', 'parse' );
1214 }
1215
1216 return true;
1217 }
1218 }
1219
1220 /**
1221 * A checkbox field
1222 */
1223 class HTMLCheckField extends HTMLFormField {
1224 function getInputHTML( $value ) {
1225 if ( !empty( $this->mParams['invert'] ) ) {
1226 $value = !$value;
1227 }
1228
1229 $attr = $this->getTooltipAndAccessKey();
1230 $attr['id'] = $this->mID;
1231
1232 if ( !empty( $this->mParams['disabled'] ) ) {
1233 $attr['disabled'] = 'disabled';
1234 }
1235
1236 return Xml::check( $this->mName, $value, $attr ) . '&#160;' .
1237 Html::rawElement( 'label', array( 'for' => $this->mID ), $this->mLabel );
1238 }
1239
1240 /**
1241 * For a checkbox, the label goes on the right hand side, and is
1242 * added in getInputHTML(), rather than HTMLFormField::getRow()
1243 */
1244 function getLabel() {
1245 return '&#160;';
1246 }
1247
1248 function loadDataFromRequest( $request ) {
1249 $invert = false;
1250 if ( isset( $this->mParams['invert'] ) && $this->mParams['invert'] ) {
1251 $invert = true;
1252 }
1253
1254 // GetCheck won't work like we want for checks.
1255 if ( $request->getCheck( 'wpEditToken' ) ) {
1256 // XOR has the following truth table, which is what we want
1257 // INVERT VALUE | OUTPUT
1258 // true true | false
1259 // false true | true
1260 // false false | false
1261 // true false | true
1262 return $request->getBool( $this->mName ) xor $invert;
1263 } else {
1264 return $this->getDefault();
1265 }
1266 }
1267 }
1268
1269 /**
1270 * A select dropdown field. Basically a wrapper for Xmlselect class
1271 */
1272 class HTMLSelectField extends HTMLFormField {
1273 function validate( $value, $alldata ) {
1274 $p = parent::validate( $value, $alldata );
1275
1276 if ( $p !== true ) {
1277 return $p;
1278 }
1279
1280 $validOptions = HTMLFormField::flattenOptions( $this->mParams['options'] );
1281
1282 if ( in_array( $value, $validOptions ) )
1283 return true;
1284 else
1285 return wfMsgExt( 'htmlform-select-badoption', 'parseinline' );
1286 }
1287
1288 function getInputHTML( $value ) {
1289 $select = new XmlSelect( $this->mName, $this->mID, strval( $value ) );
1290
1291 # If one of the options' 'name' is int(0), it is automatically selected.
1292 # because PHP sucks and things int(0) == 'some string'.
1293 # Working around this by forcing all of them to strings.
1294 foreach( $this->mParams['options'] as $key => &$opt ){
1295 if( is_int( $opt ) ){
1296 $opt = strval( $opt );
1297 }
1298 }
1299 unset( $opt ); # PHP keeps $opt around as a reference, which is a bit scary
1300
1301 if ( !empty( $this->mParams['disabled'] ) ) {
1302 $select->setAttribute( 'disabled', 'disabled' );
1303 }
1304
1305 $select->addOptions( $this->mParams['options'] );
1306
1307 return $select->getHTML();
1308 }
1309 }
1310
1311 /**
1312 * Select dropdown field, with an additional "other" textbox.
1313 */
1314 class HTMLSelectOrOtherField extends HTMLTextField {
1315 static $jsAdded = false;
1316
1317 function __construct( $params ) {
1318 if ( !in_array( 'other', $params['options'], true ) ) {
1319 $params['options'][wfMsg( 'htmlform-selectorother-other' )] = 'other';
1320 }
1321
1322 parent::__construct( $params );
1323 }
1324
1325 static function forceToStringRecursive( $array ) {
1326 if ( is_array( $array ) ) {
1327 return array_map( array( __CLASS__, 'forceToStringRecursive' ), $array );
1328 } else {
1329 return strval( $array );
1330 }
1331 }
1332
1333 function getInputHTML( $value ) {
1334 $valInSelect = false;
1335
1336 if ( $value !== false ) {
1337 $valInSelect = in_array(
1338 $value,
1339 HTMLFormField::flattenOptions( $this->mParams['options'] )
1340 );
1341 }
1342
1343 $selected = $valInSelect ? $value : 'other';
1344
1345 $opts = self::forceToStringRecursive( $this->mParams['options'] );
1346
1347 $select = new XmlSelect( $this->mName, $this->mID, $selected );
1348 $select->addOptions( $opts );
1349
1350 $select->setAttribute( 'class', 'mw-htmlform-select-or-other' );
1351
1352 $tbAttribs = array( 'id' => $this->mID . '-other', 'size' => $this->getSize() );
1353
1354 if ( !empty( $this->mParams['disabled'] ) ) {
1355 $select->setAttribute( 'disabled', 'disabled' );
1356 $tbAttribs['disabled'] = 'disabled';
1357 }
1358
1359 $select = $select->getHTML();
1360
1361 if ( isset( $this->mParams['maxlength'] ) ) {
1362 $tbAttribs['maxlength'] = $this->mParams['maxlength'];
1363 }
1364
1365 $textbox = Html::input(
1366 $this->mName . '-other',
1367 $valInSelect ? '' : $value,
1368 'text',
1369 $tbAttribs
1370 );
1371
1372 return "$select<br />\n$textbox";
1373 }
1374
1375 function loadDataFromRequest( $request ) {
1376 if ( $request->getCheck( $this->mName ) ) {
1377 $val = $request->getText( $this->mName );
1378
1379 if ( $val == 'other' ) {
1380 $val = $request->getText( $this->mName . '-other' );
1381 }
1382
1383 return $val;
1384 } else {
1385 return $this->getDefault();
1386 }
1387 }
1388 }
1389
1390 /**
1391 * Multi-select field
1392 */
1393 class HTMLMultiSelectField extends HTMLFormField {
1394 function validate( $value, $alldata ) {
1395 $p = parent::validate( $value, $alldata );
1396
1397 if ( $p !== true ) {
1398 return $p;
1399 }
1400
1401 if ( !is_array( $value ) ) {
1402 return false;
1403 }
1404
1405 # If all options are valid, array_intersect of the valid options
1406 # and the provided options will return the provided options.
1407 $validOptions = HTMLFormField::flattenOptions( $this->mParams['options'] );
1408
1409 $validValues = array_intersect( $value, $validOptions );
1410 if ( count( $validValues ) == count( $value ) ) {
1411 return true;
1412 } else {
1413 return wfMsgExt( 'htmlform-select-badoption', 'parseinline' );
1414 }
1415 }
1416
1417 function getInputHTML( $value ) {
1418 $html = $this->formatOptions( $this->mParams['options'], $value );
1419
1420 return $html;
1421 }
1422
1423 function formatOptions( $options, $value ) {
1424 $html = '';
1425
1426 $attribs = array();
1427
1428 if ( !empty( $this->mParams['disabled'] ) ) {
1429 $attribs['disabled'] = 'disabled';
1430 }
1431
1432 foreach ( $options as $label => $info ) {
1433 if ( is_array( $info ) ) {
1434 $html .= Html::rawElement( 'h1', array(), $label ) . "\n";
1435 $html .= $this->formatOptions( $info, $value );
1436 } else {
1437 $thisAttribs = array( 'id' => "{$this->mID}-$info", 'value' => $info );
1438
1439 $checkbox = Xml::check(
1440 $this->mName . '[]',
1441 in_array( $info, $value, true ),
1442 $attribs + $thisAttribs );
1443 $checkbox .= '&#160;' . Html::rawElement( 'label', array( 'for' => "{$this->mID}-$info" ), $label );
1444
1445 $html .= $checkbox . '<br />';
1446 }
1447 }
1448
1449 return $html;
1450 }
1451
1452 function loadDataFromRequest( $request ) {
1453 # won't work with getCheck
1454 if ( $request->getCheck( 'wpEditToken' ) ) {
1455 $arr = $request->getArray( $this->mName );
1456
1457 if ( !$arr ) {
1458 $arr = array();
1459 }
1460
1461 return $arr;
1462 } else {
1463 return $this->getDefault();
1464 }
1465 }
1466
1467 function getDefault() {
1468 if ( isset( $this->mDefault ) ) {
1469 return $this->mDefault;
1470 } else {
1471 return array();
1472 }
1473 }
1474
1475 protected function needsLabel() {
1476 return false;
1477 }
1478 }
1479
1480 /**
1481 * Double field with a dropdown list constructed from a system message in the format
1482 * * Optgroup header
1483 * ** <option value>|<option name>
1484 * ** <option value == option name>
1485 * * New Optgroup header
1486 * Plus a text field underneath for an additional reason. The 'value' of the field is
1487 * ""<select>: <extra reason>"", or "<extra reason>" if nothing has been selected in the
1488 * select dropdown.
1489 * FIXME: If made 'required', only the text field should be compulsory.
1490 */
1491 class HTMLSelectAndOtherField extends HTMLSelectField {
1492
1493 function __construct( $params ) {
1494 if ( array_key_exists( 'other', $params ) ) {
1495 } elseif( array_key_exists( 'other-message', $params ) ){
1496 $params['other'] = wfMsg( $params['other-message'] );
1497 } else {
1498 $params['other'] = wfMsg( 'htmlform-selectorother-other' );
1499 }
1500
1501 if ( array_key_exists( 'options', $params ) ) {
1502 # Options array already specified
1503 } elseif( array_key_exists( 'options-message', $params ) ){
1504 # Generate options array from a system message
1505 $params['options'] = self::parseMessage( wfMsg( $params['options-message'], $params['other'] ) );
1506 } else {
1507 # Sulk
1508 throw new MWException( 'HTMLSelectAndOtherField called without any options' );
1509 }
1510 $this->mFlatOptions = self::flattenOptions( $params['options'] );
1511
1512 parent::__construct( $params );
1513 }
1514
1515 /**
1516 * Build a drop-down box from a textual list.
1517 * @param $string String message text
1518 * @param $otherName String name of "other reason" option
1519 * @return Array
1520 * TODO: this is copied from Xml::listDropDown(), deprecate/avoid duplication?
1521 */
1522 public static function parseMessage( $string, $otherName=null ) {
1523 if( $otherName === null ){
1524 $otherName = wfMsg( 'htmlform-selectorother-other' );
1525 }
1526
1527 $optgroup = false;
1528 $options = array( $otherName => 'other' );
1529
1530 foreach ( explode( "\n", $string ) as $option ) {
1531 $value = trim( $option );
1532 if ( $value == '' ) {
1533 continue;
1534 } elseif ( substr( $value, 0, 1) == '*' && substr( $value, 1, 1) != '*' ) {
1535 # A new group is starting...
1536 $value = trim( substr( $value, 1 ) );
1537 $optgroup = $value;
1538 } elseif ( substr( $value, 0, 2) == '**' ) {
1539 # groupmember
1540 $opt = trim( substr( $value, 2 ) );
1541 $parts = array_map( 'trim', explode( '|', $opt, 2 ) );
1542 if( count( $parts ) === 1 ){
1543 $parts[1] = $parts[0];
1544 }
1545 if( $optgroup === false ){
1546 $options[$parts[1]] = $parts[0];
1547 } else {
1548 $options[$optgroup][$parts[1]] = $parts[0];
1549 }
1550 } else {
1551 # groupless reason list
1552 $optgroup = false;
1553 $parts = array_map( 'trim', explode( '|', $opt, 2 ) );
1554 if( count( $parts ) === 1 ){
1555 $parts[1] = $parts[0];
1556 }
1557 $options[$parts[1]] = $parts[0];
1558 }
1559 }
1560
1561 return $options;
1562 }
1563
1564 function getInputHTML( $value ) {
1565 $select = parent::getInputHTML( $value[1] );
1566
1567 $textAttribs = array(
1568 'id' => $this->mID . '-other',
1569 'size' => $this->getSize(),
1570 );
1571
1572 foreach ( array( 'required', 'autofocus', 'multiple', 'disabled' ) as $param ) {
1573 if ( isset( $this->mParams[$param] ) ) {
1574 $textAttribs[$param] = '';
1575 }
1576 }
1577
1578 $textbox = Html::input(
1579 $this->mName . '-other',
1580 $value[2],
1581 'text',
1582 $textAttribs
1583 );
1584
1585 return "$select<br />\n$textbox";
1586 }
1587
1588 /**
1589 * @param $request WebRequest
1590 * @return Array( <overall message>, <select value>, <text field value> )
1591 */
1592 function loadDataFromRequest( $request ) {
1593 if ( $request->getCheck( $this->mName ) ) {
1594
1595 $list = $request->getText( $this->mName );
1596 $text = $request->getText( $this->mName . '-other' );
1597
1598 if ( $list == 'other' ) {
1599 $final = $text;
1600 } elseif( !in_array( $list, $this->mFlatOptions ) ){
1601 # User has spoofed the select form to give an option which wasn't
1602 # in the original offer. Sulk...
1603 $final = $text;
1604 } elseif( $text == '' ) {
1605 $final = $list;
1606 } else {
1607 $final = $list . wfMsgForContent( 'colon-separator' ) . $text;
1608 }
1609
1610 } else {
1611 $final = $this->getDefault();
1612 $list = $text = '';
1613 }
1614 return array( $final, $list, $text );
1615 }
1616
1617 function getSize() {
1618 return isset( $this->mParams['size'] )
1619 ? $this->mParams['size']
1620 : 45;
1621 }
1622
1623 function validate( $value, $alldata ) {
1624 # HTMLSelectField forces $value to be one of the options in the select
1625 # field, which is not useful here. But we do want the validation further up
1626 # the chain
1627 $p = parent::validate( $value[1], $alldata );
1628
1629 if ( $p !== true ) {
1630 return $p;
1631 }
1632
1633 if( isset( $this->mParams['required'] ) && $value[1] === '' ){
1634 return wfMsgExt( 'htmlform-required', 'parseinline' );
1635 }
1636
1637 return true;
1638 }
1639 }
1640
1641 /**
1642 * Radio checkbox fields.
1643 */
1644 class HTMLRadioField extends HTMLFormField {
1645 function validate( $value, $alldata ) {
1646 $p = parent::validate( $value, $alldata );
1647
1648 if ( $p !== true ) {
1649 return $p;
1650 }
1651
1652 if ( !is_string( $value ) && !is_int( $value ) ) {
1653 return false;
1654 }
1655
1656 $validOptions = HTMLFormField::flattenOptions( $this->mParams['options'] );
1657
1658 if ( in_array( $value, $validOptions ) ) {
1659 return true;
1660 } else {
1661 return wfMsgExt( 'htmlform-select-badoption', 'parseinline' );
1662 }
1663 }
1664
1665 /**
1666 * This returns a block of all the radio options, in one cell.
1667 * @see includes/HTMLFormField#getInputHTML()
1668 */
1669 function getInputHTML( $value ) {
1670 $html = $this->formatOptions( $this->mParams['options'], $value );
1671
1672 return $html;
1673 }
1674
1675 function formatOptions( $options, $value ) {
1676 $html = '';
1677
1678 $attribs = array();
1679 if ( !empty( $this->mParams['disabled'] ) ) {
1680 $attribs['disabled'] = 'disabled';
1681 }
1682
1683 # TODO: should this produce an unordered list perhaps?
1684 foreach ( $options as $label => $info ) {
1685 if ( is_array( $info ) ) {
1686 $html .= Html::rawElement( 'h1', array(), $label ) . "\n";
1687 $html .= $this->formatOptions( $info, $value );
1688 } else {
1689 $id = Sanitizer::escapeId( $this->mID . "-$info" );
1690 $html .= Xml::radio(
1691 $this->mName,
1692 $info,
1693 $info == $value,
1694 $attribs + array( 'id' => $id )
1695 );
1696 $html .= '&#160;' .
1697 Html::rawElement( 'label', array( 'for' => $id ), $label );
1698
1699 $html .= "<br />\n";
1700 }
1701 }
1702
1703 return $html;
1704 }
1705
1706 protected function needsLabel() {
1707 return false;
1708 }
1709 }
1710
1711 /**
1712 * An information field (text blob), not a proper input.
1713 */
1714 class HTMLInfoField extends HTMLFormField {
1715 function __construct( $info ) {
1716 $info['nodata'] = true;
1717
1718 parent::__construct( $info );
1719 }
1720
1721 function getInputHTML( $value ) {
1722 return !empty( $this->mParams['raw'] ) ? $value : htmlspecialchars( $value );
1723 }
1724
1725 function getTableRow( $value ) {
1726 if ( !empty( $this->mParams['rawrow'] ) ) {
1727 return $value;
1728 }
1729
1730 return parent::getTableRow( $value );
1731 }
1732
1733 protected function needsLabel() {
1734 return false;
1735 }
1736 }
1737
1738 class HTMLHiddenField extends HTMLFormField {
1739 public function __construct( $params ) {
1740 parent::__construct( $params );
1741
1742 # Per HTML5 spec, hidden fields cannot be 'required'
1743 # http://dev.w3.org/html5/spec/states-of-the-type-attribute.html#hidden-state
1744 unset( $this->mParams['required'] );
1745 }
1746
1747 public function getTableRow( $value ) {
1748 $params = array();
1749 if ( $this->mID ) {
1750 $params['id'] = $this->mID;
1751 }
1752
1753 $this->mParent->addHiddenField(
1754 $this->mName,
1755 $this->mDefault,
1756 $params
1757 );
1758
1759 return '';
1760 }
1761
1762 public function getInputHTML( $value ) { return ''; }
1763 }
1764
1765 /**
1766 * Add a submit button inline in the form (as opposed to
1767 * HTMLForm::addButton(), which will add it at the end).
1768 */
1769 class HTMLSubmitField extends HTMLFormField {
1770
1771 function __construct( $info ) {
1772 $info['nodata'] = true;
1773 parent::__construct( $info );
1774 }
1775
1776 function getInputHTML( $value ) {
1777 return Xml::submitButton(
1778 $value,
1779 array(
1780 'class' => 'mw-htmlform-submit',
1781 'name' => $this->mName,
1782 'id' => $this->mID,
1783 )
1784 );
1785 }
1786
1787 protected function needsLabel() {
1788 return false;
1789 }
1790
1791 /**
1792 * Button cannot be invalid
1793 */
1794 public function validate( $value, $alldata ){
1795 return true;
1796 }
1797 }
1798
1799 class HTMLEditTools extends HTMLFormField {
1800 public function getInputHTML( $value ) {
1801 return '';
1802 }
1803
1804 public function getTableRow( $value ) {
1805 if ( empty( $this->mParams['message'] ) ) {
1806 $msg = wfMessage( 'edittools' );
1807 } else {
1808 $msg = wfMessage( $this->mParams['message'] );
1809 if ( $msg->isDisabled() ) {
1810 $msg = wfMessage( 'edittools' );
1811 }
1812 }
1813 $msg->inContentLanguage();
1814
1815
1816 return '<tr><td></td><td class="mw-input">'
1817 . '<div class="mw-editTools">'
1818 . $msg->parseAsBlock()
1819 . "</div></td></tr>\n";
1820 }
1821 }