meta_info.go 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. package message
  2. import (
  3. logger "eta/eta_mini_ht_api/common/component/log"
  4. "eta/eta_mini_ht_api/models"
  5. "gorm.io/gorm"
  6. "time"
  7. )
  8. type StatusType string
  9. type SourceType string
  10. type MetaType string
  11. const (
  12. UserNoticeType MetaType = "USER_NOTICE"
  13. SysUserNoticeType MetaType = "SYS_USER_NOTICE"
  14. InitStatusType StatusType = "INIT"
  15. PendingStatusType StatusType = "PENDING"
  16. FinishStatusType StatusType = "FINISH"
  17. FailedStatusType StatusType = "FAILED"
  18. ReportSourceType SourceType = "REPORT"
  19. VideoSourceType SourceType = "VIDEO"
  20. AudioSourceType SourceType = "AUDIO"
  21. RefundSourceType SourceType = "REFUND"
  22. )
  23. // MetaInfo 表示 meta_infos 表的模型
  24. type MetaInfo struct {
  25. Id int `gorm:"primaryKey;autoIncrement;column:id"`
  26. Meta string `gorm:"column:meta"`
  27. From string `gorm:"column:from"`
  28. To string `gorm:"column:to"`
  29. SourceType SourceType `gorm:"column:source_type;type:enum('REPORT','VIDEO','AUDIO','REFUND')"`
  30. MetaType MetaType `gorm:"column:meta_type;type:enum('USER_NOTICE')"`
  31. Status StatusType `gorm:"column:status;type:enum('INIT','PENDING','FINISH','FAILED')"`
  32. CreatedTime time.Time
  33. UpdatedTime time.Time
  34. }
  35. type MetaData struct {
  36. SourceId int `json:"reportId"`
  37. AuthorId int `json:"AuthorId"`
  38. AuthorName string `json:"authorName"`
  39. PublishedTime string `json:"publishedTime"`
  40. }
  41. type RefundMetaData struct {
  42. Icon string `json:"icon"`
  43. RealName string `json:"realName,omitempty"`
  44. ProductOrderNo string `json:"productOrderNo,omitempty"`
  45. Result string `json:"result,omitempty"`
  46. }
  47. func (mt *MetaInfo) BeforeCreate(_ *gorm.DB) (err error) {
  48. mt.CreatedTime = time.Now()
  49. mt.Status = InitStatusType
  50. return nil
  51. }
  52. func CreateMetaInfo(metaInfo MetaInfo) (err error) {
  53. db := models.Main()
  54. return db.Create(&metaInfo).Error
  55. }
  56. func GetInitMetaInfos() (list []MetaInfo) {
  57. db := models.Main()
  58. err := db.Where("status = ?", InitStatusType).Order("id asc").Limit(100).Find(&list).Error
  59. if err != nil {
  60. logger.Error("获取meta数据失败:%v", err)
  61. return []MetaInfo{}
  62. }
  63. return list
  64. }
  65. func PendingMetaInfo(id int) bool {
  66. return updateStatus(id, PendingStatusType)
  67. }
  68. func FinishMetaInfo(id int) bool {
  69. return updateStatus(id, FinishStatusType)
  70. }
  71. func FailedMetaInfo(id int) bool {
  72. return updateStatus(id, FailedStatusType)
  73. }
  74. func updateStatus(id int, status StatusType) bool {
  75. db := models.Main()
  76. err := db.Model(&MetaInfo{}).Where("id = ?", id).Update("status", status).Error
  77. if err != nil {
  78. logger.Error("更新meta数据失败:%v", err)
  79. return false
  80. }
  81. return true
  82. }