fusenapi/server/feishu-sync/internal/logic/ticketwebhooklogic.go

43 lines
1.1 KiB
Go
Raw Normal View History

2023-11-06 06:09:40 +00:00
package logic
import (
"fusenapi/utils/auth"
"fusenapi/utils/basic"
2023-11-06 06:59:23 +00:00
"net/http"
2023-11-06 06:09:40 +00:00
"context"
"fusenapi/server/feishu-sync/internal/svc"
"fusenapi/server/feishu-sync/internal/types"
"github.com/zeromicro/go-zero/core/logx"
)
type TicketWebhookLogic struct {
logx.Logger
ctx context.Context
svcCtx *svc.ServiceContext
}
func NewTicketWebhookLogic(ctx context.Context, svcCtx *svc.ServiceContext) *TicketWebhookLogic {
return &TicketWebhookLogic{
Logger: logx.WithContext(ctx),
ctx: ctx,
svcCtx: svcCtx,
}
}
// 处理进入前逻辑w,r
// func (l *TicketWebhookLogic) BeforeLogic(w http.ResponseWriter, r *http.Request) {
// }
2023-11-06 06:59:23 +00:00
func (l *TicketWebhookLogic) TicketWebhook(req *types.TicketWebhookReq, userinfo *auth.UserInfo, w http.ResponseWriter) (resp *basic.Response) {
2023-11-06 07:06:15 +00:00
2023-11-06 06:59:23 +00:00
return resp.SetStatusWithMessage(basic.CodeOK, "success")
2023-11-06 06:09:40 +00:00
}
// 处理逻辑后 w,r 如:重定向, resp 必须重新处理
// func (l *TicketWebhookLogic) AfterLogic(w http.ResponseWriter, r *http.Request, resp *basic.Response) {
// // httpx.OkJsonCtx(r.Context(), w, resp)
// }