This repository has been archived by the owner on Oct 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 35
/
project.go
381 lines (344 loc) · 8.32 KB
/
project.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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
//go:generate ./scripts/contract-gen.sh
package killcord
import (
"crypto/rand"
"encoding/hex"
"errors"
"fmt"
"os"
"path/filepath"
"strings"
"time"
)
const (
Version = "0.0.1-alpha"
defaultContractProvider = "ethereum"
defaultPayloadProvider = "ipfs"
)
var ProjectPath string
type Session struct {
Config ProjectConfig
Options ProjectOptions
}
type ProjectOptions struct {
DevMode bool
Type string
Audience string
Version string
Status StatusOptions
Payload PayloadOptions
Contract ContractOptions
Publisher PublisherOptions
}
type StatusOptions struct {
ViewAll bool
}
type PayloadOptions struct {
SourcePath string
DestinationPath string
RPCURL string
Provider string
Secret string
ID string
}
type ContractOptions struct {
Kill bool
Provider string
ID string
RPCURL string
Owner AccountConfig
Publisher AccountConfig
}
type PublisherOptions struct {
WarningThreshold int64
PublishThreshold int64
Address string
Password string
KeyStore string
}
type ProjectConfig struct {
Type string `toml:"type"`
Version string `toml:"version"`
Audience string `toml:"audience"`
Created time.Time `toml:"created"`
Updated time.Time `toml:"updated"`
DevMode bool `toml:"devMode"`
Payload PayloadConfig `toml:"payload"`
Contract ContractConfig `toml:"contract"`
Publisher PublisherConfig `toml:"publisher"`
Status string `toml:"status"`
}
type PayloadConfig struct {
Status string `toml:"status"`
Provider string `toml:"provider"`
ID string `toml:"id"`
Secret string `toml:"secret"`
Mode string `toml:"mode"`
RPCURL string `toml:"rpcUrl"`
}
type ContractConfig struct {
Status string `toml:"status"`
Provider string `toml:"provider"`
ID string `toml:"id"`
Owner AccountConfig `toml:"owner"`
Publisher AccountConfig `toml:"publisher"`
Mode string `toml:"mode"`
RPCURL string `toml:"rpcUrl"`
}
type AccountConfig struct {
Address string `toml:"address"`
Password string `toml:"password"`
KeyStore string `toml:"keystore"`
}
type PublisherConfig struct {
Status string `toml:"status"`
WarningThreshold int64 `toml:"warningThreshold"`
PublishThreshold int64 `toml:"publishThreshold"`
}
func init() {
setAbsPath()
}
// Returns a new Killcord Session with defaults
func New() *Session {
return &Session{}
}
// initializes ProjectConfig and ProjectOptions session variables
// for use by functions that use Payload and Contract RPC settings
func (s *Session) Init() {
s.setEthereumRPCPath()
s.setPayloadRPCPath()
}
func (s *Session) NewProject() error {
if err := s.initProject(); err != nil {
return err
}
// bootstrap owner and watcher projects
switch s.Options.Type {
case "owner":
if err := s.initOwner(); err != nil {
return err
}
case "watcher":
if err := s.initWatcher(); err != nil {
return err
}
default:
return errors.New("new projects must be created for either owner or watcher")
}
return nil
}
func (s *Session) initWatcher() error {
if err := s.initWatcherContract(); err != nil {
return err
}
if s.Config.Payload.ID != "" {
if err := s.GetPayload(); err != nil {
return err
}
}
s.Config.Payload.Status = "active"
return nil
}
func (s *Session) initWatcherContract() error {
s.Config.Contract.Status = "initialized"
id, err := sanitizeContractId(s.Options.Contract.ID)
if err != nil {
return err
}
s.Config.Contract.ID = id
if s.Config.DevMode == true {
s.Config.Contract.Mode = "testnet"
} else {
s.Config.Contract.Mode = "mainnet"
}
s.setEthereumRPCPath()
s.setPayloadRPCPath()
endpoint, err := GetPayloadEndpoint(id)
if err != nil {
return err
}
if endpoint == "" {
fmt.Println("Payload endpoint not yet registered, skipping")
return nil
} else {
fmt.Println("adding payload endpoint to project configuration")
s.Config.Payload.ID = endpoint
}
key, err := GetKey(s.Config.Contract.ID)
if err != nil {
return err
}
if key != "" {
fmt.Println("adding decryption key to project configuration")
s.Config.Payload.Secret = key
fmt.Println("decrypt the payload by running: killcord decrypt")
}
return nil
}
func (s *Session) initOwner() error {
// configure payload based on Provider
if err := s.initPayload(); err != nil {
return err
}
// configure payload based on Provider
if err := s.initContract(); err != nil {
return err
}
return nil
}
func (s *Session) initProject() error {
// check that directory is empty
if err := ensureEmptyDir(); err != nil {
return err
}
if err := createDirs(); err != nil {
return err
}
if err := validateProjectType(s.Options.Type); err != nil {
return err
}
if err := s.setProviders(); err != nil {
return err
}
// set project level values
s.Config.Type = s.Options.Type
s.Config.Version = Version
s.Config.Audience = s.Options.Audience // TODO: not sure I remember what this is
s.Config.DevMode = s.Options.DevMode
s.Config.Created = time.Now()
s.Config.Updated = time.Now()
return nil
}
func (s *Session) setProviders() error {
// attempt to set Contract Provider from Options, or set default provider
if s.Options.Contract.Provider != "" {
if err := validateContractProvider(s.Options.Contract.Provider); err != nil {
return err
}
s.Config.Contract.Provider = s.Options.Contract.Provider
} else {
s.Config.Contract.Provider = defaultContractProvider
}
// attempt to set Payload Provider from Options, or set default provider
if s.Options.Payload.Provider != "" {
if err := validatePayloadProvider(s.Options.Payload.Provider); err != nil {
return err
}
s.Config.Payload.Provider = s.Options.Payload.Provider
} else {
s.Config.Payload.Provider = defaultPayloadProvider
}
return nil
}
func sanitizeContractId(id string) (string, error) {
// check and remove "0x" if hex prefix exists
if id[:2] == "0x" {
id = id[2:]
}
// check that hex encoding is valid
if _, err := hex.DecodeString(id); err != nil {
return id, err
}
return id, nil
}
func validateContractProvider(p string) error {
switch p {
case "ethereum":
default:
return errors.New("invalide contract provider: " + p)
}
return nil
}
func validatePayloadProvider(p string) error {
switch p {
case "ipfs":
default:
return errors.New("invalide payload provider: " + p)
}
return nil
}
func validateProjectType(t string) error {
// filter ProjectType for one of proper commands
switch t {
case "owner":
case "publisher":
case "watcher":
default:
return errors.New("invalide project type in options")
}
return nil
}
func (s *Session) initPayload() error {
switch s.Config.Payload.Provider {
case "ipfs":
s.Config.Payload.Status = "initialized"
default:
return fmt.Errorf("error: unrecognized provider: %v\n", s.Config.Payload.Provider)
}
return nil
}
func (s *Session) initContract() error {
switch s.Config.Contract.Provider {
case "ethereum":
if s.Config.DevMode == true {
s.Config.Contract.Mode = "testnet"
} else {
s.Config.Contract.Mode = "mainnet"
}
// TODO: this needs to be reimagined thorugh interfaces
if err := s.ConfigEthereum(); err != nil {
return err
}
default:
return fmt.Errorf("error: unrecognized provider: %v\n", s.Config.Contract.Provider)
}
return nil
}
func ensureEmptyDir() error {
var files []string
allFiles, err := filepath.Glob("*")
if err != nil {
return err
}
for _, f := range allFiles {
// omit dotFiles
if strings.HasPrefix(f, ".") {
// skip dotFiles
} else {
files = append(files, f)
}
}
if len(files) > 0 {
return fmt.Errorf("error: init failed. Only init an empty directory.")
}
return nil
}
func setAbsPath() {
dir, err := filepath.Abs(filepath.Dir(os.Args[0]))
if err != nil {
fmt.Printf("error: cannot set absolute path for project: %v\n", err)
os.Exit(1)
}
ProjectPath = dir
}
func generateKey() string {
key := make([]byte, 32)
rand.Read(key)
return hex.EncodeToString(key)
}
func createDirs() error {
dirs := []string{
"payload/source",
"payload/encrypted",
"payload/decrypted",
}
for _, dir := range dirs {
// ensure path is contructed properly for either platform
pathSplit := strings.Split(dir, "/")
path := filepath.Join(pathSplit...)
if err := os.MkdirAll(path, 0777); err != nil {
return err
}
}
return nil
}