Files
appwrite/src/Storage/Validators/FileName.php
T
eldadfux 35680bbae9 Run PHP-CS-FIXER to make sure
code is consisted with PSR-1 + PSR-2
2019-09-06 20:04:26 +03:00

34 lines
571 B
PHP

<?php
namespace Storage\Validators;
use Utopia\Validator;
class FileName extends Validator
{
public function getDescription()
{
return 'Filename is not valid';
}
/**
* The file name can only contain "a-z", "A-Z", "0-9" and "-" and not empty.
*
* @param string $name
*
* @return bool
*/
public function isValid($name)
{
if (empty($name)) {
return false;
}
if (!preg_match('/^[a-zA-Z0-9.]+$/', $name)) {
return false;
}
return true;
}
}