-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCreateRegistration.py
34 lines (28 loc) · 1.18 KB
/
CreateRegistration.py
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
# -*- coding:utf-8 -*-
import network
from Registration import Registration
from database import Database
import messages
class CreateRegistration(Registration) :
def __init__(self, key, users) :
Registration.__init__(self, key, users)
self.database = Database()
def run(self, body, socket) :
messages.begin_registration(self.key, socket)
username = body["content"]["username"]
password = body["content"]["password"]
password_confirmation = body["content"]["password_confirmation"]
if username in self.users:
content = "ERROR: The typed username already exist in the system!"
status = "0000"
elif password != password_confirmation :
content = "ERROR: The typed passwords are different!"
status = "0000"
else :
content = "SUCCESS: Account was created successful!"
status = "1014"
self.users[username] = password
self.database.create_user(username, password)
msg = self.ack_construct(content, status, self.response_type)
network.send(socket, msg)
messages.end_registration(self.key, socket, content)