19 declare(strict_types=1);
35 public function securedString(
string $parameter,
bool $cast_null_to_string =
true): string
37 $as_sanizited_string = $this->
refinery->custom()->transformation(
static function (
string $value):
string {
41 $null_to_empty_string = $this->
refinery->custom()->transformation(
static function ($value):
string {
42 if ($value === null) {
46 throw new ilException(
'Expected null in transformation');
49 $sanizite_as_string = $this->
refinery->in()->series([
50 $cast_null_to_string ?
51 $this->
refinery->byTrying([$this->refinery->kindlyTo()->string(), $null_to_empty_string]) :
52 $this->
refinery->kindlyTo()->string(),
57 if ($this->
http->wrapper()->post()->has($parameter)) {
58 $string = $this->
http->wrapper()->post()->retrieve(
62 } elseif ($this->
http->wrapper()->query()->has($parameter)) {
63 $string = $this->
http->wrapper()->query()->retrieve(
75 $is_url = filter_var($url, FILTER_VALIDATE_URL);
81 $c->setOpt(CURLOPT_CUSTOMREQUEST,
'HEAD');
82 $c->setOpt(CURLOPT_SSL_VERIFYPEER, 0);
83 $c->setOpt(CURLOPT_SSL_VERIFYHOST, 0);
84 $c->setOpt(CURLOPT_RETURNTRANSFER, 1);
85 $c->setOpt(CURLOPT_FOLLOWLOCATION, 0);
86 $c->setOpt(CURLOPT_MAXREDIRS, 0);
87 $c->setOpt(CURLOPT_URL, $url);
88 $c->setOpt(CURLOPT_HEADER,
true);
89 $c->setOpt(CURLOPT_NOBODY,
true);
92 $is_valid =
$c->getInfo(CURLINFO_HTTP_CODE) === 200;
97 } elseif (is_file($url)) {
106 foreach ($sizes as $size) {
110 if (!preg_match(
'/(\d)+?(\W)*(cm|mm)$/', $size)) {
111 if ($size !== 0 && $size !==
"0" && $size !== null && $size !==
"") {
122 foreach ($texts as $text) {
123 if (!preg_match(
'/[a-zA-Z\d ]+$/', $text)) {
124 if ($text !==
'' && $text !== null) {
140 foreach ($parameters as $parameter) {
154 public function int(
string $parameter,
bool $cast_null_to_int =
true):
int 156 $null_to_zero = $this->
refinery->custom()->transformation(
static function ($value):
int {
157 if ($value === null) {
161 throw new ilException(
'Expected null in transformation');
164 $as_int = $cast_null_to_int ?
165 $this->
refinery->byTrying([$this->
refinery->kindlyTo()->int(), $null_to_zero]) :
169 if ($this->
http->wrapper()->post()->has($parameter)) {
170 $int = $this->
http->wrapper()->post()->retrieve(
174 } elseif ($this->
http->wrapper()->query()->has($parameter)) {
175 $int = $this->
http->wrapper()->query()->retrieve(
184 public function bool(
string $parameter,
bool $cast_null_to_false =
true):
bool 186 $null_to_false = $this->
refinery->custom()->transformation(
static function ($value):
bool {
187 if ($value === null) {
191 throw new ilException(
'Expected null in transformation');
194 $as_bool = $cast_null_to_false ?
195 $this->
refinery->byTrying([$this->
refinery->kindlyTo()->bool(), $null_to_false]) :
196 $this->
refinery->kindlyTo()->bool();
199 if ($this->
http->wrapper()->post()->has($parameter)) {
200 $bool = $this->
http->wrapper()->post()->retrieve(
204 } elseif ($this->
http->wrapper()->query()->has($parameter)) {
205 $bool = $this->
http->wrapper()->query()->retrieve(
214 public function float(
string $parameter,
bool $cast_null_to_zero =
true):
float 216 $null_to_zero = $this->
refinery->custom()->transformation(
static function ($value):
float {
217 if ($value === null) {
221 throw new ilException(
'Expected null in transformation');
224 $as_float = $cast_null_to_zero ?
225 $this->
refinery->byTrying([$this->
refinery->kindlyTo()->float(), $null_to_zero]) :
226 $this->
refinery->kindlyTo()->float();
229 if ($this->
http->wrapper()->post()->has($parameter)) {
230 $float = $this->
http->wrapper()->post()->retrieve(
234 } elseif ($this->
http->wrapper()->query()->has($parameter)) {
235 $float = $this->
http->wrapper()->query()->retrieve(
__construct(\ILIAS\Refinery\Factory $refinery, \ILIAS\HTTP\GlobalHttpState $http)
isPathOrUrlValid(string $url)
int(string $parameter, bool $cast_null_to_int=true)
ILIAS Refinery Factory $refinery
Class ChatMainBarProvider .
static stripSlashes(string $a_str, bool $a_strip_html=true, string $a_allow="")
validatePathOrUrl(array $parameters)
isNotValidText(array $texts)
bool(string $parameter, bool $cast_null_to_false=true)
static http()
Fetches the global http state from ILIAS.
securedString(string $parameter, bool $cast_null_to_string=true)
float(string $parameter, bool $cast_null_to_zero=true)
isNotValidSize(array $sizes)
ILIAS HTTP GlobalHttpState $http