mirror of
https://github.com/appwrite/appwrite
synced 2026-05-08 17:51:12 +00:00
33 lines
580 B
PHP
33 lines
580 B
PHP
<?php
|
|
|
|
namespace Appwrite\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;
|
|
}
|
|
}
|