12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556 |
- <?php
- namespace think;
- use think\exception\ClassNotFoundException;
- use think\validate\ValidateRule;
- class Validate
- {
-
- protected static $type = [];
-
- protected $alias = [
- '>' => 'gt', '>=' => 'egt', '<' => 'lt', '<=' => 'elt', '=' => 'eq', 'same' => 'eq',
- ];
-
- protected $rule = [];
-
- protected $message = [];
-
- protected $field = [];
-
- protected static $typeMsg = [
- 'require' => ':attribute require',
- 'must' => ':attribute must',
- 'number' => ':attribute must be numeric',
- 'integer' => ':attribute must be integer',
- 'float' => ':attribute must be float',
- 'boolean' => ':attribute must be bool',
- 'email' => ':attribute not a valid email address',
- 'mobile' => ':attribute not a valid mobile',
- 'array' => ':attribute must be a array',
- 'accepted' => ':attribute must be yes,on or 1',
- 'date' => ':attribute not a valid datetime',
- 'file' => ':attribute not a valid file',
- 'image' => ':attribute not a valid image',
- 'alpha' => ':attribute must be alpha',
- 'alphaNum' => ':attribute must be alpha-numeric',
- 'alphaDash' => ':attribute must be alpha-numeric, dash, underscore',
- 'activeUrl' => ':attribute not a valid domain or ip',
- 'chs' => ':attribute must be chinese',
- 'chsAlpha' => ':attribute must be chinese or alpha',
- 'chsAlphaNum' => ':attribute must be chinese,alpha-numeric',
- 'chsDash' => ':attribute must be chinese,alpha-numeric,underscore, dash',
- 'url' => ':attribute not a valid url',
- 'ip' => ':attribute not a valid ip',
- 'dateFormat' => ':attribute must be dateFormat of :rule',
- 'in' => ':attribute must be in :rule',
- 'notIn' => ':attribute be notin :rule',
- 'between' => ':attribute must between :1 - :2',
- 'notBetween' => ':attribute not between :1 - :2',
- 'length' => 'size of :attribute must be :rule',
- 'max' => 'max size of :attribute must be :rule',
- 'min' => 'min size of :attribute must be :rule',
- 'after' => ':attribute cannot be less than :rule',
- 'before' => ':attribute cannot exceed :rule',
- 'afterWith' => ':attribute cannot be less than :rule',
- 'beforeWith' => ':attribute cannot exceed :rule',
- 'expire' => ':attribute not within :rule',
- 'allowIp' => 'access IP is not allowed',
- 'denyIp' => 'access IP denied',
- 'confirm' => ':attribute out of accord with :2',
- 'different' => ':attribute cannot be same with :2',
- 'egt' => ':attribute must greater than or equal :rule',
- 'gt' => ':attribute must greater than :rule',
- 'elt' => ':attribute must less than or equal :rule',
- 'lt' => ':attribute must less than :rule',
- 'eq' => ':attribute must equal :rule',
- 'unique' => ':attribute has exists',
- 'regex' => ':attribute not conform to the rules',
- 'method' => 'invalid Request method',
- 'token' => 'invalid token',
- 'fileSize' => 'filesize not match',
- 'fileExt' => 'extensions to upload is not allowed',
- 'fileMime' => 'mimetype to upload is not allowed',
- ];
-
- protected $currentScene = null;
-
- protected $filter = [
- 'email' => FILTER_VALIDATE_EMAIL,
- 'ip' => [FILTER_VALIDATE_IP, FILTER_FLAG_IPV4 | FILTER_FLAG_IPV6],
- 'integer' => FILTER_VALIDATE_INT,
- 'url' => FILTER_VALIDATE_URL,
- 'macAddr' => FILTER_VALIDATE_MAC,
- 'float' => FILTER_VALIDATE_FLOAT,
- ];
-
- protected $defaultRegex = [
- 'alphaDash' => '/^[A-Za-z0-9\-\_]+$/',
- 'chs' => '/^[\x{4e00}-\x{9fa5}]+$/u',
- 'chsAlpha' => '/^[\x{4e00}-\x{9fa5}a-zA-Z]+$/u',
- 'chsAlphaNum' => '/^[\x{4e00}-\x{9fa5}a-zA-Z0-9]+$/u',
- 'chsDash' => '/^[\x{4e00}-\x{9fa5}a-zA-Z0-9\_\-]+$/u',
- 'mobile' => '/^1[3-9][0-9]\d{8}$/',
- 'idCard' => '/(^[1-9]\d{5}(18|19|([23]\d))\d{2}((0[1-9])|(10|11|12))(([0-2][1-9])|10|20|30|31)\d{3}[0-9Xx]$)|(^[1-9]\d{5}\d{2}((0[1-9])|(10|11|12))(([0-2][1-9])|10|20|30|31)\d{2}$)/',
- 'zip' => '/\d{6}/',
- ];
-
- protected $scene = [];
-
- protected $error = [];
-
- protected $batch = false;
-
- protected $only = [];
-
- protected $remove = [];
-
- protected $append = [];
-
- protected $regex = [];
-
- public function __construct(array $rules = [], array $message = [], array $field = [])
- {
- $this->rule = $rules + $this->rule;
- $this->message = array_merge($this->message, $message);
- $this->field = array_merge($this->field, $field);
- }
-
- public static function make(array $rules = [], array $message = [], array $field = [])
- {
- return new self($rules, $message, $field);
- }
-
- public function rule($name, $rule = '')
- {
- if (is_array($name)) {
- $this->rule = $name + $this->rule;
- if (is_array($rule)) {
- $this->field = array_merge($this->field, $rule);
- }
- } else {
- $this->rule[$name] = $rule;
- }
- return $this;
- }
-
- public static function extend($type, $callback = null)
- {
- if (is_array($type)) {
- self::$type = array_merge(self::$type, $type);
- } else {
- self::$type[$type] = $callback;
- }
- }
-
- public static function setTypeMsg($type, $msg = null)
- {
- if (is_array($type)) {
- self::$typeMsg = array_merge(self::$typeMsg, $type);
- } else {
- self::$typeMsg[$type] = $msg;
- }
- }
-
- public function message($name, $message = '')
- {
- if (is_array($name)) {
- $this->message = array_merge($this->message, $name);
- } else {
- $this->message[$name] = $message;
- }
- return $this;
- }
-
- public function scene($name)
- {
-
- $this->currentScene = $name;
- return $this;
- }
-
- public function hasScene($name)
- {
- return isset($this->scene[$name]) || method_exists($this, 'scene' . $name);
- }
-
- public function batch($batch = true)
- {
- $this->batch = $batch;
- return $this;
- }
-
- public function only($fields)
- {
- $this->only = $fields;
- return $this;
- }
-
- public function remove($field, $rule = null)
- {
- if (is_array($field)) {
- foreach ($field as $key => $rule) {
- if (is_int($key)) {
- $this->remove($rule);
- } else {
- $this->remove($key, $rule);
- }
- }
- } else {
- if (is_string($rule)) {
- $rule = explode('|', $rule);
- }
- $this->remove[$field] = $rule;
- }
- return $this;
- }
-
- public function append($field, $rule = null)
- {
- if (is_array($field)) {
- foreach ($field as $key => $rule) {
- $this->append($key, $rule);
- }
- } else {
- if (is_string($rule)) {
- $rule = explode('|', $rule);
- }
- $this->append[$field] = $rule;
- }
- return $this;
- }
-
- public function check($data, $rules = [], $scene = '')
- {
- $this->error = [];
- if (empty($rules)) {
-
- $rules = $this->rule;
- }
-
- $this->getScene($scene);
- foreach ($this->append as $key => $rule) {
- if (!isset($rules[$key])) {
- $rules[$key] = $rule;
- unset($this->append[$key]);
- }
- }
- foreach ($rules as $key => $rule) {
-
- if (strpos($key, '|')) {
-
- list($key, $title) = explode('|', $key);
- } else {
- $title = isset($this->field[$key]) ? $this->field[$key] : $key;
- }
-
- if (!empty($this->only) && !in_array($key, $this->only)) {
- continue;
- }
-
- $value = $this->getDataValue($data, $key);
-
- if ($rule instanceof \Closure) {
- $result = call_user_func_array($rule, [$value, $data, $title, $this]);
- } elseif ($rule instanceof ValidateRule) {
-
- $result = $this->checkItem($key, $value, $rule->getRule(), $data, $rule->getTitle() ?: $title, $rule->getMsg());
- } else {
- $result = $this->checkItem($key, $value, $rule, $data, $title);
- }
- if (true !== $result) {
-
- if (!empty($this->batch)) {
-
- if (is_array($result)) {
- $this->error = array_merge($this->error, $result);
- } else {
- $this->error[$key] = $result;
- }
- } else {
- $this->error = $result;
- return false;
- }
- }
- }
- return !empty($this->error) ? false : true;
- }
-
- public function checkRule($value, $rules)
- {
- if ($rules instanceof \Closure) {
- return call_user_func_array($rules, [$value]);
- } elseif ($rules instanceof ValidateRule) {
- $rules = $rules->getRule();
- } elseif (is_string($rules)) {
- $rules = explode('|', $rules);
- }
- foreach ($rules as $key => $rule) {
- if ($rule instanceof \Closure) {
- $result = call_user_func_array($rule, [$value]);
- } else {
-
- list($type, $rule) = $this->getValidateType($key, $rule);
- $callback = isset(self::$type[$type]) ? self::$type[$type] : [$this, $type];
- $result = call_user_func_array($callback, [$value, $rule]);
- }
- if (true !== $result) {
- return $result;
- }
- }
- return true;
- }
-
- protected function checkItem($field, $value, $rules, $data, $title = '', $msg = [])
- {
- if (isset($this->remove[$field]) && true === $this->remove[$field] && empty($this->append[$field])) {
-
- return true;
- }
-
- if (is_string($rules)) {
- $rules = explode('|', $rules);
- }
- if (isset($this->append[$field])) {
-
- $rules = array_unique(array_merge($rules, $this->append[$field]), SORT_REGULAR);
- unset($this->append[$field]);
- }
- $i = 0;
- $result = true;
- foreach ($rules as $key => $rule) {
- if ($rule instanceof \Closure) {
- $result = call_user_func_array($rule, [$value, $data]);
- $info = is_numeric($key) ? '' : $key;
- } else {
-
- list($type, $rule, $info) = $this->getValidateType($key, $rule);
- if (isset($this->append[$field]) && in_array($info, $this->append[$field])) {
- } elseif (array_key_exists($field, $this->remove) && (null === $this->remove[$field] || in_array($info, $this->remove[$field]))) {
-
- $i++;
- continue;
- }
-
- if (isset(self::$type[$type])) {
- $result = call_user_func_array(self::$type[$type], [$value, $rule, $data, $field, $title]);
- } elseif ('must' == $info || 0 === strpos($info, 'require') || (!is_null($value) && '' !== $value)) {
-
- $result = call_user_func_array([$this, $type], [$value, $rule, $data, $field, $title]);
- } else {
- $result = true;
- }
- }
- if (false === $result) {
-
- if (!empty($msg[$i])) {
- $message = $msg[$i];
- if (is_string($message) && strpos($message, '{%') === 0) {
- $message = facade\Lang::get(substr($message, 2, -1));
- }
- } else {
- $message = $this->getRuleMsg($field, $title, $info, $rule);
- }
- return $message;
- } elseif (true !== $result) {
-
- if (is_string($result) && false !== strpos($result, ':')) {
- $result = str_replace(':attribute', $title, $result);
- if (strpos($result, ':rule') && is_scalar($rule)) {
- $result = str_replace(':rule', (string) $rule, $result);
- }
- }
- return $result;
- }
- $i++;
- }
- return $result;
- }
-
- protected function getValidateType($key, $rule)
- {
-
- if (!is_numeric($key)) {
- return [$key, $rule, $key];
- }
- if (strpos($rule, ':')) {
- list($type, $rule) = explode(':', $rule, 2);
- if (isset($this->alias[$type])) {
-
- $type = $this->alias[$type];
- }
- $info = $type;
- } elseif (method_exists($this, $rule)) {
- $type = $rule;
- $info = $rule;
- $rule = '';
- } else {
- $type = 'is';
- $info = $rule;
- }
- return [$type, $rule, $info];
- }
-
- public function confirm($value, $rule, $data = [], $field = '')
- {
- if ('' == $rule) {
- if (strpos($field, '_confirm')) {
- $rule = strstr($field, '_confirm', true);
- } else {
- $rule = $field . '_confirm';
- }
- }
- return $this->getDataValue($data, $rule) === $value;
- }
-
- public function different($value, $rule, $data = [])
- {
- return $this->getDataValue($data, $rule) != $value;
- }
-
- public function egt($value, $rule, $data = [])
- {
- return $value >= $this->getDataValue($data, $rule);
- }
-
- public function gt($value, $rule, $data)
- {
- return $value > $this->getDataValue($data, $rule);
- }
-
- public function elt($value, $rule, $data = [])
- {
- return $value <= $this->getDataValue($data, $rule);
- }
-
- public function lt($value, $rule, $data = [])
- {
- return $value < $this->getDataValue($data, $rule);
- }
-
- public function eq($value, $rule)
- {
- return $value == $rule;
- }
-
- public function must($value, $rule = null)
- {
- return !empty($value) || '0' == $value;
- }
-
- public function is($value, $rule, $data = [])
- {
- switch (Loader::parseName($rule, 1, false)) {
- case 'require':
-
- $result = !empty($value) || '0' == $value;
- break;
- case 'accepted':
-
- $result = in_array($value, ['1', 'on', 'yes']);
- break;
- case 'date':
-
- $result = false !== strtotime($value);
- break;
- case 'activeUrl':
-
- $result = checkdnsrr($value);
- break;
- case 'boolean':
- case 'bool':
-
- $result = in_array($value, [true, false, 0, 1, '0', '1'], true);
- break;
- case 'number':
- $result = ctype_digit((string) $value);
- break;
- case 'alphaNum':
- $result = ctype_alnum($value);
- break;
- case 'array':
-
- $result = is_array($value);
- break;
- case 'file':
- $result = $value instanceof File;
- break;
- case 'image':
- $result = $value instanceof File && in_array($this->getImageType($value->getRealPath()), [1, 2, 3, 6]);
- break;
- case 'token':
- $result = $this->token($value, '__token__', $data);
- break;
- default:
- if (isset(self::$type[$rule])) {
-
- $result = call_user_func_array(self::$type[$rule], [$value]);
- } elseif (function_exists('ctype_' . $rule)) {
-
- $ctypeFun = 'ctype_' . $rule;
- $result = $ctypeFun($value);
- } elseif (isset($this->filter[$rule])) {
-
- $result = $this->filter($value, $this->filter[$rule]);
- } else {
-
- $result = $this->regex($value, $rule);
- }
- }
- return $result;
- }
-
- protected function getImageType($image)
- {
- if (function_exists('exif_imagetype')) {
- return exif_imagetype($image);
- }
- try {
- $info = getimagesize($image);
- return $info ? $info[2] : false;
- } catch (\Exception $e) {
- return false;
- }
- }
-
- public function activeUrl($value, $rule = 'MX')
- {
- if (!in_array($rule, ['A', 'MX', 'NS', 'SOA', 'PTR', 'CNAME', 'AAAA', 'A6', 'SRV', 'NAPTR', 'TXT', 'ANY'])) {
- $rule = 'MX';
- }
- return checkdnsrr($value, $rule);
- }
-
- public function ip($value, $rule = 'ipv4')
- {
- if (!in_array($rule, ['ipv4', 'ipv6'])) {
- $rule = 'ipv4';
- }
- return $this->filter($value, [FILTER_VALIDATE_IP, 'ipv6' == $rule ? FILTER_FLAG_IPV6 : FILTER_FLAG_IPV4]);
- }
-
- public function fileExt($file, $rule)
- {
- if (is_array($file)) {
- foreach ($file as $item) {
- if (!($item instanceof File) || !$item->checkExt($rule)) {
- return false;
- }
- }
- return true;
- } elseif ($file instanceof File) {
- return $file->checkExt($rule);
- }
- return false;
- }
-
- public function fileMime($file, $rule)
- {
- if (is_array($file)) {
- foreach ($file as $item) {
- if (!($item instanceof File) || !$item->checkMime($rule)) {
- return false;
- }
- }
- return true;
- } elseif ($file instanceof File) {
- return $file->checkMime($rule);
- }
- return false;
- }
-
- public function fileSize($file, $rule)
- {
- if (is_array($file)) {
- foreach ($file as $item) {
- if (!($item instanceof File) || !$item->checkSize($rule)) {
- return false;
- }
- }
- return true;
- } elseif ($file instanceof File) {
- return $file->checkSize($rule);
- }
- return false;
- }
-
- public function image($file, $rule)
- {
- if (!($file instanceof File)) {
- return false;
- }
- if ($rule) {
- $rule = explode(',', $rule);
- list($width, $height, $type) = getimagesize($file->getRealPath());
- if (isset($rule[2])) {
- $imageType = strtolower($rule[2]);
- if ('jpg' == $imageType) {
- $imageType = 'jpeg';
- }
- if (image_type_to_extension($type, false) != $imageType) {
- return false;
- }
- }
- list($w, $h) = $rule;
- return $w == $width && $h == $height;
- }
- return in_array($this->getImageType($file->getRealPath()), [1, 2, 3, 6]);
- }
-
- public function method($value, $rule)
- {
- $method = Container::get('request')->method();
- return strtoupper($rule) == $method;
- }
-
- public function dateFormat($value, $rule)
- {
- $info = date_parse_from_format($rule, $value);
- return 0 == $info['warning_count'] && 0 == $info['error_count'];
- }
-
- public function unique($value, $rule, $data, $field)
- {
- if (is_string($rule)) {
- $rule = explode(',', $rule);
- }
- if (false !== strpos($rule[0], '\\')) {
-
- $db = new $rule[0];
- } else {
- try {
- $db = Container::get('app')->model($rule[0]);
- } catch (ClassNotFoundException $e) {
- $db = Db::name($rule[0]);
- }
- }
- $key = isset($rule[1]) ? $rule[1] : $field;
- if (strpos($key, '^')) {
-
- $fields = explode('^', $key);
- foreach ($fields as $key) {
- if (isset($data[$key])) {
- $map[] = [$key, '=', $data[$key]];
- }
- }
- } elseif (strpos($key, '=')) {
- parse_str($key, $map);
- } elseif (isset($data[$field])) {
- $map[] = [$key, '=', $data[$field]];
- } else {
- $map = [];
- }
- $pk = !empty($rule[3]) ? $rule[3] : $db->getPk();
- if (is_string($pk)) {
- if (isset($rule[2])) {
- $map[] = [$pk, '<>', $rule[2]];
- } elseif (isset($data[$pk])) {
- $map[] = [$pk, '<>', $data[$pk]];
- }
- }
- if ($db->where($map)->field($pk)->find()) {
- return false;
- }
- return true;
- }
-
- public function behavior($value, $rule, $data)
- {
- return Container::get('hook')->exec($rule, $data);
- }
-
- public function filter($value, $rule)
- {
- if (is_string($rule) && strpos($rule, ',')) {
- list($rule, $param) = explode(',', $rule);
- } elseif (is_array($rule)) {
- $param = isset($rule[1]) ? $rule[1] : null;
- $rule = $rule[0];
- } else {
- $param = null;
- }
- return false !== filter_var($value, is_int($rule) ? $rule : filter_id($rule), $param);
- }
-
- public function requireIf($value, $rule, $data)
- {
- list($field, $val) = explode(',', $rule);
- if ($this->getDataValue($data, $field) == $val) {
- return !empty($value) || '0' == $value;
- }
- return true;
- }
-
- public function requireCallback($value, $rule, $data)
- {
- $result = call_user_func_array([$this, $rule], [$value, $data]);
- if ($result) {
- return !empty($value) || '0' == $value;
- }
- return true;
- }
-
- public function requireWith($value, $rule, $data)
- {
- $val = $this->getDataValue($data, $rule);
- if (!empty($val)) {
- return !empty($value) || '0' == $value;
- }
- return true;
- }
-
- public function in($value, $rule)
- {
- return in_array($value, is_array($rule) ? $rule : explode(',', $rule));
- }
-
- public function notIn($value, $rule)
- {
- return !in_array($value, is_array($rule) ? $rule : explode(',', $rule));
- }
-
- public function between($value, $rule)
- {
- if (is_string($rule)) {
- $rule = explode(',', $rule);
- }
- list($min, $max) = $rule;
- return $value >= $min && $value <= $max;
- }
-
- public function notBetween($value, $rule)
- {
- if (is_string($rule)) {
- $rule = explode(',', $rule);
- }
- list($min, $max) = $rule;
- return $value < $min || $value > $max;
- }
-
- public function length($value, $rule)
- {
- if (is_array($value)) {
- $length = count($value);
- } elseif ($value instanceof File) {
- $length = $value->getSize();
- } else {
- $length = mb_strlen((string) $value);
- }
- if (strpos($rule, ',')) {
-
- list($min, $max) = explode(',', $rule);
- return $length >= $min && $length <= $max;
- }
-
- return $length == $rule;
- }
-
- public function max($value, $rule)
- {
- if (is_array($value)) {
- $length = count($value);
- } elseif ($value instanceof File) {
- $length = $value->getSize();
- } else {
- $length = mb_strlen((string) $value);
- }
- return $length <= $rule;
- }
-
- public function min($value, $rule)
- {
- if (is_array($value)) {
- $length = count($value);
- } elseif ($value instanceof File) {
- $length = $value->getSize();
- } else {
- $length = mb_strlen((string) $value);
- }
- return $length >= $rule;
- }
-
- public function after($value, $rule, $data)
- {
- return strtotime($value) >= strtotime($rule);
- }
-
- public function before($value, $rule, $data)
- {
- return strtotime($value) <= strtotime($rule);
- }
-
- protected function afterWith($value, $rule, $data)
- {
- $rule = $this->getDataValue($data, $rule);
- return !is_null($rule) && strtotime($value) >= strtotime($rule);
- }
-
- protected function beforeWith($value, $rule, $data)
- {
- $rule = $this->getDataValue($data, $rule);
- return !is_null($rule) && strtotime($value) <= strtotime($rule);
- }
-
- public function expire($value, $rule)
- {
- if (is_string($rule)) {
- $rule = explode(',', $rule);
- }
- list($start, $end) = $rule;
- if (!is_numeric($start)) {
- $start = strtotime($start);
- }
- if (!is_numeric($end)) {
- $end = strtotime($end);
- }
- return $_SERVER['REQUEST_TIME'] >= $start && $_SERVER['REQUEST_TIME'] <= $end;
- }
-
- public function allowIp($value, $rule)
- {
- return in_array($value, is_array($rule) ? $rule : explode(',', $rule));
- }
-
- public function denyIp($value, $rule)
- {
- return !in_array($value, is_array($rule) ? $rule : explode(',', $rule));
- }
-
- public function regex($value, $rule)
- {
- if (isset($this->regex[$rule])) {
- $rule = $this->regex[$rule];
- } elseif (isset($this->defaultRegex[$rule])) {
- $rule = $this->defaultRegex[$rule];
- }
- if (0 !== strpos($rule, '/') && !preg_match('/\/[imsU]{0,4}$/', $rule)) {
-
- $rule = '/^' . $rule . '$/';
- }
- return is_scalar($value) && 1 === preg_match($rule, (string) $value);
- }
-
- public function token($value, $rule, $data)
- {
- $rule = !empty($rule) ? $rule : '__token__';
- $session = Container::get('session');
- if (!isset($data[$rule]) || !$session->has($rule)) {
-
- return false;
- }
-
- if (isset($data[$rule]) && $session->get($rule) === $data[$rule]) {
-
- $session->delete($rule);
- return true;
- }
-
- $session->delete($rule);
- return false;
- }
-
- public function getError()
- {
- return $this->error;
- }
-
- protected function getDataValue($data, $key)
- {
- if (is_numeric($key)) {
- $value = $key;
- } elseif (strpos($key, '.')) {
-
- foreach (explode('.', $key) as $key) {
- if (!isset($data[$key])) {
- $value = null;
- break;
- }
- $value = $data = $data[$key];
- }
- } else {
- $value = isset($data[$key]) ? $data[$key] : null;
- }
- return $value;
- }
-
- protected function getRuleMsg($attribute, $title, $type, $rule)
- {
- $lang = Container::get('lang');
- if (isset($this->message[$attribute . '.' . $type])) {
- $msg = $this->message[$attribute . '.' . $type];
- } elseif (isset($this->message[$attribute][$type])) {
- $msg = $this->message[$attribute][$type];
- } elseif (isset($this->message[$attribute])) {
- $msg = $this->message[$attribute];
- } elseif (isset(self::$typeMsg[$type])) {
- $msg = self::$typeMsg[$type];
- } elseif (0 === strpos($type, 'require')) {
- $msg = self::$typeMsg['require'];
- } else {
- $msg = $title . $lang->get('not conform to the rules');
- }
- if (!is_string($msg)) {
- return $msg;
- }
- if (0 === strpos($msg, '{%')) {
- $msg = $lang->get(substr($msg, 2, -1));
- } elseif ($lang->has($msg)) {
- $msg = $lang->get($msg);
- }
- if (is_scalar($rule) && false !== strpos($msg, ':')) {
-
- if (is_string($rule) && strpos($rule, ',')) {
- $array = array_pad(explode(',', $rule), 3, '');
- } else {
- $array = array_pad([], 3, '');
- }
- $msg = str_replace(
- [':attribute', ':1', ':2', ':3'],
- [$title, $array[0], $array[1], $array[2]],
- $msg);
- if (strpos($msg, ':rule')) {
- $msg = str_replace(':rule', (string) $rule, $msg);
- }
- }
- return $msg;
- }
-
- protected function getScene($scene = '')
- {
- if (empty($scene)) {
-
- $scene = $this->currentScene;
- }
- $this->only = $this->append = $this->remove = [];
- if (empty($scene)) {
- return;
- }
- if (method_exists($this, 'scene' . $scene)) {
- call_user_func([$this, 'scene' . $scene]);
- } elseif (isset($this->scene[$scene])) {
-
- $scene = $this->scene[$scene];
- if (is_string($scene)) {
- $scene = explode(',', $scene);
- }
- $this->only = $scene;
- }
- }
-
- public function __call($method, $args)
- {
- if ('is' == strtolower(substr($method, 0, 2))) {
- $method = substr($method, 2);
- }
- array_push($args, lcfirst($method));
- return call_user_func_array([$this, 'is'], $args);
- }
- }
|