From 51c6b4f563d195a634039cf5b4d9ba83004e1a52 Mon Sep 17 00:00:00 2001
From: Jacek Kowalski <Jacek@jacekk.info>
Date: Sat, 22 Jun 2019 20:31:10 +0000
Subject: [PATCH] Add table of vehicles by type
---
parse.php | 13 ++-----------
1 files changed, 2 insertions(+), 11 deletions(-)
diff --git a/parse.php b/parse.php
index ebd18cd..92acb04 100644
--- a/parse.php
+++ b/parse.php
@@ -82,21 +82,12 @@
$db->addMapping($mapping);
- $jsonContent = [];
- foreach($db->getAll() as $vehicle) {
- $jsonContent[$vehicle['id']] = $source['mapper']($vehicle['num']);
- }
-
- $json = json_encode($jsonContent);
- if(!file_put_contents($source['result_temp'], $json)) {
- throw new Exception('Result save failed');
- }
- rename($source['result_temp'], $source['result']);
+ $finalMapping = createMapping($db, $source['mapper'], $source);
$logger->info('Creating vehicle list...');
- createVehiclesList($mapper->getTTSSTrips(), $jsonContent, $source);
+ createVehiclesList($mapper->getTTSSTrips(), $finalMapping, $source);
$logger->info('Finished');
} catch(Throwable $e) {
--
Gitblit v1.9.1