diff options
author | Joe Chen <jc@unknwon.io> | 2022-10-23 20:54:16 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-23 20:54:16 +0800 |
commit | d0a4a3401c1c62def511df42769b13cdfba10a6a (patch) | |
tree | 57e686c1561b77f36f34cf18904cf4bfc14e7dc4 /internal/db/users.go | |
parent | c58c89362161718e1079b9d43c0ce984bb1506cc (diff) |
refactor(db): migrate avatar methods off `user.go` (#7206)
Diffstat (limited to 'internal/db/users.go')
-rw-r--r-- | internal/db/users.go | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/internal/db/users.go b/internal/db/users.go index fa327157..ca755fc6 100644 --- a/internal/db/users.go +++ b/internal/db/users.go @@ -7,6 +7,7 @@ package db import ( "context" "fmt" + "os" "strings" "time" @@ -45,6 +46,9 @@ type UsersStore interface { // ErrUserAlreadyExist when a user with same name already exists, or // ErrEmailAlreadyUsed if the email has been used by another user. Create(ctx context.Context, username, email string, opts CreateUserOptions) (*User, error) + // DeleteCustomAvatar deletes the current user custom avatar and falls back to + // use look up avatar by email. + DeleteCustomAvatar(ctx context.Context, userID int64) error // GetByEmail returns the user (not organization) with given email. It ignores // records with unverified emails and returns ErrUserNotExist when not found. GetByEmail(ctx context.Context, email string) (*User, error) @@ -64,6 +68,8 @@ type UsersStore interface { // Results are paginated by given page and page size, and sorted by the time of // follow in descending order. ListFollowings(ctx context.Context, userID int64, page, pageSize int) ([]*User, error) + // UseCustomAvatar uses the given avatar as the user custom avatar. + UseCustomAvatar(ctx context.Context, userID int64, avatar []byte) error } var Users UsersStore @@ -267,6 +273,18 @@ func (db *users) Create(ctx context.Context, username, email string, opts Create return user, db.WithContext(ctx).Create(user).Error } +func (db *users) DeleteCustomAvatar(ctx context.Context, userID int64) error { + _ = os.Remove(userutil.CustomAvatarPath(userID)) + return db.WithContext(ctx). + Model(&User{}). + Where("id = ?", userID). + Updates(map[string]interface{}{ + "use_custom_avatar": false, + "updated_unix": db.NowFunc().Unix(), + }). + Error +} + var _ errutil.NotFound = (*ErrUserNotExist)(nil) type ErrUserNotExist struct { @@ -397,6 +415,22 @@ func (db *users) ListFollowings(ctx context.Context, userID int64, page, pageSiz return users, tx.Find(&users).Error } +func (db *users) UseCustomAvatar(ctx context.Context, userID int64, avatar []byte) error { + err := userutil.SaveAvatar(userID, avatar) + if err != nil { + return errors.Wrap(err, "save avatar") + } + + return db.WithContext(ctx). + Model(&User{}). + Where("id = ?", userID). + Updates(map[string]interface{}{ + "use_custom_avatar": true, + "updated_unix": db.NowFunc().Unix(), + }). + Error +} + // UserType indicates the type of the user account. type UserType int |