Compare commits

..

No commits in common. "7e4cde8762f3ef895f06832d3dfe10779e2ea458" and "3a23c058c3ad9d7c9478a78d3ce43f322874fd09" have entirely different histories.

5 changed files with 12 additions and 82 deletions

View File

@ -1,78 +1,8 @@
# from pyrmv.methods.journey_detail import journey_detail
class Board():
pass
from datetime import datetime
from pyrmv.methods.stop_by_id import stop_by_id
class BoardArrival(Board):
pass
class LineArrival():
def __init__(self, data, access_id: str):
# self.journey = journey_detail(line["JourneyDetailRef"]["ref"])
self.status = data["JourneyStatus"]
# self.messages = []
self.name = data["name"]
self.type = data["type"]
self.stop_name = data["stop"]
self.stop_id = data["stopid"]
self.stop_id_ext = data["stopExtId"]
self.stop = stop_by_id(access_id, self.stop_id)
self.time = datetime.strptime(data["time"], "%H:%M:%S")
self.date = datetime.strptime(data["date"], "%Y-%m-%d")
if ("rtTime" in data) and ("rtDate" in data):
self.time_real_time = datetime.strptime(data["rtTime"], "%H:%M:%S")
self.date_real_time = datetime.strptime(data["rtDate"], "%Y-%m-%d")
self.reachable = data["reachable"]
self.origin = data["origin"]
def __str__(self) -> str:
return f"{self.name} coming from {self.origin} at {self.time.time()} {self.date.date()}"
class LineDeparture():
def __init__(self, data, access_id: str):
# self.journey = journey_detail(line["JourneyDetailRef"]["ref"])
self.status = data["JourneyStatus"]
# self.messages = []
self.name = data["name"]
self.type = data["type"]
self.stop_name = data["stop"]
self.stop_id = data["stopid"]
self.stop_id_ext = data["stopExtId"]
self.stop = stop_by_id(access_id, self.stop_id)
self.time = datetime.strptime(data["time"], "%H:%M:%S")
self.date = datetime.strptime(data["date"], "%Y-%m-%d")
if ("rtTime" in data) and ("rtDate" in data):
self.time_real_time = datetime.strptime(data["rtTime"], "%H:%M:%S")
self.date_real_time = datetime.strptime(data["rtDate"], "%Y-%m-%d")
self.reachable = data["reachable"]
self.direction = data["direction"]
self.direction_flag = data["directionFlag"]
def __str__(self) -> str:
return f"{self.name} heading {self.direction} at {self.time.time()} {self.date.date()}"
class BoardArrival(list):
def __init__(self, data: dict, access_id: str):
super().__init__([])
for line in data["Arrival"]:
self.append(LineArrival(line, access_id))
def __str__(self) -> str:
lines = []
for line in self:
lines.append(str(line))
return "Arrival board\n" + "\n".join(lines)
class BoardDeparture(list):
def __init__(self, data: dict, access_id: str):
super().__init__([])
for line in data["Departure"]:
self.append(LineDeparture(line, access_id))
def __str__(self) -> str:
lines = []
for line in self:
lines.append(str(line))
return "Departure board\n" + "\n".join(lines)
class BoardDeparture(Board):
pass

View File

@ -66,5 +66,5 @@ def board_arrival(
find_exception(board_raw)
# raise NotReadyYetError()
return BoardArrival(board_raw, access_id)
raise NotReadyYetError()
# return BoardArrival(board_raw)

View File

@ -66,5 +66,5 @@ def board_departure(
find_exception(board_raw)
# raise NotReadyYetError()
return BoardDeparture(board_raw, access_id)
raise NotReadyYetError()
# return BoardDeparture(board_raw)

View File

@ -86,7 +86,7 @@ def board_arrival(accessId: str,
payload[str(var)] = val
elif str(var) == "boardType":
if val != None:
payload["type"] = val.upper()
payload["type"] = val
elif str(var) not in ["json", "headers", "payload"]:
if val != None:
payload[str(var)] = val

View File

@ -87,7 +87,7 @@ def board_departure(accessId: str,
payload[str(var)] = val
elif str(var) == "boardType":
if val != None:
payload["type"] = val.upper()
payload["type"] = val
elif str(var) not in ["json", "headers", "payload"]:
if val != None:
payload[str(var)] = val