blob: 813d09b7906f922edff2256070f102d39bbcdaf8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
package cmdjson
import (
"time"
"github.com/git-bug/git-bug/cache"
"github.com/git-bug/git-bug/entities/identity"
"github.com/git-bug/git-bug/util/lamport"
)
type Identity struct {
Id string `json:"id"`
HumanId string `json:"human_id"`
Name string `json:"name"`
Login string `json:"login"`
}
func NewIdentity(i identity.Interface) Identity {
return Identity{
Id: i.Id().String(),
HumanId: i.Id().Human(),
Name: i.Name(),
Login: i.Login(),
}
}
func NewIdentityFromExcerpt(excerpt *cache.IdentityExcerpt) Identity {
return Identity{
Id: excerpt.Id().String(),
HumanId: excerpt.Id().Human(),
Name: excerpt.Name,
Login: excerpt.Login,
}
}
type Time struct {
Timestamp int64 `json:"timestamp"`
Time time.Time `json:"time"`
Lamport lamport.Time `json:"lamport,omitempty"`
}
func NewTime(t time.Time, l lamport.Time) Time {
return Time{
Timestamp: t.Unix(),
Time: t,
Lamport: l,
}
}
|