2021-12-14 17:30:03 +03:00
|
|
|
|
package models
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"fmt"
|
|
|
|
|
"github.com/emvi/logbuch"
|
|
|
|
|
"github.com/mitchellh/hashstructure/v2"
|
|
|
|
|
"time"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
type Duration struct {
|
|
|
|
|
UserID string `json:"user_id"`
|
|
|
|
|
Time CustomTime `json:"time" hash:"ignore"`
|
|
|
|
|
Duration time.Duration `json:"duration" hash:"ignore"`
|
|
|
|
|
Project string `json:"project"`
|
|
|
|
|
Language string `json:"language"`
|
|
|
|
|
Editor string `json:"editor"`
|
|
|
|
|
OperatingSystem string `json:"operating_system"`
|
|
|
|
|
Machine string `json:"machine"`
|
2022-01-02 15:39:20 +03:00
|
|
|
|
Branch string `json:"branch"`
|
2021-12-22 12:17:05 +03:00
|
|
|
|
NumHeartbeats int `json:"-" hash:"ignore"`
|
2021-12-14 17:30:03 +03:00
|
|
|
|
GroupHash string `json:"-" hash:"ignore"`
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func NewDurationFromHeartbeat(h *Heartbeat) *Duration {
|
|
|
|
|
d := &Duration{
|
|
|
|
|
UserID: h.UserID,
|
|
|
|
|
Time: h.Time,
|
|
|
|
|
Duration: 0,
|
|
|
|
|
Project: h.Project,
|
|
|
|
|
Language: h.Language,
|
|
|
|
|
Editor: h.Editor,
|
|
|
|
|
OperatingSystem: h.OperatingSystem,
|
|
|
|
|
Machine: h.Machine,
|
2022-01-02 15:39:20 +03:00
|
|
|
|
Branch: h.Branch,
|
2021-12-22 12:17:05 +03:00
|
|
|
|
NumHeartbeats: 1,
|
2021-12-14 17:30:03 +03:00
|
|
|
|
}
|
|
|
|
|
return d.Hashed()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (d *Duration) Hashed() *Duration {
|
|
|
|
|
hash, err := hashstructure.Hash(d, hashstructure.FormatV2, nil)
|
|
|
|
|
if err != nil {
|
|
|
|
|
logbuch.Error("CRITICAL ERROR: failed to hash struct – %v", err)
|
|
|
|
|
}
|
|
|
|
|
d.GroupHash = fmt.Sprintf("%x", hash)
|
|
|
|
|
return d
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (d *Duration) GetKey(t uint8) (key string) {
|
|
|
|
|
switch t {
|
|
|
|
|
case SummaryProject:
|
|
|
|
|
key = d.Project
|
|
|
|
|
case SummaryEditor:
|
|
|
|
|
key = d.Editor
|
|
|
|
|
case SummaryLanguage:
|
|
|
|
|
key = d.Language
|
|
|
|
|
case SummaryOS:
|
|
|
|
|
key = d.OperatingSystem
|
|
|
|
|
case SummaryMachine:
|
|
|
|
|
key = d.Machine
|
2022-01-02 15:39:20 +03:00
|
|
|
|
case SummaryBranch:
|
|
|
|
|
key = d.Branch
|
2021-12-14 17:30:03 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if key == "" {
|
|
|
|
|
key = UnknownSummaryKey
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return key
|
|
|
|
|
}
|