Follow-up r83298: keep the two elements of the message separate in an array in HTMLSe...
[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 } else {
894 $errors = Html::rawElement( 'span', array( 'class' => 'error' ), $errors );
895 }
896
897 $label = $this->getLabelHtml( $cellAttributes );
898 $field = Html::rawElement(
899 'td',
900 array( 'class' => 'mw-input' ) + $cellAttributes,
901 $this->getInputHTML( $value ) . "\n$errors"
902 );
903
904 $fieldType = get_class( $this );
905
906 if ($verticalLabel) {
907 $html = Html::rawElement( 'tr',
908 array( 'class' => 'mw-htmlform-vertical-label' ), $label );
909 $html .= Html::rawElement( 'tr',
910 array( 'class' => "mw-htmlform-field-$fieldType {$this->mClass}" ),
911 $field );
912 } else {
913 $html = Html::rawElement( 'tr',
914 array( 'class' => "mw-htmlform-field-$fieldType {$this->mClass}" ),
915 $label . $field );
916 }
917
918 $helptext = null;
919
920 if ( isset( $this->mParams['help-message'] ) ) {
921 $msg = $this->mParams['help-message'];
922 $helptext = wfMsgExt( $msg, 'parseinline' );
923 if ( wfEmptyMsg( $msg ) ) {
924 # Never mind
925 $helptext = null;
926 }
927 } elseif ( isset( $this->mParams['help-messages'] ) ) {
928 # help-message can be passed a message key (string) or an array containing
929 # a message key and additional parameters. This makes it impossible to pass
930 # an array of message key
931 foreach( $this->mParams['help-messages'] as $msg ) {
932 $candidate = wfMsgExt( $msg, 'parseinline' );
933 if( wfEmptyMsg( $msg ) ) {
934 $candidate = null;
935 }
936 $helptext .= $candidate; // append message
937 }
938 } elseif ( isset( $this->mParams['help'] ) ) {
939 $helptext = $this->mParams['help'];
940 }
941
942 if ( !is_null( $helptext ) ) {
943 $row = Html::rawElement( 'td', array( 'colspan' => 2, 'class' => 'htmlform-tip' ),
944 $helptext );
945 $row = Html::rawElement( 'tr', array(), $row );
946 $html .= "$row\n";
947 }
948
949 return $html;
950 }
951
952 function getLabel() {
953 return $this->mLabel;
954 }
955 function getLabelHtml( $cellAttributes = array() ) {
956 # Don't output a for= attribute for labels with no associated input.
957 # Kind of hacky here, possibly we don't want these to be <label>s at all.
958 $for = array();
959
960 if ( $this->needsLabel() ) {
961 $for['for'] = $this->mID;
962 }
963
964 return Html::rawElement( 'td', array( 'class' => 'mw-label' ) + $cellAttributes,
965 Html::rawElement( 'label', $for, $this->getLabel() )
966 );
967 }
968
969 function getDefault() {
970 if ( isset( $this->mDefault ) ) {
971 return $this->mDefault;
972 } else {
973 return null;
974 }
975 }
976
977 /**
978 * Returns the attributes required for the tooltip and accesskey.
979 *
980 * @return array Attributes
981 */
982 public function getTooltipAndAccessKey() {
983 if ( empty( $this->mParams['tooltip'] ) ) {
984 return array();
985 }
986
987 global $wgUser;
988
989 return $wgUser->getSkin()->tooltipAndAccessKeyAttribs( $this->mParams['tooltip'] );
990 }
991
992 /**
993 * flatten an array of options to a single array, for instance,
994 * a set of <options> inside <optgroups>.
995 * @param $options Associative Array with values either Strings
996 * or Arrays
997 * @return Array flattened input
998 */
999 public static function flattenOptions( $options ) {
1000 $flatOpts = array();
1001
1002 foreach ( $options as $value ) {
1003 if ( is_array( $value ) ) {
1004 $flatOpts = array_merge( $flatOpts, self::flattenOptions( $value ) );
1005 } else {
1006 $flatOpts[] = $value;
1007 }
1008 }
1009
1010 return $flatOpts;
1011 }
1012 }
1013
1014 class HTMLTextField extends HTMLFormField {
1015 function getSize() {
1016 return isset( $this->mParams['size'] )
1017 ? $this->mParams['size']
1018 : 45;
1019 }
1020
1021 function getInputHTML( $value ) {
1022 $attribs = array(
1023 'id' => $this->mID,
1024 'name' => $this->mName,
1025 'size' => $this->getSize(),
1026 'value' => $value,
1027 ) + $this->getTooltipAndAccessKey();
1028
1029 if ( isset( $this->mParams['maxlength'] ) ) {
1030 $attribs['maxlength'] = $this->mParams['maxlength'];
1031 }
1032
1033 if ( !empty( $this->mParams['disabled'] ) ) {
1034 $attribs['disabled'] = 'disabled';
1035 }
1036
1037 # TODO: Enforce pattern, step, required, readonly on the server side as
1038 # well
1039 foreach ( array( 'min', 'max', 'pattern', 'title', 'step',
1040 'placeholder' ) as $param ) {
1041 if ( isset( $this->mParams[$param] ) ) {
1042 $attribs[$param] = $this->mParams[$param];
1043 }
1044 }
1045
1046 foreach ( array( 'required', 'autofocus', 'multiple', 'readonly' ) as $param ) {
1047 if ( isset( $this->mParams[$param] ) ) {
1048 $attribs[$param] = '';
1049 }
1050 }
1051
1052 # Implement tiny differences between some field variants
1053 # here, rather than creating a new class for each one which
1054 # is essentially just a clone of this one.
1055 if ( isset( $this->mParams['type'] ) ) {
1056 switch ( $this->mParams['type'] ) {
1057 case 'email':
1058 $attribs['type'] = 'email';
1059 break;
1060 case 'int':
1061 $attribs['type'] = 'number';
1062 break;
1063 case 'float':
1064 $attribs['type'] = 'number';
1065 $attribs['step'] = 'any';
1066 break;
1067 # Pass through
1068 case 'password':
1069 case 'file':
1070 $attribs['type'] = $this->mParams['type'];
1071 break;
1072 }
1073 }
1074
1075 return Html::element( 'input', $attribs );
1076 }
1077 }
1078 class HTMLTextAreaField extends HTMLFormField {
1079 function getCols() {
1080 return isset( $this->mParams['cols'] )
1081 ? $this->mParams['cols']
1082 : 80;
1083 }
1084
1085 function getRows() {
1086 return isset( $this->mParams['rows'] )
1087 ? $this->mParams['rows']
1088 : 25;
1089 }
1090
1091 function getInputHTML( $value ) {
1092 $attribs = array(
1093 'id' => $this->mID,
1094 'name' => $this->mName,
1095 'cols' => $this->getCols(),
1096 'rows' => $this->getRows(),
1097 ) + $this->getTooltipAndAccessKey();
1098
1099
1100 if ( !empty( $this->mParams['disabled'] ) ) {
1101 $attribs['disabled'] = 'disabled';
1102 }
1103
1104 if ( !empty( $this->mParams['readonly'] ) ) {
1105 $attribs['readonly'] = 'readonly';
1106 }
1107
1108 foreach ( array( 'required', 'autofocus' ) as $param ) {
1109 if ( isset( $this->mParams[$param] ) ) {
1110 $attribs[$param] = '';
1111 }
1112 }
1113
1114 return Html::element( 'textarea', $attribs, $value );
1115 }
1116 }
1117
1118 /**
1119 * A field that will contain a numeric value
1120 */
1121 class HTMLFloatField extends HTMLTextField {
1122 function getSize() {
1123 return isset( $this->mParams['size'] )
1124 ? $this->mParams['size']
1125 : 20;
1126 }
1127
1128 function validate( $value, $alldata ) {
1129 $p = parent::validate( $value, $alldata );
1130
1131 if ( $p !== true ) {
1132 return $p;
1133 }
1134
1135 $value = trim( $value );
1136
1137 # http://dev.w3.org/html5/spec/common-microsyntaxes.html#real-numbers
1138 # with the addition that a leading '+' sign is ok.
1139 if ( !preg_match( '/^((\+|\-)?\d+(\.\d+)?(E(\+|\-)?\d+)?)?$/i', $value ) ) {
1140 return wfMsgExt( 'htmlform-float-invalid', 'parse' );
1141 }
1142
1143 # The "int" part of these message names is rather confusing.
1144 # They make equal sense for all numbers.
1145 if ( isset( $this->mParams['min'] ) ) {
1146 $min = $this->mParams['min'];
1147
1148 if ( $min > $value ) {
1149 return wfMsgExt( 'htmlform-int-toolow', 'parse', array( $min ) );
1150 }
1151 }
1152
1153 if ( isset( $this->mParams['max'] ) ) {
1154 $max = $this->mParams['max'];
1155
1156 if ( $max < $value ) {
1157 return wfMsgExt( 'htmlform-int-toohigh', 'parse', array( $max ) );
1158 }
1159 }
1160
1161 return true;
1162 }
1163 }
1164
1165 /**
1166 * A field that must contain a number
1167 */
1168 class HTMLIntField extends HTMLFloatField {
1169 function validate( $value, $alldata ) {
1170 $p = parent::validate( $value, $alldata );
1171
1172 if ( $p !== true ) {
1173 return $p;
1174 }
1175
1176 # http://dev.w3.org/html5/spec/common-microsyntaxes.html#signed-integers
1177 # with the addition that a leading '+' sign is ok. Note that leading zeros
1178 # are fine, and will be left in the input, which is useful for things like
1179 # phone numbers when you know that they are integers (the HTML5 type=tel
1180 # input does not require its value to be numeric). If you want a tidier
1181 # value to, eg, save in the DB, clean it up with intval().
1182 if ( !preg_match( '/^((\+|\-)?\d+)?$/', trim( $value ) )
1183 ) {
1184 return wfMsgExt( 'htmlform-int-invalid', 'parse' );
1185 }
1186
1187 return true;
1188 }
1189 }
1190
1191 /**
1192 * A checkbox field
1193 */
1194 class HTMLCheckField extends HTMLFormField {
1195 function getInputHTML( $value ) {
1196 if ( !empty( $this->mParams['invert'] ) ) {
1197 $value = !$value;
1198 }
1199
1200 $attr = $this->getTooltipAndAccessKey();
1201 $attr['id'] = $this->mID;
1202
1203 if ( !empty( $this->mParams['disabled'] ) ) {
1204 $attr['disabled'] = 'disabled';
1205 }
1206
1207 return Xml::check( $this->mName, $value, $attr ) . '&#160;' .
1208 Html::rawElement( 'label', array( 'for' => $this->mID ), $this->mLabel );
1209 }
1210
1211 /**
1212 * For a checkbox, the label goes on the right hand side, and is
1213 * added in getInputHTML(), rather than HTMLFormField::getRow()
1214 */
1215 function getLabel() {
1216 return '&#160;';
1217 }
1218
1219 function loadDataFromRequest( $request ) {
1220 $invert = false;
1221 if ( isset( $this->mParams['invert'] ) && $this->mParams['invert'] ) {
1222 $invert = true;
1223 }
1224
1225 // GetCheck won't work like we want for checks.
1226 if ( $request->getCheck( 'wpEditToken' ) ) {
1227 // XOR has the following truth table, which is what we want
1228 // INVERT VALUE | OUTPUT
1229 // true true | false
1230 // false true | true
1231 // false false | false
1232 // true false | true
1233 return $request->getBool( $this->mName ) xor $invert;
1234 } else {
1235 return $this->getDefault();
1236 }
1237 }
1238 }
1239
1240 /**
1241 * A select dropdown field. Basically a wrapper for Xmlselect class
1242 */
1243 class HTMLSelectField extends HTMLFormField {
1244 function validate( $value, $alldata ) {
1245 $p = parent::validate( $value, $alldata );
1246
1247 if ( $p !== true ) {
1248 return $p;
1249 }
1250
1251 $validOptions = HTMLFormField::flattenOptions( $this->mParams['options'] );
1252
1253 if ( in_array( $value, $validOptions ) )
1254 return true;
1255 else
1256 return wfMsgExt( 'htmlform-select-badoption', 'parseinline' );
1257 }
1258
1259 function getInputHTML( $value ) {
1260 $select = new XmlSelect( $this->mName, $this->mID, strval( $value ) );
1261
1262 # If one of the options' 'name' is int(0), it is automatically selected.
1263 # because PHP sucks and things int(0) == 'some string'.
1264 # Working around this by forcing all of them to strings.
1265 foreach( $this->mParams['options'] as $key => &$opt ){
1266 if( is_int( $opt ) ){
1267 $opt = strval( $opt );
1268 }
1269 }
1270 unset( $opt ); # PHP keeps $opt around as a reference, which is a bit scary
1271
1272 if ( !empty( $this->mParams['disabled'] ) ) {
1273 $select->setAttribute( 'disabled', 'disabled' );
1274 }
1275
1276 $select->addOptions( $this->mParams['options'] );
1277
1278 return $select->getHTML();
1279 }
1280 }
1281
1282 /**
1283 * Select dropdown field, with an additional "other" textbox.
1284 */
1285 class HTMLSelectOrOtherField extends HTMLTextField {
1286 static $jsAdded = false;
1287
1288 function __construct( $params ) {
1289 if ( !in_array( 'other', $params['options'], true ) ) {
1290 $params['options'][wfMsg( 'htmlform-selectorother-other' )] = 'other';
1291 }
1292
1293 parent::__construct( $params );
1294 }
1295
1296 static function forceToStringRecursive( $array ) {
1297 if ( is_array( $array ) ) {
1298 return array_map( array( __CLASS__, 'forceToStringRecursive' ), $array );
1299 } else {
1300 return strval( $array );
1301 }
1302 }
1303
1304 function getInputHTML( $value ) {
1305 $valInSelect = false;
1306
1307 if ( $value !== false ) {
1308 $valInSelect = in_array(
1309 $value,
1310 HTMLFormField::flattenOptions( $this->mParams['options'] )
1311 );
1312 }
1313
1314 $selected = $valInSelect ? $value : 'other';
1315
1316 $opts = self::forceToStringRecursive( $this->mParams['options'] );
1317
1318 $select = new XmlSelect( $this->mName, $this->mID, $selected );
1319 $select->addOptions( $opts );
1320
1321 $select->setAttribute( 'class', 'mw-htmlform-select-or-other' );
1322
1323 $tbAttribs = array( 'id' => $this->mID . '-other', 'size' => $this->getSize() );
1324
1325 if ( !empty( $this->mParams['disabled'] ) ) {
1326 $select->setAttribute( 'disabled', 'disabled' );
1327 $tbAttribs['disabled'] = 'disabled';
1328 }
1329
1330 $select = $select->getHTML();
1331
1332 if ( isset( $this->mParams['maxlength'] ) ) {
1333 $tbAttribs['maxlength'] = $this->mParams['maxlength'];
1334 }
1335
1336 $textbox = Html::input(
1337 $this->mName . '-other',
1338 $valInSelect ? '' : $value,
1339 'text',
1340 $tbAttribs
1341 );
1342
1343 return "$select<br />\n$textbox";
1344 }
1345
1346 function loadDataFromRequest( $request ) {
1347 if ( $request->getCheck( $this->mName ) ) {
1348 $val = $request->getText( $this->mName );
1349
1350 if ( $val == 'other' ) {
1351 $val = $request->getText( $this->mName . '-other' );
1352 }
1353
1354 return $val;
1355 } else {
1356 return $this->getDefault();
1357 }
1358 }
1359 }
1360
1361 /**
1362 * Multi-select field
1363 */
1364 class HTMLMultiSelectField extends HTMLFormField {
1365 function validate( $value, $alldata ) {
1366 $p = parent::validate( $value, $alldata );
1367
1368 if ( $p !== true ) {
1369 return $p;
1370 }
1371
1372 if ( !is_array( $value ) ) {
1373 return false;
1374 }
1375
1376 # If all options are valid, array_intersect of the valid options
1377 # and the provided options will return the provided options.
1378 $validOptions = HTMLFormField::flattenOptions( $this->mParams['options'] );
1379
1380 $validValues = array_intersect( $value, $validOptions );
1381 if ( count( $validValues ) == count( $value ) ) {
1382 return true;
1383 } else {
1384 return wfMsgExt( 'htmlform-select-badoption', 'parseinline' );
1385 }
1386 }
1387
1388 function getInputHTML( $value ) {
1389 $html = $this->formatOptions( $this->mParams['options'], $value );
1390
1391 return $html;
1392 }
1393
1394 function formatOptions( $options, $value ) {
1395 $html = '';
1396
1397 $attribs = array();
1398
1399 if ( !empty( $this->mParams['disabled'] ) ) {
1400 $attribs['disabled'] = 'disabled';
1401 }
1402
1403 foreach ( $options as $label => $info ) {
1404 if ( is_array( $info ) ) {
1405 $html .= Html::rawElement( 'h1', array(), $label ) . "\n";
1406 $html .= $this->formatOptions( $info, $value );
1407 } else {
1408 $thisAttribs = array( 'id' => "{$this->mID}-$info", 'value' => $info );
1409
1410 $checkbox = Xml::check(
1411 $this->mName . '[]',
1412 in_array( $info, $value, true ),
1413 $attribs + $thisAttribs );
1414 $checkbox .= '&#160;' . Html::rawElement( 'label', array( 'for' => "{$this->mID}-$info" ), $label );
1415
1416 $html .= $checkbox . '<br />';
1417 }
1418 }
1419
1420 return $html;
1421 }
1422
1423 function loadDataFromRequest( $request ) {
1424 # won't work with getCheck
1425 if ( $request->getCheck( 'wpEditToken' ) ) {
1426 $arr = $request->getArray( $this->mName );
1427
1428 if ( !$arr ) {
1429 $arr = array();
1430 }
1431
1432 return $arr;
1433 } else {
1434 return $this->getDefault();
1435 }
1436 }
1437
1438 function getDefault() {
1439 if ( isset( $this->mDefault ) ) {
1440 return $this->mDefault;
1441 } else {
1442 return array();
1443 }
1444 }
1445
1446 protected function needsLabel() {
1447 return false;
1448 }
1449 }
1450
1451 /**
1452 * Double field with a dropdown list constructed from a system message in the format
1453 * * Optgroup header
1454 * ** <option value>|<option name>
1455 * ** <option value == option name>
1456 * * New Optgroup header
1457 * Plus a text field underneath for an additional reason. The 'value' of the field is
1458 * ""<select>: <extra reason>"", or "<extra reason>" if nothing has been selected in the
1459 * select dropdown.
1460 * FIXME: If made 'required', only the text field should be compulsory.
1461 */
1462 class HTMLSelectAndOtherField extends HTMLSelectField {
1463
1464 function __construct( $params ) {
1465 if ( array_key_exists( 'other', $params ) ) {
1466 } elseif( array_key_exists( 'other-message', $params ) ){
1467 $params['other'] = wfMsg( $params['other-message'] );
1468 } else {
1469 $params['other'] = wfMsg( 'htmlform-selectorother-other' );
1470 }
1471
1472 if ( array_key_exists( 'options', $params ) ) {
1473 # Options array already specified
1474 } elseif( array_key_exists( 'options-message', $params ) ){
1475 # Generate options array from a system message
1476 $params['options'] = self::parseMessage( wfMsg( $params['options-message'], $params['other'] ) );
1477 } else {
1478 # Sulk
1479 throw new MWException( 'HTMLSelectAndOtherField called without any options' );
1480 }
1481 $this->mFlatOptions = self::flattenOptions( $params['options'] );
1482
1483 parent::__construct( $params );
1484 }
1485
1486 /**
1487 * Build a drop-down box from a textual list.
1488 * @param $string String message text
1489 * @param $otherName String name of "other reason" option
1490 * @return Array
1491 * TODO: this is copied from Xml::listDropDown(), deprecate/avoid duplication?
1492 */
1493 public static function parseMessage( $string, $otherName=null ) {
1494 if( $otherName === null ){
1495 $otherName = wfMsg( 'htmlform-selectorother-other' );
1496 }
1497
1498 $optgroup = false;
1499 $options = array( $otherName => 'other' );
1500
1501 foreach ( explode( "\n", $string ) as $option ) {
1502 $value = trim( $option );
1503 if ( $value == '' ) {
1504 continue;
1505 } elseif ( substr( $value, 0, 1) == '*' && substr( $value, 1, 1) != '*' ) {
1506 # A new group is starting...
1507 $value = trim( substr( $value, 1 ) );
1508 $optgroup = $value;
1509 } elseif ( substr( $value, 0, 2) == '**' ) {
1510 # groupmember
1511 $opt = trim( substr( $value, 2 ) );
1512 $parts = array_map( 'trim', explode( '|', $opt, 2 ) );
1513 if( count( $parts ) === 1 ){
1514 $parts[1] = $parts[0];
1515 }
1516 if( $optgroup === false ){
1517 $options[$parts[1]] = $parts[0];
1518 } else {
1519 $options[$optgroup][$parts[1]] = $parts[0];
1520 }
1521 } else {
1522 # groupless reason list
1523 $optgroup = false;
1524 $parts = array_map( 'trim', explode( '|', $opt, 2 ) );
1525 if( count( $parts ) === 1 ){
1526 $parts[1] = $parts[0];
1527 }
1528 $options[$parts[1]] = $parts[0];
1529 }
1530 }
1531
1532 return $options;
1533 }
1534
1535 function getInputHTML( $value ) {
1536 $select = parent::getInputHTML( $value[1] );
1537
1538 $textAttribs = array(
1539 'id' => $this->mID . '-other',
1540 'size' => $this->getSize(),
1541 );
1542
1543 foreach ( array( 'required', 'autofocus', 'multiple', 'disabled' ) as $param ) {
1544 if ( isset( $this->mParams[$param] ) ) {
1545 $textAttribs[$param] = '';
1546 }
1547 }
1548
1549 $textbox = Html::input(
1550 $this->mName . '-other',
1551 $value[2],
1552 'text',
1553 $textAttribs
1554 );
1555
1556 return "$select<br />\n$textbox";
1557 }
1558
1559 /**
1560 * @param $request WebRequest
1561 * @return Array( <overall message>, <select value>, <text field value> )
1562 */
1563 function loadDataFromRequest( $request ) {
1564 if ( $request->getCheck( $this->mName ) ) {
1565
1566 $list = $request->getText( $this->mName );
1567 $text = $request->getText( $this->mName . '-other' );
1568
1569 if ( $list == 'other' ) {
1570 $final = $text;
1571 } elseif( !in_array( $list, $this->mFlatOptions ) ){
1572 # User has spoofed the select form to give an option which wasn't
1573 # in the original offer. Sulk...
1574 $final = $text;
1575 } elseif( $text == '' ) {
1576 $final = $list;
1577 } else {
1578 $final = $list . wfMsgForContent( 'colon-separator' ) . $text;
1579 }
1580
1581 } else {
1582 $final = $this->getDefault();
1583 $list = $text = '';
1584 }
1585 return array( $final, $list, $text );
1586 }
1587
1588 function getSize() {
1589 return isset( $this->mParams['size'] )
1590 ? $this->mParams['size']
1591 : 45;
1592 }
1593
1594 function validate( $value, $alldata ) {
1595 # HTMLSelectField forces $value to be one of the options in the select
1596 # field, which is not useful here. But we do want the validation further up
1597 # the chain
1598 $p = parent::validate( $value[1], $alldata );
1599
1600 if ( $p !== true ) {
1601 return $p;
1602 }
1603
1604 if( isset( $this->mParams['required'] ) && $value[1] === '' ){
1605 return wfMsgExt( 'htmlform-required', 'parseinline' );
1606 }
1607
1608 return true;
1609 }
1610 }
1611
1612 /**
1613 * Radio checkbox fields.
1614 */
1615 class HTMLRadioField extends HTMLFormField {
1616 function validate( $value, $alldata ) {
1617 $p = parent::validate( $value, $alldata );
1618
1619 if ( $p !== true ) {
1620 return $p;
1621 }
1622
1623 if ( !is_string( $value ) && !is_int( $value ) ) {
1624 return false;
1625 }
1626
1627 $validOptions = HTMLFormField::flattenOptions( $this->mParams['options'] );
1628
1629 if ( in_array( $value, $validOptions ) ) {
1630 return true;
1631 } else {
1632 return wfMsgExt( 'htmlform-select-badoption', 'parseinline' );
1633 }
1634 }
1635
1636 /**
1637 * This returns a block of all the radio options, in one cell.
1638 * @see includes/HTMLFormField#getInputHTML()
1639 */
1640 function getInputHTML( $value ) {
1641 $html = $this->formatOptions( $this->mParams['options'], $value );
1642
1643 return $html;
1644 }
1645
1646 function formatOptions( $options, $value ) {
1647 $html = '';
1648
1649 $attribs = array();
1650 if ( !empty( $this->mParams['disabled'] ) ) {
1651 $attribs['disabled'] = 'disabled';
1652 }
1653
1654 # TODO: should this produce an unordered list perhaps?
1655 foreach ( $options as $label => $info ) {
1656 if ( is_array( $info ) ) {
1657 $html .= Html::rawElement( 'h1', array(), $label ) . "\n";
1658 $html .= $this->formatOptions( $info, $value );
1659 } else {
1660 $id = Sanitizer::escapeId( $this->mID . "-$info" );
1661 $html .= Xml::radio(
1662 $this->mName,
1663 $info,
1664 $info == $value,
1665 $attribs + array( 'id' => $id )
1666 );
1667 $html .= '&#160;' .
1668 Html::rawElement( 'label', array( 'for' => $id ), $label );
1669
1670 $html .= "<br />\n";
1671 }
1672 }
1673
1674 return $html;
1675 }
1676
1677 protected function needsLabel() {
1678 return false;
1679 }
1680 }
1681
1682 /**
1683 * An information field (text blob), not a proper input.
1684 */
1685 class HTMLInfoField extends HTMLFormField {
1686 function __construct( $info ) {
1687 $info['nodata'] = true;
1688
1689 parent::__construct( $info );
1690 }
1691
1692 function getInputHTML( $value ) {
1693 return !empty( $this->mParams['raw'] ) ? $value : htmlspecialchars( $value );
1694 }
1695
1696 function getTableRow( $value ) {
1697 if ( !empty( $this->mParams['rawrow'] ) ) {
1698 return $value;
1699 }
1700
1701 return parent::getTableRow( $value );
1702 }
1703
1704 protected function needsLabel() {
1705 return false;
1706 }
1707 }
1708
1709 class HTMLHiddenField extends HTMLFormField {
1710 public function __construct( $params ) {
1711 parent::__construct( $params );
1712
1713 # Per HTML5 spec, hidden fields cannot be 'required'
1714 # http://dev.w3.org/html5/spec/states-of-the-type-attribute.html#hidden-state
1715 unset( $this->mParams['required'] );
1716 }
1717
1718 public function getTableRow( $value ) {
1719 $params = array();
1720 if ( $this->mID ) {
1721 $params['id'] = $this->mID;
1722 }
1723
1724 $this->mParent->addHiddenField(
1725 $this->mName,
1726 $this->mDefault,
1727 $params
1728 );
1729
1730 return '';
1731 }
1732
1733 public function getInputHTML( $value ) { return ''; }
1734 }
1735
1736 /**
1737 * Add a submit button inline in the form (as opposed to
1738 * HTMLForm::addButton(), which will add it at the end).
1739 */
1740 class HTMLSubmitField extends HTMLFormField {
1741
1742 function __construct( $info ) {
1743 $info['nodata'] = true;
1744 parent::__construct( $info );
1745 }
1746
1747 function getInputHTML( $value ) {
1748 return Xml::submitButton(
1749 $value,
1750 array(
1751 'class' => 'mw-htmlform-submit',
1752 'name' => $this->mName,
1753 'id' => $this->mID,
1754 )
1755 );
1756 }
1757
1758 protected function needsLabel() {
1759 return false;
1760 }
1761
1762 /**
1763 * Button cannot be invalid
1764 */
1765 public function validate( $value, $alldata ){
1766 return true;
1767 }
1768 }
1769
1770 class HTMLEditTools extends HTMLFormField {
1771 public function getInputHTML( $value ) {
1772 return '';
1773 }
1774
1775 public function getTableRow( $value ) {
1776 if ( empty( $this->mParams['message'] ) ) {
1777 $msg = wfMessage( 'edittools' );
1778 } else {
1779 $msg = wfMessage( $this->mParams['message'] );
1780 if ( $msg->isDisabled() ) {
1781 $msg = wfMessage( 'edittools' );
1782 }
1783 }
1784 $msg->inContentLanguage();
1785
1786
1787 return '<tr><td></td><td class="mw-input">'
1788 . '<div class="mw-editTools">'
1789 . $msg->parseAsBlock()
1790 . "</div></td></tr>\n";
1791 }
1792 }