39 lines
1.3 KiB
Python
39 lines
1.3 KiB
Python
# -*- coding: utf-8 -*-
|
|
"""
|
|
proxy.py
|
|
~~~~~~~~
|
|
⚡⚡⚡ Fast, Lightweight, Pluggable, TLS interception capable proxy server focused on
|
|
Network monitoring, controls & Application development, testing, debugging.
|
|
|
|
:copyright: (c) 2013-present by Abhinav Singh and contributors.
|
|
:license: BSD, see LICENSE for more details.
|
|
"""
|
|
import logging
|
|
from typing import List, Tuple
|
|
|
|
from ..http.responses import okResponse
|
|
from ..http.parser import HttpParser
|
|
from ..http.server import HttpWebServerBasePlugin, httpProtocolTypes
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
HTTP_RESPONSE = okResponse(content=b'HTTP route response')
|
|
HTTPS_RESPONSE = okResponse(content=b'HTTP route response')
|
|
|
|
|
|
class WebServerPlugin(HttpWebServerBasePlugin):
|
|
"""Demonstrates inbuilt web server routing using plugin."""
|
|
|
|
def routes(self) -> List[Tuple[int, str]]:
|
|
return [
|
|
(httpProtocolTypes.HTTP, r'/http-route-example$'),
|
|
(httpProtocolTypes.HTTPS, r'/https-route-example$'),
|
|
(httpProtocolTypes.WEBSOCKET, r'/ws-route-example$'),
|
|
]
|
|
|
|
def handle_request(self, request: HttpParser) -> None:
|
|
if request.path == b'/http-route-example':
|
|
self.client.queue(HTTP_RESPONSE)
|
|
elif request.path == b'/https-route-example':
|
|
self.client.queue(HTTPS_RESPONSE)
|