openwebrx-clone/owrx/http.py

79 lines
2.7 KiB
Python
Raw Normal View History

from owrx.controllers import (
StatusController,
2020-02-09 20:46:03 +00:00
StatusJsonController,
IndexController,
2019-09-18 15:22:35 +00:00
OwrxAssetsController,
WebSocketController,
MapController,
FeatureController,
ApiController,
MetricsController,
2019-09-18 15:22:35 +00:00
AprsSymbolsController,
)
2019-05-03 20:59:24 +00:00
from http.server import BaseHTTPRequestHandler
from urllib.parse import urlparse, parse_qs
import re
2019-05-03 20:59:24 +00:00
2019-05-10 19:50:58 +00:00
import logging
2019-05-10 19:50:58 +00:00
logger = logging.getLogger(__name__)
2019-09-22 18:51:33 +00:00
logger.setLevel(logging.INFO)
2019-05-10 19:50:58 +00:00
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)
2019-09-22 18:51:33 +00:00
def log_message(self, format, *args):
2019-09-23 01:15:24 +00:00
logger.debug("%s - - [%s] %s", self.address_string(), self.log_date_time_string(), format % args)
2019-09-22 18:51:33 +00:00
2019-05-03 20:59:24 +00:00
def do_GET(self):
self.router.route(self)
class Request(object):
def __init__(self, query=None, matches=None):
self.query = query
self.matches = matches
2019-05-03 20:59:24 +00:00
class Router(object):
mappings = [
{"route": "/", "controller": IndexController},
{"route": "/status", "controller": StatusController},
2020-02-09 20:46:03 +00:00
{"route": "/status.json", "controller": StatusJsonController},
2019-09-18 15:22:35 +00:00
{"regex": "/static/(.+)", "controller": OwrxAssetsController},
{"regex": "/aprs-symbols/(.+)", "controller": AprsSymbolsController},
2019-05-09 14:10:58 +00:00
{"route": "/ws/", "controller": WebSocketController},
2019-09-18 15:22:35 +00:00
{"regex": "(/favicon.ico)", "controller": OwrxAssetsController},
# backwards compatibility for the sdr.hu portal
2019-09-18 15:22:35 +00:00
{"regex": "/(gfx/openwebrx-avatar.png)", "controller": OwrxAssetsController},
{"route": "/map", "controller": MapController},
{"route": "/features", "controller": FeatureController},
{"route": "/api/features", "controller": ApiController},
{"route": "/metrics", "controller": MetricsController},
2019-05-03 20:59:24 +00:00
]
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)
2019-05-03 20:59:24 +00:00
def route(self, handler):
url = urlparse(handler.path)
res = self.find_controller(url.path)
2019-05-03 20:59:24 +00:00
if res is not None:
(controller, matches) = res
query = parse_qs(url.query)
request = Request(query, matches)
controller(handler, request).handle_request()
2019-05-03 20:59:24 +00:00
else:
handler.send_error(404, "Not Found", "The page you requested could not be found.")