2018-11-21 20:56:12 +03:00
|
|
|
// Package identity contains the identity data model and low-level related functions
|
|
|
|
package identity
|
|
|
|
|
|
|
|
import (
|
2019-01-16 23:23:49 +03:00
|
|
|
"encoding/json"
|
2018-11-21 20:56:12 +03:00
|
|
|
"fmt"
|
2019-02-23 15:01:46 +03:00
|
|
|
"os"
|
2019-02-03 21:55:35 +03:00
|
|
|
"strings"
|
2019-02-19 02:19:27 +03:00
|
|
|
"time"
|
2019-02-03 21:55:35 +03:00
|
|
|
|
|
|
|
"github.com/pkg/errors"
|
2018-11-21 20:56:12 +03:00
|
|
|
|
|
|
|
"github.com/MichaelMure/git-bug/repository"
|
|
|
|
"github.com/MichaelMure/git-bug/util/git"
|
|
|
|
"github.com/MichaelMure/git-bug/util/lamport"
|
2019-06-04 01:40:32 +03:00
|
|
|
"github.com/MichaelMure/git-bug/util/timestamp"
|
2018-11-21 20:56:12 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
const identityRefPattern = "refs/identities/"
|
2019-02-03 21:55:35 +03:00
|
|
|
const identityRemoteRefPattern = "refs/remotes/%s/identities/"
|
2018-11-21 20:56:12 +03:00
|
|
|
const versionEntryName = "version"
|
|
|
|
const identityConfigKey = "git-bug.identity"
|
|
|
|
|
2019-02-24 16:17:52 +03:00
|
|
|
const idLength = 40
|
|
|
|
const humanIdLength = 7
|
|
|
|
|
2019-02-16 15:48:46 +03:00
|
|
|
var ErrNonFastForwardMerge = errors.New("non fast-forward identity merge")
|
2019-03-27 23:54:58 +03:00
|
|
|
var ErrNoIdentitySet = errors.New("to interact with bugs, an identity first needs to be created using \"git bug user create\" or \"git bug user adopt\"")
|
2019-02-23 15:01:46 +03:00
|
|
|
var ErrMultipleIdentitiesSet = errors.New("multiple user identities set")
|
2019-02-16 15:48:46 +03:00
|
|
|
|
2019-01-19 18:01:06 +03:00
|
|
|
var _ Interface = &Identity{}
|
|
|
|
|
2018-11-21 20:56:12 +03:00
|
|
|
type Identity struct {
|
2019-02-07 00:06:42 +03:00
|
|
|
// Id used as unique identifier
|
|
|
|
id string
|
|
|
|
|
|
|
|
// all the successive version of the identity
|
|
|
|
versions []*Version
|
2019-02-25 01:05:03 +03:00
|
|
|
|
|
|
|
// not serialized
|
|
|
|
lastCommit git.Hash
|
2018-11-21 20:56:12 +03:00
|
|
|
}
|
|
|
|
|
2019-01-17 04:05:50 +03:00
|
|
|
func NewIdentity(name string, email string) *Identity {
|
2018-11-21 20:56:12 +03:00
|
|
|
return &Identity{
|
2019-02-07 00:06:42 +03:00
|
|
|
versions: []*Version{
|
2018-11-21 20:56:12 +03:00
|
|
|
{
|
2019-02-07 00:06:42 +03:00
|
|
|
name: name,
|
|
|
|
email: email,
|
|
|
|
nonce: makeNonce(20),
|
2018-11-21 20:56:12 +03:00
|
|
|
},
|
|
|
|
},
|
2019-01-17 04:05:50 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewIdentityFull(name string, email string, login string, avatarUrl string) *Identity {
|
|
|
|
return &Identity{
|
2019-02-07 00:06:42 +03:00
|
|
|
versions: []*Version{
|
2019-01-17 04:05:50 +03:00
|
|
|
{
|
2019-02-07 00:06:42 +03:00
|
|
|
name: name,
|
|
|
|
email: email,
|
|
|
|
login: login,
|
|
|
|
avatarURL: avatarUrl,
|
|
|
|
nonce: makeNonce(20),
|
2019-01-17 04:05:50 +03:00
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
2018-11-21 20:56:12 +03:00
|
|
|
}
|
|
|
|
|
2019-01-16 23:23:49 +03:00
|
|
|
// MarshalJSON will only serialize the id
|
|
|
|
func (i *Identity) MarshalJSON() ([]byte, error) {
|
2019-02-01 14:22:00 +03:00
|
|
|
return json.Marshal(&IdentityStub{
|
|
|
|
id: i.Id(),
|
2019-01-16 23:23:49 +03:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
// UnmarshalJSON will only read the id
|
|
|
|
// Users of this package are expected to run Load() to load
|
|
|
|
// the remaining data from the identities data in git.
|
|
|
|
func (i *Identity) UnmarshalJSON(data []byte) error {
|
2019-02-01 14:22:00 +03:00
|
|
|
panic("identity should be loaded with identity.UnmarshalJSON")
|
2019-01-16 23:23:49 +03:00
|
|
|
}
|
|
|
|
|
2019-02-03 21:55:35 +03:00
|
|
|
// ReadLocal load a local Identity from the identities data available in git
|
|
|
|
func ReadLocal(repo repository.Repo, id string) (*Identity, error) {
|
2019-02-01 14:22:00 +03:00
|
|
|
ref := fmt.Sprintf("%s%s", identityRefPattern, id)
|
2019-02-03 21:55:35 +03:00
|
|
|
return read(repo, ref)
|
|
|
|
}
|
|
|
|
|
|
|
|
// ReadRemote load a remote Identity from the identities data available in git
|
|
|
|
func ReadRemote(repo repository.Repo, remote string, id string) (*Identity, error) {
|
|
|
|
ref := fmt.Sprintf(identityRemoteRefPattern, remote) + id
|
|
|
|
return read(repo, ref)
|
|
|
|
}
|
|
|
|
|
2019-02-19 01:16:47 +03:00
|
|
|
// read will load and parse an identity from git
|
2019-02-03 21:55:35 +03:00
|
|
|
func read(repo repository.Repo, ref string) (*Identity, error) {
|
|
|
|
refSplit := strings.Split(ref, "/")
|
|
|
|
id := refSplit[len(refSplit)-1]
|
2019-01-16 23:23:49 +03:00
|
|
|
|
2019-02-24 16:17:52 +03:00
|
|
|
if len(id) != idLength {
|
|
|
|
return nil, fmt.Errorf("invalid ref length")
|
|
|
|
}
|
|
|
|
|
2019-01-16 23:23:49 +03:00
|
|
|
hashes, err := repo.ListCommits(ref)
|
|
|
|
|
|
|
|
// TODO: this is not perfect, it might be a command invoke error
|
|
|
|
if err != nil {
|
2019-02-01 14:22:00 +03:00
|
|
|
return nil, ErrIdentityNotExist
|
2019-01-16 23:23:49 +03:00
|
|
|
}
|
|
|
|
|
2019-02-07 00:06:42 +03:00
|
|
|
i := &Identity{
|
|
|
|
id: id,
|
|
|
|
}
|
|
|
|
|
2019-01-16 23:23:49 +03:00
|
|
|
for _, hash := range hashes {
|
|
|
|
entries, err := repo.ListEntries(hash)
|
|
|
|
if err != nil {
|
2019-02-01 14:22:00 +03:00
|
|
|
return nil, errors.Wrap(err, "can't list git tree entries")
|
2019-01-16 23:23:49 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
if len(entries) != 1 {
|
2019-02-01 14:22:00 +03:00
|
|
|
return nil, fmt.Errorf("invalid identity data at hash %s", hash)
|
2019-01-16 23:23:49 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
entry := entries[0]
|
|
|
|
|
|
|
|
if entry.Name != versionEntryName {
|
2019-02-01 14:22:00 +03:00
|
|
|
return nil, fmt.Errorf("invalid identity data at hash %s", hash)
|
2019-01-16 23:23:49 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
data, err := repo.ReadData(entry.Hash)
|
|
|
|
if err != nil {
|
2019-02-01 14:22:00 +03:00
|
|
|
return nil, errors.Wrap(err, "failed to read git blob data")
|
2019-01-16 23:23:49 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
var version Version
|
|
|
|
err = json.Unmarshal(data, &version)
|
|
|
|
|
|
|
|
if err != nil {
|
2019-02-01 14:22:00 +03:00
|
|
|
return nil, errors.Wrapf(err, "failed to decode Identity version json %s", hash)
|
2019-01-16 23:23:49 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// tag the version with the commit hash
|
|
|
|
version.commitHash = hash
|
2019-02-07 00:06:42 +03:00
|
|
|
i.lastCommit = hash
|
2019-01-16 23:23:49 +03:00
|
|
|
|
2019-02-07 00:06:42 +03:00
|
|
|
i.versions = append(i.versions, &version)
|
2019-01-16 23:23:49 +03:00
|
|
|
}
|
|
|
|
|
2019-02-07 00:06:42 +03:00
|
|
|
return i, nil
|
2018-11-21 20:56:12 +03:00
|
|
|
}
|
|
|
|
|
2019-02-16 15:48:46 +03:00
|
|
|
type StreamedIdentity struct {
|
|
|
|
Identity *Identity
|
|
|
|
Err error
|
|
|
|
}
|
|
|
|
|
|
|
|
// ReadAllLocalIdentities read and parse all local Identity
|
|
|
|
func ReadAllLocalIdentities(repo repository.ClockedRepo) <-chan StreamedIdentity {
|
|
|
|
return readAllIdentities(repo, identityRefPattern)
|
|
|
|
}
|
|
|
|
|
|
|
|
// ReadAllRemoteIdentities read and parse all remote Identity for a given remote
|
|
|
|
func ReadAllRemoteIdentities(repo repository.ClockedRepo, remote string) <-chan StreamedIdentity {
|
|
|
|
refPrefix := fmt.Sprintf(identityRemoteRefPattern, remote)
|
|
|
|
return readAllIdentities(repo, refPrefix)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Read and parse all available bug with a given ref prefix
|
|
|
|
func readAllIdentities(repo repository.ClockedRepo, refPrefix string) <-chan StreamedIdentity {
|
|
|
|
out := make(chan StreamedIdentity)
|
|
|
|
|
|
|
|
go func() {
|
|
|
|
defer close(out)
|
|
|
|
|
|
|
|
refs, err := repo.ListRefs(refPrefix)
|
|
|
|
if err != nil {
|
|
|
|
out <- StreamedIdentity{Err: err}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, ref := range refs {
|
|
|
|
b, err := read(repo, ref)
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
out <- StreamedIdentity{Err: err}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
out <- StreamedIdentity{Identity: b}
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
|
|
|
return out
|
|
|
|
}
|
|
|
|
|
2018-11-21 20:56:12 +03:00
|
|
|
// NewFromGitUser will query the repository for user detail and
|
|
|
|
// build the corresponding Identity
|
2019-01-16 23:23:49 +03:00
|
|
|
func NewFromGitUser(repo repository.Repo) (*Identity, error) {
|
2018-11-21 20:56:12 +03:00
|
|
|
name, err := repo.GetUserName()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
if name == "" {
|
2019-01-16 23:23:49 +03:00
|
|
|
return nil, errors.New("user name is not configured in git yet. Please use `git config --global user.name \"John Doe\"`")
|
2018-11-21 20:56:12 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
email, err := repo.GetUserEmail()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
if email == "" {
|
2019-01-16 23:23:49 +03:00
|
|
|
return nil, errors.New("user name is not configured in git yet. Please use `git config --global user.email johndoe@example.com`")
|
2018-11-21 20:56:12 +03:00
|
|
|
}
|
|
|
|
|
2019-01-17 04:05:50 +03:00
|
|
|
return NewIdentity(name, email), nil
|
2019-01-16 23:23:49 +03:00
|
|
|
}
|
2018-11-21 20:56:12 +03:00
|
|
|
|
2019-02-17 18:12:06 +03:00
|
|
|
// IsUserIdentitySet tell if the user identity is correctly set.
|
|
|
|
func IsUserIdentitySet(repo repository.RepoCommon) (bool, error) {
|
|
|
|
configs, err := repo.ReadConfigs(identityConfigKey)
|
|
|
|
if err != nil {
|
|
|
|
return false, err
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(configs) > 1 {
|
2019-02-23 15:01:46 +03:00
|
|
|
return false, ErrMultipleIdentitiesSet
|
2019-02-17 18:12:06 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
return len(configs) == 1, nil
|
|
|
|
}
|
|
|
|
|
2019-01-20 17:41:27 +03:00
|
|
|
// SetUserIdentity store the user identity's id in the git config
|
2019-02-17 18:12:06 +03:00
|
|
|
func SetUserIdentity(repo repository.RepoCommon, identity *Identity) error {
|
2018-11-21 20:56:12 +03:00
|
|
|
return repo.StoreConfig(identityConfigKey, identity.Id())
|
|
|
|
}
|
|
|
|
|
2019-01-20 17:41:27 +03:00
|
|
|
// GetUserIdentity read the current user identity, set with a git config entry
|
|
|
|
func GetUserIdentity(repo repository.Repo) (*Identity, error) {
|
2018-11-21 20:56:12 +03:00
|
|
|
configs, err := repo.ReadConfigs(identityConfigKey)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(configs) == 0 {
|
2019-02-23 15:01:46 +03:00
|
|
|
return nil, ErrNoIdentitySet
|
2018-11-21 20:56:12 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
if len(configs) > 1 {
|
2019-02-23 15:01:46 +03:00
|
|
|
return nil, ErrMultipleIdentitiesSet
|
2018-11-21 20:56:12 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
var id string
|
|
|
|
for _, val := range configs {
|
|
|
|
id = val
|
|
|
|
}
|
|
|
|
|
2019-02-23 15:01:46 +03:00
|
|
|
i, err := ReadLocal(repo, id)
|
|
|
|
if err == ErrIdentityNotExist {
|
|
|
|
innerErr := repo.RmConfigs(identityConfigKey)
|
|
|
|
if innerErr != nil {
|
|
|
|
_, _ = fmt.Fprintln(os.Stderr, errors.Wrap(innerErr, "can't clear user identity").Error())
|
|
|
|
}
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return i, nil
|
2018-11-21 20:56:12 +03:00
|
|
|
}
|
|
|
|
|
2019-01-17 04:05:50 +03:00
|
|
|
func (i *Identity) AddVersion(version *Version) {
|
2019-02-07 00:06:42 +03:00
|
|
|
i.versions = append(i.versions, version)
|
2018-11-21 20:56:12 +03:00
|
|
|
}
|
|
|
|
|
2019-01-19 21:23:31 +03:00
|
|
|
// Write the identity into the Repository. In particular, this ensure that
|
|
|
|
// the Id is properly set.
|
2019-02-19 02:19:27 +03:00
|
|
|
func (i *Identity) Commit(repo repository.ClockedRepo) error {
|
|
|
|
// Todo: check for mismatch between memory and commit data
|
2018-11-21 20:56:12 +03:00
|
|
|
|
2019-02-16 19:32:30 +03:00
|
|
|
if !i.NeedCommit() {
|
2019-02-16 15:48:46 +03:00
|
|
|
return fmt.Errorf("can't commit an identity with no pending version")
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := i.Validate(); err != nil {
|
|
|
|
return errors.Wrap(err, "can't commit an identity with invalid data")
|
|
|
|
}
|
|
|
|
|
2019-02-07 00:06:42 +03:00
|
|
|
for _, v := range i.versions {
|
2018-11-21 20:56:12 +03:00
|
|
|
if v.commitHash != "" {
|
2019-02-07 00:06:42 +03:00
|
|
|
i.lastCommit = v.commitHash
|
2019-02-19 02:19:27 +03:00
|
|
|
// ignore already commit versions
|
2018-11-21 20:56:12 +03:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2019-02-19 02:19:27 +03:00
|
|
|
// get the times where new versions starts to be valid
|
|
|
|
v.time = repo.EditTime()
|
|
|
|
v.unixTime = time.Now().Unix()
|
|
|
|
|
2018-11-21 20:56:12 +03:00
|
|
|
blobHash, err := v.Write(repo)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Make a git tree referencing the blob
|
|
|
|
tree := []repository.TreeEntry{
|
|
|
|
{ObjectType: repository.Blob, Hash: blobHash, Name: versionEntryName},
|
|
|
|
}
|
|
|
|
|
|
|
|
treeHash, err := repo.StoreTree(tree)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
var commitHash git.Hash
|
2019-02-07 00:06:42 +03:00
|
|
|
if i.lastCommit != "" {
|
|
|
|
commitHash, err = repo.StoreCommitWithParent(treeHash, i.lastCommit)
|
2018-11-21 20:56:12 +03:00
|
|
|
} else {
|
|
|
|
commitHash, err = repo.StoreCommit(treeHash)
|
|
|
|
}
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2019-02-07 00:06:42 +03:00
|
|
|
i.lastCommit = commitHash
|
|
|
|
v.commitHash = commitHash
|
2018-11-21 20:56:12 +03:00
|
|
|
|
|
|
|
// if it was the first commit, use the commit hash as the Identity id
|
|
|
|
if i.id == "" {
|
|
|
|
i.id = string(commitHash)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if i.id == "" {
|
|
|
|
panic("identity with no id")
|
|
|
|
}
|
|
|
|
|
|
|
|
ref := fmt.Sprintf("%s%s", identityRefPattern, i.id)
|
2019-02-07 00:06:42 +03:00
|
|
|
err := repo.UpdateRef(ref, i.lastCommit)
|
2018-11-21 20:56:12 +03:00
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2019-02-19 02:19:27 +03:00
|
|
|
func (i *Identity) CommitAsNeeded(repo repository.ClockedRepo) error {
|
2019-02-16 19:32:30 +03:00
|
|
|
if !i.NeedCommit() {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return i.Commit(repo)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (i *Identity) NeedCommit() bool {
|
|
|
|
for _, v := range i.versions {
|
|
|
|
if v.commitHash == "" {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2019-02-07 00:06:42 +03:00
|
|
|
// Merge will merge a different version of the same Identity
|
|
|
|
//
|
|
|
|
// To make sure that an Identity history can't be altered, a strict fast-forward
|
|
|
|
// only policy is applied here. As an Identity should be tied to a single user, this
|
|
|
|
// should work in practice but it does leave a possibility that a user would edit his
|
|
|
|
// Identity from two different repo concurrently and push the changes in a non-centralized
|
|
|
|
// network of repositories. In this case, it would result in some of the repo accepting one
|
|
|
|
// version and some other accepting another, preventing the network in general to converge
|
|
|
|
// to the same result. This would create a sort of partition of the network, and manual
|
|
|
|
// cleaning would be required.
|
|
|
|
//
|
|
|
|
// An alternative approach would be to have a determinist rebase:
|
|
|
|
// - any commits present in both local and remote version would be kept, never changed.
|
|
|
|
// - newer commits would be merged in a linear chain of commits, ordered based on the
|
|
|
|
// Lamport time
|
|
|
|
//
|
|
|
|
// However, this approach leave the possibility, in the case of a compromised crypto keys,
|
|
|
|
// of forging a new version with a bogus Lamport time to be inserted before a legit version,
|
|
|
|
// invalidating the correct version and hijacking the Identity. There would only be a short
|
|
|
|
// period of time where this would be possible (before the network converge) but I'm not
|
|
|
|
// confident enough to implement that. I choose the strict fast-forward only approach,
|
|
|
|
// despite it's potential problem with two different version as mentioned above.
|
|
|
|
func (i *Identity) Merge(repo repository.Repo, other *Identity) (bool, error) {
|
|
|
|
if i.id != other.id {
|
|
|
|
return false, errors.New("merging unrelated identities is not supported")
|
|
|
|
}
|
|
|
|
|
|
|
|
if i.lastCommit == "" || other.lastCommit == "" {
|
|
|
|
return false, errors.New("can't merge identities that has never been stored")
|
|
|
|
}
|
|
|
|
|
|
|
|
modified := false
|
|
|
|
for j, otherVersion := range other.versions {
|
|
|
|
// if there is more version in other, take them
|
|
|
|
if len(i.versions) == j {
|
|
|
|
i.versions = append(i.versions, otherVersion)
|
|
|
|
i.lastCommit = otherVersion.commitHash
|
|
|
|
modified = true
|
|
|
|
}
|
|
|
|
|
|
|
|
// we have a non fast-forward merge.
|
|
|
|
// as explained in the doc above, refusing to merge
|
|
|
|
if i.versions[j].commitHash != otherVersion.commitHash {
|
2019-02-16 15:48:46 +03:00
|
|
|
return false, ErrNonFastForwardMerge
|
2019-02-07 00:06:42 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if modified {
|
|
|
|
err := repo.UpdateRef(identityRefPattern+i.id, i.lastCommit)
|
|
|
|
if err != nil {
|
|
|
|
return false, err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false, nil
|
|
|
|
}
|
|
|
|
|
2018-11-21 20:56:12 +03:00
|
|
|
// Validate check if the Identity data is valid
|
|
|
|
func (i *Identity) Validate() error {
|
|
|
|
lastTime := lamport.Time(0)
|
|
|
|
|
2019-02-16 19:32:30 +03:00
|
|
|
if len(i.versions) == 0 {
|
|
|
|
return fmt.Errorf("no version")
|
|
|
|
}
|
|
|
|
|
2019-02-07 00:06:42 +03:00
|
|
|
for _, v := range i.versions {
|
2018-11-21 20:56:12 +03:00
|
|
|
if err := v.Validate(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2019-02-19 03:44:21 +03:00
|
|
|
if v.commitHash != "" && v.time < lastTime {
|
2019-02-07 00:06:42 +03:00
|
|
|
return fmt.Errorf("non-chronological version (%d --> %d)", lastTime, v.time)
|
2018-11-21 20:56:12 +03:00
|
|
|
}
|
|
|
|
|
2019-02-07 00:06:42 +03:00
|
|
|
lastTime = v.time
|
2018-11-21 20:56:12 +03:00
|
|
|
}
|
|
|
|
|
2019-02-16 19:32:30 +03:00
|
|
|
// The identity ID should be the hash of the first commit
|
|
|
|
if i.versions[0].commitHash != "" && string(i.versions[0].commitHash) != i.id {
|
|
|
|
return fmt.Errorf("identity id should be the first commit hash")
|
|
|
|
}
|
|
|
|
|
2018-11-21 20:56:12 +03:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2019-01-17 04:05:50 +03:00
|
|
|
func (i *Identity) lastVersion() *Version {
|
2019-02-07 00:06:42 +03:00
|
|
|
if len(i.versions) <= 0 {
|
2018-11-21 20:56:12 +03:00
|
|
|
panic("no version at all")
|
|
|
|
}
|
|
|
|
|
2019-02-07 00:06:42 +03:00
|
|
|
return i.versions[len(i.versions)-1]
|
2018-11-21 20:56:12 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// Id return the Identity identifier
|
|
|
|
func (i *Identity) Id() string {
|
|
|
|
if i.id == "" {
|
|
|
|
// simply panic as it would be a coding error
|
|
|
|
// (using an id of an identity not stored yet)
|
|
|
|
panic("no id yet")
|
|
|
|
}
|
|
|
|
return i.id
|
|
|
|
}
|
|
|
|
|
2019-02-24 16:17:52 +03:00
|
|
|
// HumanId return the Identity identifier truncated for human consumption
|
|
|
|
func (i *Identity) HumanId() string {
|
|
|
|
return FormatHumanID(i.Id())
|
|
|
|
}
|
|
|
|
|
|
|
|
func FormatHumanID(id string) string {
|
|
|
|
format := fmt.Sprintf("%%.%ds", humanIdLength)
|
|
|
|
return fmt.Sprintf(format, id)
|
|
|
|
}
|
|
|
|
|
2018-11-21 20:56:12 +03:00
|
|
|
// Name return the last version of the name
|
|
|
|
func (i *Identity) Name() string {
|
2019-02-07 00:06:42 +03:00
|
|
|
return i.lastVersion().name
|
2018-11-21 20:56:12 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// Email return the last version of the email
|
|
|
|
func (i *Identity) Email() string {
|
2019-02-07 00:06:42 +03:00
|
|
|
return i.lastVersion().email
|
2018-11-21 20:56:12 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// Login return the last version of the login
|
|
|
|
func (i *Identity) Login() string {
|
2019-02-07 00:06:42 +03:00
|
|
|
return i.lastVersion().login
|
2018-11-21 20:56:12 +03:00
|
|
|
}
|
|
|
|
|
2019-02-07 00:06:42 +03:00
|
|
|
// AvatarUrl return the last version of the Avatar URL
|
2018-11-21 20:56:12 +03:00
|
|
|
func (i *Identity) AvatarUrl() string {
|
2019-02-07 00:06:42 +03:00
|
|
|
return i.lastVersion().avatarURL
|
2018-11-21 20:56:12 +03:00
|
|
|
}
|
|
|
|
|
2019-02-07 00:06:42 +03:00
|
|
|
// Keys return the last version of the valid keys
|
2018-11-21 20:56:12 +03:00
|
|
|
func (i *Identity) Keys() []Key {
|
2019-02-07 00:06:42 +03:00
|
|
|
return i.lastVersion().keys
|
2018-11-21 20:56:12 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// ValidKeysAtTime return the set of keys valid at a given lamport time
|
|
|
|
func (i *Identity) ValidKeysAtTime(time lamport.Time) []Key {
|
|
|
|
var result []Key
|
|
|
|
|
2019-02-07 00:06:42 +03:00
|
|
|
for _, v := range i.versions {
|
|
|
|
if v.time > time {
|
2018-11-21 20:56:12 +03:00
|
|
|
return result
|
|
|
|
}
|
|
|
|
|
2019-02-07 00:06:42 +03:00
|
|
|
result = v.keys
|
2018-11-21 20:56:12 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
return result
|
|
|
|
}
|
|
|
|
|
|
|
|
// DisplayName return a non-empty string to display, representing the
|
|
|
|
// identity, based on the non-empty values.
|
|
|
|
func (i *Identity) DisplayName() string {
|
|
|
|
switch {
|
|
|
|
case i.Name() == "" && i.Login() != "":
|
|
|
|
return i.Login()
|
|
|
|
case i.Name() != "" && i.Login() == "":
|
|
|
|
return i.Name()
|
|
|
|
case i.Name() != "" && i.Login() != "":
|
|
|
|
return fmt.Sprintf("%s (%s)", i.Name(), i.Login())
|
|
|
|
}
|
|
|
|
|
|
|
|
panic("invalid person data")
|
|
|
|
}
|
2019-01-17 04:05:50 +03:00
|
|
|
|
2019-02-25 01:05:03 +03:00
|
|
|
// IsProtected return true if the chain of git commits started to be signed.
|
|
|
|
// If that's the case, only signed commit with a valid key for this identity can be added.
|
|
|
|
func (i *Identity) IsProtected() bool {
|
|
|
|
// Todo
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
// LastModificationLamportTime return the Lamport time at which the last version of the identity became valid.
|
|
|
|
func (i *Identity) LastModificationLamport() lamport.Time {
|
|
|
|
return i.lastVersion().time
|
|
|
|
}
|
|
|
|
|
|
|
|
// LastModification return the timestamp at which the last version of the identity became valid.
|
|
|
|
func (i *Identity) LastModification() timestamp.Timestamp {
|
|
|
|
return timestamp.Timestamp(i.lastVersion().unixTime)
|
|
|
|
}
|
|
|
|
|
2019-01-17 04:05:50 +03:00
|
|
|
// SetMetadata store arbitrary metadata along the last defined Version.
|
|
|
|
// If the Version has been commit to git already, it won't be overwritten.
|
|
|
|
func (i *Identity) SetMetadata(key string, value string) {
|
|
|
|
i.lastVersion().SetMetadata(key, value)
|
|
|
|
}
|
|
|
|
|
|
|
|
// ImmutableMetadata return all metadata for this Identity, accumulated from each Version.
|
|
|
|
// If multiple value are found, the first defined takes precedence.
|
|
|
|
func (i *Identity) ImmutableMetadata() map[string]string {
|
|
|
|
metadata := make(map[string]string)
|
|
|
|
|
2019-02-07 00:06:42 +03:00
|
|
|
for _, version := range i.versions {
|
|
|
|
for key, value := range version.metadata {
|
2019-01-17 04:05:50 +03:00
|
|
|
if _, has := metadata[key]; !has {
|
|
|
|
metadata[key] = value
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return metadata
|
|
|
|
}
|
|
|
|
|
|
|
|
// MutableMetadata return all metadata for this Identity, accumulated from each Version.
|
|
|
|
// If multiple value are found, the last defined takes precedence.
|
|
|
|
func (i *Identity) MutableMetadata() map[string]string {
|
|
|
|
metadata := make(map[string]string)
|
|
|
|
|
2019-02-07 00:06:42 +03:00
|
|
|
for _, version := range i.versions {
|
|
|
|
for key, value := range version.metadata {
|
2019-01-17 04:05:50 +03:00
|
|
|
metadata[key] = value
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return metadata
|
|
|
|
}
|