Blame view

flaskr/models.py 2.42 KB
fa3d2b43   Antoine Goutenoir   Conflate the data...
1
from flaskr.core import generate_unique_id
1b39d5ec   Goutte   Add a skeleton fo...
2
3
4
from flask_sqlalchemy import SQLAlchemy
from flask_login import UserMixin, AnonymousUserMixin
from werkzeug.security import generate_password_hash, check_password_hash
97fe903e   Goutte   Add the base data...
5
import enum
1b39d5ec   Goutte   Add a skeleton fo...
6

c10e71f4   Antoine Goutenoir   Document the models.
7
8
9
10
11
12
13
# These are not the emission "models" in the scientific meaning of the word.
# They are the SQL Database Models.
# These are also named Entities, in other conventions (we're following flasks")
# If you're looking for the Emission Models (aka scaling laws),
# look in `flaskr/laws/`.


1b39d5ec   Goutte   Add a skeleton fo...
14
15
16
db = SQLAlchemy()


c10e71f4   Antoine Goutenoir   Document the models.
17
18
19
class StatusEnum(enum.Enum):
    pending = 'pending'
    success = 'success'
5b6d9d3d   Antoine Goutenoir   Add a method to t...
20
    failure = 'failure'
c10e71f4   Antoine Goutenoir   Document the models.
21
22
23
24


class Estimation(db.Model):
    id = db.Column(db.Integer(), primary_key=True)
fa3d2b43   Antoine Goutenoir   Conflate the data...
25
26
27
28
29
    public_id = db.Column(
        db.Unicode(),
        default=lambda: generate_unique_id(),
        unique=True
    )
c10e71f4   Antoine Goutenoir   Document the models.
30
31
32
    email = db.Column(db.Unicode(1024))
    first_name = db.Column(db.Unicode(1024))  # Antoine
    last_name = db.Column(db.Unicode(1024))   # Goutenoir
fa3d2b43   Antoine Goutenoir   Conflate the data...
33
    status = db.Column(db.Enum(StatusEnum), default=StatusEnum.pending)
c10e71f4   Antoine Goutenoir   Document the models.
34
35
36
37
38
39
40
41

    # City, Country
    # One address per line
    origin_addresses = db.Column(db.Unicode())
    destination_addresses = db.Column(db.Unicode())

    compute_optimal_destination = db.Column(db.Boolean())

77a9e740   Antoine Goutenoir   Pickling is overk...
42
    output_yaml = db.Column(db.UnicodeText())
fa3d2b43   Antoine Goutenoir   Conflate the data...
43
44
45
    warnings = db.Column(db.UnicodeText())
    errors = db.Column(db.UnicodeText())

5b6d9d3d   Antoine Goutenoir   Add a method to t...
46
47
    def has_failed(self):
        return self.status == StatusEnum.failure
c10e71f4   Antoine Goutenoir   Document the models.
48
49
50

# USERS #######################################################################

1b39d5ec   Goutte   Add a skeleton fo...
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
class User(db.Model, UserMixin):
    id = db.Column(db.Integer(), primary_key=True)
    username = db.Column(db.String())
    password = db.Column(db.String())

    def __init__(self, username, password):
        self.username = username
        self.set_password(password)

    def set_password(self, password):
        self.password = generate_password_hash(password)

    def check_password(self, value):
        return check_password_hash(self.password, value)

    @property
    def is_authenticated(self):
        if isinstance(self, AnonymousUserMixin):
            return False
        else:
            return True

    def is_active(self):
        return True

    def is_anonymous(self):
        if isinstance(self, AnonymousUserMixin):
            return True
        else:
            return False

    def get_id(self):
        return self.id

    def __repr__(self):
fa3d2b43   Antoine Goutenoir   Conflate the data...
86
        return '<User %r>' % self.username