Exception
2 years ago
File
2 years ago
Session
2 years ago
Tests
2 years ago
AcceptHeader.php
2 years ago
AcceptHeaderItem.php
2 years ago
ApacheRequest.php
2 years ago
BinaryFileResponse.php
2 years ago
Cookie.php
2 years ago
ExpressionRequestMatcher.php
2 years ago
FileBag.php
2 years ago
HeaderBag.php
2 years ago
IpUtils.php
2 years ago
JsonResponse.php
2 years ago
LICENSE
2 years ago
ParameterBag.php
2 years ago
RedirectResponse.php
2 years ago
Request.php
2 years ago
RequestMatcher.php
2 years ago
RequestMatcherInterface.php
2 years ago
RequestStack.php
2 years ago
Response.php
2 years ago
ResponseHeaderBag.php
2 years ago
ServerBag.php
2 years ago
StreamedResponse.php
2 years ago
ParameterBag.php
238 lines
| 1 | <?php |
| 2 | |
| 3 | /* |
| 4 | * This file is part of the Symfony package. |
| 5 | * |
| 6 | * (c) Fabien Potencier <fabien@symfony.com> |
| 7 | * |
| 8 | * For the full copyright and license information, please view the LICENSE |
| 9 | * file that was distributed with this source code. |
| 10 | * |
| 11 | * Modified by impress-org on 23-January-2024 using Strauss. |
| 12 | * @see https://github.com/BrianHenryIE/strauss |
| 13 | */ |
| 14 | |
| 15 | namespace Give\Vendors\Symfony\Component\HttpFoundation; |
| 16 | |
| 17 | /** |
| 18 | * ParameterBag is a container for key/value pairs. |
| 19 | * |
| 20 | * @author Fabien Potencier <fabien@symfony.com> |
| 21 | */ |
| 22 | class ParameterBag implements \IteratorAggregate, \Countable |
| 23 | { |
| 24 | /** |
| 25 | * Parameter storage. |
| 26 | */ |
| 27 | protected $parameters; |
| 28 | |
| 29 | /** |
| 30 | * @param array $parameters An array of parameters |
| 31 | */ |
| 32 | public function __construct(array $parameters = []) |
| 33 | { |
| 34 | $this->parameters = $parameters; |
| 35 | } |
| 36 | |
| 37 | /** |
| 38 | * Returns the parameters. |
| 39 | * |
| 40 | * @return array An array of parameters |
| 41 | */ |
| 42 | public function all() |
| 43 | { |
| 44 | return $this->parameters; |
| 45 | } |
| 46 | |
| 47 | /** |
| 48 | * Returns the parameter keys. |
| 49 | * |
| 50 | * @return array An array of parameter keys |
| 51 | */ |
| 52 | public function keys() |
| 53 | { |
| 54 | return array_keys($this->parameters); |
| 55 | } |
| 56 | |
| 57 | /** |
| 58 | * Replaces the current parameters by a new set. |
| 59 | * |
| 60 | * @param array $parameters An array of parameters |
| 61 | */ |
| 62 | public function replace(array $parameters = []) |
| 63 | { |
| 64 | $this->parameters = $parameters; |
| 65 | } |
| 66 | |
| 67 | /** |
| 68 | * Adds parameters. |
| 69 | * |
| 70 | * @param array $parameters An array of parameters |
| 71 | */ |
| 72 | public function add(array $parameters = []) |
| 73 | { |
| 74 | $this->parameters = array_replace($this->parameters, $parameters); |
| 75 | } |
| 76 | |
| 77 | /** |
| 78 | * Returns a parameter by name. |
| 79 | * |
| 80 | * @param string $key The key |
| 81 | * @param mixed $default The default value if the parameter key does not exist |
| 82 | * |
| 83 | * @return mixed |
| 84 | */ |
| 85 | public function get($key, $default = null) |
| 86 | { |
| 87 | return \array_key_exists($key, $this->parameters) ? $this->parameters[$key] : $default; |
| 88 | } |
| 89 | |
| 90 | /** |
| 91 | * Sets a parameter by name. |
| 92 | * |
| 93 | * @param string $key The key |
| 94 | * @param mixed $value The value |
| 95 | */ |
| 96 | public function set($key, $value) |
| 97 | { |
| 98 | $this->parameters[$key] = $value; |
| 99 | } |
| 100 | |
| 101 | /** |
| 102 | * Returns true if the parameter is defined. |
| 103 | * |
| 104 | * @param string $key The key |
| 105 | * |
| 106 | * @return bool true if the parameter exists, false otherwise |
| 107 | */ |
| 108 | public function has($key) |
| 109 | { |
| 110 | return \array_key_exists($key, $this->parameters); |
| 111 | } |
| 112 | |
| 113 | /** |
| 114 | * Removes a parameter. |
| 115 | * |
| 116 | * @param string $key The key |
| 117 | */ |
| 118 | public function remove($key) |
| 119 | { |
| 120 | unset($this->parameters[$key]); |
| 121 | } |
| 122 | |
| 123 | /** |
| 124 | * Returns the alphabetic characters of the parameter value. |
| 125 | * |
| 126 | * @param string $key The parameter key |
| 127 | * @param string $default The default value if the parameter key does not exist |
| 128 | * |
| 129 | * @return string The filtered value |
| 130 | */ |
| 131 | public function getAlpha($key, $default = '') |
| 132 | { |
| 133 | return preg_replace('/[^[:alpha:]]/', '', $this->get($key, $default)); |
| 134 | } |
| 135 | |
| 136 | /** |
| 137 | * Returns the alphabetic characters and digits of the parameter value. |
| 138 | * |
| 139 | * @param string $key The parameter key |
| 140 | * @param string $default The default value if the parameter key does not exist |
| 141 | * |
| 142 | * @return string The filtered value |
| 143 | */ |
| 144 | public function getAlnum($key, $default = '') |
| 145 | { |
| 146 | return preg_replace('/[^[:alnum:]]/', '', $this->get($key, $default)); |
| 147 | } |
| 148 | |
| 149 | /** |
| 150 | * Returns the digits of the parameter value. |
| 151 | * |
| 152 | * @param string $key The parameter key |
| 153 | * @param string $default The default value if the parameter key does not exist |
| 154 | * |
| 155 | * @return string The filtered value |
| 156 | */ |
| 157 | public function getDigits($key, $default = '') |
| 158 | { |
| 159 | // we need to remove - and + because they're allowed in the filter |
| 160 | return str_replace(['-', '+'], '', $this->filter($key, $default, \FILTER_SANITIZE_NUMBER_INT)); |
| 161 | } |
| 162 | |
| 163 | /** |
| 164 | * Returns the parameter value converted to integer. |
| 165 | * |
| 166 | * @param string $key The parameter key |
| 167 | * @param int $default The default value if the parameter key does not exist |
| 168 | * |
| 169 | * @return int The filtered value |
| 170 | */ |
| 171 | public function getInt($key, $default = 0) |
| 172 | { |
| 173 | return (int) $this->get($key, $default); |
| 174 | } |
| 175 | |
| 176 | /** |
| 177 | * Returns the parameter value converted to boolean. |
| 178 | * |
| 179 | * @param string $key The parameter key |
| 180 | * @param bool $default The default value if the parameter key does not exist |
| 181 | * |
| 182 | * @return bool The filtered value |
| 183 | */ |
| 184 | public function getBoolean($key, $default = false) |
| 185 | { |
| 186 | return $this->filter($key, $default, \FILTER_VALIDATE_BOOLEAN); |
| 187 | } |
| 188 | |
| 189 | /** |
| 190 | * Filter key. |
| 191 | * |
| 192 | * @param string $key Key |
| 193 | * @param mixed $default Default = null |
| 194 | * @param int $filter FILTER_* constant |
| 195 | * @param mixed $options Filter options |
| 196 | * |
| 197 | * @see https://php.net/filter-var |
| 198 | * |
| 199 | * @return mixed |
| 200 | */ |
| 201 | public function filter($key, $default = null, $filter = \FILTER_DEFAULT, $options = []) |
| 202 | { |
| 203 | $value = $this->get($key, $default); |
| 204 | |
| 205 | // Always turn $options into an array - this allows filter_var option shortcuts. |
| 206 | if (!\is_array($options) && $options) { |
| 207 | $options = ['flags' => $options]; |
| 208 | } |
| 209 | |
| 210 | // Add a convenience check for arrays. |
| 211 | if (\is_array($value) && !isset($options['flags'])) { |
| 212 | $options['flags'] = \FILTER_REQUIRE_ARRAY; |
| 213 | } |
| 214 | |
| 215 | return filter_var($value, $filter, $options); |
| 216 | } |
| 217 | |
| 218 | /** |
| 219 | * Returns an iterator for parameters. |
| 220 | * |
| 221 | * @return \ArrayIterator An \ArrayIterator instance |
| 222 | */ |
| 223 | public function getIterator() |
| 224 | { |
| 225 | return new \ArrayIterator($this->parameters); |
| 226 | } |
| 227 | |
| 228 | /** |
| 229 | * Returns the number of parameters. |
| 230 | * |
| 231 | * @return int The number of parameters |
| 232 | */ |
| 233 | public function count() |
| 234 | { |
| 235 | return \count($this->parameters); |
| 236 | } |
| 237 | } |
| 238 |