package models import ( "database/sql/driver" "errors" "fmt" "regexp" "strconv" "strings" "time" ) type HeartbeatReqTime time.Time type Heartbeat struct { ID uint `gorm:"primary_key"` User *User `json:"-" gorm:"not null"` UserID string `json:"-" gorm:"not null; index:idx_time_user"` Entity string `json:"entity" gorm:"not null: index:idx_entity"` Type string `json:"type"` Category string `json:"category"` Project string `json:"project"` Branch string `json:"branch"` Language string `json:"language" gorm:"index:idx_language"` IsWrite bool `json:"is_write"` Editor string `json:"editor"` OperatingSystem string `json:"operating_system"` Time *HeartbeatReqTime `json:"time" gorm:"type:timestamp; default:now(); index:idx_time,idx_time_user"` languageRegex *regexp.Regexp } func (h *Heartbeat) Valid() bool { return h.User != nil && h.UserID != "" && h.Time != nil } func (h *Heartbeat) Augment(customLangs map[string]string) { if h.Language == "" { if h.languageRegex == nil { h.languageRegex = regexp.MustCompile(`^.+\.(.+)$`) } groups := h.languageRegex.FindAllStringSubmatch(h.Entity, -1) if len(groups) == 0 || len(groups[0]) != 2 { return } ending := groups[0][1] if _, ok := customLangs[ending]; !ok { return } h.Language, _ = customLangs[ending] } } func (j *HeartbeatReqTime) UnmarshalJSON(b []byte) error { s := strings.Split(strings.Trim(string(b), "\""), ".")[0] i, err := strconv.ParseInt(s, 10, 64) if err != nil { return err } t := time.Unix(i, 0) *j = HeartbeatReqTime(t) return nil } func (j *HeartbeatReqTime) Scan(value interface{}) error { switch value.(type) { case int64: *j = HeartbeatReqTime(time.Unix(123456, 0)) break case time.Time: *j = HeartbeatReqTime(value.(time.Time)) break default: return errors.New(fmt.Sprintf("Unsupported type")) } return nil } func (j HeartbeatReqTime) Value() (driver.Value, error) { return time.Time(j), nil } func (j HeartbeatReqTime) String() string { t := time.Time(j) return t.Format("2006-01-02 15:04:05") } func (j HeartbeatReqTime) Time() time.Time { return time.Time(j) }