mirror of
https://github.com/MichaelMure/git-bug.git
synced 2024-12-14 17:51:44 +03:00
47 lines
956 B
Go
47 lines
956 B
Go
package bug
|
|
|
|
import (
|
|
"fmt"
|
|
"github.com/dustin/go-humanize"
|
|
"time"
|
|
)
|
|
|
|
// Snapshot is a compiled form of the Bug data structure used for storage and merge
|
|
type Snapshot struct {
|
|
id string
|
|
|
|
Status Status `json:"status"`
|
|
Title string `json:"title"`
|
|
Comments []Comment `json:"comments"`
|
|
Labels []Label `json:"labels"`
|
|
|
|
Operations []Operation
|
|
}
|
|
|
|
// Return the Bug identifier
|
|
func (snap Snapshot) Id() string {
|
|
return snap.id
|
|
}
|
|
|
|
// Return the Bug identifier truncated for human consumption
|
|
func (snap Snapshot) HumanId() string {
|
|
return fmt.Sprintf("%.8s", snap.id)
|
|
}
|
|
|
|
func (snap Snapshot) Summary() string {
|
|
return fmt.Sprintf("C:%d L:%d %s",
|
|
len(snap.Comments)-1,
|
|
len(snap.Labels),
|
|
humanize.Time(snap.LastEdit()),
|
|
)
|
|
}
|
|
|
|
// Return the last time a bug was modified
|
|
func (snap Snapshot) LastEdit() time.Time {
|
|
if len(snap.Operations) == 0 {
|
|
return time.Unix(0, 0)
|
|
}
|
|
|
|
return snap.Operations[len(snap.Operations)-1].Time()
|
|
}
|