draft.go 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. package article
  2. import (
  3. "context"
  4. artMdl "go-common/app/interface/main/creative/model/article"
  5. article "go-common/app/interface/openplatform/article/model"
  6. "go-common/library/ecode"
  7. "go-common/library/log"
  8. )
  9. // AddDraft add draft.
  10. func (s *Service) AddDraft(c context.Context, mid int64, art *artMdl.ArtParam) (aid int64, err error) {
  11. return s.art.AddDraft(c, art)
  12. }
  13. // DelDraft delete draft.
  14. func (s *Service) DelDraft(c context.Context, aid, mid int64, ip string) (err error) {
  15. if err = s.art.DelDraft(c, aid, mid, ip); err != nil {
  16. log.Error("s.art.DelArticle(%d) error(%v)", aid, err)
  17. }
  18. return
  19. }
  20. // Draft get draft.
  21. func (s *Service) Draft(c context.Context, aid, mid int64, ip string) (res *artMdl.Meta, err error) {
  22. var df *article.Draft
  23. if df, err = s.art.Draft(c, aid, mid, ip); err != nil {
  24. return
  25. }
  26. if df == nil || df.Article == nil {
  27. err = ecode.CreativeArticleNotExist
  28. return
  29. }
  30. res = &artMdl.Meta{
  31. ID: df.Article.ID,
  32. Category: df.Article.Category,
  33. Title: df.Article.Title,
  34. Content: df.Article.Content,
  35. Summary: df.Article.Summary,
  36. BannerURL: df.Article.BannerURL,
  37. TemplateID: df.Article.TemplateID,
  38. State: df.Article.State,
  39. Author: df.Article.Author,
  40. Stats: df.Article.Stats,
  41. Reprint: df.Article.Reprint,
  42. Reason: df.Article.Reason,
  43. PTime: df.Article.PublishTime,
  44. CTime: df.Article.Ctime,
  45. MTime: df.Article.Mtime,
  46. DynamicIntro: df.Article.Dynamic,
  47. ImageURLs: df.ImageURLs,
  48. OriginImageURLs: df.OriginImageURLs,
  49. }
  50. if res.ImageURLs == nil {
  51. res.ImageURLs = []string{}
  52. }
  53. if res.OriginImageURLs == nil {
  54. res.OriginImageURLs = []string{}
  55. }
  56. res.Tags = df.Tags
  57. if len(df.Tags) == 0 {
  58. res.Tags = []string{}
  59. }
  60. return
  61. }
  62. // Drafts get draft list.
  63. func (s *Service) Drafts(c context.Context, mid int64, pn, ps int, ip string) (dls *artMdl.DraftList, err error) {
  64. var res *article.Drafts
  65. res, err = s.art.Drafts(c, mid, pn, ps, ip)
  66. if err != nil || res == nil || res.Drafts == nil || len(res.Drafts) <= 0 {
  67. if err != nil {
  68. log.Error("s.art.Drafts(%d) res(%v) error(%v)", mid, res, err)
  69. }
  70. return
  71. }
  72. ms := make([]*artMdl.Meta, 0, len(res.Drafts))
  73. for _, v := range res.Drafts {
  74. m := &artMdl.Meta{
  75. ID: v.ID,
  76. Category: v.Category,
  77. Title: v.Title,
  78. Summary: v.Summary,
  79. BannerURL: v.BannerURL,
  80. TemplateID: v.TemplateID,
  81. State: v.State,
  82. Reprint: v.Reprint,
  83. Reason: v.Reason,
  84. PTime: v.PublishTime,
  85. Author: v.Author,
  86. Stats: v.Stats,
  87. CTime: v.Ctime,
  88. MTime: v.Mtime,
  89. DynamicIntro: v.Dynamic,
  90. ImageURLs: v.ImageURLs,
  91. OriginImageURLs: v.OriginImageURLs,
  92. }
  93. if m.ImageURLs == nil {
  94. m.ImageURLs = []string{}
  95. }
  96. if m.OriginImageURLs == nil {
  97. m.OriginImageURLs = []string{}
  98. }
  99. m.Tags = v.Tags
  100. if len(v.Tags) == 0 {
  101. m.Tags = []string{}
  102. }
  103. ms = append(ms, m)
  104. }
  105. dls = &artMdl.DraftList{
  106. DraftURL: s.c.H5Page.Draft,
  107. }
  108. dls.Drafts = ms
  109. dls.Page = res.Page
  110. return
  111. }