openwebrx-clone/owrx/http.py

46 lines
2.0 KiB
Python
Raw Normal View History

from owrx.controllers import StatusController, IndexController, AssetsController, WebSocketController, MapController, FeatureController, ApiController
2019-05-03 20:59:24 +00:00
from http.server import BaseHTTPRequestHandler
import re
2019-05-10 19:50:58 +00:00
import logging
logger = logging.getLogger(__name__)
2019-05-03 20:59:24 +00:00
class RequestHandler(BaseHTTPRequestHandler):
def __init__(self, request, client_address, server):
self.router = Router()
super().__init__(request, client_address, server)
def do_GET(self):
self.router.route(self)
class Router(object):
mappings = [
{"route": "/", "controller": IndexController},
{"route": "/status", "controller": StatusController},
2019-05-04 14:56:23 +00:00
{"regex": "/static/(.+)", "controller": AssetsController},
2019-05-09 14:10:58 +00:00
{"route": "/ws/", "controller": WebSocketController},
{"regex": "(/favicon.ico)", "controller": AssetsController},
# backwards compatibility for the sdr.hu portal
2019-07-01 14:49:39 +00:00
{"regex": "/(gfx/openwebrx-avatar.png)", "controller": AssetsController},
{"route": "/map", "controller": MapController},
{"route": "/features", "controller": FeatureController},
{"route": "/api/features", "controller": ApiController}
2019-05-03 20:59:24 +00:00
]
def find_controller(self, path):
for m in Router.mappings:
if "route" in m:
if m["route"] == path:
return (m["controller"], None)
if "regex" in m:
regex = re.compile(m["regex"])
matches = regex.match(path)
if matches:
return (m["controller"], matches)
def route(self, handler):
res = self.find_controller(handler.path)
if res is not None:
(controller, matches) = res
2019-05-10 19:50:58 +00:00
logger.debug("path: {0}, controller: {1}, matches: {2}".format(handler.path, controller, matches))
2019-05-03 20:59:24 +00:00
controller(handler, matches).handle_request()
else:
handler.send_error(404, "Not Found", "The page you requested could not be found.")