IQ.Pilot Prebuilt Release @ 27f668a
This commit is contained in:
18
iqpilot/selfdrive/ui/lib/api_helpers.py
Normal file
18
iqpilot/selfdrive/ui/lib/api_helpers.py
Normal file
@@ -0,0 +1,18 @@
|
||||
import time
|
||||
from functools import lru_cache
|
||||
from iqpilot.common.api import Api
|
||||
from iqpilot.common.time_helpers import system_time_valid
|
||||
|
||||
TOKEN_EXPIRY_HOURS = 2
|
||||
|
||||
|
||||
@lru_cache(maxsize=1)
|
||||
def _get_token(dongle_id: str, t: int):
|
||||
if not system_time_valid():
|
||||
raise RuntimeError("System time is not valid, cannot generate token")
|
||||
|
||||
return Api(dongle_id).get_token(expiry_hours=TOKEN_EXPIRY_HOURS)
|
||||
|
||||
|
||||
def get_token(dongle_id: str):
|
||||
return _get_token(dongle_id, int(time.monotonic() / (TOKEN_EXPIRY_HOURS / 2 * 60 * 60)))
|
||||
Reference in New Issue
Block a user