2016-10-12 13:08:42 +03:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @copyright Copyright (c) 2016 Joas Schilling <coding@schilljs.com>
|
|
|
|
*
|
2017-11-06 17:56:42 +03:00
|
|
|
* @author Joas Schilling <coding@schilljs.com>
|
|
|
|
* @author Lukas Reschke <lukas@statuscode.ch>
|
|
|
|
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
|
|
|
*
|
2016-10-12 13:08:42 +03:00
|
|
|
* @license GNU AGPL version 3 or any later version
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as
|
|
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace OC\RichObjectStrings;
|
|
|
|
|
|
|
|
|
2016-11-08 17:56:39 +03:00
|
|
|
use OCP\RichObjectStrings\Definitions;
|
2016-10-12 13:08:42 +03:00
|
|
|
use OCP\RichObjectStrings\InvalidObjectExeption;
|
|
|
|
use OCP\RichObjectStrings\IValidator;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Class Validator
|
|
|
|
*
|
|
|
|
* @package OCP\RichObjectStrings
|
2016-11-15 20:51:52 +03:00
|
|
|
* @since 11.0.0
|
2016-10-12 13:08:42 +03:00
|
|
|
*/
|
2016-11-08 17:56:39 +03:00
|
|
|
class Validator implements IValidator {
|
2016-10-12 13:08:42 +03:00
|
|
|
|
2016-11-08 17:56:39 +03:00
|
|
|
/** @var Definitions */
|
2016-10-12 13:08:42 +03:00
|
|
|
protected $definitions;
|
|
|
|
|
|
|
|
/** @var array[] */
|
|
|
|
protected $requiredParameters = [];
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Constructor
|
2016-11-08 17:56:39 +03:00
|
|
|
*
|
|
|
|
* @param Definitions $definitions
|
2016-10-12 13:08:42 +03:00
|
|
|
*/
|
2016-11-08 17:56:39 +03:00
|
|
|
public function __construct(Definitions $definitions) {
|
|
|
|
$this->definitions = $definitions;
|
2016-10-12 13:08:42 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param string $subject
|
|
|
|
* @param array[] $parameters
|
|
|
|
* @throws InvalidObjectExeption
|
2016-11-15 20:51:52 +03:00
|
|
|
* @since 11.0.0
|
2016-10-12 13:08:42 +03:00
|
|
|
*/
|
|
|
|
public function validate($subject, array $parameters) {
|
|
|
|
$matches = [];
|
|
|
|
$result = preg_match_all('/\{([a-z0-9]+)\}/i', $subject, $matches);
|
|
|
|
|
|
|
|
if ($result === false) {
|
|
|
|
throw new InvalidObjectExeption();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!empty($matches[1])) {
|
|
|
|
foreach ($matches[1] as $parameter) {
|
|
|
|
if (!isset($parameters[$parameter])) {
|
|
|
|
throw new InvalidObjectExeption('Parameter is undefined');
|
|
|
|
} else {
|
|
|
|
$this->validateParameter($parameters[$parameter]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param array $parameter
|
|
|
|
* @throws InvalidObjectExeption
|
|
|
|
*/
|
|
|
|
protected function validateParameter(array $parameter) {
|
2016-11-08 17:56:39 +03:00
|
|
|
if (!isset($parameter['type'])) {
|
2016-10-12 13:08:42 +03:00
|
|
|
throw new InvalidObjectExeption('Object type is undefined');
|
|
|
|
}
|
|
|
|
|
2016-11-08 17:56:39 +03:00
|
|
|
$definition = $this->definitions->getDefinition($parameter['type']);
|
|
|
|
$requiredParameters = $this->getRequiredParameters($parameter['type'], $definition);
|
|
|
|
|
2016-10-12 13:08:42 +03:00
|
|
|
$missingKeys = array_diff($requiredParameters, array_keys($parameter));
|
|
|
|
if (!empty($missingKeys)) {
|
|
|
|
throw new InvalidObjectExeption('Object is invalid');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param string $type
|
2016-11-08 17:56:39 +03:00
|
|
|
* @param array $definition
|
2016-10-12 13:08:42 +03:00
|
|
|
* @return string[]
|
|
|
|
*/
|
2016-11-09 12:49:57 +03:00
|
|
|
protected function getRequiredParameters($type, array $definition) {
|
2016-10-12 13:08:42 +03:00
|
|
|
if (isset($this->requiredParameters[$type])) {
|
|
|
|
return $this->requiredParameters[$type];
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->requiredParameters[$type] = [];
|
2016-11-08 17:56:39 +03:00
|
|
|
foreach ($definition['parameters'] as $parameter => $data) {
|
2016-10-12 13:08:42 +03:00
|
|
|
if ($data['required']) {
|
|
|
|
$this->requiredParameters[$type][] = $parameter;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $this->requiredParameters[$type];
|
|
|
|
}
|
|
|
|
}
|