Add time field to GetState

This commit is contained in:
Neale Pickett 2018-05-24 13:56:42 +00:00
parent 55f2c2d538
commit d804c876db
2 changed files with 5 additions and 1 deletions

View File

@ -85,6 +85,7 @@ None
* teams: mapping from anonymized team ID to team name * teams: mapping from anonymized team ID to team name
* log: list of (timestamp, team number, category, points) * log: list of (timestamp, team number, category, points)
* notices: list of HTML broadcast notices to display to the user * notices: list of HTML broadcast notices to display to the user
* now: current server time (unix epoch)
### Example ### Example
@ -111,7 +112,8 @@ None
"notices": [ "notices": [
"<a href=\"https://appspot.com/dooted-bagel-8372/entry\">WOPR category</a> is now open", "<a href=\"https://appspot.com/dooted-bagel-8372/entry\">WOPR category</a> is now open",
"Event closes at 18:00 today, and will resume tomorrow at 08:00" "Event closes at 18:00 today, and will resume tomorrow at 08:00"
] ],
"now": 1527170088
} }
} }

View File

@ -1,6 +1,7 @@
#! /usr/bin/python3 #! /usr/bin/python3
from aiohttp import web from aiohttp import web
import time
async def fake_register(request): async def fake_register(request):
teamId = request.query.get("teamId") teamId = request.query.get("teamId")
@ -44,6 +45,7 @@ async def fake_state(request):
"<a href=\"https://appspot.com/dooted-bagel-8372/entry\">WOPR category</a> is now open", "<a href=\"https://appspot.com/dooted-bagel-8372/entry\">WOPR category</a> is now open",
"Event closes at 18:00 today, and will resume tomorrow at 08:00" "Event closes at 18:00 today, and will resume tomorrow at 08:00"
], ],
"now": int(time.time()),
} }
} }
return web.json_response(resp) return web.json_response(resp)