about summary refs log tree commit diff
path: root/main.py
blob: 18772f39ba4549e3cc20c46ba99c7a6baf985b95 (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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
"""
The mighty silly webserver written in python for no good reason
"""


import ssl
import time
import gzip
import socket
import brotli
import signal
import threading
from src import APIv1
from src.status_code import *
from src.request import Request
from src.minimizer import minimize_html


# path mapping
PATH_MAP = {
    "/":                    {"path": "www/index.html"},
    "/index.html":          {"path": "www/index.html"},
    "/robots.txt":          {"path": "www/robots.txt"},
    "/favicon.ico":         {"path": "www/favicon.ico"},
    "/css/styles.css":      {"path": "css/styles.css"},
    "/about":               {"path": "www/about.html"},
    "/test":                {"path": "www/test.html"},
}

# API
API_VERSIONS = {
    "APIv1":                {"supported": True}
}

# internal path map
I_PATH_MAP = {
    "/err/response.html":       {"path": "www/err/response.html"}
}


class HTTPServer:
    """
    The mightier HTTP server!
    Now uses threading
    """

    def __init__(self, *, port: int, packet_size: int = 2048):
        # SSL context
        context = ssl.SSLContext(ssl.PROTOCOL_TLS_SERVER)
        context.check_hostname = False
        context.load_cert_chain(
            certfile=r"C:\Certbot\live\qubane.ddns.net\fullchain.pem",  # use your own path here
            keyfile=r"C:\Certbot\live\qubane.ddns.net\privkey.pem")     # here too

        # Sockets
        self.sock: ssl.SSLSocket = context.wrap_socket(
            socket.socket(socket.AF_INET, socket.SOCK_STREAM),
            server_side=True)
        self.buf_len: int = packet_size
        self.port: int = port

        # client thread list and server thread
        self.client_threads: list[threading.Thread] = []

        # add signaling
        self.stop_event = threading.Event()
        signal.signal(signal.SIGINT, self._signal_interrupt)

    def _signal_interrupt(self, *args):
        """
        Checks for CTRL+C keyboard interrupt, to properly stop the HTTP server
        """

        # stop all threads
        self.stop_event.set()
        for thread in self.client_threads:
            thread.join()

    def start(self):
        """
        Method to start the web server
        """

        # bind and start listening to port
        self.sock.bind(('', self.port))
        self.sock.setblocking(False)
        self.sock.listen()

        # listen and respond handler
        while not self.stop_event.is_set():
            # accept new client
            client = self._accept()
            if client is None:
                break

            # create thread for new client and append it to the list
            th = threading.Thread(target=self._client_thread, args=[client])
            self.client_threads.append(th)
            th.start()

        # close server socket
        self.sock.close()

    def _client_thread(self, client: ssl.SSLSocket):
        """
        Handles client's requests
        :param client: client ssl socket
        """

        client.settimeout(5)
        while not self.stop_event.is_set():
            try:
                # get client's request
                request = self._recv_request(client)
                if request is None:
                    break

                print(request, end="\n\n")
            except TimeoutError:
                print("Client timeout")
                break
            except OSError as e:
                print(e)
                break

        # close the connection once stop even was set or an error occurred
        client.close()

    def _recv_request(self, client: ssl.SSLSocket) -> Request | None:
        """
        Receive request from client
        :return: request
        :raises: anything that recv raises
        """

        buffer = bytearray()
        while not self.stop_event.is_set():
            msg = client.recv(self.buf_len)
            if len(msg) == 0:
                break
            buffer += msg
            if buffer[-4:] == b'\r\n\r\n':
                return Request.create(buffer)
        return None

    def _accept(self) -> ssl.SSLSocket | None:
        """
        socket.accept, but for more graceful closing
        """

        while not self.stop_event.is_set():
            try:
                return self.sock.accept()[0]
            except BlockingIOError:
                time.sleep(0.001)
        return None


# class HTTPServer:
#
#     def client_handle(self, client: ssl.SSLSocket):
#         """
#         Handles client's connection
#         """
#
#         while True:
#             # receive request from client
#             raw_request = self._recvall(client)
#
#             if raw_request == b'':
#                 break
#
#             # decode request
#             request: Request = Request.create(raw_request)
#
#             # # log request
#             # async with aiofiles.open("logs.log", "a") as f:
#             #     await f.write(f"IP: {client.getpeername()[0]}\n{request}\n\n")
#
#             threading.Thread(target=self.handle_request, args=[client, request]).start()
#
#     def handle_request(self, client: ssl.SSLSocket, request: Request):
#         # handle requests
#         try:
#             match request.type:
#                 case "GET":
#                     self.handle_get_request(client, request)
#                 case _:
#                     pass
#
#         # break on exception
#         except Exception as e:
#             print(e)
#
#         # # close connection (stop page loading)
#         # self._close_client(client)
#
#     @staticmethod
#     def handle_get_request(client: ssl.SSLSocket, request: Request):
#         """
#         Handles user's GET request
#         """
#
#         # get available compression methods
#         compressions = [x.strip() for x in getattr(request, "Accept-Encoding", "").split(",")]
#
#         # check if request path is in the PATH_MAP
#         if request.path in PATH_MAP:
#             # if it is -> return file from that path
#             with open(PATH_MAP[request.path]["path"], "rb") as f:
#                 data = f.read()
#
#             # pre-compress data for HTML files
#             if PATH_MAP[request.path]["path"][-4:] == "html":
#                 data = minimize_html(data)
#
#             # add brotli compression header (if supported)
#             headers = {}
#             if "br" in compressions:
#                 headers["Content-Encoding"] = "br"
#
#             # else add gzip compression (if supported)
#             elif "gzip" in compressions:
#                 headers["Content-Encoding"] = "gzip"
#
#             # send 200 response with the file to the client
#             HTTPServer._send(client, 200, data, headers)
#
#         # if it's an API request
#         elif (api_version := request.path.split("/")[1]) in API_VERSIONS:
#             data = b''
#             headers = {}
#             match api_version:
#                 case "APIv1":
#                     status, data, headers = APIv1.respond(client, request)
#                 case _:
#                     status = 400
#
#             # if status is not 200 -> send bad response
#             if status != 200:
#                 HTTPServer._bad_response(client, status)
#                 return
#
#             # send data if no error
#             HTTPServer._send(client, status, data, headers)
#
#         # in case of error, return error page
#         else:
#             HTTPServer._bad_response(client, 404)
#
#     @staticmethod
#     def _bad_response(client: ssl.SSLSocket, status_code: int):
#         """
#         Sends a bad response page to the client.
#         :param client: client
#         :param status_code: status code
#         """
#
#         with open(I_PATH_MAP["/err/response.html"]["path"], "r") as f:
#             data = f.read()
#
#         # format error response
#         data = data.format(status_code=get_response_code(status_code).decode("ascii"))
#
#         # send response to the client
#         HTTPServer._send(client, status_code, data.encode("ascii"))
#
#     @staticmethod
#     def _send(client: ssl.SSLSocket, response: int, data: bytes = None, headers: dict[str, str] = None):
#         """
#         Sends client response code + headers + data
#         :param client: client
#         :param response: response code
#         :param data: data
#         :param headers: headers to include
#         """
#
#         # if data was not given
#         if data is None:
#             data = bytes()
#
#         # if headers were not given
#         if headers is None:
#             headers = dict()
#
#         # check for 'content-encoding' header
#         if headers.get("Content-Encoding") == "br":
#             data = brotli.compress(data)
#
#         elif headers.get("Content-Encoding") == "gzip":
#             data = gzip.compress(data)
#
#         # add 'Content-Length' header if not present
#         if headers.get("Content-Length") is None:
#             headers["Content-Length"] = len(data)
#
#         # format headers
#         byte_header = bytearray()
#         for key, value in headers.items():
#             byte_header += f"{key}: {value}\r\n".encode("ascii")
#
#         # send response to the client
#         client.sendall(
#             b'HTTP/1.1 ' +
#             get_response_code(response) +
#             b'\r\n' +
#             byte_header +  # if empty, we'll just get b'\r\n\r\n'
#             b'\r\n' +
#             data
#         )
#
#     def _recvall(self, client: ssl.SSLSocket) -> bytes:
#         """
#         Receive All (just receives the whole message, instead of 1 packet at a time)
#         """
#
#         # create message buffer
#         buffer: bytearray = bytearray()
#
#         # start fetching the message
#         while True:
#             try:
#                 # fetch packet
#                 message = ssl_sock_recv(client, self.packet_size)
#             except OSError:
#                 break
#
#             # that happens when user stops loading the page
#             if message == b'':
#                 break
#
#             # append fetched message to the buffer
#             buffer += message
#
#             # check for EoF
#             if buffer[-4:] == b'\r\n\r\n':
#                 # return the received message
#                 return buffer
#
#         # return empty buffer on error
#         return b''
#
#     def _close_client(self, client: socket.socket):
#         """
#         Closes a client
#         """
#
#         client.close()
#         if client in self.clients:
#             self.clients.remove(client)


def main():
    server = HTTPServer(port=13700)
    server.start()


if __name__ == '__main__':
    main()