From 89c504d019fec95d47d3f3cf1779ab24639aece1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=8E=E5=AF=BB=E6=AC=A2?= Date: Mon, 4 Dec 2023 14:24:30 +0800 Subject: [PATCH] =?UTF-8?q?:new:=20=E9=A1=B5=E9=9D=A2=E6=96=B0=E5=A2=9E?= =?UTF-8?q?=E8=BF=8E=E6=96=B0=E5=BC=80=E5=85=B3=E5=AE=9E=E7=8E=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/friend.go | 23 +++++++++++++++++++++++ router/router.go | 1 + views/index.html | 9 +++++++++ views/static/js/index.js | 16 ++++++++++++++++ vo/friend.go | 1 + 5 files changed, 50 insertions(+) diff --git a/app/friend.go b/app/friend.go index e78bee9..1b597a1 100644 --- a/app/friend.go +++ b/app/friend.go @@ -62,6 +62,29 @@ func ChangeEnableGroupRankStatus(ctx *gin.Context) { ctx.String(http.StatusOK, "操作成功") } +// ChangeEnableWelcomeStatus +// @description: 修改是否开启迎新 +// @param ctx +func ChangeEnableWelcomeStatus(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_welcome`", gorm.Expr(" !`enable_welcome`")).Error + if err != nil { + log.Printf("修改开启迎新失败:%s", err) + ctx.String(http.StatusInternalServerError, "操作失败: %s", err) + return + } + + ctx.String(http.StatusOK, "操作成功") +} + // ChangeSkipGroupRankStatus // @description: 修改是否跳过水群排行榜 // @param ctx diff --git a/router/router.go b/router/router.go index 8e554e9..7e9be6f 100644 --- a/router/router.go +++ b/router/router.go @@ -22,6 +22,7 @@ func Init(g *gin.Engine) { // 接口 api := g.Group("/api") api.PUT("/ai/status", app.ChangeEnableAiStatus) // 修改是否开启AI状态 + api.PUT("/welcome/status", app.ChangeEnableWelcomeStatus) // 修改是否开启迎新状态 api.PUT("/grouprank/status", app.ChangeEnableGroupRankStatus) // 修改是否开启水群排行榜状态 api.PUT("/grouprank/skip", app.ChangeSkipGroupRankStatus) // 修改是否跳过水群排行榜状态 api.GET("/group/users", app.GetGroupUsers) // 获取群成员列表 diff --git a/views/index.html b/views/index.html index fff044e..72bd538 100644 --- a/views/index.html +++ b/views/index.html @@ -90,6 +90,7 @@ 是否在通讯录 是否启用AI 是否启用水群排行榜 + 是否启用迎新 操作 @@ -134,6 +135,14 @@
❌已禁用
+ + + diff --git a/views/static/js/index.js b/views/static/js/index.js index 986cc33..7d92cb9 100644 --- a/views/static/js/index.js +++ b/views/static/js/index.js @@ -35,6 +35,22 @@ function changeGroupRankEnableStatus(wxId) { }) } +// 修改欢迎语开启状态 +function changeWelcomeEnableStatus(wxId) { + axios({ + method: 'put', + url: '/api/welcome/status', + data: { + wxId: wxId + } + }).then(function (response) { + console.log(`返回结果: ${JSON.stringify(response)}`); + }).catch(function (error) { + console.log(`错误信息: ${error}`); + alert("修改失败") + }) +} + // 修改群成员是否参与排行榜状态 function changeUserGroupRankSkipStatus(groupId, userId) { console.log("修改水群排行榜开启状态: ", groupId, userId) diff --git a/vo/friend.go b/vo/friend.go index a1a6584..dbda938 100644 --- a/vo/friend.go +++ b/vo/friend.go @@ -14,6 +14,7 @@ type FriendItem struct { Wxid string // 微信原始Id EnableAi bool // 是否使用AI EnableChatRank bool // 是否使用聊天排行 + EnableWelcome bool // 是否使用迎新 IsOk bool // 是否还在通讯库(群聊是要还在群里也算) LastActiveTime types.DateTime // 最后活跃时间 }