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