A lot of function are now using classes instead of parameters or tuples isort was added to the dev requirements Comments were adjusted
32 lines
841 B
Python
32 lines
841 B
Python
import sqlmodel
|
|
from sqlalchemy.exc import IntegrityError
|
|
from sqlalchemy.future import Engine
|
|
|
|
from . import models
|
|
|
|
|
|
def add_account(engine: Engine, account: models.Account) -> bool:
|
|
"""Adds account to the database. Returns true on success,
|
|
false otherwise"""
|
|
try:
|
|
with sqlmodel.Session(engine) as session:
|
|
session.add(account)
|
|
session.commit()
|
|
except IntegrityError:
|
|
return False
|
|
else:
|
|
return True
|
|
|
|
|
|
def add_master_pass(engine: Engine, master_pass: models.MasterPass) -> bool:
|
|
"""Adds master password the database. Returns true on success,
|
|
false otherwise"""
|
|
try:
|
|
with sqlmodel.Session(engine) as session:
|
|
session.add(master_pass)
|
|
session.commit()
|
|
except IntegrityError:
|
|
return False
|
|
else:
|
|
return True
|