PluginProbe ʕ •ᴥ•ʔ
Matomo Analytics – Powerful, Privacy-First Insights for WordPress / 5.8.2
Matomo Analytics – Powerful, Privacy-First Insights for WordPress v5.8.2
5.11.1 5.11.0 5.10.2 5.10.1 trunk 1.0.2 1.0.3 1.0.4 1.0.5 1.0.6 1.1.0 1.1.1 1.1.2 1.1.3 1.2.0 1.3.0 1.3.1 1.3.2 4.0.0 4.0.1 4.0.2 4.0.3 4.0.4 4.1.0 4.1.1 4.1.2 4.1.3 4.10.0 4.11.0 4.12.0 4.13.0 4.13.2 4.13.3 4.13.4 4.13.5 4.14.0 4.14.1 4.14.2 4.15.0 4.15.1 4.15.2 4.15.3 4.2.0 4.3.0 4.3.1 4.4.1 4.4.2 4.5.0 4.6.0 5.0.1 5.0.2 5.0.3 5.0.4 5.0.5 5.0.6 5.0.7 5.0.8 5.1.0 5.1.1 5.1.2 5.1.3 5.1.4 5.1.5 5.1.6 5.1.7 5.10.0 5.2.0 5.2.1 5.2.2 5.3.0 5.3.1 5.3.2 5.3.3 5.6.0 5.6.1 5.7.0 5.7.1 5.8.0 5.8.1 5.8.2
matomo / app / core / Request.php
matomo / app / core Last commit date
API 3 months ago Access 3 months ago Application 3 months ago Archive 3 months ago ArchiveProcessor 3 months ago Archiver 2 years ago AssetManager 3 months ago Auth 6 months ago Category 6 months ago Changes 3 months ago CliMulti 1 year ago Columns 3 months ago Concurrency 3 months ago Config 3 months ago Container 3 months ago CronArchive 3 months ago DataAccess 3 months ago DataFiles 2 years ago DataTable 3 months ago Db 3 months ago DeviceDetector 1 year ago Email 2 years ago Exception 4 months ago Http 4 months ago Intl 3 months ago Log 2 years ago Mail 1 year ago Measurable 6 months ago Menu 3 months ago Metrics 3 months ago Notification 6 months ago Period 3 months ago Plugin 3 months ago Policy 3 months ago ProfessionalServices 1 year ago Report 1 year ago ReportRenderer 3 months ago Request 3 months ago Scheduler 3 months ago Segment 3 months ago Session 3 months ago Settings 3 months ago Tracker 3 months ago Translation 3 months ago Twig 1 year ago UpdateCheck 3 months ago Updater 4 months ago Updates 3 months ago Validators 1 year ago View 6 months ago ViewDataTable 3 months ago Visualization 1 year ago Widget 3 months ago .htaccess 2 years ago Access.php 3 months ago Archive.php 3 months ago ArchiveProcessor.php 4 months ago AssetManager.php 3 months ago Auth.php 6 months ago AuthResult.php 6 months ago BaseFactory.php 2 years ago Cache.php 2 years ago CacheId.php 4 months ago CliMulti.php 3 months ago Common.php 3 months ago Config.php 3 months ago Console.php 3 months ago Context.php 2 years ago Cookie.php 1 year ago CronArchive.php 3 months ago DI.php 3 months ago DataArray.php 5 months ago DataTable.php 3 months ago Date.php 3 months ago Db.php 3 months ago DbHelper.php 3 months ago Development.php 1 year ago ErrorHandler.php 6 months ago EventDispatcher.php 1 year ago ExceptionHandler.php 4 months ago FileIntegrity.php 3 months ago Filechecks.php 1 year ago Filesystem.php 3 months ago FrontController.php 4 months ago Http.php 4 months ago IP.php 1 year ago Log.php 3 months ago LogDeleter.php 1 year ago Mail.php 1 year ago Metrics.php 3 months ago NoAccessException.php 2 years ago Nonce.php 6 months ago Notification.php 6 months ago NumberFormatter.php 5 months ago Option.php 5 months ago Period.php 3 months ago Piwik.php 3 months ago Plugin.php 3 months ago Process.php 1 year ago Profiler.php 6 months ago ProxyHeaders.php 4 months ago ProxyHttp.php 5 months ago QuickForm2.php 3 months ago RankingQuery.php 5 months ago ReportRenderer.php 3 months ago Request.php 3 months ago Segment.php 3 months ago Sequence.php 6 months ago Session.php 3 months ago SettingsPiwik.php 3 months ago SettingsServer.php 1 year ago Singleton.php 2 years ago Site.php 4 months ago SiteContentDetector.php 3 months ago SupportedBrowser.php 2 years ago TCPDF.php 1 year ago Theme.php 1 year ago Timer.php 2 years ago Tracker.php 3 months ago Twig.php 3 months ago Unzip.php 1 year ago UpdateCheck.php 3 months ago Updater.php 3 months ago UpdaterErrorException.php 2 years ago Updates.php 3 months ago Url.php 3 months ago UrlHelper.php 3 months ago Version.php 3 months ago View.php 3 months ago bootstrap.php 1 year ago dispatch.php 2 years ago testMinimumPhpVersion.php 6 months ago
Request.php
271 lines
1 <?php
2
3 /**
4 * Matomo - free/libre analytics platform
5 *
6 * @link https://matomo.org
7 * @license https://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
8 */
9 namespace Piwik;
10
11 use InvalidArgumentException;
12 /**
13 * Provides (type safe) access methods for request parameters.
14 *
15 * Ensure to handle parameters received with this class with care.
16 * Especially parameters received as string, array or json might contain malicious content. Those should never be used
17 * raw in templates or other output.
18 *
19 * Note: For security reasons this class will automatically remove null byte sequences from string values.
20 *
21 * @api
22 */
23 class Request
24 {
25 /**
26 * @var array
27 */
28 protected $requestParameters;
29 private static $exceptionMsg = "The parameter '%s' isn't set in the Request and a default value wasn't provided.";
30 public function __construct(array $requestParameters)
31 {
32 $this->requestParameters = $requestParameters;
33 }
34 /**
35 * Creates a request object using GET and POST parameters of the current request
36 *
37 * @return static
38 */
39 public static function fromRequest() : self
40 {
41 return new self($_GET + $_POST);
42 }
43 /**
44 * Creates a request object using only GET parameters of the current request
45 *
46 * @return static
47 */
48 public static function fromGet() : self
49 {
50 return new self($_GET);
51 }
52 /**
53 * Creates a request object using only POST parameters of the current request
54 *
55 * @return static
56 */
57 public static function fromPost() : self
58 {
59 return new self($_POST);
60 }
61 /**
62 * Creates a request object using the parameters that can be extracted from the provided query string
63 *
64 * @return static
65 */
66 public static function fromQueryString(string $queryString) : self
67 {
68 $requestParameters = [];
69 parse_str($queryString, $requestParameters);
70 // If a querystring is provided urlencode'd parse_str will not be able to parse it correctly.
71 // A querystring like `method%3dVisitsSummary.get%26idSite%3d1` would result in
72 // an array like `['method=VisitsSummary.get&idSite=1' => '']`
73 // In this case we try to parse the urldecode'd string to get proper results
74 // Note: We can't always perform a urldecode, as this might otherwise destroy urlencoded values containing a &
75 if (1 === count($requestParameters) && '' === end($requestParameters)) {
76 $requestParameters = [];
77 parse_str(urldecode($queryString), $requestParameters);
78 }
79 return new self($requestParameters);
80 }
81 /**
82 * Returns the requested parameter from the request object.
83 * If the requested parameter can't be found and no default is provided an exception will be thrown
84 *
85 * Note: It's recommend to use one of type-safe methods instead, if a certain type is expected:
86 * @see getIntegerParameter
87 * @see getFloatParameter
88 * @see getStringParameter
89 * @see getArrayParameter
90 * @see getJSONParameter
91 *
92 * @param mixed $default
93 * @return mixed
94 * @throws InvalidArgumentException
95 */
96 public function getParameter(string $name, $default = null)
97 {
98 if (!strlen($name)) {
99 throw new InvalidArgumentException('Invalid request parameter. Parameter name required.');
100 }
101 if (array_key_exists($name, $this->requestParameters) && $this->requestParameters[$name] !== null) {
102 return $this->filterNullBytes($this->requestParameters[$name]);
103 }
104 if (null !== $default) {
105 return $default;
106 }
107 throw new InvalidArgumentException(sprintf(self::$exceptionMsg, $name));
108 }
109 /**
110 * Returns the requested parameter from the request object.
111 * If no default is provided and the requested parameter either can't be found or is not of type integer an
112 * exception will be thrown
113 *
114 * @throws InvalidArgumentException
115 */
116 public function getIntegerParameter(string $name, ?int $default = null) : int
117 {
118 $parameter = $this->getParameter($name, $default);
119 if ((is_string($parameter) || is_numeric($parameter)) && (string) $parameter === (string) (int) $parameter) {
120 return (int) $parameter;
121 }
122 if (null !== $default) {
123 return $default;
124 }
125 throw new InvalidArgumentException(sprintf(self::$exceptionMsg, $name));
126 }
127 /**
128 * Returns the requested parameter from the request object.
129 * If no default is provided and the requested parameter either can't be found or is not of type float an
130 * exception will be thrown
131 *
132 * @throws InvalidArgumentException
133 */
134 public function getFloatParameter(string $name, ?float $default = null) : float
135 {
136 $parameter = $this->getParameter($name, $default);
137 if (is_float($parameter) || is_int($parameter)) {
138 return (float) $parameter;
139 }
140 // Regex for all supported float notations in PHP (see https://www.php.net/manual/en/language.types.float.php)
141 $floatRegex = "/^[-+]?((([0-9]+(_[0-9]+)*)|(([0-9]+(_[0-9]+)*)?\\.([0-9]+(_[0-9]+)*))|(([0-9]+(_[0-9]+)*)\\.([0-9]+(_[0-9]+)*)?))([eE][+-]?([0-9]+(_[0-9]+)*))?)\$/";
142 if (is_string($parameter) && preg_match($floatRegex, $parameter)) {
143 // underscores would break numbers if not removed before
144 return (float) str_replace('_', '', $parameter);
145 }
146 if (null !== $default) {
147 return $default;
148 }
149 throw new InvalidArgumentException(sprintf(self::$exceptionMsg, $name));
150 }
151 /**
152 * Returns the requested parameter from the request object.
153 * If no default is provided and the requested parameter either can't be found or is not of type string an
154 * exception will be thrown
155 *
156 * @throws InvalidArgumentException
157 */
158 public function getStringParameter(string $name, ?string $default = null) : string
159 {
160 $parameter = $this->getParameter($name, $default);
161 if (is_string($parameter) || is_numeric($parameter)) {
162 return $this->filterNullBytes((string) $parameter);
163 }
164 if (null !== $default) {
165 return $default;
166 }
167 throw new InvalidArgumentException(sprintf(self::$exceptionMsg, $name));
168 }
169 /**
170 * Returns the requested parameter from the request object.
171 * If no default is provided and the requested parameter either can't be found or can't be converted to boolean
172 * exception will be thrown
173 *
174 * Values accepted as bool-ish:
175 * true: true, 'true', '1', 1
176 * false: false, 'false', '0', 0
177 *
178 * @throws InvalidArgumentException
179 */
180 public function getBoolParameter(string $name, ?bool $default = null) : bool
181 {
182 $parameter = $this->getParameter($name, $default);
183 if ($parameter === \false || $parameter === \true) {
184 return $parameter;
185 }
186 if (\is_string($parameter) && \strtolower($parameter) === 'false' || $parameter === '0' || $parameter === 0) {
187 return \false;
188 }
189 if (\is_string($parameter) && \strtolower($parameter) === 'true' || $parameter === '1' || $parameter === 1) {
190 return \true;
191 }
192 if (null !== $default) {
193 return $default;
194 }
195 throw new InvalidArgumentException(sprintf(self::$exceptionMsg, $name));
196 }
197 /**
198 * Returns the requested parameter from the request object.
199 * If no default is provided and the requested parameter either can't be found or is not of type array an
200 * exception will be thrown
201 *
202 * @param array|null $default
203 * @return array
204 * @throws InvalidArgumentException
205 */
206 public function getArrayParameter(string $name, ?array $default = null) : array
207 {
208 $parameter = $this->getParameter($name, $default);
209 if (is_array($parameter)) {
210 return $this->filterNullBytes($parameter);
211 }
212 if (null !== $default) {
213 return $default;
214 }
215 throw new InvalidArgumentException(sprintf(self::$exceptionMsg, $name));
216 }
217 /**
218 * Returns the requested parameter from the request object.
219 * If no default is provided and the requested parameter either can't be found or can't be json_decode'd an
220 * exception will be thrown
221 *
222 * @param mixed $default
223 * @return mixed
224 * @throws InvalidArgumentException
225 */
226 public function getJsonParameter(string $name, $default = null)
227 {
228 try {
229 // Note we can't simply pass the default to getParameter here, in case the default would be string
230 // we would otherwise try to parse it as json below, which might result in unexpected behavior
231 $parameter = $this->getParameter($name);
232 } catch (InvalidArgumentException $e) {
233 $parameter = null;
234 if ($default !== null) {
235 return $default;
236 }
237 }
238 if (is_string($parameter)) {
239 $decodedValue = \json_decode($parameter, \true);
240 if ($decodedValue !== null && $decodedValue !== '') {
241 return $this->filterNullBytes($decodedValue);
242 }
243 }
244 if (null !== $default) {
245 return $default;
246 }
247 throw new InvalidArgumentException(sprintf(self::$exceptionMsg, $name));
248 }
249 private function filterNullBytes($value)
250 {
251 if (is_array($value)) {
252 $result = [];
253 foreach ($value as $key => $arrayValue) {
254 $result[$key] = $this->filterNullBytes($arrayValue);
255 }
256 return $result;
257 } else {
258 return is_string($value) ? \Piwik\Common::sanitizeNullBytes($value) : $value;
259 }
260 }
261 /**
262 * Returns an array containing all parameters of the request object
263 *
264 * @return array
265 */
266 public function getParameters() : array
267 {
268 return $this->requestParameters;
269 }
270 }
271