2017-03-11 08:46:53 +00:00
|
|
|
// Copyright 2017 The Gitea Authors. All rights reserved.
|
2022-11-27 18:20:29 +00:00
|
|
|
// SPDX-License-Identifier: MIT
|
2017-03-11 08:46:53 +00:00
|
|
|
|
2021-11-17 09:58:31 +00:00
|
|
|
package user
|
2017-03-11 08:46:53 +00:00
|
|
|
|
2020-10-13 00:01:57 +00:00
|
|
|
import (
|
2023-03-12 12:28:18 +00:00
|
|
|
"context"
|
|
|
|
|
2021-09-19 11:49:59 +00:00
|
|
|
"code.gitea.io/gitea/models/db"
|
2020-10-13 00:01:57 +00:00
|
|
|
"code.gitea.io/gitea/modules/timeutil"
|
|
|
|
)
|
|
|
|
|
2022-06-25 22:50:12 +00:00
|
|
|
// Follow represents relations of user and their followers.
|
2017-03-11 08:46:53 +00:00
|
|
|
type Follow struct {
|
2020-10-13 00:01:57 +00:00
|
|
|
ID int64 `xorm:"pk autoincr"`
|
|
|
|
UserID int64 `xorm:"UNIQUE(follow)"`
|
|
|
|
FollowID int64 `xorm:"UNIQUE(follow)"`
|
|
|
|
CreatedUnix timeutil.TimeStamp `xorm:"INDEX created"`
|
2017-03-11 08:46:53 +00:00
|
|
|
}
|
|
|
|
|
2021-09-19 11:49:59 +00:00
|
|
|
func init() {
|
|
|
|
db.RegisterModel(new(Follow))
|
|
|
|
}
|
|
|
|
|
2017-03-11 08:46:53 +00:00
|
|
|
// IsFollowing returns true if user is following followID.
|
|
|
|
func IsFollowing(userID, followID int64) bool {
|
2023-06-09 08:07:03 +00:00
|
|
|
return IsFollowingCtx(db.DefaultContext, userID, followID)
|
|
|
|
}
|
|
|
|
|
|
|
|
// IsFollowingCtx returns true if user is following followID.
|
|
|
|
func IsFollowingCtx(ctx context.Context, userID, followID int64) bool {
|
|
|
|
has, _ := db.GetEngine(ctx).Get(&Follow{UserID: userID, FollowID: followID})
|
2017-03-11 08:46:53 +00:00
|
|
|
return has
|
|
|
|
}
|
|
|
|
|
|
|
|
// FollowUser marks someone be another's follower.
|
2023-03-12 12:28:18 +00:00
|
|
|
func FollowUser(ctx context.Context, userID, followID int64) (err error) {
|
2023-06-09 08:07:03 +00:00
|
|
|
if userID == followID || IsFollowingCtx(ctx, userID, followID) {
|
2017-03-11 08:46:53 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2023-06-09 08:07:03 +00:00
|
|
|
if IsBlocked(ctx, userID, followID) || IsBlocked(ctx, followID, userID) {
|
|
|
|
return ErrBlockedByUser
|
|
|
|
}
|
|
|
|
|
2023-03-12 12:28:18 +00:00
|
|
|
ctx, committer, err := db.TxContext(ctx)
|
2021-11-21 15:41:00 +00:00
|
|
|
if err != nil {
|
2017-03-11 08:46:53 +00:00
|
|
|
return err
|
|
|
|
}
|
2021-11-21 15:41:00 +00:00
|
|
|
defer committer.Close()
|
2017-03-11 08:46:53 +00:00
|
|
|
|
2021-11-21 15:41:00 +00:00
|
|
|
if err = db.Insert(ctx, &Follow{UserID: userID, FollowID: followID}); err != nil {
|
2017-03-11 08:46:53 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2021-11-21 15:41:00 +00:00
|
|
|
if _, err = db.Exec(ctx, "UPDATE `user` SET num_followers = num_followers + 1 WHERE id = ?", followID); err != nil {
|
2017-03-11 08:46:53 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2021-11-21 15:41:00 +00:00
|
|
|
if _, err = db.Exec(ctx, "UPDATE `user` SET num_following = num_following + 1 WHERE id = ?", userID); err != nil {
|
2017-03-11 08:46:53 +00:00
|
|
|
return err
|
|
|
|
}
|
2021-11-21 15:41:00 +00:00
|
|
|
return committer.Commit()
|
2017-03-11 08:46:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// UnfollowUser unmarks someone as another's follower.
|
2023-03-12 12:28:18 +00:00
|
|
|
func UnfollowUser(ctx context.Context, userID, followID int64) (err error) {
|
2023-06-09 08:07:03 +00:00
|
|
|
if userID == followID || !IsFollowingCtx(ctx, userID, followID) {
|
2017-03-11 08:46:53 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2023-03-12 12:28:18 +00:00
|
|
|
ctx, committer, err := db.TxContext(ctx)
|
2021-11-21 15:41:00 +00:00
|
|
|
if err != nil {
|
2017-03-11 08:46:53 +00:00
|
|
|
return err
|
|
|
|
}
|
2021-11-21 15:41:00 +00:00
|
|
|
defer committer.Close()
|
2017-03-11 08:46:53 +00:00
|
|
|
|
2021-11-21 15:41:00 +00:00
|
|
|
if _, err = db.DeleteByBean(ctx, &Follow{UserID: userID, FollowID: followID}); err != nil {
|
2017-03-11 08:46:53 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2021-11-21 15:41:00 +00:00
|
|
|
if _, err = db.Exec(ctx, "UPDATE `user` SET num_followers = num_followers - 1 WHERE id = ?", followID); err != nil {
|
2017-03-11 08:46:53 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2021-11-21 15:41:00 +00:00
|
|
|
if _, err = db.Exec(ctx, "UPDATE `user` SET num_following = num_following - 1 WHERE id = ?", userID); err != nil {
|
2017-03-11 08:46:53 +00:00
|
|
|
return err
|
|
|
|
}
|
2021-11-21 15:41:00 +00:00
|
|
|
return committer.Commit()
|
2017-03-11 08:46:53 +00:00
|
|
|
}
|