Add tflvehicle, simplify tflbus
This commit is contained in:
parent
b18a503b01
commit
842ee38146
1 changed files with 75 additions and 18 deletions
|
@ -1,4 +1,4 @@
|
||||||
import collections, datetime
|
import collections, datetime, re
|
||||||
import Utils
|
import Utils
|
||||||
|
|
||||||
URL_BUS = "https://api.tfl.gov.uk/StopPoint/%s/Arrivals"
|
URL_BUS = "https://api.tfl.gov.uk/StopPoint/%s/Arrivals"
|
||||||
|
@ -10,6 +10,8 @@ LINE_NAMES = ["bakerloo", "central", "circle", "district", "hammersmith and city
|
||||||
URL_STOP = "https://api.tfl.gov.uk/StopPoint/%s"
|
URL_STOP = "https://api.tfl.gov.uk/StopPoint/%s"
|
||||||
URL_STOP_SEARCH = "https://api.tfl.gov.uk/StopPoint/Search/%s"
|
URL_STOP_SEARCH = "https://api.tfl.gov.uk/StopPoint/Search/%s"
|
||||||
|
|
||||||
|
URL_VEHICLE = "https://api.tfl.gov.uk/Vehicle/%s/Arrivals"
|
||||||
|
|
||||||
class Module(object):
|
class Module(object):
|
||||||
_name = "TFL"
|
_name = "TFL"
|
||||||
def __init__(self, bot):
|
def __init__(self, bot):
|
||||||
|
@ -26,6 +28,10 @@ class Module(object):
|
||||||
).hook(self.search, min_args=1,
|
).hook(self.search, min_args=1,
|
||||||
help="Get a list of TfL stop IDs for a given name",
|
help="Get a list of TfL stop IDs for a given name",
|
||||||
usage="<name>")
|
usage="<name>")
|
||||||
|
bot.events.on("received").on("command").on("tflvehicle"
|
||||||
|
).hook(self.vehicle, min_args=1,
|
||||||
|
help="Get information for a given vehicle",
|
||||||
|
usage="<ID>")
|
||||||
|
|
||||||
def bus(self, event):
|
def bus(self, event):
|
||||||
app_id = self.bot.config["tfl-api-id"]
|
app_id = self.bot.config["tfl-api-id"]
|
||||||
|
@ -54,7 +60,6 @@ class Module(object):
|
||||||
if real_stop_id:
|
if real_stop_id:
|
||||||
bus_stop = Utils.get_url(URL_BUS % real_stop_id, get_params={
|
bus_stop = Utils.get_url(URL_BUS % real_stop_id, get_params={
|
||||||
"app_id": app_id, "app_key": app_key}, json=True)
|
"app_id": app_id, "app_key": app_key}, json=True)
|
||||||
print(bus_stop)
|
|
||||||
busses = []
|
busses = []
|
||||||
for bus in bus_stop:
|
for bus in bus_stop:
|
||||||
bus_number = bus["lineName"]
|
bus_number = bus["lineName"]
|
||||||
|
@ -65,23 +70,37 @@ class Module(object):
|
||||||
"%Y-%m-%dT%H:%M:%SZ")
|
"%Y-%m-%dT%H:%M:%SZ")
|
||||||
time_until = bus_due-datetime.datetime.utcnow()
|
time_until = bus_due-datetime.datetime.utcnow()
|
||||||
time_until = int(time_until.total_seconds()/60)
|
time_until = int(time_until.total_seconds()/60)
|
||||||
busses.append([bus_number, time_until])
|
|
||||||
|
# Nice human friendly time (also consistent with how TfL display it)
|
||||||
|
if time_until == 0: human_time = "due"
|
||||||
|
elif time_until == 1: human_time = "in 1 minute"
|
||||||
|
else: human_time = "in %d minutes" % time_until
|
||||||
|
|
||||||
|
# If the mode is "tube", "Underground Station" is redundant
|
||||||
|
destination = bus.get("destinationName", "?")
|
||||||
|
if (bus["modeName"] == "tube"): destination = destination.replace(" Underground Station", "")
|
||||||
|
|
||||||
|
busses.append({"route": bus_number, "time": time_until, "id": bus["vehicleId"],
|
||||||
|
"destination": destination, "human_time": human_time,
|
||||||
|
"mode" : bus["modeName"]})
|
||||||
if busses:
|
if busses:
|
||||||
busses = sorted(busses, key=lambda b: b[-1])
|
busses = sorted(busses, key=lambda b: b["time"])
|
||||||
busses_formatted = collections.OrderedDict()
|
busses_filtered = []
|
||||||
for bus_route, time_until in busses:
|
bus_routes = []
|
||||||
if bus_route in busses_formatted:
|
|
||||||
continue
|
# dedup if target route isn't "*", filter if target route isn't None or "*"
|
||||||
if time_until == 0:
|
for b in busses:
|
||||||
time_until = "due"
|
if target_bus_route != "*":
|
||||||
elif time_until == 1:
|
if b["route"] in bus_routes: continue
|
||||||
time_until = "in 1 minute"
|
bus_routes.append(b["route"])
|
||||||
|
if b["route"] == target_bus_route or not target_bus_route:
|
||||||
|
busses_filtered.append(b)
|
||||||
else:
|
else:
|
||||||
time_until = "in %d minutes" % time_until
|
busses_filtered.append(b)
|
||||||
if not target_bus_route or bus_route.lower() == target_bus_route:
|
|
||||||
busses_formatted[bus_route] = time_until
|
# do the magic formatty things!
|
||||||
busses_string = ", ".join(["%s (%s)" % (bus_route, time_until
|
busses_string = ", ".join(["%s (%s, %s)" % (b["destination"], b["route"], b["human_time"]
|
||||||
) for bus_route, time_until in busses_formatted.items()])
|
) for b in busses_filtered])
|
||||||
event["stdout"].write("%s (%s): %s" % (stop_name, stop_id,
|
event["stdout"].write("%s (%s): %s" % (stop_name, stop_id,
|
||||||
busses_string))
|
busses_string))
|
||||||
else:
|
else:
|
||||||
|
@ -133,7 +152,7 @@ class Module(object):
|
||||||
app_key = self.bot.config["tfl-api-key"]
|
app_key = self.bot.config["tfl-api-key"]
|
||||||
stop_name = event["args"]
|
stop_name = event["args"]
|
||||||
stop_search = Utils.get_url(URL_STOP_SEARCH % stop_name, get_params={
|
stop_search = Utils.get_url(URL_STOP_SEARCH % stop_name, get_params={
|
||||||
"app_id": app_id, "app_key": app_key, "maxResults": "4", "faresOnly": "False"}, json=True)
|
"app_id": app_id, "app_key": app_key, "maxResults": "6", "faresOnly": "False"}, json=True)
|
||||||
if stop_search:
|
if stop_search:
|
||||||
for stop in stop_search["matches"]:
|
for stop in stop_search["matches"]:
|
||||||
print(stop)
|
print(stop)
|
||||||
|
@ -143,3 +162,41 @@ class Module(object):
|
||||||
event["stderr"].write("No results")
|
event["stderr"].write("No results")
|
||||||
else:
|
else:
|
||||||
event["stderr"].write("No results")
|
event["stderr"].write("No results")
|
||||||
|
|
||||||
|
def vehicle(self, event):
|
||||||
|
app_id = self.bot.config["tfl-api-id"]
|
||||||
|
app_key = self.bot.config["tfl-api-key"]
|
||||||
|
|
||||||
|
vehicle_id = event["args_split"][0]
|
||||||
|
|
||||||
|
vehicle = Utils.get_url(URL_VEHICLE % vehicle_id, get_params={
|
||||||
|
"app_id": app_id, "app_key": app_key}, json=True)[0]
|
||||||
|
|
||||||
|
#Stolen from bus
|
||||||
|
vehicle_due_iso8601 = vehicle["expectedArrival"]
|
||||||
|
if "." in vehicle_due_iso8601:
|
||||||
|
vehicle_due_iso8601 = vehicle_due_iso8601.split(".")[0]+"Z"
|
||||||
|
vehicle_due = datetime.datetime.strptime(vehicle_due_iso8601,
|
||||||
|
"%Y-%m-%dT%H:%M:%SZ")
|
||||||
|
time_until = vehicle_due-datetime.datetime.utcnow()
|
||||||
|
time_until = int(time_until.total_seconds()/60)
|
||||||
|
|
||||||
|
if time_until == 0: human_time = "due"
|
||||||
|
elif time_until == 1: human_time = "in 1 minute"
|
||||||
|
else: human_time = "in %d minutes" % time_until
|
||||||
|
|
||||||
|
platform = vehicle["platformName"]
|
||||||
|
|
||||||
|
p = re.compile("(.*) - Platform (\\d+)")
|
||||||
|
m = p.match(platform)
|
||||||
|
if m:
|
||||||
|
platform = "platform %s (%s)" % (m.group(2), m.group(1))
|
||||||
|
###
|
||||||
|
|
||||||
|
# Leicester Square Underground Station (940GZZLULSQ): Heathrow Terminals 1-2-3 (Piccadilly, due),
|
||||||
|
# (Northern): Brent Cross Underground Station (in 4 minutes)→Edgware Underground Station
|
||||||
|
# "045 (Northern): to Edgeware Underground Station. Approaching Brent Cross."
|
||||||
|
event["stdout"].write("%s (%s) to %s. %s. Arrival at %s (%s) %s on %s" % (
|
||||||
|
vehicle["vehicleId"], vehicle["lineName"], vehicle["destinationName"], vehicle["currentLocation"],
|
||||||
|
vehicle["stationName"], vehicle["naptanId"], human_time, platform))
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue