Jacek Kowalski
2019-06-22 df2ceeed93732415b6067ff6ffa6e07224eef78e
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) {