product.go 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772
  1. package controllers
  2. import (
  3. "encoding/json"
  4. "errors"
  5. "eta/eta_mini_crm_ht/models"
  6. "eta/eta_mini_crm_ht/models/request"
  7. "eta/eta_mini_crm_ht/models/response"
  8. "eta/eta_mini_crm_ht/services"
  9. "eta/eta_mini_crm_ht/utils"
  10. "fmt"
  11. "github.com/go-sql-driver/mysql"
  12. "github.com/rdlucklib/rdluck_tools/paging"
  13. "github.com/shopspring/decimal"
  14. "math/rand"
  15. "os"
  16. "path"
  17. "strconv"
  18. "strings"
  19. "sync"
  20. "time"
  21. )
  22. var (
  23. CNProductMap = map[models.MerchantProductType]string{
  24. models.ProductPackage: "套餐",
  25. models.ProductVideo: "视频",
  26. models.ProductAudio: "音频",
  27. models.ProductReport: "报告",
  28. }
  29. CNSaleStatusMap = map[models.SaleStatus]string{
  30. models.OnSale: "已上架",
  31. models.OffSale: "未上架",
  32. }
  33. )
  34. type ProductController struct {
  35. BaseAuthController
  36. }
  37. // UnSetProductList
  38. // @Title 未设置的产品列表
  39. // @Description 未设置的产品列表
  40. // @Param PageSize query int true "每页数据条数"
  41. // @Param CurrentIndex query int true "当前页页码,从1开始"
  42. // @Param ClassifyIds query string true "二级分类id,可多选用英文,隔开"
  43. // @Param KeyWord query string true "报告标题/创建人"
  44. // @Param SortType query string true "排序方式"
  45. // @Success 200 {object} models.ReportAuthorResp
  46. // @router /unSetProductList [get]
  47. func (this *ProductController) UnSetProductList() {
  48. br := new(models.BaseResponse).Init()
  49. defer func() {
  50. this.Data["json"] = br
  51. this.ServeJSON()
  52. }()
  53. pageSize, _ := this.GetInt("PageSize")
  54. currentIndex, _ := this.GetInt("CurrentIndex")
  55. sortType := this.GetString("SortType")
  56. ProductType := this.GetString("ProductType")
  57. permissionIds := this.GetString("PermissionIds")
  58. KeyWord := this.GetString("KeyWord")
  59. var condition string
  60. var pars []interface{}
  61. if pageSize <= 0 {
  62. pageSize = utils.PageSize20
  63. }
  64. if currentIndex <= 0 {
  65. currentIndex = 1
  66. }
  67. if ProductType == "" {
  68. br.Msg = "产品类型不能为空"
  69. br.ErrMsg = "获取未设置产品列表失败,Err:产品类型为空"
  70. return
  71. }
  72. if KeyWord != "" {
  73. switch ProductType {
  74. case "report":
  75. condition += " AND title like '%?%'"
  76. case "media":
  77. condition += " AND media_name like '%?%'"
  78. }
  79. pars = append(pars, KeyWord)
  80. }
  81. sortCondition := " ORDER BY published_time "
  82. if sortType == "" {
  83. sortType = "DESC"
  84. }
  85. sortCondition = sortCondition + sortType
  86. var permissionIdsList []int
  87. if permissionIds != "" {
  88. permissionStr := strings.Split(permissionIds, ",")
  89. for _, permissionItem := range permissionStr {
  90. permissionId, _ := strconv.Atoi(permissionItem)
  91. permissionIdsList = append(permissionIdsList, permissionId)
  92. }
  93. }
  94. total, ids, err := services.GetUnsetProductCountByCondition(ProductType, permissionIdsList, condition, pars)
  95. if err != nil {
  96. br.Msg = "获取未设置产品列表失败"
  97. br.ErrMsg = "获取未设置产品列表失败,Err:" + err.Error()
  98. return
  99. }
  100. var list []*services.ProductView
  101. if len(ids) > 0 {
  102. startSize := utils.StartIndex(currentIndex, pageSize)
  103. list, err = services.GetUnsetProductByCondition(ProductType, ids, sortCondition, startSize, pageSize)
  104. if err != nil {
  105. br.Msg = "获取未设置产品列表失败"
  106. br.ErrMsg = "获取未设置产品列表失败,Err:" + err.Error()
  107. return
  108. }
  109. }
  110. var wg sync.WaitGroup
  111. wg.Add(len(list))
  112. for _, product := range list {
  113. go func(product *services.ProductView) {
  114. defer wg.Done()
  115. switch product.ProductType {
  116. case "report":
  117. product.RiskLevel, _, _ = services.GetRiskLevel("report", product.SourceId)
  118. product.ProductType = "报告"
  119. case "video":
  120. product.RiskLevel, _, _ = services.GetRiskLevel("media", product.SourceId)
  121. product.ProductType = "视频"
  122. case "audio":
  123. product.RiskLevel, _, _ = services.GetRiskLevel("media", product.SourceId)
  124. product.ProductType = "音频"
  125. }
  126. }(product)
  127. }
  128. wg.Wait()
  129. page := paging.GetPaging(currentIndex, pageSize, total)
  130. resp := new(response.ProductListResp)
  131. resp.List = list
  132. resp.Paging = page
  133. br.Ret = 200
  134. br.Success = true
  135. br.Data = resp
  136. br.Msg = "获取成功"
  137. }
  138. // AddProduct @Title 新增单品
  139. // @Description 新增单品
  140. // @Param File query file true "文件"
  141. // @Success 200 {object} models.ReportAuthorResp
  142. // @router /addProduct [post]
  143. func (this *ProductController) AddProduct() {
  144. br := new(models.BaseResponse).Init()
  145. defer func() {
  146. this.Data["json"] = br
  147. this.ServeJSON()
  148. }()
  149. var req request.ProductReq
  150. var permissionName string
  151. err := json.Unmarshal(this.Ctx.Input.RequestBody, &req)
  152. if err != nil {
  153. br.Msg = "参数解析异常!"
  154. br.ErrMsg = "参数解析失败,Err:" + err.Error()
  155. return
  156. }
  157. var product models.MerchantProduct
  158. if req.Type == "package" {
  159. if req.ValidDays <= 0 {
  160. br.Msg = "套餐有效期非法"
  161. br.ErrMsg = "套餐有效期非法,天数不能是负数"
  162. return
  163. }
  164. if req.ProductName == "" {
  165. br.Msg = "套餐名称不能为空"
  166. br.ErrMsg = "套餐名称不能为空"
  167. return
  168. }
  169. product.Title = req.ProductName
  170. product.ValidDays = req.ValidDays
  171. product.Description = req.Description
  172. if req.CoverSrc == "" {
  173. var imageList []models.ImageSource
  174. imageList, err = models.GetImageByPermissionId(req.SourceId)
  175. if err != nil {
  176. utils.FileLog.Error("套餐封面获取失败", err.Error())
  177. //br.Msg = "默认套餐封面获取失败,请上传封面"
  178. //br.ErrMsg = "默认套餐封面获取失败,请上传封面,Err:" + err.Error()
  179. //return
  180. } else {
  181. var rnd = rand.New(rand.NewSource(time.Now().UnixNano()))
  182. index := rnd.Intn(len(imageList))
  183. product.CoverSrc = imageList[index].SrcUrl
  184. }
  185. } else {
  186. product.CoverSrc = req.CoverSrc
  187. }
  188. }
  189. switch req.Type {
  190. case "report":
  191. product.RiskLevel, product.Title, err = services.GetRiskLevel("report", req.SourceId)
  192. product.IsPermanent = true
  193. case "audio":
  194. product.RiskLevel, product.Title, err = services.GetRiskLevel("audio", req.SourceId)
  195. product.IsPermanent = true
  196. case "video":
  197. product.RiskLevel, product.Title, err = services.GetRiskLevel("video", req.SourceId)
  198. product.IsPermanent = true
  199. case "package":
  200. product.RiskLevel, permissionName, err = services.GetRiskLevel("package", req.SourceId)
  201. default:
  202. br.Msg = "产品类型错误"
  203. br.ErrMsg = "获取产品列表失败,Err:产品类型错误"
  204. return
  205. }
  206. if err != nil {
  207. utils.FileLog.Error("新增单品失败", err.Error())
  208. br.Msg = "新增产品错误"
  209. if strings.Contains(err.Error(), "<QuerySeter> no row found") {
  210. br.Msg = "新增产品错误,产品信息不存在"
  211. } else {
  212. br.Msg = "新增产品错误" + err.Error()
  213. }
  214. return
  215. }
  216. if product.RiskLevel == "" {
  217. br.Msg = "新增产品错误"
  218. br.ErrMsg = "未获取到风险等级"
  219. return
  220. }
  221. if !checkProductRiskLevel(product.RiskLevel) {
  222. br.Msg = "产品风险等级不合法"
  223. br.ErrMsg = "产品风险等级不合法:" + product.RiskLevel
  224. return
  225. }
  226. if product.Title == "" {
  227. br.Msg = "产品名称不能为空"
  228. br.ErrMsg = "产品名称不能为空"
  229. return
  230. }
  231. var price decimal.Decimal
  232. price, err = decimal.NewFromString(req.Price)
  233. if err != nil {
  234. br.Msg = "产品价格格式不正确"
  235. br.ErrMsg = "产品价格格式不正确,err:" + err.Error() + "price:" + product.Price
  236. return
  237. }
  238. if price.Cmp(decimal.New(0, 0)) <= 0 {
  239. br.Msg = "产品价格不能小于0"
  240. br.ErrMsg = "产品价格不能小于0"
  241. return
  242. }
  243. product.SaleStatus = models.OnSale
  244. product.CreatedTime = time.Now()
  245. product.Price = req.Price
  246. product.SourceId = req.SourceId
  247. product.Type = models.MerchantProductType(req.Type)
  248. product.Creator = this.SysUser.SysRealName
  249. if product.Type == "" {
  250. br.Msg = "新增产品错误"
  251. br.ErrMsg = "产品类型为空"
  252. return
  253. }
  254. err = product.AddProduct()
  255. if err != nil {
  256. var mysqlErr *mysql.MySQLError
  257. if errors.As(err, &mysqlErr) {
  258. if mysqlErr.Number == 1062 {
  259. if product.Type == models.ProductPackage {
  260. var dbProduct models.MerchantProduct
  261. dbProduct, err = models.GetProductByProductType(product.SourceId, models.ProductPackage)
  262. if err != nil {
  263. utils.FileLog.Error("获取套餐产品信息失败,err:" + err.Error())
  264. br.Msg = "[" + permissionName + "]已设置付费套餐,请重新选择"
  265. br.ErrMsg = "[" + permissionName + "]已设置付费套餐,请重新选择"
  266. } else {
  267. br.Msg = "[" + permissionName + "]已设置付费套餐[" + dbProduct.Title + "],请重新选择"
  268. br.ErrMsg = "[" + permissionName + "]已设置付费套餐[" + dbProduct.Title + "],请重新选择"
  269. }
  270. } else {
  271. br.Msg = "该产品已设置付费,请刷新后重试"
  272. br.ErrMsg = "该产品已设置付费,请刷新后重试"
  273. }
  274. } else {
  275. utils.FileLog.Error("新增产品失败,err:" + err.Error())
  276. br.Msg = "新增产品失败"
  277. br.ErrMsg = "新增产品失败,err:" + err.Error()
  278. }
  279. } else {
  280. utils.FileLog.Error("新增产品失败,err:" + err.Error())
  281. br.Msg = "新增产品失败"
  282. br.ErrMsg = "新增产品失败,err:" + err.Error()
  283. }
  284. return
  285. }
  286. br.Ret = 200
  287. br.Success = true
  288. br.Msg = "新增产品成功"
  289. return
  290. }
  291. // UpdateSaleStatus @Title 上下架产品
  292. // @Description 上下架产品
  293. // @Param File query file true "文件"
  294. // @Success 200 {object} models.ReportAuthorResp
  295. // @router /updateSaleStatus [post]
  296. func (this *ProductController) UpdateSaleStatus() {
  297. br := new(models.BaseResponse).Init()
  298. defer func() {
  299. this.Data["json"] = br
  300. this.ServeJSON()
  301. }()
  302. defer func() {
  303. this.Data["json"] = br
  304. this.ServeJSON()
  305. }()
  306. var req request.ProductSaleStatusReq
  307. err := json.Unmarshal(this.Ctx.Input.RequestBody, &req)
  308. if err != nil {
  309. br.Msg = "参数解析异常!"
  310. br.ErrMsg = "参数解析失败,Err:" + err.Error()
  311. return
  312. }
  313. if req.ProductId <= 0 {
  314. br.Msg = "产品编号非法!"
  315. br.ErrMsg = "产品编号非法,不能小于0"
  316. return
  317. }
  318. if req.SaleStatus != "onSale" && req.SaleStatus != "offSale" {
  319. br.Msg = "产品销售状态非法!"
  320. br.ErrMsg = "产品销售状态非法,未知的上下架类型:" + req.SaleStatus
  321. return
  322. }
  323. var saleStatus models.SaleStatus
  324. var messageStatus string
  325. switch req.SaleStatus {
  326. case "onSale":
  327. saleStatus = models.OnSale
  328. messageStatus = "上架"
  329. case "offSale":
  330. saleStatus = models.OffSale
  331. messageStatus = "下架"
  332. }
  333. product := models.MerchantProduct{
  334. Id: req.ProductId,
  335. SaleStatus: saleStatus,
  336. UpdatedTime: time.Now(),
  337. }
  338. err = product.UpdateProductSaleStatus()
  339. if err != nil {
  340. br.Msg = messageStatus + "失败"
  341. br.ErrMsg = messageStatus + "失败,err:" + err.Error()
  342. return
  343. }
  344. br.Msg = messageStatus + "成功"
  345. br.Ret = 200
  346. br.Success = true
  347. }
  348. // DeleteProduct @Title 删除产品
  349. // @Description 删除产品
  350. // @Param File query file true "文件"
  351. // @Success 200 {object} models.ReportAuthorResp
  352. // @router /deleteProduct [post]
  353. func (this *ProductController) DeleteProduct() {
  354. br := new(models.BaseResponse).Init()
  355. defer func() {
  356. this.Data["json"] = br
  357. this.ServeJSON()
  358. }()
  359. defer func() {
  360. this.Data["json"] = br
  361. this.ServeJSON()
  362. }()
  363. var req request.ProductSaleStatusReq
  364. err := json.Unmarshal(this.Ctx.Input.RequestBody, &req)
  365. if err != nil {
  366. br.Msg = "参数解析异常!"
  367. br.ErrMsg = "参数解析失败,Err:" + err.Error()
  368. return
  369. }
  370. if req.ProductId <= 0 {
  371. br.Msg = "产品编号非法!"
  372. br.ErrMsg = "产品编号非法,不能小于0"
  373. return
  374. }
  375. product := models.MerchantProduct{
  376. Id: req.ProductId,
  377. Deleted: true,
  378. UpdatedTime: time.Now(),
  379. }
  380. err = product.Delete()
  381. if err != nil {
  382. br.Msg = "删除产品失败"
  383. br.ErrMsg = "删除产品失败,err:" + err.Error()
  384. return
  385. }
  386. br.Msg = "删除产品成功"
  387. br.Ret = 200
  388. br.Success = true
  389. }
  390. // ProductList
  391. // @Title 产品列表
  392. // @Description pdf研报列表
  393. // @Param PageSize query int true "每页数据条数"
  394. // @Param CurrentIndex query int true "当前页页码,从1开始"
  395. // @Param ClassifyIds query string true "二级分类id,可多选用英文,隔开"
  396. // @Param KeyWord query string true "报告标题/创建人"
  397. // @Param SortType query string true "排序方式"
  398. // @Success 200 {object} models.ReportAuthorResp
  399. // @router /productList [get]
  400. func (this *ProductController) ProductList() {
  401. br := new(models.BaseResponse).Init()
  402. defer func() {
  403. this.Data["json"] = br
  404. this.ServeJSON()
  405. }()
  406. pageSize, _ := this.GetInt("PageSize")
  407. currentIndex, _ := this.GetInt("CurrentIndex")
  408. sortType := this.GetString("SortType")
  409. KeyWord := this.GetString("KeyWord")
  410. CreatedTime := this.GetString("CreatedTime")
  411. UpdatedTime := this.GetString("UpdatedTime")
  412. IsSingle, _ := this.GetBool("IsSingle", true)
  413. ProductType := this.GetString("ProductType")
  414. SaleStatus := this.GetString("SaleStatus")
  415. var condition string
  416. if pageSize <= 0 {
  417. pageSize = utils.PageSize20
  418. }
  419. if currentIndex <= 0 {
  420. currentIndex = 1
  421. }
  422. if KeyWord != "" {
  423. condition += " AND title like '%" + KeyWord + "%'"
  424. }
  425. sortCondition := " ORDER BY created_time "
  426. if sortType == "" {
  427. sortType = "DESC"
  428. }
  429. if CreatedTime != "" {
  430. condition += " AND Date(created_time) = '" + CreatedTime + "'"
  431. }
  432. if UpdatedTime != "" {
  433. condition += " AND Date(updated_time) = '" + UpdatedTime + "'"
  434. }
  435. if SaleStatus != "" {
  436. switch SaleStatus {
  437. case "onSale":
  438. condition += " AND sale_status='on_sale'"
  439. case "offSale":
  440. condition += " AND sale_status='off_sale'"
  441. default:
  442. br.Msg = "无效的销售状态"
  443. br.ErrMsg = "无效的销售状态:" + SaleStatus
  444. return
  445. }
  446. }
  447. if IsSingle {
  448. if ProductType != "" {
  449. switch ProductType {
  450. case "report":
  451. condition += " AND type='" + string(models.ProductReport) + "'"
  452. case "audio":
  453. condition += " AND type='" + string(models.ProductAudio) + "'"
  454. case "video":
  455. condition += " AND type='" + string(models.ProductVideo) + "'"
  456. default:
  457. br.Msg = "无效的产品类型"
  458. br.ErrMsg = "无效的产品类型:" + ProductType
  459. return
  460. }
  461. } else {
  462. condition += " AND type != '" + string(models.ProductReport) + "'"
  463. }
  464. } else {
  465. condition += " AND type = '" + string(models.ProductPackage) + "'"
  466. }
  467. sortCondition = sortCondition + sortType
  468. total, err := models.GetProductCountByCondition(condition)
  469. if err != nil {
  470. br.Msg = "获取产品列表失败"
  471. br.ErrMsg = "获取产品列表失败,Err:" + err.Error()
  472. return
  473. }
  474. startSize := utils.StartIndex(currentIndex, pageSize)
  475. List, err := models.GetProductByCondition(condition, sortCondition, startSize, pageSize)
  476. if err != nil {
  477. br.Msg = "获取产品列表失败"
  478. br.ErrMsg = "获取产品列表失败,Err:" + err.Error()
  479. return
  480. }
  481. var ListView []*services.ProductView
  482. for _, product := range List {
  483. view := &services.ProductView{
  484. Id: product.Id,
  485. ProductName: product.Title,
  486. ProductType: CNProductMap[product.Type],
  487. PublishedTime: product.CreatedTime.Format(time.DateTime),
  488. RiskLevel: product.RiskLevel,
  489. Price: fmt.Sprintf("¥%s", product.Price),
  490. SaleStatus: CNSaleStatusMap[product.SaleStatus],
  491. CoverSrc: product.CoverSrc,
  492. ValidDays: product.ValidDays,
  493. Creator: product.Creator,
  494. IsPermanent: product.IsPermanent,
  495. Description: product.Description,
  496. }
  497. if !product.UpdatedTime.IsZero() {
  498. view.UpdatedTime = product.UpdatedTime.Format(time.DateTime)
  499. }
  500. ListView = append(ListView, view)
  501. }
  502. page := paging.GetPaging(currentIndex, pageSize, total)
  503. resp := new(response.ProductListResp)
  504. resp.List = ListView
  505. resp.Paging = page
  506. br.Ret = 200
  507. br.Success = true
  508. br.Data = resp
  509. br.Msg = "获取成功"
  510. }
  511. // ProductRisk
  512. // @Title 产品列表
  513. // @Description pdf研报列表
  514. // @Param PageSize query int true "每页数据条数"
  515. // @Param CurrentIndex query int true "当前页页码,从1开始"
  516. // @Param ClassifyIds query string true "二级分类id,可多选用英文,隔开"
  517. // @Param KeyWord query string true "报告标题/创建人"
  518. // @Param SortType query string true "排序方式"
  519. // @Success 200 {object} models.ReportAuthorResp
  520. // @router /productRisk [get]
  521. func (this *ProductController) ProductRisk() {
  522. br := new(models.BaseResponse).Init()
  523. defer func() {
  524. this.Data["json"] = br
  525. this.ServeJSON()
  526. }()
  527. SourceId, _ := this.GetInt("SourceId", 0)
  528. ProductType := this.GetString("ProductType")
  529. if SourceId <= 0 {
  530. br.Msg = "无效的产品ID"
  531. br.ErrMsg = "无效的产品ID:" + strconv.Itoa(SourceId)
  532. return
  533. }
  534. riskLevel, _, err := services.GetRiskLevel(ProductType, SourceId)
  535. if err != nil {
  536. utils.FileLog.Error("查询产品风险等级失败", err.Error)
  537. return
  538. }
  539. resp := new(response.ProductRiskResp)
  540. resp.RiskLevel = riskLevel
  541. resp.SourceId = SourceId
  542. resp.ProductType = ProductType
  543. br.Ret = 200
  544. br.Success = true
  545. br.Data = resp
  546. br.Msg = "获取成功"
  547. }
  548. // EditProduct @Title 编辑产品
  549. // @Description 编辑产品
  550. // @Param File query file true "文件"
  551. // @Success 200 {object} models.ReportAuthorResp
  552. // @router /editProduct [post]
  553. func (this *ProductController) EditProduct() {
  554. br := new(models.BaseResponse).Init()
  555. defer func() {
  556. this.Data["json"] = br
  557. this.ServeJSON()
  558. }()
  559. var req request.ProductReq
  560. err := json.Unmarshal(this.Ctx.Input.RequestBody, &req)
  561. if err != nil {
  562. br.Msg = "参数解析异常!"
  563. br.ErrMsg = "参数解析失败,Err:" + err.Error()
  564. return
  565. }
  566. var product models.MerchantProduct
  567. if req.Type == "package" {
  568. if req.ValidDays <= 0 {
  569. br.Msg = "套餐有效期非法"
  570. br.ErrMsg = "套餐有效期非法,天数不能是负数"
  571. return
  572. }
  573. if req.ProductName == "" {
  574. br.Msg = "套餐名称不能为空"
  575. br.ErrMsg = "套餐名称不能为空"
  576. return
  577. }
  578. product.Title = req.ProductName
  579. product.ValidDays = req.ValidDays
  580. product.Description = req.Description
  581. if req.CoverSrc == "" {
  582. var imageList []models.ImageSource
  583. imageList, err = models.GetImageByPermissionId(req.SourceId)
  584. if err != nil {
  585. utils.FileLog.Error("套餐封面获取失败", err.Error())
  586. //br.Msg = "默认套餐封面获取失败,请上传封面"
  587. //br.ErrMsg = "默认套餐封面获取失败,请上传封面,Err:" + err.Error()
  588. //return
  589. } else {
  590. var rnd = rand.New(rand.NewSource(time.Now().UnixNano()))
  591. index := rnd.Intn(len(imageList))
  592. product.CoverSrc = imageList[index].SrcUrl
  593. }
  594. } else {
  595. product.CoverSrc = req.CoverSrc
  596. }
  597. }
  598. switch req.Type {
  599. case "report":
  600. product.RiskLevel, product.Title, err = services.GetRiskLevel("report", req.SourceId)
  601. case "audio":
  602. product.RiskLevel, product.Title, err = services.GetRiskLevel("audio", req.SourceId)
  603. case "video":
  604. product.RiskLevel, product.Title, err = services.GetRiskLevel("video", req.SourceId)
  605. case "package":
  606. product.RiskLevel, _, err = services.GetRiskLevel("package", req.SourceId)
  607. default:
  608. br.Msg = "产品类型错误"
  609. br.ErrMsg = "获取产品列表失败,Err:产品类型错误"
  610. return
  611. }
  612. if err != nil {
  613. utils.FileLog.Error("编辑产品失败", err.Error())
  614. br.Msg = "编辑产品失败"
  615. if strings.Contains(err.Error(), "<QuerySeter> no row found") {
  616. br.Msg = "编辑产品失败,产品信息不存在"
  617. } else {
  618. br.Msg = "编辑产品失败" + err.Error()
  619. }
  620. return
  621. }
  622. if product.RiskLevel == "" {
  623. br.Msg = "编辑产品失败"
  624. br.ErrMsg = "未获取到风险等级"
  625. return
  626. }
  627. if !checkProductRiskLevel(product.RiskLevel) {
  628. br.Msg = "产品风险等级不合法"
  629. br.ErrMsg = "产品风险等级不合法:" + product.RiskLevel
  630. return
  631. }
  632. if product.Title == "" {
  633. br.Msg = "产品名称不能为空"
  634. br.ErrMsg = "产品名称不能为空"
  635. return
  636. }
  637. var price decimal.Decimal
  638. price, err = decimal.NewFromString(req.Price)
  639. if err != nil {
  640. br.Msg = "产品价格格式不正确"
  641. br.ErrMsg = "产品价格格式不正确,err:" + err.Error() + "price:" + product.Price
  642. return
  643. }
  644. if price.Cmp(decimal.New(0, 0)) <= 0 {
  645. br.Msg = "产品价格不能小于0"
  646. br.ErrMsg = "产品价格不能小于0"
  647. return
  648. }
  649. product.SaleStatus = models.OnSale
  650. product.CreatedTime = time.Now()
  651. product.Price = req.Price
  652. product.SourceId = req.SourceId
  653. product.Type = models.MerchantProductType(req.Type)
  654. product.Creator = this.SysUser.SysRealName
  655. if product.Type == "" {
  656. br.Msg = "编辑产品失败"
  657. br.ErrMsg = "产品类型为空"
  658. return
  659. }
  660. err = product.EditProduct()
  661. if err != nil {
  662. utils.FileLog.Error("编辑产品失败,err:" + err.Error())
  663. br.Msg = "编辑产品失败"
  664. br.ErrMsg = "编辑产品失败,err:" + err.Error()
  665. return
  666. }
  667. br.Ret = 200
  668. br.Success = true
  669. br.Msg = "编辑产品成功"
  670. return
  671. }
  672. // UploadFile @Title 上传图片
  673. // @Description 上传图片
  674. // @Param File query file true "文件"
  675. // @Success 200 {object} models.ReportAuthorResp
  676. // @router /uploadFile [post]
  677. func (this *ProductController) UploadFile() {
  678. br := new(models.BaseResponse).Init()
  679. defer func() {
  680. this.Data["json"] = br
  681. this.ServeJSON()
  682. }()
  683. f, h, err := this.GetFile("File")
  684. if err != nil {
  685. br.Msg = "获取资源信息失败"
  686. br.ErrMsg = "获取资源信息失败,Err:" + err.Error()
  687. return
  688. }
  689. defer f.Close()
  690. size, err := strconv.Atoi(utils.UPLOAD_IMG_SIZE)
  691. if err != nil {
  692. size = 100
  693. }
  694. if h.Size > 1024*1024*int64(size) {
  695. br.Msg = fmt.Sprintf("图片大小不能超过%dK", size)
  696. br.ErrMsg = "图片上传失败,Err:" + err.Error()
  697. return
  698. }
  699. ext := path.Ext(h.Filename)
  700. dateDir := time.Now().Format("20060102")
  701. uploadDir := utils.STATIC_DIR + "ht/product" + dateDir
  702. err = os.MkdirAll(uploadDir, utils.DIR_MOD)
  703. if err != nil {
  704. br.Msg = "存储目录创建失败"
  705. br.ErrMsg = "存储目录创建失败,Err:" + err.Error()
  706. return
  707. }
  708. randStr := utils.GetRandStringNoSpecialChar(28)
  709. fileName := randStr + ext
  710. fpath := uploadDir + "/" + fileName
  711. err = this.SaveToFile("File", fpath)
  712. if err != nil {
  713. br.Msg = "图片上传失败"
  714. br.ErrMsg = "图片上传失败,Err:" + err.Error()
  715. return
  716. }
  717. audioUploadDir := utils.RESOURCE_DIR + "img/"
  718. savePdfToOssPath := audioUploadDir + time.Now().Format("200601/20060102/")
  719. audioName := utils.GetRandStringNoSpecialChar(28)
  720. savePdfToOssPath += audioName + ext
  721. defer func() {
  722. err = os.Remove(fpath)
  723. fmt.Sprintf("删除文件失败:%v", err)
  724. }()
  725. ossClient := services.NewOssClient()
  726. if ossClient == nil {
  727. br.Msg = "图片上传失败"
  728. br.ErrMsg = "初始化OSS服务失败"
  729. return
  730. }
  731. mp3Url, err := ossClient.UploadFile("", fpath, savePdfToOssPath)
  732. if err != nil {
  733. br.Msg = "图片上传失败"
  734. br.ErrMsg = "图片上传失败,Err:" + err.Error()
  735. return
  736. }
  737. base := path.Base(h.Filename)
  738. resp := new(response.MediaUploadResp)
  739. resp.Url = mp3Url
  740. resp.FileName = base
  741. br.Data = resp
  742. br.Msg = "上传成功"
  743. br.Ret = 200
  744. br.Success = true
  745. }