-
Notifications
You must be signed in to change notification settings - Fork 0
/
models.py
218 lines (159 loc) · 4.87 KB
/
models.py
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
"""SQLAlchemy models for Warbler."""
from datetime import datetime
from flask_bcrypt import Bcrypt
from flask_sqlalchemy import SQLAlchemy
bcrypt = Bcrypt()
db = SQLAlchemy()
DEFAULT_IMAGE_URL = (
"https://icon-library.com/images/default-user-icon/" +
"default-user-icon-28.jpg")
DEFAULT_HEADER_IMAGE_URL = (
"https://images.unsplash.com/photo-1519751138087-5bf79df62d5b?ixlib=" +
"rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=for" +
"mat&fit=crop&w=2070&q=80")
class Follow(db.Model):
"""Connection of a follower <-> followed_user."""
__tablename__ = 'follows'
user_being_followed_id = db.Column(
db.Integer,
db.ForeignKey('users.id', ondelete="cascade"),
primary_key=True,
)
user_following_id = db.Column(
db.Integer,
db.ForeignKey('users.id', ondelete="cascade"),
primary_key=True,
)
class Like(db.Model):
"""Connection of a like <-> message and like <-> user."""
__tablename__ = 'likes'
message_id = db.Column(
db.Integer,
db.ForeignKey('messages.id', ondelete="cascade"),
primary_key=True
)
user_id = db.Column(
db.Integer,
db.ForeignKey('users.id', ondelete='cascade'),
primary_key=True
)
class User(db.Model):
"""User in the system."""
__tablename__ = 'users'
id = db.Column(
db.Integer,
primary_key=True
)
email = db.Column(
db.String(50),
nullable=False,
unique=True
)
username = db.Column(
db.String(30),
nullable=False,
unique=True
)
image_url = db.Column(
db.String(255),
nullable=False,
default=DEFAULT_IMAGE_URL
)
header_image_url = db.Column(
db.String(255),
nullable=False,
default=DEFAULT_HEADER_IMAGE_URL
)
bio = db.Column(
db.Text,
nullable=False,
default=""
)
location = db.Column(
db.String(30),
nullable=False,
default=""
)
password = db.Column(
db.String(100),
nullable=False
)
messages = db.relationship('Message', backref="user")
# liked_messages = db.relationship('Like', backref="users")
followers = db.relationship(
"User",
secondary="follows",
primaryjoin=(Follow.user_being_followed_id == id),
secondaryjoin=(Follow.user_following_id == id),
backref="following"
)
def __repr__(self):
return f"<User #{self.id}: {self.username}, {self.email}>"
@classmethod
def signup(cls, username, email, password, image_url=DEFAULT_IMAGE_URL):
"""Sign up user.
Hashes password and adds user to session.
"""
hashed_pwd = bcrypt.generate_password_hash(password).decode('UTF-8')
user = User(
username=username,
email=email,
password=hashed_pwd,
image_url=image_url
)
db.session.add(user)
return user
@classmethod
def authenticate(cls, username, password):
"""Find user with `username` and `password`.
This is a class method (call it on the class, not an individual user.)
It searches for a user whose password hash matches this password
and, if it finds such a user, returns that user object.
If this can't find matching user (or if password is wrong), returns
False.
"""
user = cls.query.filter_by(username=username).one_or_none()
if user:
is_auth = bcrypt.check_password_hash(user.password, password)
if is_auth:
return user
return False
def is_followed_by(self, other_user):
"""Is this user followed by `other_user`?"""
found_user_list = [
user for user in self.followers if user == other_user]
return len(found_user_list) == 1
def is_following(self, other_user):
"""Is this user following `other_user`?"""
found_user_list = [
user for user in self.following if user == other_user]
return len(found_user_list) == 1
class Message(db.Model):
"""An individual message ("warble")."""
__tablename__ = 'messages'
id = db.Column(
db.Integer,
primary_key=True
)
text = db.Column(
db.String(140),
nullable=False
)
timestamp = db.Column(
db.DateTime,
nullable=False,
default=datetime.utcnow
)
user_id = db.Column(
db.Integer,
db.ForeignKey('users.id', ondelete='CASCADE'),
nullable=False
)
liked_by = db.relationship('User', secondary='likes', backref="liked_messages")
def connect_db(app):
"""Connect this database to provided Flask app.
You should call this in your Flask app.
"""
app.app_context().push()
db.app = app
db.init_app(app)