aboutsummaryrefslogtreecommitdiffstats
path: root/libmproxy/protocol/__init__.py
blob: 5419c5eff9c114f4a4536180181f5b530bae2121 (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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
KILL = 0  # const for killed requests


class ConnectionTypeChange(Exception):
    """
    Gets raised if the connetion type has been changed (e.g. after HTTP/1.1 101 Switching Protocols).
    It's up to the raising ProtocolHandler to specify the new conntype before raising the exception.
    """
    pass


class ProtocolHandler(object):
    def __init__(self, c):
        self.c = c

    def handle_messages(self):
        """
        This method gets called if a client connection has been made. Depending on the proxy settings,
        a server connection might already exist as well.
        """
        raise NotImplementedError

    def handle_error(self, error):
        """
        This method gets called should there be an uncaught exception during the connection.
        This might happen outside of handle_messages, e.g. if the initial SSL handshake fails in transparent mode.
        """
        raise NotImplementedError


from .http import HTTPHandler


def _handler(conntype, connection_handler):
    if conntype == "http":
        return HTTPHandler(connection_handler)

    raise NotImplementedError


def handle_messages(conntype, connection_handler):
    return _handler(conntype, connection_handler).handle_messages()


def handle_error(conntype, connection_handler, error):
    return _handler(conntype, connection_handler).handle_error(error)