fusenapi/server/render/internal/logic/rendernotifylogic.go

81 lines
2.3 KiB
Go
Raw Normal View History

2023-07-25 09:10:50 +00:00
package logic
import (
2023-08-07 06:16:09 +00:00
"context"
2023-08-07 04:31:31 +00:00
"encoding/json"
2023-07-26 03:53:06 +00:00
"fusenapi/constants"
2023-08-07 04:31:31 +00:00
"fusenapi/utils/auth"
2023-07-25 09:10:50 +00:00
"fusenapi/utils/basic"
2023-08-09 06:49:15 +00:00
"fusenapi/utils/file"
2023-08-07 03:25:06 +00:00
"fusenapi/utils/websocket_data"
2023-07-25 09:10:50 +00:00
2023-08-07 04:31:31 +00:00
"fusenapi/server/render/internal/svc"
"fusenapi/server/render/internal/types"
2023-07-25 09:10:50 +00:00
"github.com/zeromicro/go-zero/core/logx"
)
type RenderNotifyLogic struct {
logx.Logger
ctx context.Context
svcCtx *svc.ServiceContext
}
func NewRenderNotifyLogic(ctx context.Context, svcCtx *svc.ServiceContext) *RenderNotifyLogic {
return &RenderNotifyLogic{
Logger: logx.WithContext(ctx),
ctx: ctx,
svcCtx: svcCtx,
}
}
// 处理进入前逻辑w,r
// func (l *RenderNotifyLogic) BeforeLogic(w http.ResponseWriter, r *http.Request) {
// }
// 处理逻辑后 w,r 如:重定向, resp 必须重新处理
// func (l *RenderNotifyLogic) AfterLogic(w http.ResponseWriter, r *http.Request, resp *basic.Response) {
// // httpx.OkJsonCtx(r.Context(), w, resp)
// }
2023-08-07 04:31:31 +00:00
func (l *RenderNotifyLogic) RenderNotify(req *types.RenderNotifyReq, userinfo *auth.UserInfo) (resp *basic.Response) {
2023-08-15 09:10:43 +00:00
if req.TaskId == "" {
2023-08-07 06:16:09 +00:00
return resp.SetStatusWithMessage(basic.CodeRequestParamsErr, "invalid param task_id")
}
2023-08-15 09:10:43 +00:00
if req.Image == "" {
2023-08-07 06:16:09 +00:00
return resp.SetStatusWithMessage(basic.CodeRequestParamsErr, "invalid param image")
2023-07-26 03:53:06 +00:00
}
2023-08-15 09:10:43 +00:00
if req.UserId == 0 && req.GuestId == 0 {
2023-08-09 06:12:58 +00:00
return resp.SetStatusWithMessage(basic.CodeRequestParamsErr, "invalid user_id or guest_id")
}
2023-08-09 06:49:15 +00:00
// 上传文件
var upload = file.Upload{
Ctx: l.ctx,
MysqlConn: l.svcCtx.MysqlConn,
AwsSession: l.svcCtx.AwsSession,
}
uploadRes, err := upload.UploadFileByBase64(&file.UploadBaseReq{
2023-08-15 09:10:43 +00:00
FileHash: req.TaskId,
FileData: req.Image,
2023-08-09 06:49:15 +00:00
UploadBucket: 1,
ApiType: 2,
2023-08-15 09:10:43 +00:00
UserId: req.UserId,
GuestId: req.GuestId,
2023-08-09 06:49:15 +00:00
})
if err != nil {
logx.Error(err)
return resp.SetStatusWithMessage(basic.CodeFileUploadErr, "failed to upload render resource image")
}
2023-08-09 06:12:58 +00:00
//发送消息到对应的rabbitmq
2023-08-07 04:31:31 +00:00
data := websocket_data.RenderImageNotify{
2023-08-15 09:10:43 +00:00
TaskId: req.TaskId,
2023-08-09 06:49:15 +00:00
Image: uploadRes.ResourceUrl,
2023-08-07 04:31:31 +00:00
}
d, _ := json.Marshal(data)
2023-08-09 06:49:15 +00:00
if err = l.svcCtx.RabbitMq.SendMsg(constants.RABBIT_MQ_RENDER_RESULT_DATA, d); err != nil {
2023-08-07 04:31:31 +00:00
logx.Error(err)
2023-08-15 09:10:43 +00:00
return resp.SetStatusWithMessage(basic.CodeServiceErr, "failed to send data")
2023-08-07 04:31:31 +00:00
}
2023-08-15 09:10:43 +00:00
return resp.SetStatusWithMessage(basic.CodeOK, "success")
2023-07-25 09:10:50 +00:00
}