Skip to content
Snippets Groups Projects
Commit eb34a9c3 authored by Jeremy Whiting's avatar Jeremy Whiting
Browse files

Return 404 on unknown get request.

Also change writefile to write_file.
parent 20515ceb
No related branches found
No related tags found
1 merge request!1Rewrite devkit service in python.
...@@ -56,7 +56,7 @@ HOOK_DIRS = [] ...@@ -56,7 +56,7 @@ HOOK_DIRS = []
USE_DEFAULT_HOOKS = True USE_DEFAULT_HOOKS = True
def writefile(data: bytes) -> str: def write_file(data: bytes) -> str:
""" Write given bytes to a temporary file and return the filename """ Write given bytes to a temporary file and return the filename
Return the empty string if unable to open temp file for some reason Return the empty string if unable to open temp file for some reason
...@@ -140,7 +140,7 @@ def write_key(post_body: bytes) -> str: ...@@ -140,7 +140,7 @@ def write_key(post_body: bytes) -> str:
# write data to the file # write data to the file
data = body_decoded[:length] data = body_decoded[:length]
filename = writefile(data.encode()) filename = write_file(data.encode())
if filename: if filename:
print(f"Filename key written to: {filename}") print(f"Filename key written to: {filename}")
...@@ -246,8 +246,8 @@ class DevkitHandler(BaseHTTPRequestHandler): ...@@ -246,8 +246,8 @@ class DevkitHandler(BaseHTTPRequestHandler):
self._send_headers(404, "") self._send_headers(404, "")
return return
self._send_headers(200, "text/html") self._send_headers(404, "")
self.wfile.write("Get works\n".encode()) self.wfile.write("Unknown request\n".encode())
def do_POST(self): def do_POST(self):
""" Handle POST requests """ Handle POST requests
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment