forked from blallo/rss-bridge
Merge branch 'CleanupBridgeCode' of https://github.com/logmanoriginal/rss-bridge
This commit is contained in:
commit
c642fca0d0
1 changed files with 87 additions and 54 deletions
113
lib/Bridge.php
113
lib/Bridge.php
|
@ -143,68 +143,104 @@ abstract class BridgeAbstract implements BridgeInterface {
|
||||||
return $this->items;
|
return $this->items;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
protected function isValidTextValue($value, $pattern = null){
|
||||||
|
if(!is_null($pattern)){
|
||||||
|
$filteredValue = filter_var($value, FILTER_VALIDATE_REGEXP,
|
||||||
|
array('options' => array(
|
||||||
|
'regexp' => '/^' . $pattern . '$/'
|
||||||
|
))
|
||||||
|
);
|
||||||
|
} else {
|
||||||
|
$filteredValue = filter_var($value);
|
||||||
|
}
|
||||||
|
|
||||||
|
if($filteredValue === false)
|
||||||
|
return null;
|
||||||
|
|
||||||
|
return $filteredValue;
|
||||||
|
}
|
||||||
|
|
||||||
|
protected function isValidNumberValue($value){
|
||||||
|
$filteredValue = filter_var($value, FILTER_VALIDATE_INT);
|
||||||
|
|
||||||
|
if($filteredValue === false && !empty($value))
|
||||||
|
return null;
|
||||||
|
|
||||||
|
return $filteredValue;
|
||||||
|
}
|
||||||
|
|
||||||
|
protected function isValidCheckboxValue($value){
|
||||||
|
$filteredValue = filter_var($value, FILTER_VALIDATE_BOOLEAN, FILTER_NULL_ON_FAILURE);
|
||||||
|
|
||||||
|
if(is_null($filteredValue))
|
||||||
|
return null;
|
||||||
|
|
||||||
|
return $filteredValue;
|
||||||
|
}
|
||||||
|
|
||||||
|
protected function isValidListValue($value, $expectedValues){
|
||||||
|
$filteredValue = filter_var($value);
|
||||||
|
|
||||||
|
if($filteredValue === false)
|
||||||
|
return null;
|
||||||
|
|
||||||
|
if(!in_array($filteredValue, $expectedValues)){ // Check sub-values?
|
||||||
|
foreach($expectedValues as $subName => $subValue){
|
||||||
|
if(is_array($subValue) && in_array($filteredValue, $subValue))
|
||||||
|
return $filteredValue;
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
return $filteredValue;
|
||||||
|
}
|
||||||
|
|
||||||
protected function validateData(&$data){
|
protected function validateData(&$data){
|
||||||
$validated=true;
|
if(!is_array($data))
|
||||||
|
return false;
|
||||||
|
|
||||||
foreach($data as $name => $value){
|
foreach($data as $name => $value){
|
||||||
$registered = false;
|
$registered = false;
|
||||||
foreach($this->parameters as $context => $set){
|
foreach($this->parameters as $context => $set){
|
||||||
if(array_key_exists($name, $set)){
|
if(array_key_exists($name, $set)){
|
||||||
$registered = true;
|
$registered = true;
|
||||||
if(!isset($set[$name]['type'])){
|
|
||||||
|
if(!isset($set[$name]['type'])){ // Default to 'text'
|
||||||
$set[$name]['type'] = 'text';
|
$set[$name]['type'] = 'text';
|
||||||
}
|
}
|
||||||
|
|
||||||
switch($set[$name]['type']){
|
switch($set[$name]['type']){
|
||||||
case 'number':
|
case 'number':
|
||||||
$data[$name]=filter_var($value,FILTER_VALIDATE_INT);
|
$data[$name] = $this->isValidNumberValue($value);
|
||||||
if($data[$name]===false && !empty($value)){
|
|
||||||
$validated=false;
|
|
||||||
}
|
|
||||||
break;
|
break;
|
||||||
case 'checkbox':
|
case 'checkbox':
|
||||||
$data[$name]=filter_var($value,FILTER_VALIDATE_BOOLEAN,
|
$data[$name] = $this->isValidCheckboxValue($value);
|
||||||
FILTER_NULL_ON_FAILURE);
|
|
||||||
if(is_null($data[$name])){
|
|
||||||
$validated=false;
|
|
||||||
}
|
|
||||||
break;
|
break;
|
||||||
case 'list':
|
case 'list':
|
||||||
$data[$name]=filter_var($value);
|
$data[$name] = $this->isValidListValue($value, $set[$name]['values']);
|
||||||
if(!in_array($value,$set[$name]['values'])){
|
|
||||||
foreach($set[$name]['values'] as $subName=>$subValue){
|
|
||||||
if(is_array($subValue) &&
|
|
||||||
in_array($value,$subValue)){
|
|
||||||
$data[$name]=filter_var($value);
|
|
||||||
break 2;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
$validated=false;
|
|
||||||
$data[$name]=null;
|
|
||||||
}
|
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
case 'text':
|
case 'text':
|
||||||
if(isset($set[$name]['pattern'])){
|
if(isset($set[$name]['pattern'])){
|
||||||
$data[$name]=filter_var($value,FILTER_VALIDATE_REGEXP,
|
$data[$name] = $this->isValidTextValue($value, $set[$name]['pattern']);
|
||||||
array('options'=>array(
|
|
||||||
'regexp'=>'/^'.$set[$name]['pattern'].'$/'
|
|
||||||
))
|
|
||||||
);
|
|
||||||
} else {
|
} else {
|
||||||
$data[$name]=filter_var($value);
|
$data[$name] = $this->isValidTextValue($value);
|
||||||
}
|
|
||||||
if($data[$name]===false && !empty($value)){
|
|
||||||
$validated=false;
|
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if(is_null($data[$name])){
|
||||||
|
echo 'Parameter \'' . $name . '\' is invalid!' . PHP_EOL;
|
||||||
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if(!$registered){
|
|
||||||
$validated=false;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return $validated;
|
if(!$registered)
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected function getQueriedContext(){
|
protected function getQueriedContext(){
|
||||||
|
@ -251,14 +287,11 @@ abstract class BridgeAbstract implements BridgeInterface {
|
||||||
if(!is_null($this->cache)){
|
if(!is_null($this->cache)){
|
||||||
$this->cache->prepare($inputs);
|
$this->cache->prepare($inputs);
|
||||||
$time = $this->cache->getTime();
|
$time = $this->cache->getTime();
|
||||||
} else {
|
|
||||||
$time = false;
|
|
||||||
}
|
|
||||||
|
|
||||||
if($time !== false && (time() - $this->getCacheDuration() < $time)){
|
if($time !== false && (time() - $this->getCacheDuration() < $time)){
|
||||||
$this->items = $this->cache->loadData();
|
$this->items = $this->cache->loadData();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if(empty($this->parameters)){
|
if(empty($this->parameters)){
|
||||||
if(!empty($inputs)){
|
if(!empty($inputs)){
|
||||||
|
|
Loading…
Reference in a new issue