123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433 |
- package controllers
- import (
- "encoding/json"
- "errors"
- "eta/eta_mini_crm_ht/models"
- "eta/eta_mini_crm_ht/models/request"
- "eta/eta_mini_crm_ht/models/response"
- "eta/eta_mini_crm_ht/services"
- "eta/eta_mini_crm_ht/utils"
- "github.com/go-sql-driver/mysql"
- "github.com/rdlucklib/rdluck_tools/paging"
- "github.com/shopspring/decimal"
- "strconv"
- "strings"
- "sync"
- "time"
- )
- type ProductController struct {
- BaseAuthController
- }
- func (this *ProductController) UnSetProductList() {
- br := new(models.BaseResponse).Init()
- defer func() {
- this.Data["json"] = br
- this.ServeJSON()
- }()
- pageSize, _ := this.GetInt("PageSize")
- currentIndex, _ := this.GetInt("CurrentIndex")
- sortType := this.GetString("SortType")
- ProductType := this.GetString("ProductType")
- permissionIds := this.GetString("PermissionIds")
- KeyWord := this.GetString("KeyWord")
- var condition string
- var pars []interface{}
- if pageSize <= 0 {
- pageSize = utils.PageSize20
- }
- if currentIndex <= 0 {
- currentIndex = 1
- }
- if ProductType == "" {
- br.Msg = "产品类型不能为空"
- br.ErrMsg = "获取未设置产品列表失败,Err:产品类型为空"
- return
- }
- if KeyWord != "" {
- switch ProductType {
- case "report":
- condition += " AND title like '%?%'"
- case "media":
- condition += " AND media_name like '%?%'"
- }
- pars = append(pars, KeyWord)
- }
- sortCondition := " ORDER BY published_time "
- if sortType == "" {
- sortType = "DESC"
- }
- sortCondition = sortCondition + sortType
- var permissionIdsList []int
- if permissionIds != "" {
- permissionStr := strings.Split(permissionIds, ",")
- for _, permissionItem := range permissionStr {
- permissionId, _ := strconv.Atoi(permissionItem)
- permissionIdsList = append(permissionIdsList, permissionId)
- }
- }
- total, ids, err := services.GetUnsetProductCountByCondition(ProductType, permissionIdsList, condition, pars)
- if err != nil {
- br.Msg = "获取未设置产品列表失败"
- br.ErrMsg = "获取未设置产品列表失败,Err:" + err.Error()
- return
- }
- var list []*services.ProductView
- if len(ids) > 0 {
- startSize := utils.StartIndex(currentIndex, pageSize)
- list, err = services.GetUnsetProductByCondition(ProductType, ids, sortCondition, startSize, pageSize)
- if err != nil {
- br.Msg = "获取未设置产品列表失败"
- br.ErrMsg = "获取未设置产品列表失败,Err:" + err.Error()
- return
- }
- }
- var wg sync.WaitGroup
- wg.Add(len(list))
- for _, product := range list {
- go func(product *services.ProductView) {
- defer wg.Done()
- switch product.ProductType {
- case "report":
- product.RiskLevel, _, _ = services.GetRiskLevel("report", product.SourceId)
- product.ProductType = "报告"
- case "video":
- product.RiskLevel, _, _ = services.GetRiskLevel("media", product.SourceId)
- product.ProductType = "视频"
- case "audio":
- product.RiskLevel, _, _ = services.GetRiskLevel("media", product.SourceId)
- product.ProductType = "音频"
- }
- }(product)
- }
- wg.Wait()
- page := paging.GetPaging(currentIndex, pageSize, total)
- resp := new(response.ProductListResp)
- resp.List = list
- resp.Paging = page
- br.Ret = 200
- br.Success = true
- br.Data = resp
- br.Msg = "获取成功"
- }
- func (this *ProductController) AddProduct() {
- br := new(models.BaseResponse).Init()
- defer func() {
- this.Data["json"] = br
- this.ServeJSON()
- }()
- var req request.ProductReq
- err := json.Unmarshal(this.Ctx.Input.RequestBody, &req)
- if err != nil {
- br.Msg = "参数解析异常!"
- br.ErrMsg = "参数解析失败,Err:" + err.Error()
- return
- }
- var product models.MerchantProduct
- if req.Type == "package" {
- if req.ValidDays <= 0 {
- br.Msg = "套餐有效期非法"
- br.ErrMsg = "套餐有效期非法,天数不能是负数"
- return
- }
- if req.ProductName == "" {
- br.Msg = "套餐名称不能为空"
- br.ErrMsg = "套餐名称不能为空"
- return
- }
- product.Title = req.ProductName
- product.ValidDays = req.ValidDays
- product.Description = req.Description
- product.CoverSrc = req.CoverSrc
- }
- switch req.Type {
- case "report":
- product.RiskLevel, product.Title, err = services.GetRiskLevel("report", req.SourceId)
- case "audio":
- product.RiskLevel, product.Title, err = services.GetRiskLevel("audio", req.SourceId)
- case "video":
- product.RiskLevel, product.Title, err = services.GetRiskLevel("video", req.SourceId)
- case "package":
- product.RiskLevel, _, err = services.GetRiskLevel("package", req.SourceId)
- default:
- br.Msg = "产品类型错误"
- br.ErrMsg = "获取产品列表失败,Err:产品类型错误"
- return
- }
- if err != nil {
- utils.FileLog.Error("新增单品失败", err.Error())
- br.Msg = "新增产品错误"
- if strings.Contains(err.Error(), "<QuerySeter> no row found") {
- br.Msg = "新增产品错误,产品信息不存在"
- } else {
- br.Msg = "新增产品错误" + err.Error()
- }
- return
- }
- if product.RiskLevel == "" {
- br.Msg = "新增产品错误"
- br.ErrMsg = "未获取到风险等级"
- return
- }
- if !checkProductRiskLevel(product.RiskLevel) {
- br.Msg = "产品风险等级不合法"
- br.ErrMsg = "产品风险等级不合法:" + product.RiskLevel
- return
- }
- if product.Title == "" {
- br.Msg = "产品名称不能为空"
- br.ErrMsg = "产品名称不能为空"
- return
- }
- var price decimal.Decimal
- price, err = decimal.NewFromString(req.Price)
- if err != nil {
- br.Msg = "产品价格格式不正确"
- br.ErrMsg = "产品价格格式不正确,err:" + err.Error() + "price:" + product.Price
- return
- }
- if price.Cmp(decimal.New(0, 0)) <= 0 {
- br.Msg = "产品价格不能小于0"
- br.ErrMsg = "产品价格不能小于0"
- return
- }
- product.SaleStatus = models.OnSale
- product.CreatedTime = time.Now()
- product.Price = req.Price
- product.SourceId = req.SourceId
- product.Type = models.MerchantProductType(req.Type)
- if product.Type == "" {
- br.Msg = "新增产品错误"
- br.ErrMsg = "产品类型为空"
- return
- }
- err = product.AddProduct()
- if err != nil {
- var mysqlErr *mysql.MySQLError
- if errors.As(err, &mysqlErr) {
- if mysqlErr.Number == 1062 {
- br.Msg = "该产品已设置付费,请刷新后重试"
- br.ErrMsg = "该产品已设置付费,请刷新后重试"
- } else {
- utils.FileLog.Error("新增产品失败,err:" + err.Error())
- br.Msg = "新增产品失败"
- br.ErrMsg = "新增产品失败,err:" + err.Error()
- }
- } else {
- utils.FileLog.Error("新增产品失败,err:" + err.Error())
- br.Msg = "新增产品失败"
- br.ErrMsg = "新增产品失败,err:" + err.Error()
- }
- return
- }
- br.Ret = 200
- br.Success = true
- br.Msg = "新增产品成功"
- return
- }
- func (this *ProductController) UpdateSaleStatus() {
- br := new(models.BaseResponse).Init()
- defer func() {
- this.Data["json"] = br
- this.ServeJSON()
- }()
- defer func() {
- this.Data["json"] = br
- this.ServeJSON()
- }()
- var req request.ProductSaleStatusReq
- err := json.Unmarshal(this.Ctx.Input.RequestBody, &req)
- if err != nil {
- br.Msg = "参数解析异常!"
- br.ErrMsg = "参数解析失败,Err:" + err.Error()
- return
- }
- if req.ProductId <= 0 {
- br.Msg = "产品编号非法!"
- br.ErrMsg = "产品编号非法,不能小于0"
- return
- }
- if req.SaleStatus != "onSale" && req.SaleStatus != "offSale" {
- br.Msg = "产品销售状态非法!"
- br.ErrMsg = "产品销售状态非法,未知的上下架类型:" + req.SaleStatus
- return
- }
- var saleStatus models.SaleStatus
- var messageStatus string
- switch req.SaleStatus {
- case "onSale":
- saleStatus = models.OnSale
- messageStatus = "上架"
- case "offSale":
- saleStatus = models.OffSale
- messageStatus = "下架"
- }
- product := models.MerchantProduct{
- Id: req.ProductId,
- SaleStatus: saleStatus,
- UpdatedTime: time.Now(),
- }
- err = product.UpdateProductSaleStatus()
- if err != nil {
- br.Msg = messageStatus + "失败"
- br.ErrMsg = messageStatus + "失败,err:" + err.Error()
- return
- }
- br.Msg = messageStatus + "成功"
- br.Ret = 200
- br.Success = true
- }
- func (this *ProductController) DeleteProduct() {
- br := new(models.BaseResponse).Init()
- defer func() {
- this.Data["json"] = br
- this.ServeJSON()
- }()
- defer func() {
- this.Data["json"] = br
- this.ServeJSON()
- }()
- var req request.ProductSaleStatusReq
- err := json.Unmarshal(this.Ctx.Input.RequestBody, &req)
- if err != nil {
- br.Msg = "参数解析异常!"
- br.ErrMsg = "参数解析失败,Err:" + err.Error()
- return
- }
- if req.ProductId <= 0 {
- br.Msg = "产品编号非法!"
- br.ErrMsg = "产品编号非法,不能小于0"
- return
- }
- product := models.MerchantProduct{
- Id: req.ProductId,
- Deleted: true,
- UpdatedTime: time.Now(),
- }
- err = product.Delete()
- if err != nil {
- br.Msg = "删除产品失败"
- br.ErrMsg = "删除产品失败,err:" + err.Error()
- return
- }
- br.Msg = "删除产品成功"
- br.Ret = 200
- br.Success = true
- }
|