This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
2018-04-27 17:16:43 +00:00
|
|
|
from uuid import uuid4
|
|
|
|
|
|
|
|
from flask import current_app
|
|
|
|
from sqlalchemy import Column, Unicode
|
|
|
|
from sqlalchemy.dialects.postgresql import UUID
|
|
|
|
from sqlalchemy_utils import EmailType, PasswordType
|
|
|
|
|
|
|
|
from ereuse_devicehub.resources.models import STR_SIZE, Thing
|
|
|
|
|
|
|
|
|
|
|
|
class User(Thing):
|
|
|
|
__table_args__ = {'schema': 'common'}
|
|
|
|
id = Column(UUID(as_uuid=True), default=uuid4, primary_key=True)
|
|
|
|
email = Column(EmailType, nullable=False, unique=True)
|
|
|
|
password = Column(PasswordType(max_length=STR_SIZE,
|
|
|
|
onload=lambda **kwargs: dict(
|
|
|
|
schemes=current_app.config['PASSWORD_SCHEMES'],
|
|
|
|
**kwargs
|
|
|
|
)))
|
|
|
|
"""
|
|
|
|
Password field.
|
|
|
|
From `here <https://sqlalchemy-utils.readthedocs.io/en/latest/
|
|
|
|
data_types.html#module-sqlalchemy_utils.types.password>`_
|
|
|
|
"""
|
|
|
|
name = Column(Unicode(length=STR_SIZE))
|
|
|
|
token = Column(UUID(as_uuid=True), default=uuid4, unique=True)
|
2018-05-13 13:13:12 +00:00
|
|
|
|
|
|
|
def __repr__(self) -> str:
|
|
|
|
return '<{0.t} {0.id!r} email={0.email!r}>'.format(self)
|