-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.py
109 lines (74 loc) · 2.47 KB
/
app.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
"""
RANDOM FACT SITE.
:copyright: (c) 2017 Jakeoid.
:license: MIT, see LICENSE.md for details.
"""
# HOUSEKEEPING
import json
import asyncio
# RANDOM
from random import choice
# KYOUKAI
from kyoukai import Kyoukai, util
from werkzeug import Response
# ############################
# CLASS FOR SETTINGS
class JSONFile:
"""Instance of a configuration JSON File."""
def __init__(self, filename: str, interval: int = 900, loop=None):
"""Representative of a JSONFile Object.
You call this when creating a configuration file.
* filename - The name of the file in which JSON runs from.
* interval - The interval in which we call back and reload the file (seconds).
* loop - The asynchronous loop that the file will be called through.
"""
self.filename = filename
self.interval = interval
self._reload()
loop = loop or asyncio.get_event_loop()
loop.create_task(self._task())
def _reload(self):
with open(self.filename) as f:
self.cache = json.load(f)
async def _task(self):
await asyncio.sleep(900)
self._reload()
def __getitem__(self, i):
"""Return the cached item."""
return self.cache[i]
# ###########################
# APP
app = Kyoukai(__name__)
SETTINGS = JSONFile("settings.json", loop=app.loop)
# SERVER
IP = SETTINGS['server']['ip'] or "0.0.0.0"
PORT = SETTINGS['server']['port'] or 8080
# ############################
# Site Index.
@app.route("/")
async def index(ctx):
"""The overall homepage/index of the website."""
file_directory = 'templates/index.html'
with open(file_directory) as file:
content = file.read()
return util.as_html(content)
# Route listing
@app.route("/api/v1/endpoints")
async def endpoints(ctx):
"""A list of all viable endpoints."""
return Response(json.dumps(list(SETTINGS['facts'])), 200,
content_type="application/json")
# Categories.
@app.route("/api/v1/<name>")
async def endpoint(ctx, name):
"""The endpoint used in order to gather the facts about the categories."""
if name in SETTINGS['facts']:
resp = {"status": 200, "string": choice(SETTINGS['facts'][name])}
status = 200
else:
resp = {"status": 400, "error": "That is not a valid category."}
status = 400
return Response(json.dumps(resp), status, content_type="application/json")
# ############################
# Run our App.
app.run(IP, PORT)