git-bug/bug/comment.go

45 lines
1.1 KiB
Go
Raw Normal View History

package bug
2018-07-19 19:10:45 +03:00
import (
"github.com/dustin/go-humanize"
"github.com/MichaelMure/git-bug/entity"
2018-11-21 20:56:12 +03:00
"github.com/MichaelMure/git-bug/identity"
"github.com/MichaelMure/git-bug/repository"
"github.com/MichaelMure/git-bug/util/timestamp"
2018-07-19 19:10:45 +03:00
)
2018-07-17 21:51:09 +03:00
2018-08-13 16:28:16 +03:00
// Comment represent a comment in a Bug
type Comment struct {
id entity.Id
2018-11-21 20:56:12 +03:00
Author identity.Interface
2018-08-01 03:15:40 +03:00
Message string
Files []repository.Hash
2018-07-14 23:18:40 +03:00
// Creation time of the comment.
// Should be used only for human display, never for ordering as we can't rely on it in a distributed system.
UnixTime timestamp.Timestamp
}
2018-07-17 21:51:09 +03:00
// Id return the Comment identifier
func (c Comment) Id() entity.Id {
if c.id == "" {
// simply panic as it would be a coding error
// (using an id of an identity not stored yet)
panic("no id yet")
}
return c.id
}
// FormatTimeRel format the UnixTime of the comment for human consumption
func (c Comment) FormatTimeRel() string {
2018-09-30 12:00:39 +03:00
return humanize.Time(c.UnixTime.Time())
2018-07-17 21:51:09 +03:00
}
func (c Comment) FormatTime() string {
2018-09-30 12:00:39 +03:00
return c.UnixTime.Time().Format("Mon Jan 2 15:04:05 2006 +0200")
}
2018-12-23 19:11:37 +03:00
// Sign post method for gqlgen
func (c Comment) IsAuthored() {}