tao-test/app/taoQtiItem/model/import/Validator/LineValidator.php

86 lines
3.0 KiB
PHP

<?php
/*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; under version 2
* of the License (non-upgradable).
*
* 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
* Copyright (c) 2021 (original work) Open Assessment Technologies SA (under the project TAO-PRODUCT);
*/
declare(strict_types=1);
namespace oat\taoQtiItem\model\import\Validator;
use oat\oatbox\service\ConfigurableService;
use oat\taoQtiItem\model\import\Decorator\CvsToQtiTemplateDecorator;
use oat\taoQtiItem\model\import\TemplateInterface;
class LineValidator extends ConfigurableService implements ValidatorInterface
{
/**
* @inheritDoc
*/
public function validate(array $content, TemplateInterface $csvTemplate): void
{
$logger = $this->getLogger();
$decorator = new CvsToQtiTemplateDecorator($csvTemplate);
$warnings = [];
$errors = [];
foreach ($decorator->getCsvColumns() as $headerRegex => $validations) {
$validations = $validations['value'] ?? '';
foreach (explode('|', $validations) as $validation) {
$rules = explode(':', $validation);
$name = array_shift($rules);
$validator = $this->getValidatorMapper()->getValidator($name);
if (!$validator) {
continue;
}
$exception = null;
$validatedValue = $content[$headerRegex] ?? null;
try {
$validator->validate($headerRegex, $validatedValue, $rules, $content);
} catch (ErrorValidationException $exception) {
$errors[] = $exception;
} catch (WarningValidationException $exception) {
$warnings[] = $exception;
} finally {
if ($exception) {
$logger->debug(
sprintf(
'Tabular import: failed validation on %s by "%s" validator',
$validatedValue ?? '',
$name
)
);
}
}
}
}
if (!empty($warnings) || !empty($errors)) {
throw new AggregatedValidationException($errors, $warnings);
}
}
private function getValidatorMapper(): ValidationRulesMapper
{
return $this->getServiceLocator()->get(ValidationRulesMapper::class);
}
}