blob: 542af9261414735c4c2e35de77f5ce37623211fc (
plain)
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
|
from app import app
from flask import url_for
import importlib
import os
import log
import glob
# get all python files in api/ directory and convert them to python import names
files = glob.glob(os.path.dirname(__file__) + "/**/*.py", recursive=True)
files.remove(__file__)
files = [
str(filename).replace(os.path.dirname(__file__) + "/",
'').replace("/", ".").replace(".py", '')
for filename in files
]
def route(dynamic_route):
app.register_blueprint(dynamic_route[1], url_prefix=dynamic_route[0])
path = (dynamic_route[0] + "/" + dynamic_route[1].name).replace('//', '/')
log.info(f"dynamically routing {path}")
for file in files:
mod = importlib.import_module(file)
# check if module has `dynamic_route` defined (single route)
if hasattr(mod, "dynamic_route"):
route(mod.dynamic_route)
# check if module has `dynamic_routes` defined (multiple routes as list)
elif hasattr(mod, "dynamic_routes"):
for dynamic_route in mod.dynamic_routes:
route(dynamic_route)
|