user_source_click_flow.go 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. package models
  2. import (
  3. "fmt"
  4. "github.com/beego/beego/v2/client/orm"
  5. "time"
  6. )
  7. var (
  8. SourceTypeMap = map[SourceType]string{
  9. ReportSourceType: "报告",
  10. VideoSourceType: "视频",
  11. AudioSourceType: "音频",
  12. }
  13. )
  14. type UserSourceClickFlow struct {
  15. Id int
  16. TraceId string
  17. UseId int
  18. Mobile string
  19. SourceId int
  20. SourceType SourceType
  21. ClickTime time.Time
  22. ReadDurationSeconds int64
  23. IpAddress string
  24. Hidden int
  25. Location string
  26. Referer string
  27. AdditionalData string
  28. }
  29. func (m *UserSourceClickFlow) ToView() UserSourceClickFlowView {
  30. return UserSourceClickFlowView{
  31. ClickTime: m.ClickTime.Format(time.DateTime),
  32. SourceId: m.SourceId,
  33. SourceName: getSourceName(m.SourceType),
  34. ReadDurationMinutes: parseMinutes(m.ReadDurationSeconds),
  35. }
  36. }
  37. func getSourceName(sourceType SourceType) string {
  38. return SourceTypeMap[sourceType]
  39. }
  40. func parseMinutes(seconds int64) string {
  41. minutesPart := seconds / 60
  42. secondsPart := seconds % 60
  43. return fmt.Sprintf("%d分%02d秒", minutesPart, secondsPart)
  44. }
  45. type UserSourceClickFlowView struct {
  46. SourceId int
  47. SourceName string
  48. PermissionNames string
  49. ClickTime string
  50. ReadDurationMinutes string
  51. }
  52. func GetUserSourceClickFlowListByUserId(userId int, condition string, pars []interface{}, startSize, pageSize int) (items []*UserSourceClickFlow, err error) {
  53. o := orm.NewOrm()
  54. sql := `SELECT * FROM user_source_click_flows WHERE user_id=? ` + condition +
  55. ` ORDER BY click_time DESC LIMIT ?,?`
  56. _, err = o.Raw(sql, userId, pars, startSize, pageSize).QueryRows(&items)
  57. return
  58. }
  59. func GetUserSourceClickFlowListCountByUserId(userId int, condition string, pars []interface{}) (total int, err error) {
  60. o := orm.NewOrm()
  61. sql := `SELECT count(*) FROM user_source_click_flows WHERE user_id=? ` + condition
  62. err = o.Raw(sql, userId, pars).QueryRow(&total)
  63. return
  64. }