2023-08-18 09:38:12 +00:00
|
|
|
package logic
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fusenapi/service/repositories"
|
|
|
|
"fusenapi/utils/auth"
|
|
|
|
"fusenapi/utils/basic"
|
|
|
|
|
|
|
|
"context"
|
|
|
|
|
|
|
|
"fusenapi/server/resource/internal/svc"
|
|
|
|
"fusenapi/server/resource/internal/types"
|
|
|
|
|
|
|
|
"github.com/zeromicro/go-zero/core/logx"
|
|
|
|
)
|
|
|
|
|
|
|
|
type LogoRemovebgLogic struct {
|
|
|
|
logx.Logger
|
|
|
|
ctx context.Context
|
|
|
|
svcCtx *svc.ServiceContext
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewLogoRemovebgLogic(ctx context.Context, svcCtx *svc.ServiceContext) *LogoRemovebgLogic {
|
|
|
|
return &LogoRemovebgLogic{
|
|
|
|
Logger: logx.WithContext(ctx),
|
|
|
|
ctx: ctx,
|
|
|
|
svcCtx: svcCtx,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// 处理进入前逻辑w,r
|
|
|
|
// func (l *LogoRemovebgLogic) BeforeLogic(w http.ResponseWriter, r *http.Request) {
|
|
|
|
// }
|
|
|
|
|
|
|
|
// 处理逻辑后 w,r 如:重定向, resp 必须重新处理
|
|
|
|
// func (l *LogoRemovebgLogic) AfterLogic(w http.ResponseWriter, r *http.Request, resp *basic.Response) {
|
|
|
|
// // httpx.OkJsonCtx(r.Context(), w, resp)
|
|
|
|
// }
|
|
|
|
|
|
|
|
func (l *LogoRemovebgLogic) LogoRemovebg(req *types.LogoRemovebgReq, userinfo *auth.UserInfo) (resp *basic.Response) {
|
|
|
|
// 返回值必须调用Set重新返回, resp可以空指针调用 resp.SetStatus(basic.CodeOK, data)
|
|
|
|
// userinfo 传入值时, 一定不为null
|
|
|
|
res, err := l.svcCtx.Repositories.ImageHandle.LogoStandard(l.ctx, &repositories.LogoStandardReq{
|
|
|
|
IsRemoveBg: req.IsRemoveBg,
|
|
|
|
LogoFile: req.LogoFile,
|
|
|
|
Width: req.Width,
|
|
|
|
Height: req.Height,
|
|
|
|
Proportion: req.Proportion,
|
|
|
|
})
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return resp.SetStatus(basic.CodeServiceErr)
|
|
|
|
}
|
|
|
|
|
|
|
|
// 返回成功的响应和上传URL
|
|
|
|
return resp.SetStatus(basic.CodeOK, map[string]interface{}{
|
|
|
|
"resource_id": res.ResourceId,
|
|
|
|
"resource_url": res.ResourceUrl,
|
|
|
|
"ismax_proportion": res.IsmaxProportion,
|
2023-08-18 10:27:10 +00:00
|
|
|
"img_color": res.ImgColor,
|
2023-08-18 09:38:12 +00:00
|
|
|
})
|
|
|
|
}
|