-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathidentity.go
117 lines (93 loc) · 2.69 KB
/
identity.go
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
package main
import (
"encoding/json"
"fmt"
"os"
"path/filepath"
"github.com/creativenucleus/bytejammer/config"
"github.com/creativenucleus/bytejammer/crypto"
"github.com/creativenucleus/bytejammer/util"
"github.com/google/uuid"
)
type Identity struct {
Uuid uuid.UUID `json:"uuid"`
DisplayName string `json:"displayName"`
Crypto *crypto.CryptoPrivate `json:"crypto"`
}
// For storage?: hex.EncodeString, hex.DecodeString
func makeIdentity(displayName string) error {
basepath := filepath.Clean(fmt.Sprintf("%sclient-data/identity", config.WORK_DIR))
err := util.EnsurePathExists(basepath, os.ModePerm)
if err != nil {
return err
}
c, err := crypto.NewCryptoPrivate()
if err != nil {
return err
}
identity := Identity{
Uuid: uuid.New(),
DisplayName: displayName,
Crypto: c,
}
data, err := json.Marshal(identity)
if err != nil {
return err
}
filepath := filepath.Clean(fmt.Sprintf("%s/identity-%s.json", basepath, identity.Uuid.String()))
return os.WriteFile(filepath, data, 0644)
}
func getIdentities() (map[string]Identity, error) {
identities := make(map[string]Identity, 0)
filematches, err := filepath.Glob(fmt.Sprintf("%sclient-data/identity/identity-*.json", config.WORK_DIR))
if err != nil {
return nil, err
}
for _, filematch := range filematches {
identity, err := readIdentityFile(filematch)
if err != nil {
return nil, err
}
// #TODO: This is a bit hacky
strlen := len(filematch)
key := filematch[strlen-41 : strlen-5]
identities[key] = *identity
}
return identities, nil
}
// uuid can be ""
func getIdentity(uuid string) (*Identity, error) {
identityFilePath := ""
if uuid == "" {
filematches, err := filepath.Glob(config.WORK_DIR + "identity-*.json")
if err != nil {
return nil, err
}
if len(filematches) == 0 {
return nil, fmt.Errorf("No identity file found - ensure you've run this program with make-identity first")
}
if len(filematches) > 1 {
return nil, fmt.Errorf("Multiple identity files found - please specify")
}
identityFilePath = filematches[0]
} else {
identityFilePath = filepath.Clean(fmt.Sprintf("%sclient-data/identity/identity-%s.json", config.WORK_DIR, uuid))
}
identity, err := readIdentityFile(identityFilePath)
if err != nil {
return nil, err
}
return identity, nil
}
func readIdentityFile(filepath string) (*Identity, error) {
data, err := os.ReadFile(filepath)
if err != nil {
return nil, err
}
var identity Identity
err = json.Unmarshal(data, &identity)
if err != nil {
return nil, err
}
return &identity, nil
}