chart.go 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258
  1. package models
  2. import (
  3. "github.com/beego/beego/v2/client/orm"
  4. "github.com/rdlucklib/rdluck_tools/paging"
  5. "time"
  6. )
  7. type ChartResultApi struct {
  8. Data []ChartResultApidate `json:"data"`
  9. Code int `json:"code"`
  10. Msg string `json:"msg"`
  11. }
  12. type ChartFavoritesResultApi struct {
  13. Data []ChartInfo `json:"data"`
  14. Code int `json:"code"`
  15. Msg string `json:"msg"`
  16. Pagination Pagination `json:"pagination"`
  17. }
  18. type Pagination struct {
  19. Total int `json:"total"`
  20. Page int `json:"id"`
  21. PageSize int `json:"page_size"`
  22. PageTotal int `json:"page_total"`
  23. }
  24. type ChartInfo struct {
  25. ChartInfo *ChartResultApidate `json:"chart_info"`
  26. ChartId int `json:"chart_id"`
  27. }
  28. type ChartResultApidate struct {
  29. ChartId int `json:"id"`
  30. PtagId int `json:"ptag_id"`
  31. CtagId int `json:"ctag_id"`
  32. Title string `json:"title"`
  33. TitleEn string `json:"title_en"`
  34. CreateDate string `json:"create_date"`
  35. UpdateDate string `json:"update_date"`
  36. PublishStatus int `json:"publish_status"`
  37. Cover string `json:"cover"`
  38. Iframe string `json:"iframe"`
  39. Ptag Ptag `json:"ptag"`
  40. Ctag Ptag `json:"ctag"`
  41. }
  42. type Ptag struct {
  43. Id int `json:"id"`
  44. Name string `json:"name"`
  45. Description string `json:"description"`
  46. }
  47. type Ctag struct {
  48. Id int `json:"id"`
  49. Name string `json:"name"`
  50. Description string `json:"description"`
  51. PtagId int `json:"ptag_id"`
  52. }
  53. type CygxChart struct {
  54. Id int `orm:"column(id);pk"`
  55. ChartId int `description:"图表id"`
  56. PtagId int `description:"图表父类分类id"`
  57. CtagId int `description:"图表子类分类id"`
  58. Title string `description:"标题"`
  59. TitleEn string `description:"英文标题 "`
  60. CreateDate string `description:"本地创建时间"`
  61. CreateDateApi time.Time `description:"图表创建时间"`
  62. PublishStatus int `description:"发布状态"`
  63. PtagName string `description:"父类名称"`
  64. CtagName string `description:"子类名称"`
  65. Cover string `description:"图表图片"`
  66. Iframe string `description:"图表详情跳转地址"`
  67. }
  68. type CygxChartDetail struct {
  69. ChartId int `description:"图表id"`
  70. Title string `description:"标题"`
  71. TitleEn string `description:"英文标题 "`
  72. IsCollection bool `description:"是否收藏 "`
  73. CollectionNum int `description:"本人收藏数量 "`
  74. HttpUrl string `orm:"column(iframe)";description:"文章链接跳转地址"`
  75. }
  76. func GetChartCountById(chartId int) (count int, err error) {
  77. o := orm.NewOrm()
  78. sql := `SELECT COUNT(1) AS count FROM cygx_chart WHERE chart_id = ? `
  79. err = o.Raw(sql, chartId).QueryRow(&count)
  80. return
  81. }
  82. //新增图表
  83. func AddCygxChart(item *CygxChart) (lastId int64, err error) {
  84. o := orm.NewOrm()
  85. lastId, err = o.Insert(item)
  86. return
  87. }
  88. //标签分类
  89. type ChartPtagResultApi struct {
  90. Data []ChartPtagResultApidate `json:"data"`
  91. Code int `json:"code"`
  92. Msg string `json:"msg"`
  93. }
  94. type ChartPtagResultApidate struct {
  95. ChartPermissionId int `json:"id"`
  96. ChartPermissionName string `json:"name"`
  97. Ctag []Ctag `json:"ctag"`
  98. }
  99. type ChartPtagResp struct {
  100. ChartPermissionId int `description:"分类ID"`
  101. PermissionName string `description:"分类名称"`
  102. List []*CtagResp `description:"子分类"`
  103. }
  104. type CtagResp struct {
  105. CtagId int `description:"子分类ID"`
  106. Name string `description:"子分类名称"`
  107. }
  108. type ChartUserTokenResult struct {
  109. AccessToken string `json:"access_token"`
  110. }
  111. type ChartUserTokenResultApi struct {
  112. Data ChartUserTokenResult `json:"data"`
  113. Code int `json:"code"`
  114. Msg string `json:"msg"`
  115. }
  116. type HomeChartListResp struct {
  117. ChartId int `description:"图表ID"`
  118. Title string `description:"标题"`
  119. TitleEn string `description:"英文标题 "`
  120. CreateDate string `description:"创建时间"`
  121. PtagName string `description:"父类名称"`
  122. CtagName string `description:"子类名称"`
  123. BodyHtml string `orm:"column(cover)";description:"图片链接"`
  124. HttpUrl string `orm:"column(iframe)";description:"文章链接跳转地址"`
  125. IsNeedJump bool `description:"是否需要跳转链接地址"`
  126. IsTop bool `description:"是否置顶"`
  127. NumTop int `description:"置顶数量"`
  128. Source int `description:"来源 1:文章, 2:图表"`
  129. }
  130. type HomeChartListItem struct {
  131. IsBindingMobile bool `description:"是否绑定过手机号"`
  132. Paging *paging.PagingItem
  133. List []*HomeChartListResp `description:"图表列表"`
  134. }
  135. type ChartCollectReq struct {
  136. ChartId int `description:"图表ID"`
  137. }
  138. //获取图表列表
  139. func GetChartList(condition string, pars []interface{}, startSize, pageSize int) (items []*HomeChartListResp, err error) {
  140. o := orm.NewOrm()
  141. sql := ` SELECT * FROM cygx_chart AS a WHERE a.publish_status=1 `
  142. if condition != "" {
  143. sql += condition
  144. }
  145. sql += ` ORDER BY create_date DESC LIMIT ?,? `
  146. _, err = o.Raw(sql, pars, startSize, pageSize).QueryRows(&items)
  147. return
  148. }
  149. ////获取图表列表
  150. //func GetChartCtagIds(ctagId int ) (items []*HomeChartListResp, err error) {
  151. // o := orm.NewOrm()
  152. // sql := ` SELECT * FROM cygx_chart AS a WHERE a.publish_status=1 AND ctag_id = 1 ORDER BY create_date DESC LIMIT 2 `
  153. // _, err = o.Raw(sql,ctagId).QueryRows(&items)
  154. // return
  155. //}
  156. //获取图表列表
  157. func GetChartListCollection(chartIds string, userId, startSize, pageSize int) (items []*HomeChartListResp, err error) {
  158. o := orm.NewOrm()
  159. sql := ` SELECT a.*,
  160. t.create_time AS t_create_time,
  161. c.create_time AS c_create_time,
  162. ( SELECT COUNT(*) FROM cygx_chart_top AS t WHERE t.chart_id = a.chart_id AND t.user_id = ? ) AS num_top,
  163. ( SELECT COUNT(*) FROM cygx_chart_collect AS c WHERE c.chart_id = a.chart_id AND c.user_id = ? ) AS num_c
  164. FROM
  165. cygx_chart AS a
  166. LEFT JOIN cygx_chart_top AS t ON t.chart_id = a.chart_id
  167. LEFT JOIN cygx_chart_collect AS c ON c.chart_id = a.chart_id
  168. WHERE
  169. a.publish_status = 1
  170. AND a.chart_id IN (` + chartIds + `)
  171. GROUP BY
  172. a.chart_id
  173. ORDER BY
  174. t_create_time DESC,
  175. c_create_time DESC LIMIT ?,? `
  176. _, err = o.Raw(sql, userId, userId, startSize, pageSize).QueryRows(&items)
  177. return
  178. }
  179. //获取图表列表本地
  180. func GetChartListCollectionWithCygx(userId, startSize, pageSize int) (items []*HomeChartListResp, err error) {
  181. o := orm.NewOrm()
  182. sql := ` SELECT
  183. a.*,
  184. t.create_time AS t_create_time,
  185. c.create_time AS c_create_time,
  186. ( SELECT COUNT(*) FROM cygx_chart_top AS t WHERE t.chart_id = a.chart_id AND t.user_id = ? ) AS num_top,
  187. ( SELECT COUNT(*) FROM cygx_chart_collect AS c WHERE c.chart_id = a.chart_id AND c.user_id = ? ) AS num_c
  188. FROM
  189. cygx_chart_collect AS c
  190. INNER JOIN cygx_chart AS a ON c.chart_id = a.chart_id
  191. LEFT JOIN cygx_chart_top AS t ON t.chart_id = a.chart_id
  192. WHERE
  193. a.publish_status = 1
  194. AND c.user_id =?
  195. GROUP BY
  196. a.chart_id
  197. ORDER BY
  198. t_create_time DESC,
  199. c_create_time DESC LIMIT ?,? `
  200. _, err = o.Raw(sql, userId, userId, userId, startSize, pageSize).QueryRows(&items)
  201. return
  202. }
  203. func GetChartListConfig() (items []*HomeChartListResp, err error) {
  204. o := orm.NewOrm()
  205. sql := ` SELECT * FROM cygx_chart AS a WHERE a.publish_status=1 AND ctag_id IN (7,8,9,10) GROUP BY ctag_id ORDER BY create_date DESC LIMIT 4 `
  206. _, err = o.Raw(sql).QueryRows(&items)
  207. return
  208. }
  209. //获取图表数量
  210. func GetChartCount(condition string, pars []interface{}) (count int, err error) {
  211. o := orm.NewOrm()
  212. sql := `SELECT COUNT(1) AS count
  213. FROM cygx_chart AS a
  214. WHERE a.publish_status=1 `
  215. if condition != "" {
  216. sql += condition
  217. }
  218. err = o.Raw(sql, pars).QueryRow(&count)
  219. return
  220. }
  221. func GetChartDetailById(chartId, uid int) (item *CygxChartDetail, err error) {
  222. o := orm.NewOrm()
  223. sql := `SELECT * ,( SELECT COUNT( 1 ) FROM cygx_chart_collect AS c WHERE c.chart_id = a.chart_id AND c.user_id = ? ) AS collection_num
  224. FROM
  225. cygx_chart as a
  226. WHERE
  227. a.chart_id =? `
  228. err = o.Raw(sql, uid, chartId).QueryRow(&item)
  229. return
  230. }