aboutsummaryrefslogtreecommitdiffstats
path: root/app/services
diff options
context:
space:
mode:
authorTeddy Wing2018-03-13 15:37:55 +0100
committerTeddy Wing2018-03-14 16:42:02 +0100
commitdbcd099b3d38f7c584450edffc8bee0a2502b170 (patch)
tree0ddcd221974db03e957e6621a5f4b050833ffc87 /app/services
parent012363fca2bbe2d75145e8ca3b85f8fcb48ad164 (diff)
downloadchouette-core-dbcd099b3d38f7c584450edffc8bee0a2502b170.tar.bz2
Route: Add `#calculate_costs!` to populate `#costs` with `WayCost`s
This new method will launch a worker that takes the route's `StopArea`s, converts them to `WayCost`s, sends them to the TomTom API to calculate distance and time costs, and saves those costs to the route's `costs` field. Refs #6095
Diffstat (limited to 'app/services')
-rw-r--r--app/services/route_way_cost_calculator.rb12
1 files changed, 12 insertions, 0 deletions
diff --git a/app/services/route_way_cost_calculator.rb b/app/services/route_way_cost_calculator.rb
new file mode 100644
index 000000000..2e30c94fc
--- /dev/null
+++ b/app/services/route_way_cost_calculator.rb
@@ -0,0 +1,12 @@
+class RouteWayCostCalculator
+ def initialize(route)
+ @route = route
+ end
+
+ def calculate!
+ way_costs = StopAreasToWayCostsConverter.new(@route.stop_areas).convert
+ way_costs = TomTom.batch(way_costs)
+ way_costs = WayCostCollectionJSONSerializer.dump(way_costs)
+ @route.update(costs: way_costs)
+ end
+end