Skip to content

Commit 0a66152

Browse files
Added Request class for handling query parameters in controller actions
1 parent 55562c6 commit 0a66152

File tree

1 file changed

+38
-0
lines changed

1 file changed

+38
-0
lines changed

Request.php

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
<?php
2+
namespace winternet\yii2;
3+
4+
use Yii;
5+
use yii\base\Component;
6+
7+
class Request extends Component {
8+
9+
/**
10+
* Handle action parameters in controller, incl. numeric value conversion
11+
*
12+
* The purpose is to solve the issue when the parameter has a dash or other special character in it prohibiting the normal parameters in the action method.
13+
*/
14+
public static function queryParam($name, $default = null) {
15+
$value = \Yii::$app->request->get($name);
16+
if (empty($value) && !is_numeric($value)) {
17+
if ($default === null) {
18+
throw new \yii\web\BadRequestHttpException('Missing required parameter: '. $name);
19+
} else {
20+
return $default;
21+
}
22+
}
23+
24+
// Handle type conversion for numeric values as well
25+
if (is_numeric($value)) {
26+
if (is_int($default) || is_float($default)) {
27+
if (floor($value) != (float) $value) {
28+
$value = (float) $value;
29+
} else {
30+
$value = (integer) $value;
31+
}
32+
}
33+
}
34+
35+
return $value;
36+
}
37+
38+
}

0 commit comments

Comments
 (0)