buranun/server.py

83 lines
2.2 KiB
Python
Raw Normal View History

2018-04-08 14:10:21 +00:00
import http.cookies
2018-03-18 19:33:16 +00:00
import http.server
import urllib.parse
2018-03-31 21:12:40 +00:00
import generate_html
2018-03-18 19:33:16 +00:00
class HTTPRequestHandler(http.server.BaseHTTPRequestHandler):
server_version = 'Buranun/0.0'
protocol_version = 'HTTP/1.1'
2018-03-31 21:12:40 +00:00
def __send_html(self, html, *, status_code = 200):
encoded = html.encode('utf-8')
2018-03-18 19:33:16 +00:00
length = len(encoded)
2018-04-08 14:10:21 +00:00
# TODO: Make this more sensical
sent_cookies = http.cookies.SimpleCookie()
sent_cookies['buranun_session'] = 'dihutenosa'
sent_cookies['buranun_session']['domain'] = 'ahti-saarelainen.zgrep.org'
sent_cookies['buranun_session']['path'] = '/board'
sent_cookies['buranun_session']['max-age'] = 60
sent_cookies['buranun_session']['secure'] = True
sent_cookies['buranun_session']['httponly'] = True
2018-03-31 21:12:40 +00:00
self.send_response(status_code)
self.send_header('Content-Type', 'text/html; charset=utf-8')
2018-03-18 19:33:16 +00:00
self.send_header('Content-Length', length)
2018-04-08 14:10:21 +00:00
# Since http.cookies doesn't play nicely with http.server we need to do this manually
self.flush_headers()
self.wfile.write(sent_cookies.output().encode('utf-8') + b'\r\n')
2018-03-18 19:33:16 +00:00
self.end_headers()
self.wfile.write(encoded)
2018-03-31 21:12:40 +00:00
def __send_404(self, path):
html = generate_html.error_404(path)
self.__send_html(html, status_code = 404)
2018-03-18 19:33:16 +00:00
def do_GET(self):
2018-04-08 14:10:21 +00:00
# TODO: Do something with the session
cookies_string = self.headers['cookie']
if cookies_string is not None:
received_cookies = http.cookies.SimpleCookie()
try:
received_cookies.load(cookies_string)
except http.cookies.CookieError:
print('malformed cookies')
if 'buranun_session' in received_cookies:
print(received_cookies['buranun_session'].value)
else:
print('no cookies')
2018-03-18 19:33:16 +00:00
path = urllib.parse.unquote(self.path)
2018-03-31 21:12:40 +00:00
path_components = [component for component in path.split('/') if component != '']
if len(path_components) == 0:
# Path of format / → index
html = generate_html.index()
self.__send_html(html)
elif len(path_components) == 1:
# Path of format /foo/ → board index
board_name = path_components[0]
html = generate_html.board(board_name)
self.__send_html(html)
else:
# Path not understood, send 404
self.__send_404(path)
2018-03-18 19:33:16 +00:00
def main():
httpd = http.server.HTTPServer(('', 4000), HTTPRequestHandler)
2018-03-18 19:33:16 +00:00
httpd.serve_forever()
if __name__ == '__main__':
main()