mirror of
https://github.com/rmontanana/microblog.git
synced 2025-08-17 16:25:51 +00:00
Chapeter 8
This commit is contained in:
@@ -10,6 +10,13 @@ def load_user(id):
|
||||
return User.query.get(int(id))
|
||||
|
||||
|
||||
followers = db.Table(
|
||||
"followers",
|
||||
db.Column("follower_id", db.Integer, db.ForeignKey("user.id")),
|
||||
db.Column("followed_id", db.Integer, db.ForeignKey("user.id")),
|
||||
)
|
||||
|
||||
|
||||
class User(UserMixin, db.Model):
|
||||
id = db.Column(db.Integer, primary_key=True)
|
||||
username = db.Column(db.String(64), index=True, unique=True)
|
||||
@@ -18,6 +25,14 @@ class User(UserMixin, db.Model):
|
||||
posts = db.relationship("Post", backref="author", lazy="dynamic")
|
||||
about_me = db.Column(db.String(140))
|
||||
last_seen = db.Column(db.DateTime, default=datetime.utcnow)
|
||||
followed = db.relationship(
|
||||
"User",
|
||||
secondary=followers,
|
||||
primaryjoin=(followers.c.follower_id == id),
|
||||
secondaryjoin=(followers.c.followed_id == id),
|
||||
backref=db.backref("followers", lazy="dynamic"),
|
||||
lazy="dynamic",
|
||||
)
|
||||
|
||||
def __repr__(self):
|
||||
return "<User {}>".format(self.username)
|
||||
@@ -34,6 +49,27 @@ class User(UserMixin, db.Model):
|
||||
digest, size
|
||||
)
|
||||
|
||||
def follow(self, user):
|
||||
if not self.is_following(user):
|
||||
self.followed.append(user)
|
||||
|
||||
def unfollow(self, user):
|
||||
if self.is_following(user):
|
||||
self.followed.remove(user)
|
||||
|
||||
def is_following(self, user):
|
||||
return (
|
||||
self.followed.filter(followers.c.followed_id == user.id).count()
|
||||
> 0
|
||||
)
|
||||
|
||||
def followed_posts(self):
|
||||
followed = Post.query.join(
|
||||
followers, (followers.c.followed_id == Post.user_id)
|
||||
).filter(followers.c.follower_id == self.id)
|
||||
own = Post.query.filter_by(user_id=self.id)
|
||||
return followed.union(own).order_by(Post.timestamp.desc())
|
||||
|
||||
|
||||
class Post(db.Model):
|
||||
id = db.Column(db.Integer, primary_key=True)
|
||||
|
Reference in New Issue
Block a user