32 lines
1.1 KiB
PHP
32 lines
1.1 KiB
PHP
<?php
|
|
/**
|
|
* При ошибке в запросе к БД. Распарсингованные данные
|
|
* сохраняются в yaml-файле. Скрипт парсит этот файл и заносит в БД
|
|
*/
|
|
use SvedenParser\Color;
|
|
use SvedenParser\ContingentParser\ContingentRepository;
|
|
use SvedenParser\Printer;
|
|
use Symfony\Component\Yaml\Yaml;
|
|
|
|
require_once __DIR__ . "/vendor/autoload.php";
|
|
|
|
try {
|
|
if (!file_exists(ContingentRepository::FILE_ADD_RECORDING)) {
|
|
throw new Exception(
|
|
"Файл " . ContingentRepository::FILE_ADD_RECORDING
|
|
. " не обнаружен. Дозапись в базу не требуется"
|
|
);
|
|
}
|
|
|
|
$contingent = Yaml::parse(
|
|
file_get_contents(__DIR__ . '/' . ContingentRepository::FILE_ADD_RECORDING)
|
|
);
|
|
$databaseFacade = new ContingentRepository();
|
|
$databaseFacade->insertContingent($contingent);
|
|
|
|
Printer::println("Дозапись выполнена!", Color::BLUE);
|
|
} catch (\Exception $e) {
|
|
Printer::println($e->getMessage(), Color::RED);
|
|
exit(0);
|
|
}
|