scripts/register

42 lines
1.4 KiB
Text
Raw Normal View History

2021-11-22 21:15:48 +00:00
#!/usr/bin/python
from subprocess import run, check_output
2021-11-22 21:15:48 +00:00
from json import loads
from http.server import BaseHTTPRequestHandler, HTTPServer
from importlib.util import spec_from_loader, module_from_spec
from importlib.machinery import SourceFileLoader
2021-11-22 21:15:48 +00:00
# Import adduser module
spec = spec_from_loader('adduser', SourceFileLoader('adduser', 'adduser'))
spec.loader.exec_module(module_from_spec(spec))
# Registration HTTP server
2021-11-30 04:17:26 +00:00
class Server(BaseHTTPRequestHandler):
2021-11-22 21:15:48 +00:00
def do_POST(self):
content_length = int(self.headers['Content-Length'])
data = loads(self.rfile.read(content_length).decode('utf-8'))
# Print data
print([data[key] for key in keys(data) if key != 'password'])
2021-12-04 01:46:51 +00:00
2021-11-30 04:17:26 +00:00
if data['code'] != code:
print('Incorrect code')
return
if not all(c.isdigit() or c.islower() for c in data['username']) or data['username'][0].isdigit():
print('Bad username')
2021-11-23 21:58:25 +00:00
return
# Add the user
adduser(data['username'], data['firstname'].capitalize(), data['lastname'].capitalize(),
data['email'], data['password'], ldap_pass)
2021-11-22 21:15:48 +00:00
self.send_response(200)
self.send_header('Content-type', 'text/html')
self.end_headers()
2021-12-04 01:46:51 +00:00
2021-11-22 21:15:48 +00:00
ldap_pass = input('LDAP password: ')
2021-11-23 21:58:25 +00:00
code = input('Registration code: ')
2021-11-30 04:17:26 +00:00
httpd = HTTPServer(('localhost', 6789), Server)
2021-11-30 04:17:26 +00:00
httpd.serve_forever()