pre.go 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. package article
  2. import (
  3. "context"
  4. "strconv"
  5. "strings"
  6. artMdl "go-common/app/interface/main/creative/model/article"
  7. "go-common/library/ecode"
  8. )
  9. // ParseParam parse article param which type is int.
  10. func (s *Service) ParseParam(c context.Context, categoryStr, reprintStr, tidStr, imageURLs, originImageURLs string) (art *artMdl.ArtParam, err error) {
  11. var (
  12. category int64
  13. tid, reprint int
  14. )
  15. category, err = strconv.ParseInt(categoryStr, 10, 64)
  16. if err != nil || category <= 0 { //文章要求必须传大于0的分类
  17. err = ecode.CreativeArticleCategoryErr
  18. return
  19. }
  20. tid, err = strconv.Atoi(tidStr)
  21. if err != nil || tid < 0 {
  22. err = ecode.CreativeArticleTIDErr
  23. return
  24. }
  25. reprint, err = strconv.Atoi(reprintStr)
  26. if err != nil || reprint < 0 {
  27. err = ecode.CreativeArticleReprintErr
  28. return
  29. }
  30. imgs, oimgs, err := ParseImageURLs(imageURLs, originImageURLs)
  31. if err != nil {
  32. return
  33. }
  34. art = &artMdl.ArtParam{
  35. Category: category,
  36. TemplateID: int32(tid),
  37. Reprint: int32(reprint),
  38. ImageURLs: imgs,
  39. OriginImageURLs: oimgs,
  40. }
  41. return
  42. }
  43. // ParseDraftParam parse draft param which type is int.
  44. func (s *Service) ParseDraftParam(c context.Context, categoryStr, reprintStr, tidStr, imageURLs, originImageURLs string) (art *artMdl.ArtParam, err error) {
  45. var (
  46. category int64
  47. tid, reprint int
  48. )
  49. if categoryStr != "" {
  50. category, err = strconv.ParseInt(categoryStr, 10, 64)
  51. if err != nil || category < 0 {
  52. err = ecode.CreativeArticleCategoryErr
  53. return
  54. }
  55. }
  56. if tidStr != "" {
  57. tid, err = strconv.Atoi(tidStr)
  58. if err != nil || tid < 0 {
  59. err = ecode.CreativeArticleTIDErr
  60. return
  61. }
  62. }
  63. if reprintStr != "" {
  64. reprint, err = strconv.Atoi(reprintStr)
  65. if err != nil || reprint < 0 {
  66. err = ecode.CreativeArticleReprintErr
  67. return
  68. }
  69. }
  70. imgs, oimgs, err := ParseImageURLs(imageURLs, originImageURLs)
  71. if err != nil {
  72. return
  73. }
  74. art = &artMdl.ArtParam{
  75. Category: category,
  76. TemplateID: int32(tid),
  77. Reprint: int32(reprint),
  78. ImageURLs: imgs,
  79. OriginImageURLs: oimgs,
  80. }
  81. return
  82. }
  83. //ParseImageURLs parse img urls to []string.
  84. func ParseImageURLs(imageURLs, originImageURLs string) (imgs, oimgs []string, err error) {
  85. if originImageURLs == "" {
  86. originImageURLs = imageURLs
  87. }
  88. imgs = strings.Split(imageURLs, ",")
  89. oimgs = strings.Split(originImageURLs, ",")
  90. if len(imgs) != len(oimgs) {
  91. err = ecode.CreativeArticleImageURLsErr
  92. }
  93. return
  94. }