| Path : /proc/self/root/var/www/html/phkaymedia/vendor/irazasyed/telegram-bot-sdk/src/Traits/ |
|
B-Con CMD Config cPanel C-Rdp D-Log Info Jump Mass Ransom Symlink vHost Zone-H |
| Current File : //proc/self/root/var/www/html/phkaymedia/vendor/irazasyed/telegram-bot-sdk/src/Traits/Validator.php |
<?php
namespace Telegram\Bot\Traits;
use Telegram\Bot\FileUpload\InputFile;
/**
* Validator.
*/
trait Validator
{
/**
* Determine given param in params array is a file id.
*
* @param string $inputFileField
* @param array $params
*
* @return bool
*/
protected function hasFileId(string $inputFileField, array $params): bool
{
return isset($params[$inputFileField]) && $this->isFileId($params[$inputFileField]);
}
/**
* Determine if given contents are an instance of InputFile.
*
* @param $contents
*
* @return bool
*/
protected function isInputFile($contents): bool
{
return $contents instanceof InputFile;
}
/**
* Determine the given string is a file id.
*
* @param string $value
*
* @return bool
*/
protected function isFileId($value): bool
{
if (! is_string($value)) {
return false;
}
return preg_match('/^[\w\-]{20,}+$/u', trim($value)) > 0;
}
/**
* Determine given string is a URL.
*
* @param string $value A filename or URL to a sticker
*
* @return bool
*/
protected function isUrl($value): bool
{
return (bool) filter_var($value, FILTER_VALIDATE_URL);
}
/**
* Determine given string is a json object.
*
* @param string $string A json string
* @return bool
*/
protected function is_json($string): bool
{
json_decode($string);
return json_last_error() == JSON_ERROR_NONE;
}
}