You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
paopao-ce/internal/dao/sakila/following.go

103 lines
2.7 KiB

// Copyright 2023 ROC. All rights reserved.
// Use of this source code is governed by a MIT style
// license that can be found in the LICENSE file.
package sakila
import (
"time"
"github.com/bitbus/sqlx"
"github.com/rocboss/paopao-ce/internal/core"
"github.com/rocboss/paopao-ce/internal/core/ms"
"github.com/rocboss/paopao-ce/internal/dao/sakila/auto/cc"
)
var (
_ core.FollowingManageService = (*followingManageSrv)(nil)
)
type followItem struct {
UserId int64
Username string
Nickname string
Avatar string
CreatedOn int64
}
type followingManageSrv struct {
*sqlxSrv
q *cc.FollowingManager
}
func (s *followingManageSrv) FollowUser(userId int64, followId int64) (err error) {
exist := false
if err = s.q.ExistFollowing.Get(&exist, userId, followId); err == nil && exist {
return
}
_, err = s.q.CreateFollowing.Exec(userId, followId, time.Now().Unix())
return
}
func (s *followingManageSrv) UnfollowUser(userId int64, followId int64) (err error) {
_, err = s.q.DeleteFollowing.Exec(time.Now().Unix(), userId, followId)
return
}
func (s *followingManageSrv) ListFollows(userId int64, limit, offset int) (res *ms.ContactList, err error) {
follows := []followItem{}
res = &ms.ContactList{}
if err = s.q.ListFollows.Select(&follows, userId, limit, offset); err == nil {
err = s.q.CountFollows.Get(&res.Total, userId)
}
for _, f := range follows {
res.Contacts = append(res.Contacts, ms.ContactItem{
UserId: f.UserId,
Username: f.Username,
Nickname: f.Nickname,
Avatar: f.Avatar,
CreatedOn: f.CreatedOn,
})
}
return
}
func (s *followingManageSrv) ListFollowings(userId int64, limit, offset int) (res *ms.ContactList, err error) {
followings := []followItem{}
res = &ms.ContactList{}
if err = s.q.ListFollowings.Select(&followings, userId, limit, offset); err == nil {
err = s.q.CountFollowings.Get(&res.Total, userId)
}
for _, f := range followings {
res.Contacts = append(res.Contacts, ms.ContactItem{
UserId: f.UserId,
Username: f.Username,
Nickname: f.Nickname,
Avatar: f.Avatar,
CreatedOn: f.CreatedOn,
})
}
return
}
func (s *followingManageSrv) GetFollowCount(userId int64) (follows int64, followings int64, err error) {
if err = s.q.CountFollows.Get(&follows, userId); err == nil {
err = s.q.CountFollowings.Get(&followings, userId)
}
return
}
func (s *followingManageSrv) IsFollow(userId int64, followId int64) (yn bool) {
if err := s.q.ExistFollowing.Get(&yn, userId, followId); err == nil {
return
}
return false
}
func newFollowingManageService(db *sqlx.DB) core.FollowingManageService {
return &followingManageSrv{
sqlxSrv: newSqlxSrv(db),
q: ccBuild(db, cc.BuildFollowingManager),
}
}