3 * Helper class to keep track of options when mixing links and form elements.
5 * Copyright © 2008, Niklas Laxström
6 * Copyright © 2011, Antoine Musso
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License along
19 * with this program; if not, write to the Free Software Foundation, Inc.,
20 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
21 * http://www.gnu.org/copyleft/gpl.html
24 * @author Niklas Laxström
25 * @author Antoine Musso
29 * Helper class to keep track of options when mixing links and form elements.
31 * @todo This badly need some examples and tests :-)
33 class FormOptions
implements ArrayAccess
{
34 /** @name Type constants
35 * Used internally to map an option value to a WebRequest accessor
38 /** Mark value for automatic detection (for simple data types only) */
40 /** String type, maps guessType() to WebRequest::getText() */
42 /** Integer type, maps guessType() to WebRequest::getInt() */
44 /** Boolean type, maps guessType() to WebRequest::getBool() */
46 /** Integer type or null, maps to WebRequest::getIntOrNull()
47 * This is useful for the namespace selector.
55 protected $options = array();
59 public function add( $name, $default, $type = self
::AUTO
) {
61 $option['default'] = $default;
62 $option['value'] = null;
63 $option['consumed'] = false;
65 if ( $type !== self
::AUTO
) {
66 $option['type'] = $type;
68 $option['type'] = self
::guessType( $default );
71 $this->options
[$name] = $option;
74 public function delete( $name ) {
75 $this->validateName( $name, true );
76 unset( $this->options
[$name] );
80 * Used to find out which type the data is.
81 * All types are defined in the 'Type constants' section of this class
82 * Please note we do not support detection of INTNULL MediaWiki type
83 * which will be assumed as INT if the data is an integer.
85 * @param $data Mixed: value to guess type for
87 * @exception MWException Unsupported datatype
88 * @return int Type constant
90 public static function guessType( $data ) {
91 if ( is_bool( $data ) ) {
93 } elseif ( is_int( $data ) ) {
95 } elseif ( is_string( $data ) ) {
98 throw new MWException( 'Unsupported datatype' );
105 * Verify the given option name exist.
107 * @param string $name option name
108 * @param $strict Boolean: throw an exception when the option does not exist (default false)
109 * @throws MWException
110 * @return Boolean: true if option exist, false otherwise
112 public function validateName( $name, $strict = false ) {
113 if ( !isset( $this->options
[$name] ) ) {
115 throw new MWException( "Invalid option $name" );
124 * Use to set the value of an option.
126 * @param string $name option name
127 * @param $value Mixed: value for the option
128 * @param $force Boolean: whether to set the value when it is equivalent to the default value for this option (default false).
131 public function setValue( $name, $value, $force = false ) {
132 $this->validateName( $name, true );
134 if ( !$force && $value === $this->options
[$name]['default'] ) {
135 // null default values as unchanged
136 $this->options
[$name]['value'] = null;
138 $this->options
[$name]['value'] = $value;
143 * Get the value for the given option name.
144 * Internally use getValueReal()
146 * @param string $name option name
149 public function getValue( $name ) {
150 $this->validateName( $name, true );
152 return $this->getValueReal( $this->options
[$name] );
157 * @param array $option array structure describing the option
158 * @return Mixed. Value or the default value if it is null
160 protected function getValueReal( $option ) {
161 if ( $option['value'] !== null ) {
162 return $option['value'];
164 return $option['default'];
169 * Delete the option value.
170 * This will make future calls to getValue() return the default value.
171 * @param string $name option name
174 public function reset( $name ) {
175 $this->validateName( $name, true );
176 $this->options
[$name]['value'] = null;
181 * @param string $name Option name
182 * @throws MWException If option does not exist.
183 * @return mixed Value or the default value if it is null.
185 public function consumeValue( $name ) {
186 $this->validateName( $name, true );
187 $this->options
[$name]['consumed'] = true;
189 return $this->getValueReal( $this->options
[$name] );
194 * @param array $names array of option names
197 public function consumeValues( /*Array*/ $names ) {
200 foreach ( $names as $name ) {
201 $this->validateName( $name, true );
202 $this->options
[$name]['consumed'] = true;
203 $out[] = $this->getValueReal( $this->options
[$name] );
210 * Validate and set an option integer value
211 * The value will be altered to fit in the range.
213 * @param string $name option name
214 * @param int $min minimum value
215 * @param int $max maximum value
216 * @throws MWException
217 * @exception MWException Option is not of type int
220 public function validateIntBounds( $name, $min, $max ) {
221 $this->validateName( $name, true );
223 if ( $this->options
[$name]['type'] !== self
::INT ) {
224 throw new MWException( "Option $name is not of type int" );
227 $value = $this->getValueReal( $this->options
[$name] );
228 $value = max( $min, min( $max, $value ) );
230 $this->setValue( $name, $value );
234 * Getting the data out for use
235 * @param $all Boolean: whether to include unchanged options (default: false)
238 public function getUnconsumedValues( $all = false ) {
241 foreach ( $this->options
as $name => $data ) {
242 if ( !$data['consumed'] ) {
243 if ( $all ||
$data['value'] !== null ) {
244 $values[$name] = $this->getValueReal( $data );
253 * Return options modified as an array ( name => value )
256 public function getChangedValues() {
259 foreach ( $this->options
as $name => $data ) {
260 if ( $data['value'] !== null ) {
261 $values[$name] = $data['value'];
269 * Format options to an array ( name => value)
272 public function getAllValues() {
275 foreach ( $this->options
as $name => $data ) {
276 $values[$name] = $this->getValueReal( $data );
284 public function fetchValuesFromRequest( WebRequest
$r, $values = false ) {
286 $values = array_keys( $this->options
);
289 foreach ( $values as $name ) {
290 $default = $this->options
[$name]['default'];
291 $type = $this->options
[$name]['type'];
295 $value = $r->getBool( $name, $default );
298 $value = $r->getInt( $name, $default );
301 $value = $r->getText( $name, $default );
304 $value = $r->getIntOrNull( $name );
307 throw new MWException( 'Unsupported datatype' );
310 if ( $value !== null ) {
311 $this->options
[$name]['value'] = $value === $default ?
null : $value;
316 /** @name ArrayAccess functions
317 * Those function implements PHP ArrayAccess interface
318 * @see http://php.net/manual/en/class.arrayaccess.php
322 * Whether option exist
325 public function offsetExists( $name ) {
326 return isset( $this->options
[$name] );
329 * Retrieve an option value
332 public function offsetGet( $name ) {
333 return $this->getValue( $name );
335 /** Set an option to given value */
336 public function offsetSet( $name, $value ) {
337 $this->setValue( $name, $value );
339 /** Delete the option */
340 public function offsetUnset( $name ) {
341 $this->delete( $name );