meta_info.go 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. package user
  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. InitStatusType StatusType = "INIT"
  14. PendingStatusType StatusType = "PENDING"
  15. FinishStatusType StatusType = "FINISH"
  16. FailedStatusType StatusType = "FAILED"
  17. ReportSourceType SourceType = "REPORT"
  18. VideoSourceType SourceType = "VIDEO"
  19. AudioSourceType SourceType = "AUDIO"
  20. )
  21. // MetaInfo 表示 meta_infos 表的模型
  22. type MetaInfo struct {
  23. Id int `gorm:"primaryKey;autoIncrement;column:id"`
  24. Uid string `gorm:"column:uid"`
  25. Meta string `gorm:"column:meta"`
  26. From string `gorm:"column:from"`
  27. To string `gorm:"column:to"`
  28. SourceType SourceType `gorm:"column:source_type;type:enum('REPORT','VIDEO','AUDIO')"`
  29. MetaType MetaType `gorm:"column:meta_type;type:enum('USER_NOTICE')"`
  30. Status StatusType `gorm:"column:status;type:enum('INIT','PENDING','FINISH','FAILED')"`
  31. CreatedTime time.Time
  32. UpdatedTime time.Time
  33. }
  34. func (mt *MetaInfo) BeforeCreate(_ *gorm.DB) (err error) {
  35. mt.CreatedTime = time.Now()
  36. mt.Status = InitStatusType
  37. return nil
  38. }
  39. func CreateMetaInfo(metaInfo MetaInfo) (err error) {
  40. db := models.Main()
  41. return db.Create(&metaInfo).Error
  42. }
  43. func GetInitMetaInfos() (list []MetaInfo) {
  44. db := models.Main()
  45. err := db.Where("status = ?", InitStatusType).Order("id asc").Limit(100).Find(&list).Error
  46. if err != nil {
  47. logger.Error("获取meta数据失败:%v", err)
  48. return []MetaInfo{}
  49. }
  50. return list
  51. }