mirror of
https://github.com/lejianwen/rustdesk-api.git
synced 2025-11-29 08:33:21 +00:00
148 lines
3.8 KiB
Go
148 lines
3.8 KiB
Go
package service
|
|
|
|
import (
|
|
"github.com/lejianwen/rustdesk-api/global"
|
|
"github.com/lejianwen/rustdesk-api/model"
|
|
"gorm.io/gorm"
|
|
)
|
|
|
|
type PeerService struct {
|
|
}
|
|
|
|
// FindById 根据id查找
|
|
func (ps *PeerService) FindById(id string) *model.Peer {
|
|
p := &model.Peer{}
|
|
global.DB.Where("id = ?", id).First(p)
|
|
return p
|
|
}
|
|
func (ps *PeerService) FindByUuid(uuid string) *model.Peer {
|
|
p := &model.Peer{}
|
|
global.DB.Where("uuid = ?", uuid).First(p)
|
|
return p
|
|
}
|
|
func (ps *PeerService) InfoByRowId(id uint) *model.Peer {
|
|
p := &model.Peer{}
|
|
global.DB.Where("row_id = ?", id).First(p)
|
|
return p
|
|
}
|
|
|
|
// FindByUserIdAndUuid 根据用户id和uuid查找peer
|
|
func (ps *PeerService) FindByUserIdAndUuid(uuid string, userId uint) *model.Peer {
|
|
p := &model.Peer{}
|
|
global.DB.Where("uuid = ? and user_id = ?", uuid, userId).First(p)
|
|
return p
|
|
}
|
|
|
|
// UuidBindUserId 绑定用户id
|
|
func (ps *PeerService) UuidBindUserId(deviceId string, uuid string, userId uint) {
|
|
peer := ps.FindByUuid(uuid)
|
|
// 如果存在则更新
|
|
if peer.RowId > 0 {
|
|
peer.UserId = userId
|
|
ps.Update(peer)
|
|
} else {
|
|
// 不存在则创建
|
|
/*if deviceId != "" {
|
|
global.DB.Create(&model.Peer{
|
|
Id: deviceId,
|
|
Uuid: uuid,
|
|
UserId: userId,
|
|
})
|
|
}*/
|
|
}
|
|
}
|
|
|
|
// UuidUnbindUserId 解绑用户id, 用于用户注销
|
|
func (ps *PeerService) UuidUnbindUserId(uuid string, userId uint) {
|
|
peer := ps.FindByUserIdAndUuid(uuid, userId)
|
|
if peer.RowId > 0 {
|
|
global.DB.Model(peer).Update("user_id", 0)
|
|
}
|
|
}
|
|
|
|
// EraseUserId 清除用户id, 用于用户删除
|
|
func (ps *PeerService) EraseUserId(userId uint) error {
|
|
return global.DB.Model(&model.Peer{}).Where("user_id = ?", userId).Update("user_id", 0).Error
|
|
}
|
|
|
|
// ListByUserIds 根据用户id取列表
|
|
func (ps *PeerService) ListByUserIds(userIds []uint, page, pageSize uint) (res *model.PeerList) {
|
|
res = &model.PeerList{}
|
|
res.Page = int64(page)
|
|
res.PageSize = int64(pageSize)
|
|
tx := global.DB.Model(&model.Peer{})
|
|
tx.Where("user_id in (?)", userIds)
|
|
tx.Count(&res.Total)
|
|
tx.Scopes(Paginate(page, pageSize))
|
|
tx.Find(&res.Peers)
|
|
return
|
|
}
|
|
|
|
func (ps *PeerService) List(page, pageSize uint, where func(tx *gorm.DB)) (res *model.PeerList) {
|
|
res = &model.PeerList{}
|
|
res.Page = int64(page)
|
|
res.PageSize = int64(pageSize)
|
|
tx := global.DB.Model(&model.Peer{})
|
|
if where != nil {
|
|
where(tx)
|
|
}
|
|
tx.Count(&res.Total)
|
|
tx.Scopes(Paginate(page, pageSize))
|
|
tx.Find(&res.Peers)
|
|
return
|
|
}
|
|
|
|
// ListFilterByUserId 根据用户id过滤Peer列表
|
|
func (ps *PeerService) ListFilterByUserId(page, pageSize uint, where func(tx *gorm.DB), userId uint) (res *model.PeerList) {
|
|
userWhere := func(tx *gorm.DB) {
|
|
tx.Where("user_id = ?", userId)
|
|
// 如果还有额外的筛选条件,执行它
|
|
if where != nil {
|
|
where(tx)
|
|
}
|
|
}
|
|
return ps.List(page, pageSize, userWhere)
|
|
}
|
|
|
|
// Create 创建
|
|
func (ps *PeerService) Create(u *model.Peer) error {
|
|
res := global.DB.Create(u).Error
|
|
return res
|
|
}
|
|
|
|
// Delete 删除, 同时也应该删除token
|
|
func (ps *PeerService) Delete(u *model.Peer) error {
|
|
uuid := u.Uuid
|
|
err := global.DB.Delete(u).Error
|
|
if err != nil {
|
|
return err
|
|
}
|
|
// 删除token
|
|
return AllService.UserService.FlushTokenByUuid(uuid)
|
|
}
|
|
|
|
// GetUuidListByIDs 根据ids获取uuid列表
|
|
func (ps *PeerService) GetUuidListByIDs(ids []uint) ([]string, error) {
|
|
var uuids []string
|
|
err := global.DB.Model(&model.Peer{}).
|
|
Where("row_id in (?)", ids).
|
|
Pluck("uuid", &uuids).Error
|
|
return uuids, err
|
|
}
|
|
|
|
// BatchDelete 批量删除, 同时也应该删除token
|
|
func (ps *PeerService) BatchDelete(ids []uint) error {
|
|
uuids, err := ps.GetUuidListByIDs(ids)
|
|
err = global.DB.Where("row_id in (?)", ids).Delete(&model.Peer{}).Error
|
|
if err != nil {
|
|
return err
|
|
}
|
|
// 删除token
|
|
return AllService.UserService.FlushTokenByUuids(uuids)
|
|
}
|
|
|
|
// Update 更新
|
|
func (ps *PeerService) Update(u *model.Peer) error {
|
|
return global.DB.Model(u).Updates(u).Error
|
|
}
|