balance-application/generate.py

62 lines
1.3 KiB
Python
Raw Permalink Normal View History

2024-09-10 08:08:06 +00:00
import random, string
2024-09-10 07:36:03 +00:00
from getpass import getpass
2024-09-10 08:08:06 +00:00
from util.auth_lib import hash
from service.auth_service import AuthData, AuthService
def gen_salt(length = 20):
2024-09-12 02:34:09 +00:00
letters = string.ascii_lowercase + string.digits + string.punctuation
return "".join(random.choice(letters) for i in range(length))
2024-09-13 05:28:09 +00:00
def _new_account():
name = input("input your display name: ")
username = input("input your username: ")
password = getpass("input your password: ")
passchk = getpass("type password one more time: ")
salt = gen_salt()
2024-09-10 04:14:09 +00:00
2024-09-13 05:28:09 +00:00
if password != passchk:
return
2024-09-10 08:08:06 +00:00
2024-09-13 05:28:09 +00:00
hashed_password = hash(password, salt)
packed = AuthData(
name=name,
username=username,
password=hashed_password,
salt=salt
)
service = AuthService()
service.create(data=packed)
def on_load(conn, cur):
cur.execute(
"""
create table account(
name varchar(25),
username varchar(25) not null,
password varchar(100) not null,
salt varchar(50),
primary key(username)
);
"""
)
cur.execute(
"""
create table balset(
id serial primary key,
uid varchar(25) not null,
name varchar(50),
date bigint,
price bigint,
buy boolean,
memo varchar(300),
constraint FK_Account_ID
foreign key (uid)
references account(username)
on delete CASCADE
);
"""
)
conn.commit()
_new_account()