|
@@ -0,0 +1,44 @@
|
|
|
+package Wxhook
|
|
|
+
|
|
|
+import (
|
|
|
+ "net/http"
|
|
|
+
|
|
|
+ "github.com/zeromicro/go-zero/rest/httpx"
|
|
|
+
|
|
|
+ "wechat-api/internal/logic/Wxhook"
|
|
|
+ "wechat-api/internal/svc"
|
|
|
+ "wechat-api/internal/types"
|
|
|
+)
|
|
|
+
|
|
|
+// swagger:route post /wxhook/terminateThisWeChat Wxhook TerminateThisWeChat
|
|
|
+//
|
|
|
+// 结束微信
|
|
|
+//
|
|
|
+// 结束微信
|
|
|
+//
|
|
|
+// Parameters:
|
|
|
+// + name: body
|
|
|
+// require: true
|
|
|
+// in: body
|
|
|
+// type: IDReq
|
|
|
+//
|
|
|
+// Responses:
|
|
|
+// 200: BaseMsgResp
|
|
|
+
|
|
|
+func TerminateThisWeChatHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
|
|
+ return func(w http.ResponseWriter, r *http.Request) {
|
|
|
+ var req types.IDReq
|
|
|
+ if err := httpx.Parse(r, &req, true); err != nil {
|
|
|
+ httpx.ErrorCtx(r.Context(), w, err)
|
|
|
+ return
|
|
|
+ }
|
|
|
+
|
|
|
+ l := Wxhook.NewTerminateThisWeChatLogic(r.Context(), svcCtx)
|
|
|
+ resp, err := l.TerminateThisWeChat(&req)
|
|
|
+ if err != nil {
|
|
|
+ httpx.ErrorCtx(r.Context(), w, err)
|
|
|
+ } else {
|
|
|
+ httpx.OkJsonCtx(r.Context(), w, resp)
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|