Kill DeviceDetection
[mediawiki.git] / includes / FormOptions.php
blob1cfe88e89133d038a6f97fe21679a92b49647166
1 <?php
2 /**
3 * Helper class to keep track of options when mixing links and form elements.
5 * Copyright © 2008, Niklas Laxstirö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
23 * @file
24 * @author Niklas Laxström
25 * @author Antoine Musso
28 /**
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
37 /* @{ */
38 /** Mark value for automatic detection (for simple data types only) */
39 const AUTO = -1;
40 /** String type, maps guessType() to WebRequest::getText() */
41 const STRING = 0;
42 /** Integer type, maps guessType() to WebRequest::getInt() */
43 const INT = 1;
44 /** Boolean type, maps guessType() to WebRequest::getBool() */
45 const BOOL = 2;
46 /** Integer type or null, maps to WebRequest::getIntOrNull()
47 * This is useful for the namespace selector.
49 const INTNULL = 3;
50 /* @} */
52 /**
53 * @todo Document!
55 protected $options = array();
57 # Setting up
59 public function add( $name, $default, $type = self::AUTO ) {
60 $option = array();
61 $option['default'] = $default;
62 $option['value'] = null;
63 $option['consumed'] = false;
65 if ( $type !== self::AUTO ) {
66 $option['type'] = $type;
67 } else {
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] );
79 /**
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
86 * @throws MWException
87 * @exception MWException Unsupported datatype
88 * @return int Type constant
90 public static function guessType( $data ) {
91 if ( is_bool( $data ) ) {
92 return self::BOOL;
93 } elseif ( is_int( $data ) ) {
94 return self::INT;
95 } elseif ( is_string( $data ) ) {
96 return self::STRING;
97 } else {
98 throw new MWException( 'Unsupported datatype' );
102 # Handling values
105 * Verify the given option name exist.
107 * @param $name String: 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] ) ) {
114 if ( $strict ) {
115 throw new MWException( "Invalid option $name" );
116 } else {
117 return false;
120 return true;
124 * Use to set the value of an option.
126 * @param $name String: 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).
129 * @return null
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;
137 } else {
138 $this->options[$name]['value'] = $value;
143 * Get the value for the given option name.
144 * Internally use getValueReal()
146 * @param $name String: option name
147 * @return Mixed
149 public function getValue( $name ) {
150 $this->validateName( $name, true );
152 return $this->getValueReal( $this->options[$name] );
156 * @todo Document
157 * @param $option Array: 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'];
163 } else {
164 return $option['default'];
169 * Delete the option value.
170 * This will make future calls to getValue() return the default value.
171 * @param $name String: option name
172 * @return null
174 public function reset( $name ) {
175 $this->validateName( $name, true );
176 $this->options[$name]['value'] = null;
180 * @todo Document
181 * @param $name String: option name
182 * @return null
184 public function consumeValue( $name ) {
185 $this->validateName( $name, true );
186 $this->options[$name]['consumed'] = true;
188 return $this->getValueReal( $this->options[$name] );
192 * @todo Document
193 * @param $names Array: array of option names
194 * @return null
196 public function consumeValues( /*Array*/ $names ) {
197 $out = array();
199 foreach ( $names as $name ) {
200 $this->validateName( $name, true );
201 $this->options[$name]['consumed'] = true;
202 $out[] = $this->getValueReal( $this->options[$name] );
205 return $out;
209 * Validate and set an option integer value
210 * The value will be altered to fit in the range.
212 * @param $name String: option name
213 * @param $min Int: minimum value
214 * @param $max Int: maximum value
215 * @throws MWException
216 * @exception MWException Option is not of type int
217 * @return null
219 public function validateIntBounds( $name, $min, $max ) {
220 $this->validateName( $name, true );
222 if ( $this->options[$name]['type'] !== self::INT ) {
223 throw new MWException( "Option $name is not of type int" );
226 $value = $this->getValueReal( $this->options[$name] );
227 $value = max( $min, min( $max, $value ) );
229 $this->setValue( $name, $value );
233 * Getting the data out for use
234 * @param $all Boolean: whether to include unchanged options (default: false)
235 * @return Array
237 public function getUnconsumedValues( $all = false ) {
238 $values = array();
240 foreach ( $this->options as $name => $data ) {
241 if ( !$data['consumed'] ) {
242 if ( $all || $data['value'] !== null ) {
243 $values[$name] = $this->getValueReal( $data );
248 return $values;
252 * Return options modified as an array ( name => value )
253 * @return Array
255 public function getChangedValues() {
256 $values = array();
258 foreach ( $this->options as $name => $data ) {
259 if ( $data['value'] !== null ) {
260 $values[$name] = $data['value'];
264 return $values;
268 * Format options to an array ( name => value)
269 * @return Array
271 public function getAllValues() {
272 $values = array();
274 foreach ( $this->options as $name => $data ) {
275 $values[$name] = $this->getValueReal( $data );
278 return $values;
281 # Reading values
283 public function fetchValuesFromRequest( WebRequest $r, $values = false ) {
284 if ( !$values ) {
285 $values = array_keys( $this->options );
288 foreach ( $values as $name ) {
289 $default = $this->options[$name]['default'];
290 $type = $this->options[$name]['type'];
292 switch( $type ) {
293 case self::BOOL:
294 $value = $r->getBool( $name, $default ); break;
295 case self::INT:
296 $value = $r->getInt( $name, $default ); break;
297 case self::STRING:
298 $value = $r->getText( $name, $default ); break;
299 case self::INTNULL:
300 $value = $r->getIntOrNull( $name ); break;
301 default:
302 throw new MWException( 'Unsupported datatype' );
305 if ( $value !== null ) {
306 $this->options[$name]['value'] = $value === $default ? null : $value;
311 /** @name ArrayAccess functions
312 * Those function implements PHP ArrayAccess interface
313 * @see http://php.net/manual/en/class.arrayaccess.php
315 /* @{ */
317 * Whether option exist
318 * @return bool
320 public function offsetExists( $name ) {
321 return isset( $this->options[$name] );
324 * Retrieve an option value
325 * @return Mixed
327 public function offsetGet( $name ) {
328 return $this->getValue( $name );
330 /** Set an option to given value */
331 public function offsetSet( $name, $value ) {
332 $this->setValue( $name, $value );
334 /** Delete the option */
335 public function offsetUnset( $name ) {
336 $this->delete( $name );
338 /* @} */