Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
0f578e6333 | ||
|
|
9e4f151623 | ||
|
|
ae10b76bbc | ||
|
|
d89b8033bd | ||
|
|
ba6d5fa98c | ||
|
|
fcc61fdcd9 | ||
|
|
e324fb2015 | ||
|
|
3c92f83745 |
@@ -235,6 +235,29 @@ func ChangeEnableNewsStatus(ctx *gin.Context) {
|
|||||||
ctx.String(http.StatusOK, "操作成功")
|
ctx.String(http.StatusOK, "操作成功")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// ChangeEnableHotTopStatus
|
||||||
|
// @description: 修改是否开启热搜
|
||||||
|
// @param ctx
|
||||||
|
func ChangeEnableHotTopStatus(ctx *gin.Context) {
|
||||||
|
var p changeStatusParam
|
||||||
|
if err := ctx.ShouldBindJSON(&p); err != nil {
|
||||||
|
ctx.String(http.StatusBadRequest, "参数错误")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
log.Printf("待修改的Id:%s", p.WxId)
|
||||||
|
|
||||||
|
err := client.MySQL.Model(&entity.Friend{}).
|
||||||
|
Where("wxid = ?", p.WxId).
|
||||||
|
Update("`enable_hot_top`", gorm.Expr(" !`enable_hot_top`")).Error
|
||||||
|
if err != nil {
|
||||||
|
log.Printf("修改热榜启用状态失败:%s", err)
|
||||||
|
ctx.String(http.StatusInternalServerError, "操作失败: %s", err)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
ctx.String(http.StatusOK, "操作成功")
|
||||||
|
}
|
||||||
|
|
||||||
// AutoClearMembers
|
// AutoClearMembers
|
||||||
// @description: 自动清理群成员
|
// @description: 自动清理群成员
|
||||||
// @param ctx
|
// @param ctx
|
||||||
|
|||||||
21
app/pages.go
21
app/pages.go
@@ -107,6 +107,27 @@ func Assistant(ctx *gin.Context) {
|
|||||||
ctx.HTML(http.StatusOK, "assistant.html", result)
|
ctx.HTML(http.StatusOK, "assistant.html", result)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// ManageWithGroupAdmin
|
||||||
|
// @description: 群组管理(管理员可用)
|
||||||
|
// @param ctx
|
||||||
|
func ManageWithGroupAdmin(ctx *gin.Context) {
|
||||||
|
// 取出id
|
||||||
|
id := ctx.Query("id")
|
||||||
|
if id == "" {
|
||||||
|
ctx.HTML(http.StatusOK, "404.html", nil)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
var result = gin.H{
|
||||||
|
"msg": "success",
|
||||||
|
}
|
||||||
|
result["info"], _ = service.GetFriendInfoById(id)
|
||||||
|
result["aiModels"] = config.Conf.Ai.Models
|
||||||
|
result["assistant"], _ = service.GetAllAiAssistant()
|
||||||
|
// 渲染页面
|
||||||
|
ctx.HTML(http.StatusOK, "manager-one.html", result)
|
||||||
|
}
|
||||||
|
|
||||||
// PageNotFound
|
// PageNotFound
|
||||||
// @description: 404页面
|
// @description: 404页面
|
||||||
// @param ctx
|
// @param ctx
|
||||||
|
|||||||
12
config.yaml
12
config.yaml
@@ -2,6 +2,8 @@ system:
|
|||||||
# 每日新闻接口 Token
|
# 每日新闻接口 Token
|
||||||
# 获取地址: https://admin.alapi.cn/api_manager/token_manager
|
# 获取地址: https://admin.alapi.cn/api_manager/token_manager
|
||||||
alApiToken: xxx
|
alApiToken: xxx
|
||||||
|
# 系统访问域名
|
||||||
|
domain: https://wechat.abc.com
|
||||||
# 添加新好友或群之后通知给指定的人
|
# 添加新好友或群之后通知给指定的人
|
||||||
newFriendNotify:
|
newFriendNotify:
|
||||||
enable: true
|
enable: true
|
||||||
@@ -19,11 +21,13 @@ system:
|
|||||||
welcome: true
|
welcome: true
|
||||||
# 每日早报
|
# 每日早报
|
||||||
news: true
|
news: true
|
||||||
|
# 热榜
|
||||||
|
hotTop: true
|
||||||
|
|
||||||
# 微信HOOK配置
|
# 微信HOOK配置
|
||||||
wechat:
|
wechat:
|
||||||
# 微信HOOK接口地址
|
# 微信HOOK接口地址
|
||||||
host: 10.0.0.73:19088
|
host: 10.0.0.79:19088
|
||||||
# 微信容器映射出来的vnc页面地址,没有就不填
|
# 微信容器映射出来的vnc页面地址,没有就不填
|
||||||
# vncUrl: http://192.168.1.175:19087/vnc_lite.html
|
# vncUrl: http://192.168.1.175:19087/vnc_lite.html
|
||||||
# 是否在启动的时候自动设置hook服务的回调
|
# 是否在启动的时候自动设置hook服务的回调
|
||||||
@@ -44,11 +48,15 @@ mysql:
|
|||||||
db: wechat
|
db: wechat
|
||||||
schema: public # postgres 专用
|
schema: public # postgres 专用
|
||||||
|
|
||||||
|
# 定时任务
|
||||||
task:
|
task:
|
||||||
enable: false
|
enable: false
|
||||||
news:
|
news:
|
||||||
enable: true
|
enable: false
|
||||||
cron: '14 11 * * *' # 每天0:30
|
cron: '14 11 * * *' # 每天0:30
|
||||||
|
hotTop:
|
||||||
|
enable: true
|
||||||
|
cron: '0 */1 * * *' # 每小时一次
|
||||||
syncFriends:
|
syncFriends:
|
||||||
enable: false
|
enable: false
|
||||||
cron: '*/5 * * * *' # 五分钟一次
|
cron: '*/5 * * * *' # 五分钟一次
|
||||||
|
|||||||
@@ -2,6 +2,7 @@ package config
|
|||||||
|
|
||||||
// 系统配置
|
// 系统配置
|
||||||
type system struct {
|
type system struct {
|
||||||
|
Domain string `json:"domain" yaml:"domain"` // 域名
|
||||||
AlApiToken string `json:"alApiToken" yaml:"alApiToken"` // AL API Token
|
AlApiToken string `json:"alApiToken" yaml:"alApiToken"` // AL API Token
|
||||||
NewFriendNotify newFriendNotify `json:"newFriendNotify" yaml:"newFriendNotify"` // 新好友通知
|
NewFriendNotify newFriendNotify `json:"newFriendNotify" yaml:"newFriendNotify"` // 新好友通知
|
||||||
DefaultRule defaultRule `json:"defaultRule" yaml:"defaultRule"` // 默认规则
|
DefaultRule defaultRule `json:"defaultRule" yaml:"defaultRule"` // 默认规则
|
||||||
@@ -20,4 +21,5 @@ type defaultRule struct {
|
|||||||
Summary bool `json:"summary" yaml:"summary"` // 是否启用聊天总结
|
Summary bool `json:"summary" yaml:"summary"` // 是否启用聊天总结
|
||||||
Welcome bool `json:"welcome" yaml:"welcome"` // 是否启用欢迎新成员
|
Welcome bool `json:"welcome" yaml:"welcome"` // 是否启用欢迎新成员
|
||||||
News bool `json:"news" yaml:"news"` // 是否启用每日早报
|
News bool `json:"news" yaml:"news"` // 是否启用每日早报
|
||||||
|
HotTop bool `json:"hotTop" yaml:"hotTop"` // 是否启用热门话题
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -8,6 +8,7 @@ type task struct {
|
|||||||
SyncFriends syncFriends `json:"syncFriends" yaml:"syncFriends"` // 同步好友
|
SyncFriends syncFriends `json:"syncFriends" yaml:"syncFriends"` // 同步好友
|
||||||
WaterGroup waterGroup `json:"waterGroup" yaml:"waterGroup"` // 水群排行榜
|
WaterGroup waterGroup `json:"waterGroup" yaml:"waterGroup"` // 水群排行榜
|
||||||
GroupSummary syncFriends `json:"groupSummary" yaml:"groupSummary"` // 群聊总结
|
GroupSummary syncFriends `json:"groupSummary" yaml:"groupSummary"` // 群聊总结
|
||||||
|
HotTop syncFriends `json:"hotTop" yaml:"hotTop"` // 热搜排行榜
|
||||||
}
|
}
|
||||||
|
|
||||||
// syncFriends
|
// syncFriends
|
||||||
|
|||||||
4
main.go
4
main.go
@@ -60,6 +60,10 @@ func main() {
|
|||||||
}
|
}
|
||||||
return "否"
|
return "否"
|
||||||
},
|
},
|
||||||
|
"checkIsGroup": func(str string) bool {
|
||||||
|
// 如果id包含@chatroom就是群组
|
||||||
|
return strings.HasSuffix(str, "@chatroom")
|
||||||
|
},
|
||||||
})
|
})
|
||||||
|
|
||||||
app.LoadHTMLGlob("views/*.html")
|
app.LoadHTMLGlob("views/*.html")
|
||||||
|
|||||||
@@ -16,3 +16,23 @@ type MorningPost struct {
|
|||||||
Usage int `json:"usage"`
|
Usage int `json:"usage"`
|
||||||
LogId string `json:"log_id"`
|
LogId string `json:"log_id"`
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// HotTop
|
||||||
|
// @description: 热搜排行榜返回结构体
|
||||||
|
type HotTop struct {
|
||||||
|
Success bool `json:"success"` // 是否成功
|
||||||
|
Name string `json:"name"` // 渠道
|
||||||
|
Subtitle string `json:"subtitle"` // 副标题
|
||||||
|
UpdateTime string `json:"update_time"` // 更新时间
|
||||||
|
Data []HotTopDataItem `json:"data"` // 数据
|
||||||
|
}
|
||||||
|
|
||||||
|
// HotTopDataItem
|
||||||
|
// @description: 热搜排行榜数据项
|
||||||
|
type HotTopDataItem struct {
|
||||||
|
Index int `json:"index"` // 排行
|
||||||
|
Title string `json:"title"` // 标题
|
||||||
|
Hot string `json:"hot"` // 热度
|
||||||
|
Url string `json:"url"` // 链接
|
||||||
|
MobilUrl string `json:"mobilUrl"` // 手机端链接
|
||||||
|
}
|
||||||
|
|||||||
@@ -1,28 +1,30 @@
|
|||||||
package entity
|
package entity
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"go-wechat/common/types"
|
||||||
"time"
|
"time"
|
||||||
)
|
)
|
||||||
|
|
||||||
// Friend
|
// Friend
|
||||||
// @description: 好友列表
|
// @description: 好友列表
|
||||||
type Friend struct {
|
type Friend struct {
|
||||||
Wxid string `json:"wxid"` // 微信原始Id
|
Wxid string `json:"wxid"` // 微信原始Id
|
||||||
CustomAccount string `json:"customAccount"` // 微信号
|
CustomAccount string `json:"customAccount"` // 微信号
|
||||||
Nickname string `json:"nickname"` // 昵称
|
Nickname string `json:"nickname"` // 昵称
|
||||||
Pinyin string `json:"pinyin"` // 昵称拼音大写首字母
|
Pinyin string `json:"pinyin"` // 昵称拼音大写首字母
|
||||||
PinyinAll string `json:"pinyinAll"` // 昵称全拼
|
PinyinAll string `json:"pinyinAll"` // 昵称全拼
|
||||||
LastActive time.Time `json:"lastActive"` // 最后活跃时间
|
LastActive types.DateTime `json:"lastActive"` // 最后活跃时间
|
||||||
EnableAi bool `json:"enableAI" gorm:"type:tinyint(1) default 0 not null"` // 是否使用AI
|
EnableAi bool `json:"enableAI" gorm:"type:tinyint(1) default 0 not null"` // 是否使用AI
|
||||||
AiModel string `json:"aiModel"` // AI模型
|
AiModel string `json:"aiModel"` // AI模型
|
||||||
Prompt string `json:"prompt"` // 提示词
|
Prompt string `json:"prompt"` // 提示词
|
||||||
EnableChatRank bool `json:"enableChatRank" gorm:"type:tinyint(1) default 0 not null"` // 是否使用聊天排行
|
EnableChatRank bool `json:"enableChatRank" gorm:"type:tinyint(1) default 0 not null"` // 是否使用聊天排行
|
||||||
EnableWelcome bool `json:"enableWelcome" gorm:"type:tinyint(1) default 0 not null"` // 是否启用迎新
|
EnableWelcome bool `json:"enableWelcome" gorm:"type:tinyint(1) default 0 not null"` // 是否启用迎新
|
||||||
EnableSummary bool `json:"enableSummary" gorm:"type:tinyint(1) default 0 not null"` // 是否启用总结
|
EnableSummary bool `json:"enableSummary" gorm:"type:tinyint(1) default 0 not null"` // 是否启用总结
|
||||||
EnableNews bool `json:"enableNews" gorm:"type:tinyint(1) default 0 not null"` // 是否启用新闻
|
EnableNews bool `json:"enableNews" gorm:"type:tinyint(1) default 0 not null"` // 是否启用新闻
|
||||||
ClearMember int `json:"clearMember"` // 清理成员配置(多少天未活跃的)
|
EnableHotTop bool `json:"enableHotTop" gorm:"type:tinyint(1) default 0 not null"` // 是否启用热榜新闻
|
||||||
IsOk bool `json:"isOk" gorm:"type:tinyint(1) default 0 not null"` // 是否正常
|
ClearMember int `json:"clearMember"` // 清理成员配置(多少天未活跃的)
|
||||||
UsedTokens int `json:"usedTokens"` // 已使用的AI Token数量
|
IsOk bool `json:"isOk" gorm:"type:tinyint(1) default 0 not null"` // 是否正常
|
||||||
|
UsedTokens int `json:"usedTokens"` // 已使用的AI Token数量
|
||||||
}
|
}
|
||||||
|
|
||||||
func (Friend) TableName() string {
|
func (Friend) TableName() string {
|
||||||
|
|||||||
40
model/entity/hottop.go
Normal file
40
model/entity/hottop.go
Normal file
@@ -0,0 +1,40 @@
|
|||||||
|
package entity
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/google/uuid"
|
||||||
|
"go-wechat/common/types"
|
||||||
|
"gorm.io/gorm"
|
||||||
|
"strings"
|
||||||
|
)
|
||||||
|
|
||||||
|
// HotTop
|
||||||
|
// @description: 热榜数据
|
||||||
|
type HotTop struct {
|
||||||
|
Id string `json:"id" gorm:"type:varchar(32);primarykey"`
|
||||||
|
CreatedAt types.DateTime `json:"createdAt"`
|
||||||
|
Channel string `json:"channel"` // 渠道
|
||||||
|
Title string `json:"title"` // 标题
|
||||||
|
Hot string `json:"hot"` // 热度
|
||||||
|
Url string `json:"url"` // 链接
|
||||||
|
MobileUrl string `json:"mobileUrl"` // 手机端链接
|
||||||
|
}
|
||||||
|
|
||||||
|
// TableName
|
||||||
|
// @description: 表名
|
||||||
|
// @receiver HotTop
|
||||||
|
// @return string
|
||||||
|
func (HotTop) TableName() string {
|
||||||
|
return "t_hot_top"
|
||||||
|
}
|
||||||
|
|
||||||
|
// BeforeCreate
|
||||||
|
// @description: 创建数据库对象之前生成UUID
|
||||||
|
// @receiver m
|
||||||
|
// @param *gorm.DB
|
||||||
|
// @return err
|
||||||
|
func (m *HotTop) BeforeCreate(*gorm.DB) (err error) {
|
||||||
|
if m.Id == "" {
|
||||||
|
m.Id = strings.ReplaceAll(uuid.New().String(), "-", "")
|
||||||
|
}
|
||||||
|
return
|
||||||
|
}
|
||||||
@@ -21,6 +21,7 @@ type FriendItem struct {
|
|||||||
EnableCommand bool // 是否启用指令
|
EnableCommand bool // 是否启用指令
|
||||||
EnableSummary bool // 是否启用总结
|
EnableSummary bool // 是否启用总结
|
||||||
EnableNews bool // 是否启用新闻
|
EnableNews bool // 是否启用新闻
|
||||||
|
EnableHotTop bool // 是否启用热搜
|
||||||
ClearMember int // 清理成员配置(多少天未活跃的)
|
ClearMember int // 清理成员配置(多少天未活跃的)
|
||||||
IsOk bool // 是否还在通讯库(群聊是要还在群里也算)
|
IsOk bool // 是否还在通讯库(群聊是要还在群里也算)
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -14,7 +14,7 @@ import (
|
|||||||
func WelcomeNew(m *plugin.MessageContext) {
|
func WelcomeNew(m *plugin.MessageContext) {
|
||||||
// 判断是否开启迎新
|
// 判断是否开启迎新
|
||||||
var count int64
|
var count int64
|
||||||
client.MySQL.Model(&entity.Friend{}).Where("enable_welcome IS TRUE").Where("wxid = ?", m.FromUser).Count(&count)
|
client.MySQL.Model(&entity.Friend{}).Where("enable_welcome IS TRUE").Where("is_ok IS TRUE").Where("is_ok IS TRUE").Where("wxid = ?", m.FromUser).Count(&count)
|
||||||
if count < 1 {
|
if count < 1 {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -14,10 +14,11 @@ func Init(g *gin.Engine) {
|
|||||||
ctx.Redirect(302, "/index.html")
|
ctx.Redirect(302, "/index.html")
|
||||||
})
|
})
|
||||||
|
|
||||||
g.GET("/index.html", app.Index) // 首页
|
g.GET("/index.html", app.Index) // 首页
|
||||||
g.GET("/friend.html", app.Friend) // 好友列表
|
g.GET("/friend.html", app.Friend) // 好友列表
|
||||||
g.GET("/group.html", app.Group) // 群组列表
|
g.GET("/group.html", app.Group) // 群组列表
|
||||||
g.GET("/assistant.html", app.Assistant) // AI角色
|
g.GET("/assistant.html", app.Assistant) // AI角色
|
||||||
|
g.GET("/manager.html", app.ManageWithGroupAdmin) // 自己管理配置
|
||||||
|
|
||||||
g.GET("/404.html", app.PageNotFound) // 群组列表
|
g.GET("/404.html", app.PageNotFound) // 群组列表
|
||||||
|
|
||||||
@@ -29,6 +30,7 @@ func Init(g *gin.Engine) {
|
|||||||
api.PUT("/welcome/status", app.ChangeEnableWelcomeStatus) // 修改是否开启迎新状态
|
api.PUT("/welcome/status", app.ChangeEnableWelcomeStatus) // 修改是否开启迎新状态
|
||||||
api.PUT("/command/status", app.ChangeEnableCommandStatus) // 修改是否开启指令状态
|
api.PUT("/command/status", app.ChangeEnableCommandStatus) // 修改是否开启指令状态
|
||||||
api.PUT("/news/status", app.ChangeEnableNewsStatus) // 修改是否开启早报状态
|
api.PUT("/news/status", app.ChangeEnableNewsStatus) // 修改是否开启早报状态
|
||||||
|
api.PUT("/hot-top/status", app.ChangeEnableHotTopStatus) // 修改是否开启热榜状态
|
||||||
api.PUT("/grouprank/status", app.ChangeEnableGroupRankStatus) // 修改是否开启水群排行榜状态
|
api.PUT("/grouprank/status", app.ChangeEnableGroupRankStatus) // 修改是否开启水群排行榜状态
|
||||||
api.PUT("/grouprank/skip", app.ChangeSkipGroupRankStatus) // 修改是否跳过水群排行榜状态
|
api.PUT("/grouprank/skip", app.ChangeSkipGroupRankStatus) // 修改是否跳过水群排行榜状态
|
||||||
api.GET("/group/users", app.GetGroupUsers) // 获取群成员列表
|
api.GET("/group/users", app.GetGroupUsers) // 获取群成员列表
|
||||||
|
|||||||
@@ -51,7 +51,7 @@ func GetFriendInfoById(wxId string) (ent entity.Friend, err error) {
|
|||||||
// @description: 取出所有启用了AI的好友或群组
|
// @description: 取出所有启用了AI的好友或群组
|
||||||
// @return []entity.Friend
|
// @return []entity.Friend
|
||||||
func GetAllEnableAI() (records []entity.Friend, err error) {
|
func GetAllEnableAI() (records []entity.Friend, err error) {
|
||||||
err = client.MySQL.Where("enable_ai = ?", 1).Find(&records).Error
|
err = client.MySQL.Where("enable_ai = ?", 1).Where("is_ok IS TRUE").Find(&records).Error
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -88,6 +88,15 @@ func GetAllEnableNews() (records []entity.Friend, err error) {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// GetAllEnableHotTop
|
||||||
|
// @description: 获取所有启用了热搜排行榜的好友或群组
|
||||||
|
// @return records
|
||||||
|
// @return err
|
||||||
|
func GetAllEnableHotTop() (records []entity.Friend, err error) {
|
||||||
|
err = client.MySQL.Where("enable_hot_top = ?", 1).Where("is_ok IS TRUE").Find(&records).Error
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
// GetAllEnableClearGroup
|
// GetAllEnableClearGroup
|
||||||
// @description: 获取所有需要清理成员的群组
|
// @description: 获取所有需要清理成员的群组
|
||||||
// @return records
|
// @return records
|
||||||
|
|||||||
@@ -5,6 +5,7 @@ import (
|
|||||||
"github.com/go-resty/resty/v2"
|
"github.com/go-resty/resty/v2"
|
||||||
"go-wechat/client"
|
"go-wechat/client"
|
||||||
"go-wechat/common/constant"
|
"go-wechat/common/constant"
|
||||||
|
"go-wechat/common/types"
|
||||||
"go-wechat/config"
|
"go-wechat/config"
|
||||||
"go-wechat/model/dto"
|
"go-wechat/model/dto"
|
||||||
"go-wechat/model/entity"
|
"go-wechat/model/entity"
|
||||||
@@ -75,8 +76,9 @@ func Sync() {
|
|||||||
EnableSummary: config.Conf.System.DefaultRule.Summary,
|
EnableSummary: config.Conf.System.DefaultRule.Summary,
|
||||||
EnableWelcome: config.Conf.System.DefaultRule.Welcome,
|
EnableWelcome: config.Conf.System.DefaultRule.Welcome,
|
||||||
EnableNews: config.Conf.System.DefaultRule.News,
|
EnableNews: config.Conf.System.DefaultRule.News,
|
||||||
|
EnableHotTop: config.Conf.System.DefaultRule.HotTop,
|
||||||
ClearMember: 0,
|
ClearMember: 0,
|
||||||
LastActive: time.Now().Local(),
|
LastActive: types.DateTime(time.Now().Local()),
|
||||||
}).Error
|
}).Error
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Printf("新增好友失败: %s", err.Error())
|
log.Printf("新增好友失败: %s", err.Error())
|
||||||
@@ -97,6 +99,14 @@ func Sync() {
|
|||||||
utils.SendEmotion(friend.Wxid, conf.Path, 0)
|
utils.SendEmotion(friend.Wxid, conf.Path, 0)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
// 发送配置网页
|
||||||
|
if config.Conf.System.Domain != "" {
|
||||||
|
title := "欢迎使用微信机器人"
|
||||||
|
desc := "点我可以配置功能喔,提示非微信官方网页,点击继续访问即可"
|
||||||
|
url := config.Conf.System.Domain + "/manager.html?id=" + friend.Wxid
|
||||||
|
utils.SendPublicMsg(friend.Wxid, title, desc, url, 0)
|
||||||
|
}
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
pm := map[string]any{
|
pm := map[string]any{
|
||||||
"nickname": friend.Nickname,
|
"nickname": friend.Nickname,
|
||||||
@@ -135,13 +145,7 @@ func Sync() {
|
|||||||
|
|
||||||
// 清理不在列表中的好友
|
// 清理不在列表中的好友
|
||||||
clearPm := map[string]any{
|
clearPm := map[string]any{
|
||||||
"is_ok": false,
|
"is_ok": false,
|
||||||
"enable_chat_rank": false,
|
|
||||||
"enable_welcome": false,
|
|
||||||
"enable_summary": false,
|
|
||||||
"enable_news": false,
|
|
||||||
"clear_member": false,
|
|
||||||
"enable_ai": false,
|
|
||||||
}
|
}
|
||||||
err = tx.Model(&entity.Friend{}).Where("wxid NOT IN (?)", nowIds).Updates(clearPm).Error
|
err = tx.Model(&entity.Friend{}).Where("wxid NOT IN (?)", nowIds).Updates(clearPm).Error
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
|||||||
88
tasks/hottop/hottop.go
Normal file
88
tasks/hottop/hottop.go
Normal file
@@ -0,0 +1,88 @@
|
|||||||
|
package hottop
|
||||||
|
|
||||||
|
import (
|
||||||
|
"fmt"
|
||||||
|
"go-wechat/client"
|
||||||
|
"go-wechat/common/types"
|
||||||
|
"go-wechat/model/entity"
|
||||||
|
"go-wechat/service"
|
||||||
|
"go-wechat/utils"
|
||||||
|
"log"
|
||||||
|
"slices"
|
||||||
|
"strings"
|
||||||
|
"time"
|
||||||
|
)
|
||||||
|
|
||||||
|
// HotTop
|
||||||
|
// @description: 热搜排行榜
|
||||||
|
func HotTop() {
|
||||||
|
// 发送到开启了的群
|
||||||
|
groups, err := service.GetAllEnableHotTop()
|
||||||
|
if err != nil {
|
||||||
|
log.Printf("获取启用了热榜的群组失败, 错误信息: %v", err)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
// 获取热榜数据
|
||||||
|
news := getTopData()
|
||||||
|
if len(news) == 0 {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
// 组装消息
|
||||||
|
msg := fmt.Sprintf("#热搜排行榜\n \n嘿,朋友,有新的新闻了喔,快来康康吧\n \n%s", strings.Join(news, "\n-------\n"))
|
||||||
|
for _, group := range groups {
|
||||||
|
utils.SendMessage(group.Wxid, "", msg, 0)
|
||||||
|
// 休眠一秒,防止频繁发送
|
||||||
|
time.Sleep(time.Second)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// getTopData
|
||||||
|
// @description: 获取热榜数据
|
||||||
|
// @return data
|
||||||
|
func getTopData() (data []string) {
|
||||||
|
// 获取热榜数据
|
||||||
|
records := utils.NewsUtil().GetHotTop()
|
||||||
|
if len(records) == 0 {
|
||||||
|
log.Println("获取热榜数据失败")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
var datas = make([]entity.HotTop, 0)
|
||||||
|
for _, item := range records {
|
||||||
|
var d = entity.HotTop{
|
||||||
|
CreatedAt: types.DateTime(time.Now().Local()),
|
||||||
|
Title: item.Title,
|
||||||
|
Hot: item.Hot,
|
||||||
|
Url: item.Url,
|
||||||
|
MobileUrl: item.MobilUrl,
|
||||||
|
}
|
||||||
|
datas = append(datas, d)
|
||||||
|
}
|
||||||
|
|
||||||
|
// 获取缓存数据
|
||||||
|
var oldTitles []string
|
||||||
|
err := client.MySQL.Model(&entity.HotTop{}).Order("created_at DESC").Limit(len(datas)).Pluck("title", &oldTitles).Error
|
||||||
|
if err != nil {
|
||||||
|
log.Println("获取历史热榜数据失败", err)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
// 筛选出新数据
|
||||||
|
var newDatas []entity.HotTop
|
||||||
|
for _, d := range datas {
|
||||||
|
if slices.Contains(oldTitles, d.Title) {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
d.Channel = "百度"
|
||||||
|
newDatas = append(newDatas, d)
|
||||||
|
data = append(data, fmt.Sprintf("标题: %s\n热度: %s\n详情: %s", d.Title, d.Hot, d.Url))
|
||||||
|
}
|
||||||
|
// 保存新数据到数据库
|
||||||
|
if len(newDatas) > 0 {
|
||||||
|
err = client.MySQL.Create(&newDatas).Error
|
||||||
|
if err != nil {
|
||||||
|
log.Println("保存新热榜数据失败", err)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return
|
||||||
|
}
|
||||||
@@ -5,6 +5,7 @@ import (
|
|||||||
"go-wechat/config"
|
"go-wechat/config"
|
||||||
"go-wechat/tasks/cleargroupuser"
|
"go-wechat/tasks/cleargroupuser"
|
||||||
"go-wechat/tasks/friends"
|
"go-wechat/tasks/friends"
|
||||||
|
"go-wechat/tasks/hottop"
|
||||||
"go-wechat/tasks/news"
|
"go-wechat/tasks/news"
|
||||||
"go-wechat/tasks/summary"
|
"go-wechat/tasks/summary"
|
||||||
"go-wechat/tasks/watergroup"
|
"go-wechat/tasks/watergroup"
|
||||||
@@ -57,6 +58,11 @@ func InitTasks() {
|
|||||||
_, _ = s.Cron(config.Conf.Task.News.Cron).Do(news.DailyNews)
|
_, _ = s.Cron(config.Conf.Task.News.Cron).Do(news.DailyNews)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// 热榜
|
||||||
|
if config.Conf.Task.HotTop.Enable {
|
||||||
|
_, _ = s.Cron(config.Conf.Task.HotTop.Cron).Do(hottop.HotTop)
|
||||||
|
}
|
||||||
|
|
||||||
// 每天0点检查一次处理清理群成员
|
// 每天0点检查一次处理清理群成员
|
||||||
_, _ = s.Cron("0 0 * * *").Do(cleargroupuser.ClearGroupUser)
|
_, _ = s.Cron("0 0 * * *").Do(cleargroupuser.ClearGroupUser)
|
||||||
|
|
||||||
|
|||||||
@@ -10,7 +10,8 @@ import (
|
|||||||
// News
|
// News
|
||||||
// @description: 新闻
|
// @description: 新闻
|
||||||
type News interface {
|
type News interface {
|
||||||
MorningPost() []string // 早报
|
MorningPost() []string // 早报
|
||||||
|
GetHotTop() []dto.HotTopDataItem // 获取热搜排行榜
|
||||||
}
|
}
|
||||||
|
|
||||||
type news struct{}
|
type news struct{}
|
||||||
@@ -38,10 +39,34 @@ func (news) MorningPost() (records []string) {
|
|||||||
SetResult(&newsResp).
|
SetResult(&newsResp).
|
||||||
Post("https://v2.alapi.cn/api/zaobao")
|
Post("https://v2.alapi.cn/api/zaobao")
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Panicf("每日早报获取失败: %s", err.Error())
|
log.Printf("每日早报获取失败: %s", err.Error())
|
||||||
|
return
|
||||||
}
|
}
|
||||||
log.Printf("每日早报获取结果: %s", unicodeToText(resp.String()))
|
log.Printf("每日早报获取结果: %s", unicodeToText(resp.String()))
|
||||||
|
|
||||||
records = newsResp.Data.News
|
records = newsResp.Data.News
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// GetHotTop
|
||||||
|
// @description: 获取热搜排行榜
|
||||||
|
// @receiver news
|
||||||
|
// @return records
|
||||||
|
func (news) GetHotTop() (records []dto.HotTopDataItem) {
|
||||||
|
var respData dto.HotTop
|
||||||
|
res := resty.New()
|
||||||
|
resp, err := res.R().
|
||||||
|
SetHeader("Content-Type", "application/json;chartset=utf-8").
|
||||||
|
SetResult(&respData).
|
||||||
|
Get("https://api.vvhan.com/api/hotlist/baiduRD")
|
||||||
|
if err != nil {
|
||||||
|
log.Printf("百度热榜获取失败: %s", err.Error())
|
||||||
|
return
|
||||||
|
}
|
||||||
|
log.Printf("百度热榜获取结果: %s", unicodeToText(resp.String()))
|
||||||
|
if !respData.Success {
|
||||||
|
log.Println("百度热榜获取失败")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
return respData.Data
|
||||||
|
}
|
||||||
|
|||||||
@@ -188,3 +188,42 @@ func QuitChatroom(chatRoomId string, retryCount int) {
|
|||||||
}
|
}
|
||||||
log.Printf("退群结果: %s", resp.String())
|
log.Printf("退群结果: %s", resp.String())
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// SendPublicMsg
|
||||||
|
// @description: 发送公众号消息
|
||||||
|
// @param wxId string 群或者好友Id
|
||||||
|
// @param title string 标题
|
||||||
|
// @param digest string 摘要
|
||||||
|
// @param url string 链接
|
||||||
|
// @param retryCount int 重试次数
|
||||||
|
func SendPublicMsg(wxId, title, digest, url string, retryCount int) {
|
||||||
|
if retryCount > 5 {
|
||||||
|
log.Printf("重试五次失败,停止发送")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
// 组装参数
|
||||||
|
param := map[string]any{
|
||||||
|
"appName": "公安部网安局", // 假装是公安部发的,看着都牛逼
|
||||||
|
"userName": "gh_e406f4bcdf34", // 这个是公安部网安局的公众号id
|
||||||
|
"title": title,
|
||||||
|
"digest": digest,
|
||||||
|
"url": url,
|
||||||
|
"thumbUrl": "https://gitee.ltd/assets/img/logo.png", // 这个logo写死了,懒得搞,要改的自己改一下
|
||||||
|
"wxid": wxId,
|
||||||
|
}
|
||||||
|
pbs, _ := json.Marshal(param)
|
||||||
|
|
||||||
|
res := resty.New()
|
||||||
|
resp, err := res.R().
|
||||||
|
SetHeader("Content-Type", "application/json;chartset=utf-8").
|
||||||
|
SetBody(string(pbs)).
|
||||||
|
Post(config.Conf.Wechat.GetURL("/api/forwardPublicMsg"))
|
||||||
|
if err != nil {
|
||||||
|
log.Printf("发送公众号消息失败: %s", err.Error())
|
||||||
|
// 休眠五秒后重新发送
|
||||||
|
time.Sleep(5 * time.Second)
|
||||||
|
SendPublicMsg(wxId, title, digest, url, retryCount+1)
|
||||||
|
}
|
||||||
|
log.Printf("发送公众号消息结果: %s", resp.String())
|
||||||
|
}
|
||||||
|
|||||||
@@ -192,6 +192,33 @@
|
|||||||
</button>
|
</button>
|
||||||
{{end}}
|
{{end}}
|
||||||
|
|
||||||
|
<!-- 热榜 -->
|
||||||
|
{{define "hotTop"}}
|
||||||
|
<button type="button"
|
||||||
|
class="{{ if eq .EnableHotTop true }}bg-green-600{{ else }}bg-gray-200{{ end }} relative inline-flex h-6 w-11 flex-shrink-0 cursor-pointer rounded-full border-2 border-transparent transition-colors duration-200 ease-in-out focus:outline-none focus:ring-2 focus:ring-green-600 focus:ring-offset-2"
|
||||||
|
role="switch" aria-checked="false" onclick="changeUserHotTopStatus({{.Wxid}})">
|
||||||
|
<span
|
||||||
|
class="{{ if eq .EnableHotTop true }}translate-x-5{{ else }}translate-x-0{{ end }} pointer-events-none relative inline-block h-5 w-5 transform rounded-full bg-white shadow ring-0 transition duration-200 ease-in-out">
|
||||||
|
<span
|
||||||
|
class="{{ if eq .EnableHotTop true }}opacity-0 duration-100 ease-out{{ else }}opacity-100 duration-200 ease-in{{ end }} absolute inset-0 flex h-full w-full items-center justify-center transition-opacity"
|
||||||
|
aria-hidden="true">
|
||||||
|
<svg class="h-3 w-3 text-gray-400" fill="none" viewBox="0 0 12 12">
|
||||||
|
<path d="M4 8l2-2m0 0l2-2M6 6L4 4m2 2l2 2" stroke="currentColor" stroke-width="2" stroke-linecap="round"
|
||||||
|
stroke-linejoin="round"/>
|
||||||
|
</svg>
|
||||||
|
</span>
|
||||||
|
<span
|
||||||
|
class="{{ if eq .EnableHotTop true }}opacity-100 duration-200 ease-in{{ else }}opacity-0 duration-100 ease-out{{ end }} absolute inset-0 flex h-full w-full items-center justify-center transition-opacity"
|
||||||
|
aria-hidden="true">
|
||||||
|
<svg class="h-3 w-3 text-green-600" fill="currentColor" viewBox="0 0 12 12">
|
||||||
|
<path
|
||||||
|
d="M3.707 5.293a1 1 0 00-1.414 1.414l1.414-1.414zM5 8l-.707.707a1 1 0 001.414 0L5 8zm4.707-3.293a1 1 0 00-1.414-1.414l1.414 1.414zm-7.414 2l2 2 1.414-1.414-2-2-1.414 1.414zm3.414 2l4-4-1.414-1.414-4 4 1.414 1.414z"/>
|
||||||
|
</svg>
|
||||||
|
</span>
|
||||||
|
</span>
|
||||||
|
</button>
|
||||||
|
{{end}}
|
||||||
|
|
||||||
|
|
||||||
<!-- 是否tag -->
|
<!-- 是否tag -->
|
||||||
{{define "flagTag"}}
|
{{define "flagTag"}}
|
||||||
|
|||||||
@@ -103,6 +103,13 @@
|
|||||||
</dd>
|
</dd>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div class="flex justify-between gap-x-4 py-3">
|
||||||
|
<dt class="text-gray-500">热榜</dt>
|
||||||
|
<dd class="flex items-start gap-x-2">
|
||||||
|
{{ template "hotTop" . }}
|
||||||
|
</dd>
|
||||||
|
</div>
|
||||||
|
|
||||||
<div class="flex justify-between gap-x-4 py-3">
|
<div class="flex justify-between gap-x-4 py-3">
|
||||||
<dt class="text-gray-500">指令</dt>
|
<dt class="text-gray-500">指令</dt>
|
||||||
<dd class="flex items-start gap-x-2">
|
<dd class="flex items-start gap-x-2">
|
||||||
|
|||||||
@@ -117,6 +117,13 @@
|
|||||||
{{ template "news" . }}
|
{{ template "news" . }}
|
||||||
</dd>
|
</dd>
|
||||||
</div>
|
</div>
|
||||||
|
<!-- 热榜 -->
|
||||||
|
<div class="flex justify-between gap-x-4 py-3 items-center">
|
||||||
|
<dt class="text-gray-500">热榜</dt>
|
||||||
|
<dd class="flex items-start gap-x-2">
|
||||||
|
{{ template "hotTop" . }}
|
||||||
|
</dd>
|
||||||
|
</div>
|
||||||
<!-- 指令 -->
|
<!-- 指令 -->
|
||||||
<div class="flex justify-between gap-x-4 py-3 items-center">
|
<div class="flex justify-between gap-x-4 py-3 items-center">
|
||||||
<dt class="text-gray-500">指令</dt>
|
<dt class="text-gray-500">指令</dt>
|
||||||
@@ -142,7 +149,8 @@
|
|||||||
</dd>
|
</dd>
|
||||||
</div>
|
</div>
|
||||||
</dl>
|
</dl>
|
||||||
{{ end }}
|
</li>
|
||||||
|
{{ end }}
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -1,9 +1,19 @@
|
|||||||
<dialog id="groupUserModal" class="modal">
|
<dialog id="groupUserModal" class="modal">
|
||||||
<div class="modal-box w-11/12 max-w-7xl">
|
<div class="modal-box w-11/12 max-w-7xl">
|
||||||
<div class="flex">
|
<div class="flex justify-between">
|
||||||
<h3 class="font-bold text-lg" id="groupUserModalName">我是群名称</h3>
|
<div class="flex">
|
||||||
<h3 class="font-bold text-lg ml-5" id="groupUserCount">(健在成员100人)</h3>
|
<h3 class="font-bold text-lg" id="groupUserModalName">我是群名称</h3>
|
||||||
|
<h3 class="font-bold text-lg ml-5" id="groupUserCount">(健在成员100人)</h3>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<button type="button" onclick="document.getElementById('groupUserModal').close();" class="rounded-md bg-white text-gray-400 hover:text-gray-500 focus:outline-none focus:ring-2 focus:ring-indigo-500 focus:ring-offset-2">
|
||||||
|
<span class="sr-only">关闭</span>
|
||||||
|
<svg class="h-6 w-6" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" aria-hidden="true">
|
||||||
|
<path stroke-linecap="round" stroke-linejoin="round" d="M6 18L18 6M6 6l12 12" />
|
||||||
|
</svg>
|
||||||
|
</button>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="divider divider-warning">成员列表</div>
|
<div class="divider divider-warning">成员列表</div>
|
||||||
<table class="table table-zebra">
|
<table class="table table-zebra">
|
||||||
<thead>
|
<thead>
|
||||||
|
|||||||
151
views/manager-one.html
Normal file
151
views/manager-one.html
Normal file
@@ -0,0 +1,151 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en" class="h-full bg-gray-100">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<title>水群助手</title>
|
||||||
|
|
||||||
|
<link href="assets/css/daisyui-4.4.14-full.min.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<link href="assets/css/index.css" rel="stylesheet" type="text/css"/>
|
||||||
|
|
||||||
|
<script src="https://cdn.tailwindcss.com?plugins=forms,typography,aspect-ratio,line-clamp"></script>
|
||||||
|
<script src="https://cdn.bootcdn.net/ajax/libs/axios/1.5.0/axios.min.js"></script>
|
||||||
|
|
||||||
|
<script src="assets/js/index.js"></script>
|
||||||
|
</head>
|
||||||
|
<body class="h-full">
|
||||||
|
<div class="min-h-full flex items-center justify-center">
|
||||||
|
|
||||||
|
<div class="overflow-hidden rounded-xl border border-gray-200">
|
||||||
|
<div class="flex items -center gap-x-4 border-b border-gray-900/5 bg-gray-50 p-6">
|
||||||
|
<img src="assets/img/status-{{ if eq .info.IsOk true }}ok{{else}}fail{{end}}.png" alt="Tuple"
|
||||||
|
class="h-12 w-12 flex-none rounded-lg bg-white object-cover ring-1 ring-gray-900/10">
|
||||||
|
<div class="text-sm flex-1">
|
||||||
|
<div class="font-medium leading-6 text-gray-900">{{ .info.Nickname }}</div>
|
||||||
|
<div class="font-medium text-gray-500">{{ .info.Wxid }}</div>
|
||||||
|
{{ template "flagTag" .info.IsOk }}
|
||||||
|
<!-- <button type="button" class="btn-link float-end text-red-600" onclick="getGroupUsers({{.info.Wxid}}, {{.info.Nickname}})">群成员</button>-->
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<dl class="-my-3 divide-y divide-gray-100 px-6 py-4 text-sm leading-6">
|
||||||
|
<!-- 最后活跃时间 -->
|
||||||
|
<div class="flex justify-between gap-x-4 py-3 items-center">
|
||||||
|
<dt class="text-gray-500">最后活跃时间</dt>
|
||||||
|
<dd class="flex items-start gap-x-2">
|
||||||
|
{{ if eq .info.LastActive.IsNil true }}
|
||||||
|
无活跃数据
|
||||||
|
{{ else }}
|
||||||
|
<time datetime="{{ .LastActive }}">{{ .info.LastActive }}</time>
|
||||||
|
{{ end }}
|
||||||
|
</dd>
|
||||||
|
</div>
|
||||||
|
<!-- AI -->
|
||||||
|
<div class="flex justify-between gap-x-4 py-3 items-center">
|
||||||
|
<dt class="text-gray-500">AI(模型可选默认或者指定模型)</dt>
|
||||||
|
<dd class="flex items-start gap-x-2 items-center">
|
||||||
|
<div>
|
||||||
|
{{ template "ai" .info }}
|
||||||
|
</div>
|
||||||
|
{{ if eq .info.EnableAi true }}
|
||||||
|
<div class="float-end">
|
||||||
|
<div>
|
||||||
|
<label>
|
||||||
|
<select class="block w-full rounded-md border-0 py-1.5 pl-3 pr-10 text-gray-900 ring-1 ring-inset ring-gray-300 focus:ring-2 focus:ring-green-600 sm:text-sm sm:leading-6" onchange="aiModelChange(event, {{.info.Wxid}})">
|
||||||
|
{{$useModel := .info.AiModel}}
|
||||||
|
{{ range $.aiModels }}
|
||||||
|
<option value="{{.Model}}" {{ if eq $useModel .Model}}selected{{ end }}>
|
||||||
|
{{.Name}}
|
||||||
|
</option>
|
||||||
|
{{ end }}
|
||||||
|
</select>
|
||||||
|
</label>
|
||||||
|
</div>
|
||||||
|
<div class="float-end mt-1">
|
||||||
|
<label>
|
||||||
|
<select
|
||||||
|
class="block w-full rounded-md border-0 py-1.5 pl-3 pr-10 text-gray-900 ring-1 ring-inset ring-gray-300 focus:ring-2 focus:ring-green-600 sm:text-sm sm:leading-6"
|
||||||
|
onchange="aiAssistantChange(event, {{.info.Wxid}})">
|
||||||
|
<option value="" {{ if eq .info.Prompt
|
||||||
|
"" }}selected{{ end }}>默认</option>
|
||||||
|
|
||||||
|
{{$usePrompt := .info.Prompt}}
|
||||||
|
{{ range $.assistant }}
|
||||||
|
<option value="{{.Id}}" {{ if eq $usePrompt .Id}}selected{{ end }}>
|
||||||
|
{{.Name}}
|
||||||
|
</option>
|
||||||
|
{{ end }}
|
||||||
|
</select>
|
||||||
|
</label>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{{ end }}
|
||||||
|
</dd>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{{$isGroup := checkIsGroup .info.Wxid}}
|
||||||
|
{{ if eq $isGroup true }}
|
||||||
|
<!-- 水群排行榜 -->
|
||||||
|
<div class="flex justify-between gap-x-4 py-3 items-center">
|
||||||
|
<dt class="text-gray-500">水群排行榜</dt>
|
||||||
|
<dd class="flex items-start gap-x-2">
|
||||||
|
{{ template "chatRank" .info }}
|
||||||
|
</dd>
|
||||||
|
</div>
|
||||||
|
<!-- 群聊总结 -->
|
||||||
|
<div class="flex justify-between gap-x-4 py-3 items-center">
|
||||||
|
<dt class="text-gray-500">群聊总结</dt>
|
||||||
|
<dd class="flex items-start gap-x-2">
|
||||||
|
{{ template "summary" .info }}
|
||||||
|
</dd>
|
||||||
|
</div>
|
||||||
|
<!-- 迎新 -->
|
||||||
|
<div class="flex justify-between gap-x-4 py-3 items-center">
|
||||||
|
<dt class="text-gray-500">迎新</dt>
|
||||||
|
<dd class="flex items-start gap-x-2">
|
||||||
|
{{ template "welcome" .info }}
|
||||||
|
</dd>
|
||||||
|
</div>
|
||||||
|
{{ end }}
|
||||||
|
<!-- 早报 -->
|
||||||
|
<div class="flex justify-between gap-x-4 py-3 items-center">
|
||||||
|
<dt class="text-gray-500">早报</dt>
|
||||||
|
<dd class="flex items-start gap-x-2">
|
||||||
|
{{ template "news" .info }}
|
||||||
|
</dd>
|
||||||
|
</div>
|
||||||
|
<!-- 热榜 -->
|
||||||
|
<div class="flex justify-between gap-x-4 py-3 items-center">
|
||||||
|
<dt class="text-gray-500">热榜</dt>
|
||||||
|
<dd class="flex items-start gap-x-2">
|
||||||
|
{{ template "hotTop" .info }}
|
||||||
|
</dd>
|
||||||
|
</div>
|
||||||
|
{{ if eq $isGroup true }}
|
||||||
|
<!-- 自动清理不活跃成员 -->
|
||||||
|
<div class="flex justify-between gap-x-4 py-3 items-center">
|
||||||
|
<dt class="text-gray-500">
|
||||||
|
末位淘汰(需要机器人是<span class="text-red-500">管理员</span>)
|
||||||
|
<br/>
|
||||||
|
<span class="text-red-300">* 清理多少天不说话的成员,0表示不清理</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="flex items-start gap-x-2 items-center">
|
||||||
|
<div class="relative rounded-md">
|
||||||
|
<label>
|
||||||
|
<input type="number" id="auto-cm-{{ .Wxid }}" min="0" class="block w-1/2 float-end rounded-md border-0 py-1.5 text-gray-900 shadow-sm ring-1 ring-inset ring-gray-300 placeholder:text-gray-400 focus:ring-2 focus:ring-inset focus:ring-indigo-600 sm:text-sm sm:leading-6" placeholder="N天不活跃自动移除"
|
||||||
|
value="{{.info.ClearMember}}"
|
||||||
|
onblur="changeClearMember({{.info.Wxid}}, {{.info.ClearMember}}, this.value)"
|
||||||
|
>
|
||||||
|
</label>
|
||||||
|
<div class="pointer-events-none absolute inset-y-0 right-0 flex items-center pr-3">
|
||||||
|
<span class="text-gray-500 sm:text-sm" id="price-currency">天</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</dd>
|
||||||
|
</div>
|
||||||
|
{{ end }}
|
||||||
|
</dl>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
@@ -99,6 +99,25 @@ function changeUserNewsStatus(wxId) {
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// 修改用户热搜开启状态
|
||||||
|
function changeUserHotTopStatus(wxId) {
|
||||||
|
axios({
|
||||||
|
method: 'put',
|
||||||
|
url: '/api/hot-top/status',
|
||||||
|
data: {
|
||||||
|
wxId: wxId
|
||||||
|
}
|
||||||
|
}).then(function (response) {
|
||||||
|
console.log(`返回结果: ${JSON.stringify(response)}`);
|
||||||
|
alert(`${response.data}`)
|
||||||
|
}).catch(function (error) {
|
||||||
|
console.log(`错误信息: ${error}`);
|
||||||
|
alert("修改失败")
|
||||||
|
}).finally(function () {
|
||||||
|
window.location.reload();
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
// 修改指令权限启用状态
|
// 修改指令权限启用状态
|
||||||
function changeCommandEnableStatus(wxId) {
|
function changeCommandEnableStatus(wxId) {
|
||||||
axios({
|
axios({
|
||||||
|
|||||||
Reference in New Issue
Block a user