From bcb0b6e080d7beda5c64e08347eebef1940e31d6 Mon Sep 17 00:00:00 2001 From: Daniel Friesel Date: Sun, 28 Mar 2021 11:47:52 +0200 Subject: fall back to stop id and proximity search on error This is useful for non-VRR stops, which may be split into several sub-stops. For instance, Aachen Rothe Erde is listed as de:05334:1645 -- which is the bus stop. The train station is de:05334:1646. proximity search returns results for both stops. Requires vrr-fakedisplay 1.6.0 or later --- bin/efa-gw | 40 +++++++++++++++++++++++++++++----------- 1 file changed, 29 insertions(+), 11 deletions(-) (limited to 'bin/efa-gw') diff --git a/bin/efa-gw b/bin/efa-gw index d56604c..1f73c70 100755 --- a/bin/efa-gw +++ b/bin/efa-gw @@ -25,6 +25,19 @@ def get_occupancy(occupancy): return None +def build_response(content): + train_data = dict() + for train in content["raw"]: + if train["train_no"]: + train_data[train["train_no"]] = { + "occupancy": get_occupancy(train["occupancy"]) + } + + reply = {"train": train_data} + + return web.Response(body=json.dumps(reply), headers=headers) + + async def handle_eva(request): try: eva = int(request.match_info.get("eva")) @@ -32,7 +45,7 @@ async def handle_eva(request): return web.HTTPBadRequest(text="EVA must be a number") try: - station = eva_to_name[eva] + station, optid = eva_to_name[eva] except KeyError: return web.HTTPNotFound(text="Unknown EVA") @@ -42,17 +55,22 @@ async def handle_eva(request): ) as response: content = await response.text() content = json.loads(content) - train_data = dict() - for train in content["raw"]: - if train["train_no"]: - train_data[train["train_no"]] = { - "occupancy": get_occupancy(train["occupancy"]) - } + print(content) + + if not content["error"]: + return build_response(content) + + async with aiohttp.ClientSession() as session: + async with session.get( + f"https://vrrf.finalrewind.org/{optid}.json?line=RE,RB,S&backend=efa.VRR2&proximity_search=1" + ) as response: + content = await response.text() + content = json.loads(content) - reply = {"train": train_data} + print(content) - return web.Response(body=json.dumps(reply), headers=headers) + return build_response(content) if __name__ == "__main__": @@ -66,8 +84,8 @@ if __name__ == "__main__": args = parser.parse_args() with open("share/vrr.json", "r") as f: - for eva, (city, stop, name) in json.load(f).items(): - eva_to_name[int(eva)] = name + for eva, (name, optid) in json.load(f).items(): + eva_to_name[int(eva)] = name, optid app = web.Application() app.add_routes([web.get(f"{args.prefix}{{eva}}.json", handle_eva)]) -- cgit v1.2.3