forked from devsam/core
- null && key_exists 버그 - or assign이 integer 대상이므로 직접 연산 - false 대신 0 입력한 곳 수정 - 자체 Deprecate 처리한 함수 회피 - 초기화되지 않은 [] 확인하여 처리 - sleep은 정수만 받으므로 usleep으로 변경 - 선언하지 않고 그냥 사용하던 member 변수 선언 - boolean operation 순서 틀린 부분 수정
142 lines
4.5 KiB
PHP
142 lines
4.5 KiB
PHP
<?php
|
|
|
|
namespace sammo\Constraint;
|
|
|
|
use \sammo\JosaUtil;
|
|
use \sammo\Util;
|
|
|
|
/**
|
|
* 범용으로 사용 가능한 국가 변수 검사도구
|
|
*/
|
|
class ReqDestNationValue extends Constraint{
|
|
const REQ_VALUES = Constraint::REQ_DEST_NATION|Constraint::REQ_ARRAY_ARG;
|
|
|
|
protected $key;
|
|
protected $maxKey;
|
|
protected $keyNick;
|
|
protected $reqVal;
|
|
protected $comp;
|
|
protected $errMsg;
|
|
protected $isPercent;
|
|
|
|
public function checkInputValues(bool $throwExeception=true):bool{
|
|
if(!parent::checkInputValues($throwExeception) && !$throwExeception){
|
|
return false;
|
|
}
|
|
|
|
if(count($this->arg) == 5){
|
|
[$this->key, $this->keyNick, $comp, $this->reqVal, $this->errMsg] = $this->arg;
|
|
|
|
if(!in_array($comp, ['>', '>=', '==', '<=', '<', '!=', '===', '!=='])){
|
|
if(!$throwExeception){return false; }
|
|
throw new \InvalidArgumentException("invalid comparator");
|
|
}
|
|
}
|
|
else{
|
|
if(!$throwExeception){return false; }
|
|
throw new \InvalidArgumentException("require key, keyNick, comp, reqVal[, errMsg]");
|
|
}
|
|
|
|
$this->comp = $comp;
|
|
|
|
$this->maxKey = $this->key.'_max';
|
|
|
|
if(!key_exists($this->key, $this->destNation)){
|
|
if(!$throwExeception){return false; }
|
|
throw new \InvalidArgumentException("require {$this->key} in destNation");
|
|
}
|
|
|
|
if(is_numeric($this->reqVal)){
|
|
$this->isPercent = false;
|
|
}
|
|
else if(is_string($this->reqVal)){
|
|
$this->reqVal = Util::convPercentStrToFloat($this->reqVal);
|
|
if($this->reqVal === null){
|
|
if(!$throwExeception){return false; }
|
|
throw new \InvalidArgumentException("require valid reqVal(percentStr|numeric) format");
|
|
}
|
|
|
|
if(!key_exists($this->maxKey, $this->destNation)){
|
|
if(!$throwExeception){return false; }
|
|
throw new \InvalidArgumentException("require {$this->maxKey} in destNation");
|
|
}
|
|
$this->isPercent = true;
|
|
}
|
|
|
|
if($this->errMsg!==null && !is_string($this->errMsg)){
|
|
if(!$throwExeception){return false; }
|
|
throw new \InvalidArgumentException("{$this->errMsg} must be string or null");
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
public function test():bool{
|
|
$this->checkInputValues();
|
|
$this->tested = true;
|
|
$keyNick = $this->keyNick;
|
|
|
|
if ($this->isPercent) {
|
|
$reqVal = $this->destNation[$this->maxKey] * $this->reqVal;
|
|
}
|
|
else{
|
|
$reqVal = $this->reqVal;
|
|
}
|
|
|
|
$compList = [
|
|
'<'=>function($target, $src){
|
|
return ($target < $src)?true:'너무 많습니다.';
|
|
},
|
|
'<='=>function($target, $src){
|
|
return ($target <= $src)?true:'너무 많습니다.';
|
|
},
|
|
'=='=>function($target, $src)use($keyNick){
|
|
return ($target == $src)?true:"올바르지 않은 {$keyNick} 입니다.";
|
|
},
|
|
'!='=>function($target, $src)use($keyNick){
|
|
return ($target != $src)?true:"올바르지 않은 {$keyNick} 입니다.";
|
|
},
|
|
'==='=>function($target, $src)use($keyNick){
|
|
return ($target === $src)?true:"올바르지 않은 {$keyNick} 입니다.";
|
|
},
|
|
'!=='=>function($target, $src)use($keyNick){
|
|
return ($target !== $src)?true:"올바르지 않은 {$keyNick} 입니다.";
|
|
},
|
|
'>='=>function($target, $src){
|
|
if($target >= $src){
|
|
return true;
|
|
}
|
|
if($src == 1){
|
|
return '없습니다';
|
|
}
|
|
return '부족합니다.';
|
|
},
|
|
'>'=>function($target, $src){
|
|
if($target > $src){
|
|
return true;
|
|
}
|
|
if($src == 0){
|
|
return '없습니다';
|
|
}
|
|
return '부족합니다.';
|
|
},
|
|
];
|
|
|
|
$comp = $compList[$this->comp];
|
|
$result = ($comp)($this->destNation[$this->key], $reqVal);
|
|
|
|
if($result === true){
|
|
return true;
|
|
}
|
|
|
|
if($this->errMsg){
|
|
$this->reason = $this->errMsg;
|
|
}
|
|
else{
|
|
$josaYi = JosaUtil::pick($keyNick, '이');
|
|
$this->reason = "{$keyNick}{$josaYi} {$result}";
|
|
}
|
|
|
|
return false;
|
|
}
|
|
} |