2023-11-28 16:09:36 +08:00
|
|
|
package service
|
|
|
|
|
|
|
|
import (
|
|
|
|
"go-wechat/client"
|
2024-07-05 09:32:39 +08:00
|
|
|
"go-wechat/model/entity"
|
|
|
|
"go-wechat/model/vo"
|
2024-01-25 16:27:12 +08:00
|
|
|
"log"
|
2023-11-30 11:37:02 +08:00
|
|
|
"strings"
|
2023-11-28 16:09:36 +08:00
|
|
|
)
|
|
|
|
|
2023-11-30 11:37:02 +08:00
|
|
|
// GetAllFriend
|
|
|
|
// @description: 取出所有好友
|
|
|
|
// @return friends
|
|
|
|
// @return groups
|
|
|
|
// @return err
|
|
|
|
func GetAllFriend() (friends, groups []vo.FriendItem, err error) {
|
|
|
|
var records []vo.FriendItem
|
|
|
|
err = client.MySQL.
|
|
|
|
Table("t_friend AS tf").
|
2024-01-25 16:27:12 +08:00
|
|
|
//Joins("LEFT JOIN t_message AS tm ON tf.wxid = tm.from_user").
|
|
|
|
//Select("tf.*", "MAX(tm.create_at) AS last_active").
|
|
|
|
Select("tf.*").
|
|
|
|
//Group("tf.wxid").
|
|
|
|
Order("tf.last_active DESC").
|
2023-11-30 11:37:02 +08:00
|
|
|
Find(&records).Error
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
for _, record := range records {
|
|
|
|
if strings.HasSuffix(record.Wxid, "@chatroom") {
|
|
|
|
groups = append(groups, record)
|
|
|
|
} else {
|
|
|
|
friends = append(friends, record)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2023-11-28 16:09:36 +08:00
|
|
|
// GetAllEnableAI
|
|
|
|
// @description: 取出所有启用了AI的好友或群组
|
|
|
|
// @return []entity.Friend
|
|
|
|
func GetAllEnableAI() (records []entity.Friend, err error) {
|
|
|
|
err = client.MySQL.Where("enable_ai = ?", 1).Find(&records).Error
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetAllEnableChatRank
|
|
|
|
// @description: 取出所有启用了聊天排行榜的群组
|
|
|
|
// @return records
|
|
|
|
// @return err
|
|
|
|
func GetAllEnableChatRank() (records []entity.Friend, err error) {
|
2024-05-15 11:15:15 +08:00
|
|
|
err = client.MySQL.Where("enable_chat_rank = ?", 1).
|
|
|
|
Where("is_ok IS TRUE").
|
|
|
|
Where("wxid LIKE '%@chatroom'").
|
|
|
|
Find(&records).Error
|
2023-11-28 16:09:36 +08:00
|
|
|
return
|
|
|
|
}
|
2023-12-22 09:58:27 +08:00
|
|
|
|
2024-04-12 11:37:21 +08:00
|
|
|
// GetAllEnableSummary
|
|
|
|
// @description: 取出所有启用了总结的群组
|
|
|
|
// @return records
|
|
|
|
// @return err
|
|
|
|
func GetAllEnableSummary() (records []entity.Friend, err error) {
|
2024-05-15 11:15:15 +08:00
|
|
|
err = client.MySQL.Where("enable_summary = ?", 1).
|
|
|
|
Where("is_ok IS TRUE").
|
|
|
|
Where("wxid LIKE '%@chatroom'").
|
|
|
|
Find(&records).Error
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetAllEnableNews
|
|
|
|
// @description: 取出所有启用了新闻的好友或群组
|
|
|
|
// @return records
|
|
|
|
// @return err
|
|
|
|
func GetAllEnableNews() (records []entity.Friend, err error) {
|
|
|
|
err = client.MySQL.Where("enable_news = ?", 1).Where("is_ok IS TRUE").Find(&records).Error
|
2024-04-12 11:37:21 +08:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2024-05-15 17:19:32 +08:00
|
|
|
// GetAllEnableClearGroup
|
|
|
|
// @description: 获取所有需要清理成员的群组
|
|
|
|
// @return records
|
|
|
|
// @return err
|
|
|
|
func GetAllEnableClearGroup() (records []entity.Friend, err error) {
|
2024-05-16 00:12:47 +08:00
|
|
|
err = client.MySQL.Where("clear_member > 0").Where("is_ok IS TRUE").Find(&records).Error
|
2024-05-15 17:19:32 +08:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2023-12-22 09:58:27 +08:00
|
|
|
// CheckIsEnableCommand
|
|
|
|
// @description: 检查用户是否启用了指令
|
|
|
|
// @param userId
|
|
|
|
// @return flag
|
|
|
|
func CheckIsEnableCommand(userId string) (flag bool) {
|
|
|
|
var coo int64
|
|
|
|
client.MySQL.Model(&entity.Friend{}).Where("enable_command = 1").Where("wxid = ?", userId).Count(&coo)
|
|
|
|
return coo > 0
|
|
|
|
}
|
2024-01-25 16:27:12 +08:00
|
|
|
|
|
|
|
// updateLastActive
|
|
|
|
// @description: 更新最后活跃时间
|
|
|
|
// @param msg
|
|
|
|
func updateLastActive(msg entity.Message) {
|
|
|
|
var err error
|
|
|
|
// 如果是群,更新群成员最后活跃时间
|
|
|
|
if strings.HasSuffix(msg.FromUser, "@chatroom") {
|
|
|
|
err = client.MySQL.Model(&entity.GroupUser{}).
|
|
|
|
Where("group_id = ?", msg.FromUser).
|
|
|
|
Where("wxid = ?", msg.GroupUser).
|
2024-01-25 16:33:45 +08:00
|
|
|
Update("last_active", msg.CreateAt).Error
|
2024-01-25 16:27:12 +08:00
|
|
|
if err != nil {
|
|
|
|
log.Printf("更新群成员最后活跃时间失败, 错误信息: %v", err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// 更新群或者好友活跃时间
|
|
|
|
err = client.MySQL.Model(&entity.Friend{}).
|
|
|
|
Where("wxid = ?", msg.FromUser).
|
2024-01-25 16:33:45 +08:00
|
|
|
Update("last_active", msg.CreateAt).Error
|
2024-01-25 16:27:12 +08:00
|
|
|
if err != nil {
|
|
|
|
log.Printf("更新群或者好友活跃时间失败, 错误信息: %v", err)
|
|
|
|
}
|
|
|
|
}
|