models.py
2.03 KB
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
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
from flask_sqlalchemy import SQLAlchemy
from flask_login import UserMixin, AnonymousUserMixin
from werkzeug.security import generate_password_hash, check_password_hash
import enum
# 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/`.
db = SQLAlchemy()
class StatusEnum(enum.Enum):
pending = 'pending'
success = 'success'
failed = 'failed'
class Estimation(db.Model):
id = db.Column(db.Integer(), primary_key=True)
email = db.Column(db.Unicode(1024))
first_name = db.Column(db.Unicode(1024)) # Antoine
last_name = db.Column(db.Unicode(1024)) # Goutenoir
status = db.Column(db.Enum(StatusEnum))
# 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())
# USERS #######################################################################
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):
return '<User %r>' % self.username