1
0
Fork 0
mirror of synced 2024-07-02 21:20:58 +12:00
appwrite/src/Appwrite/Network/Validator/URL.php

93 lines
1.8 KiB
PHP
Raw Normal View History

2021-03-24 06:27:51 +13:00
<?php
2021-03-25 06:47:17 +13:00
namespace Appwrite\Network\Validator;
2021-03-24 06:27:51 +13:00
use Utopia\Validator;
/**
* URL
*
* Validate that an variable is a valid URL
*
2022-02-17 04:16:37 +13:00
* @package Appwrite\Network\Validator
2021-03-24 06:27:51 +13:00
*/
class URL extends Validator
{
2022-02-17 04:16:37 +13:00
protected array $allowedSchemes;
/**
* @param array $allowedSchemes
*/
public function __construct(array $allowedSchemes = [])
{
$this->allowedSchemes = $allowedSchemes;
}
2022-02-17 04:19:27 +13:00
2021-03-24 06:27:51 +13:00
/**
* Get Description
*
* Returns validator description
*
* @return string
*/
public function getDescription(): string
2021-03-24 06:27:51 +13:00
{
2022-02-17 04:16:37 +13:00
if (!empty($this->allowedSchemes)) {
2022-02-17 04:19:27 +13:00
return 'Value must be a valid URL with following schemes (' . \implode(', ', $this->allowedSchemes) . ')';
2022-02-17 04:16:37 +13:00
}
2021-03-24 06:27:51 +13:00
return 'Value must be a valid URL';
}
/**
* Is valid
*
* Validation will pass when $value is valid URL.
*
* @param mixed $value
* @return bool
*/
public function isValid($value): bool
2021-03-24 06:27:51 +13:00
{
2022-10-08 14:01:28 +13:00
$sanitizedURL = '';
2022-09-30 23:28:56 +13:00
foreach (str_split($value) as $character) {
2022-10-08 14:01:28 +13:00
$sanitizedURL .= (ord($character) > 127) ? rawurlencode($character) : $character;
2022-09-30 23:28:56 +13:00
}
2022-10-08 14:01:28 +13:00
if (\filter_var($sanitizedURL, FILTER_VALIDATE_URL) === false) {
2021-03-24 06:27:51 +13:00
return false;
}
2022-10-08 14:01:28 +13:00
if (!empty($this->allowedSchemes) && !\in_array(\parse_url($sanitizedURL, PHP_URL_SCHEME), $this->allowedSchemes)) {
2022-02-17 04:16:37 +13:00
return false;
}
2021-03-24 06:27:51 +13:00
return true;
}
/**
* Is array
*
* Function will return true if object is array.
*
* @return bool
*/
public function isArray(): bool
{
return false;
}
/**
* Get Type
*
* Returns validator type.
*
* @return string
*/
public function getType(): string
{
return self::TYPE_STRING;
}
2021-03-24 06:27:51 +13:00
}