article.go 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206
  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. "strconv"
  9. )
  10. // SubArticle submit article.
  11. func (s *Service) SubArticle(c context.Context, mid int64, art *artMdl.ArtParam, ak, ck, ip string) (aid int64, err error) {
  12. identified, _ := s.acc.IdentifyInfo(c, mid, 0, ip)
  13. if err = s.acc.CheckIdentify(identified); err != nil {
  14. log.Error("s.acc.IdentifyInfo mid(%d),ip(%s)", mid, ip)
  15. return
  16. }
  17. aid, err = s.art.AddArticle(c, art)
  18. return
  19. }
  20. // UpdateArticle update article.
  21. func (s *Service) UpdateArticle(c context.Context, mid int64, art *artMdl.ArtParam, ak, ck, ip string) (err error) {
  22. identified, _ := s.acc.IdentifyInfo(c, mid, 0, ip)
  23. if err = s.acc.CheckIdentify(identified); err != nil {
  24. log.Error("s.acc.IdentifyInfo mid(%d),ip(%s)", mid, ip)
  25. return
  26. }
  27. return s.art.UpdateArticle(c, art)
  28. }
  29. // DelArticle delete article.
  30. func (s *Service) DelArticle(c context.Context, aid, mid int64, ip string) (err error) {
  31. if err = s.art.DelArticle(c, aid, mid, ip); err != nil {
  32. log.Error("s.art.DelArticle(%d) error(%v)", aid, err)
  33. return
  34. }
  35. return
  36. }
  37. // View get article detail.
  38. func (s *Service) View(c context.Context, aid, mid int64, ip string) (res *artMdl.Meta, err error) {
  39. var art *article.Article
  40. if art, err = s.art.Article(c, aid, mid, ip); err != nil {
  41. return
  42. }
  43. res = &artMdl.Meta{
  44. ID: art.ID,
  45. Category: art.Category,
  46. Title: art.Title,
  47. Content: art.Content,
  48. Summary: art.Summary,
  49. BannerURL: art.BannerURL,
  50. TemplateID: art.TemplateID,
  51. State: art.State,
  52. Reprint: art.Reprint,
  53. Reason: art.Reason,
  54. PTime: art.PublishTime,
  55. Author: art.Author,
  56. Stats: art.Stats,
  57. CTime: art.Ctime,
  58. MTime: art.Mtime,
  59. DynamicIntro: art.Dynamic,
  60. ImageURLs: art.ImageURLs,
  61. OriginImageURLs: art.OriginImageURLs,
  62. }
  63. if res.ImageURLs == nil {
  64. res.ImageURLs = []string{}
  65. }
  66. if res.OriginImageURLs == nil {
  67. res.OriginImageURLs = []string{}
  68. }
  69. if len(art.Tags) > 0 {
  70. var tags []string
  71. for _, v := range art.Tags {
  72. tags = append(tags, v.Name)
  73. }
  74. res.Tags = tags
  75. }
  76. return
  77. }
  78. // Articles get article list.
  79. func (s *Service) Articles(c context.Context, mid int64, pn, ps, sort, group, category int, ip string) (arts *artMdl.ArtList, err error) {
  80. var res *article.CreationArts
  81. res, err = s.art.Articles(c, mid, pn, ps, sort, group, category, ip)
  82. if err != nil || res == nil || res.Articles == nil || len(res.Articles) <= 0 {
  83. if err != nil {
  84. log.Error("s.art.Articles(%d) res(%v) error(%v)", mid, res, err)
  85. }
  86. return
  87. }
  88. ms := make([]*artMdl.Meta, 0, len(res.Articles))
  89. for _, v := range res.Articles {
  90. id := strconv.FormatInt(v.ID, 10)
  91. m := &artMdl.Meta{
  92. ID: v.ID,
  93. Category: v.Category,
  94. Title: v.Title,
  95. Summary: v.Summary,
  96. BannerURL: v.BannerURL,
  97. TemplateID: v.TemplateID,
  98. State: v.State,
  99. Reprint: v.Reprint,
  100. Reason: v.Reason,
  101. PTime: v.PublishTime,
  102. Author: v.Author,
  103. Stats: v.Stats,
  104. CTime: v.Ctime,
  105. MTime: v.Mtime,
  106. EditURL: "https://member.bilibili.com/article-text/mobile?aid=" + id + "&type=2",
  107. DynamicIntro: v.Dynamic,
  108. ImageURLs: v.ImageURLs,
  109. OriginImageURLs: v.OriginImageURLs,
  110. }
  111. if m.ImageURLs == nil {
  112. m.ImageURLs = []string{}
  113. }
  114. if m.OriginImageURLs == nil {
  115. m.OriginImageURLs = []string{}
  116. }
  117. if m.State == 0 {
  118. m.ViewURL = "https://www.bilibili.com/read/cv" + id
  119. m.IsPreview = 0
  120. } else { //预览
  121. m.ViewURL = "https://www.bilibili.com/read/preview/" + id
  122. m.IsPreview = 1
  123. }
  124. tags := []string{}
  125. m.Tags = tags
  126. if len(v.Tags) > 0 {
  127. for _, vv := range v.Tags {
  128. tags = append(tags, vv.Name)
  129. }
  130. m.Tags = tags
  131. }
  132. ms = append(ms, m)
  133. }
  134. arts = &artMdl.ArtList{}
  135. arts.Articles = ms
  136. arts.Page = res.Page
  137. arts.Type = res.Type
  138. return
  139. }
  140. // Categories get article category.
  141. func (s *Service) Categories(c context.Context) (*article.Categories, error) {
  142. return s.art.Categories(c, "")
  143. }
  144. // WithDrawArticle withdraw article.
  145. func (s *Service) WithDrawArticle(c context.Context, aid, mid int64, ip string) (err error) {
  146. if err = s.art.WithDrawArticle(c, aid, mid, ip); err != nil {
  147. log.Error("s.art.WithdrawArticle(%d,%d) error(%v)", aid, mid, err)
  148. }
  149. return
  150. }
  151. // ArticleUpCover article upload cover.
  152. func (s *Service) ArticleUpCover(c context.Context, fileType string, body []byte) (url string, err error) {
  153. if len(body) == 0 {
  154. err = ecode.FileNotExists
  155. log.Error("s.ArticleUpCover file not exist")
  156. return
  157. }
  158. if len(body) > s.c.BFS.MaxFileSize {
  159. log.Error("s.ArticleUpCover too max file size")
  160. err = ecode.FileTooLarge
  161. return
  162. }
  163. url, err = s.bfs.Upload(c, fileType, body)
  164. if err != nil {
  165. log.Error("s.bfs.Upload error(%v)", err)
  166. }
  167. return
  168. }
  169. // IsAuthor checks that whether user has permission to write article.
  170. func (s *Service) IsAuthor(c context.Context, mid int64, ip string) (ok bool, err error) {
  171. if ok, err = s.art.IsAuthor(c, mid, ip); err != nil {
  172. log.Error("s.art.IsAuthor(%v)", err)
  173. }
  174. return
  175. }
  176. // RemainCount article up limit.
  177. func (s *Service) RemainCount(c context.Context, mid int64, ip string) (rc int, err error) {
  178. rc, err = s.art.RemainCount(c, mid, ip)
  179. return
  180. }
  181. // ArticleCapture article capture.
  182. func (s *Service) ArticleCapture(c context.Context, url string) (loc string, size int, err error) {
  183. loc, size, err = s.bfs.Capture(c, url)
  184. if err != nil {
  185. log.Error("s.bfs.Capture error(%v)", err)
  186. }
  187. return
  188. }
  189. // ArticleStat get article base data.
  190. func (s *Service) ArticleStat(c context.Context, mid int64, ip string) (stat article.UpStat, err error) {
  191. stat, err = s.art.ArticleStat(c, mid, ip)
  192. return
  193. }