2018-09-22 17:42:04 +03:00
|
|
|
<?php
|
2022-07-01 16:10:30 +03:00
|
|
|
|
2018-09-22 17:42:04 +03:00
|
|
|
/**
|
2018-11-16 23:48:59 +03:00
|
|
|
* This file is part of RSS-Bridge, a PHP project capable of generating RSS and
|
|
|
|
* Atom feeds for websites that don't have one.
|
|
|
|
*
|
|
|
|
* For the full license information, please view the UNLICENSE file distributed
|
|
|
|
* with this source code.
|
|
|
|
*
|
|
|
|
* @package Core
|
|
|
|
* @license http://unlicense.org/ UNLICENSE
|
|
|
|
* @link https://github.com/rss-bridge/rss-bridge
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Validator for bridge parameters
|
2018-09-22 17:42:04 +03:00
|
|
|
*/
|
|
|
|
class ParameterValidator
|
|
|
|
{
|
2018-11-16 23:48:59 +03:00
|
|
|
/**
|
|
|
|
* Holds the list of invalid parameters
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
2018-09-22 17:42:04 +03:00
|
|
|
private $invalid = [];
|
2022-07-01 16:10:30 +03:00
|
|
|
|
2018-11-16 23:48:59 +03:00
|
|
|
/**
|
|
|
|
* Add item to list of invalid parameters
|
|
|
|
*
|
|
|
|
* @param string $name The name of the parameter
|
|
|
|
* @param string $reason The reason for that parameter being invalid
|
|
|
|
* @return void
|
|
|
|
*/
|
2018-09-22 17:42:04 +03:00
|
|
|
private function addInvalidParameter($name, $reason)
|
|
|
|
{
|
|
|
|
$this->invalid[] = [
|
|
|
|
'name' => $name,
|
2022-08-06 23:46:28 +03:00
|
|
|
'reason' => $reason,
|
2018-09-22 17:42:04 +03:00
|
|
|
];
|
|
|
|
}
|
2022-07-01 16:10:30 +03:00
|
|
|
|
2018-09-22 17:42:04 +03:00
|
|
|
/**
|
2018-11-16 23:48:59 +03:00
|
|
|
* Return list of invalid parameters.
|
|
|
|
*
|
|
|
|
* Each element is an array of 'name' and 'reason'.
|
|
|
|
*
|
|
|
|
* @return array List of invalid parameters
|
2018-09-22 17:42:04 +03:00
|
|
|
*/
|
|
|
|
public function getInvalidParameters()
|
|
|
|
{
|
|
|
|
return $this->invalid;
|
|
|
|
}
|
2022-07-01 16:10:30 +03:00
|
|
|
|
2018-11-16 23:48:59 +03:00
|
|
|
/**
|
|
|
|
* Validate value for a text input
|
|
|
|
*
|
|
|
|
* @param string $value The value of a text input
|
|
|
|
* @param string|null $pattern (optional) A regex pattern
|
|
|
|
* @return string|null The filtered value or null if the value is invalid
|
|
|
|
*/
|
2018-09-22 17:42:04 +03:00
|
|
|
private function validateTextValue($value, $pattern = null)
|
|
|
|
{
|
|
|
|
if (!is_null($pattern)) {
|
|
|
|
$filteredValue = filter_var(
|
|
|
|
$value,
|
|
|
|
FILTER_VALIDATE_REGEXP,
|
|
|
|
['options' => [
|
|
|
|
'regexp' => '/^' . $pattern . '$/'
|
2022-07-01 16:10:30 +03:00
|
|
|
]
|
|
|
|
]
|
2018-09-22 17:42:04 +03:00
|
|
|
);
|
|
|
|
} else {
|
|
|
|
$filteredValue = filter_var($value);
|
|
|
|
}
|
2022-07-01 16:10:30 +03:00
|
|
|
|
2018-09-22 17:42:04 +03:00
|
|
|
if ($filteredValue === false) {
|
|
|
|
return null;
|
2022-07-01 16:10:30 +03:00
|
|
|
}
|
|
|
|
|
2018-09-22 17:42:04 +03:00
|
|
|
return $filteredValue;
|
|
|
|
}
|
2022-07-01 16:10:30 +03:00
|
|
|
|
2018-11-16 23:48:59 +03:00
|
|
|
/**
|
|
|
|
* Validate value for a number input
|
|
|
|
*
|
|
|
|
* @param int $value The value of a number input
|
|
|
|
* @return int|null The filtered value or null if the value is invalid
|
|
|
|
*/
|
2018-09-22 17:42:04 +03:00
|
|
|
private function validateNumberValue($value)
|
|
|
|
{
|
|
|
|
$filteredValue = filter_var($value, FILTER_VALIDATE_INT);
|
2022-07-01 16:10:30 +03:00
|
|
|
|
2018-09-22 17:42:04 +03:00
|
|
|
if ($filteredValue === false) {
|
|
|
|
return null;
|
2022-07-01 16:10:30 +03:00
|
|
|
}
|
|
|
|
|
2018-09-22 17:42:04 +03:00
|
|
|
return $filteredValue;
|
|
|
|
}
|
2022-07-01 16:10:30 +03:00
|
|
|
|
2018-11-16 23:48:59 +03:00
|
|
|
/**
|
|
|
|
* Validate value for a checkbox
|
|
|
|
*
|
|
|
|
* @param bool $value The value of a checkbox
|
|
|
|
* @return bool The filtered value
|
|
|
|
*/
|
2018-09-22 17:42:04 +03:00
|
|
|
private function validateCheckboxValue($value)
|
|
|
|
{
|
|
|
|
return filter_var($value, FILTER_VALIDATE_BOOLEAN, FILTER_NULL_ON_FAILURE);
|
|
|
|
}
|
2022-07-01 16:10:30 +03:00
|
|
|
|
2018-11-16 23:48:59 +03:00
|
|
|
/**
|
|
|
|
* Validate value for a list
|
|
|
|
*
|
|
|
|
* @param string $value The value of a list
|
|
|
|
* @param array $expectedValues A list of expected values
|
|
|
|
* @return string|null The filtered value or null if the value is invalid
|
|
|
|
*/
|
2018-09-22 17:42:04 +03:00
|
|
|
private function validateListValue($value, $expectedValues)
|
|
|
|
{
|
|
|
|
$filteredValue = filter_var($value);
|
2022-07-01 16:10:30 +03:00
|
|
|
|
2018-09-22 17:42:04 +03:00
|
|
|
if ($filteredValue === false) {
|
|
|
|
return null;
|
2022-07-01 16:10:30 +03:00
|
|
|
}
|
|
|
|
|
2018-09-22 17:42:04 +03:00
|
|
|
if (!in_array($filteredValue, $expectedValues)) { // Check sub-values?
|
|
|
|
foreach ($expectedValues as $subName => $subValue) {
|
|
|
|
if (is_array($subValue) && in_array($filteredValue, $subValue)) {
|
|
|
|
return $filteredValue;
|
|
|
|
}
|
2022-07-01 16:10:30 +03:00
|
|
|
}
|
2018-09-22 17:42:04 +03:00
|
|
|
return null;
|
|
|
|
}
|
2022-07-01 16:10:30 +03:00
|
|
|
|
2018-09-22 17:42:04 +03:00
|
|
|
return $filteredValue;
|
|
|
|
}
|
2022-07-01 16:10:30 +03:00
|
|
|
|
2018-09-22 17:42:04 +03:00
|
|
|
/**
|
2018-11-16 23:48:59 +03:00
|
|
|
* Check if all required parameters are satisfied
|
|
|
|
*
|
|
|
|
* @param array $data (ref) A list of input values
|
|
|
|
* @param array $parameters The bridge parameters
|
|
|
|
* @return bool True if all parameters are satisfied
|
2018-09-22 17:42:04 +03:00
|
|
|
*/
|
|
|
|
public function validateData(&$data, $parameters)
|
|
|
|
{
|
|
|
|
if (!is_array($data)) {
|
|
|
|
return false;
|
2022-07-01 16:10:30 +03:00
|
|
|
}
|
|
|
|
|
2018-09-22 17:42:04 +03:00
|
|
|
foreach ($data as $name => $value) {
|
2020-09-14 12:01:55 +03:00
|
|
|
// Some RSS readers add a cache-busting parameter (_=<timestamp>) to feed URLs, detect and ignore them.
|
|
|
|
if ($name === '_') {
|
|
|
|
continue;
|
2022-07-01 16:10:30 +03:00
|
|
|
}
|
|
|
|
|
2018-09-22 17:42:04 +03:00
|
|
|
$registered = false;
|
|
|
|
foreach ($parameters as $context => $set) {
|
|
|
|
if (array_key_exists($name, $set)) {
|
|
|
|
$registered = true;
|
|
|
|
if (!isset($set[$name]['type'])) {
|
|
|
|
$set[$name]['type'] = 'text';
|
|
|
|
}
|
2022-07-01 16:10:30 +03:00
|
|
|
|
2018-09-22 17:42:04 +03:00
|
|
|
switch ($set[$name]['type']) {
|
|
|
|
case 'number':
|
|
|
|
$data[$name] = $this->validateNumberValue($value);
|
|
|
|
break;
|
|
|
|
case 'checkbox':
|
|
|
|
$data[$name] = $this->validateCheckboxValue($value);
|
|
|
|
break;
|
|
|
|
case 'list':
|
|
|
|
$data[$name] = $this->validateListValue($value, $set[$name]['values']);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
case 'text':
|
|
|
|
if (isset($set[$name]['pattern'])) {
|
|
|
|
$data[$name] = $this->validateTextValue($value, $set[$name]['pattern']);
|
|
|
|
} else {
|
|
|
|
$data[$name] = $this->validateTextValue($value);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2022-07-01 16:10:30 +03:00
|
|
|
|
2018-09-22 17:42:04 +03:00
|
|
|
if (is_null($data[$name]) && isset($set[$name]['required']) && $set[$name]['required']) {
|
|
|
|
$this->addInvalidParameter($name, 'Parameter is invalid!');
|
2022-07-01 16:10:30 +03:00
|
|
|
}
|
|
|
|
}
|
2018-09-22 17:42:04 +03:00
|
|
|
}
|
2022-07-01 16:10:30 +03:00
|
|
|
|
2018-09-22 17:42:04 +03:00
|
|
|
if (!$registered) {
|
|
|
|
$this->addInvalidParameter($name, 'Parameter is not registered!');
|
2022-07-01 16:10:30 +03:00
|
|
|
}
|
2018-09-22 17:42:04 +03:00
|
|
|
}
|
2022-07-01 16:10:30 +03:00
|
|
|
|
2018-09-22 17:42:04 +03:00
|
|
|
return empty($this->invalid);
|
|
|
|
}
|
2022-07-01 16:10:30 +03:00
|
|
|
|
2018-09-22 18:04:55 +03:00
|
|
|
/**
|
2018-11-16 23:48:59 +03:00
|
|
|
* Get the name of the context matching the provided inputs
|
2018-09-22 18:04:55 +03:00
|
|
|
*
|
|
|
|
* @param array $data Associative array of user data
|
|
|
|
* @param array $parameters Array of bridge parameters
|
2018-11-16 23:48:59 +03:00
|
|
|
* @return string|null Returns the context name or null if no match was found
|
2018-09-22 18:04:55 +03:00
|
|
|
*/
|
|
|
|
public function getQueriedContext($data, $parameters)
|
|
|
|
{
|
|
|
|
$queriedContexts = [];
|
2022-07-01 16:10:30 +03:00
|
|
|
|
2018-09-22 18:04:55 +03:00
|
|
|
// Detect matching context
|
|
|
|
foreach ($parameters as $context => $set) {
|
|
|
|
$queriedContexts[$context] = null;
|
2022-07-01 16:10:30 +03:00
|
|
|
|
2019-10-28 19:50:55 +03:00
|
|
|
// Ensure all user data exist in the current context
|
|
|
|
$notInContext = array_diff_key($data, $set);
|
|
|
|
if (array_key_exists('global', $parameters)) {
|
|
|
|
$notInContext = array_diff_key($notInContext, $parameters['global']);
|
2022-07-01 16:10:30 +03:00
|
|
|
}
|
2022-08-06 23:46:28 +03:00
|
|
|
if (count($notInContext) > 0) {
|
2019-10-28 19:50:55 +03:00
|
|
|
continue;
|
2022-07-01 16:10:30 +03:00
|
|
|
}
|
|
|
|
|
2018-09-22 18:04:55 +03:00
|
|
|
// Check if all parameters of the context are satisfied
|
|
|
|
foreach ($set as $id => $properties) {
|
|
|
|
if (isset($data[$id]) && !empty($data[$id])) {
|
|
|
|
$queriedContexts[$context] = true;
|
2019-04-04 23:55:46 +03:00
|
|
|
} elseif (
|
|
|
|
isset($properties['type'])
|
|
|
|
&& ($properties['type'] === 'checkbox' || $properties['type'] === 'list')
|
|
|
|
) {
|
|
|
|
continue;
|
|
|
|
} elseif (isset($properties['required']) && $properties['required'] === true) {
|
2018-09-22 18:04:55 +03:00
|
|
|
$queriedContexts[$context] = false;
|
|
|
|
break;
|
2022-07-01 16:10:30 +03:00
|
|
|
}
|
|
|
|
}
|
2018-09-22 18:04:55 +03:00
|
|
|
}
|
2022-07-01 16:10:30 +03:00
|
|
|
|
2018-09-22 18:04:55 +03:00
|
|
|
// Abort if one of the globally required parameters is not satisfied
|
|
|
|
if (
|
|
|
|
array_key_exists('global', $parameters)
|
|
|
|
&& $queriedContexts['global'] === false
|
|
|
|
) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
unset($queriedContexts['global']);
|
2022-07-01 16:10:30 +03:00
|
|
|
|
2018-09-22 18:04:55 +03:00
|
|
|
switch (array_sum($queriedContexts)) {
|
2022-08-06 23:46:28 +03:00
|
|
|
case 0:
|
|
|
|
// Found no match, is there a context without parameters?
|
2019-06-21 20:08:59 +03:00
|
|
|
if (isset($data['context'])) {
|
|
|
|
return $data['context'];
|
2022-07-01 16:10:30 +03:00
|
|
|
}
|
2018-09-22 18:04:55 +03:00
|
|
|
foreach ($queriedContexts as $context => $queried) {
|
|
|
|
if (is_null($queried)) {
|
|
|
|
return $context;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return null;
|
2022-08-06 23:46:28 +03:00
|
|
|
case 1:
|
|
|
|
// Found unique match
|
2018-09-22 18:04:55 +03:00
|
|
|
return array_search(true, $queriedContexts);
|
|
|
|
default:
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2018-09-22 17:42:04 +03:00
|
|
|
}
|