appwrite/src/Database/Validator/Key.php

48 lines
826 B
PHP
Raw Normal View History

2019-05-09 06:54:39 +00:00
<?php
namespace Database\Validator;
use Utopia\Validator;
class Key extends Validator
{
/**
* @var string
*/
protected $message = 'Parameter must contain only letters with no spaces or special chars and be shorter than 32 chars';
/**
* Get Description.
2019-05-09 06:54:39 +00:00
*
* Returns validator description
*
* @return string
*/
public function getDescription()
{
return $this->message;
}
/**
* Is valid.
2019-05-09 06:54:39 +00:00
*
* Returns true if valid or false if not.
*
* @param $value
*
2019-05-09 06:54:39 +00:00
* @return bool
*/
public function isValid($value)
{
if (preg_match('/[^A-Za-z0-9\-\_]/', $value)) {
2019-05-09 06:54:39 +00:00
return false;
}
if (mb_strlen($value) > 40) {
2019-05-09 06:54:39 +00:00
return false;
}
return true;
}
}