-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
149 lines (128 loc) · 2.86 KB
/
main.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
package main
import (
"context"
"crcls-converse/account"
"crcls-converse/config"
"crcls-converse/inout"
"crcls-converse/logger"
"crcls-converse/network"
"encoding/json"
"fmt"
"os"
"os/signal"
"syscall"
"github.com/ethereum/go-ethereum/crypto"
)
type ReadyMessage struct {
Type string `json:"type"`
Status string `json:"status"`
Account *account.Account `json:"account"`
Circles []*Circle `json:"circles"`
}
func emitReadyEvent(app *CRCLS) error {
log := logger.GetLogger()
circles, err := app.ListCircles(context.Background())
if err != nil {
log.Debug(err)
}
readyEvent, err := json.Marshal(&ReadyMessage{
Type: "ready",
Status: "connected",
Account: app.Account,
Circles: circles,
})
if err != nil {
return err
}
app.IO.Write(readyEvent)
return nil
}
func ensureInit() {
if crcls == nil {
inout.EmitError(fmt.Errorf("Not authorized."))
os.Exit(1)
}
}
func main() {
ctx := context.Background()
conf := config.New()
io := inout.Connect()
stop := make(chan os.Signal, 1)
signal.Notify(stop, syscall.SIGINT)
//-------------------------
// 1. Try init CRCLS
// 2. Success breaks first step
// 3. Wait for create-account or add-account
// 4. Init services
// 5. Reply with data
if err := LoadCRCLS(ctx, conf, io); err != nil {
if _, ok := err.(*inout.KeyNotFoundError); !ok {
inout.EmitError(err)
}
authCtx, authCancel := context.WithCancel(context.Background())
done := false
for !done {
select {
case cmd := <-io.InputChan:
if cmd.Type != inout.ACCOUNT {
inout.EmitError(fmt.Errorf("Not authorized."))
break
}
subcmd, err := cmd.NextSubcommand()
if err != nil {
inout.EmitError(err)
break
} else if subcmd != inout.CREATE {
inout.EmitError(fmt.Errorf("Must create an account."))
break
}
if err := CreateCRCLS(authCtx, conf, io); err != nil {
inout.EmitError(err)
break
}
done = true
case <-authCtx.Done():
done = true
case <-stop:
authCancel()
os.Exit(0)
}
}
}
emitReadyEvent(crcls)
for {
select {
case cmd := <-io.InputChan:
if cmd.Type == inout.READY {
emitReadyEvent(crcls)
} else if err := crcls.Run(ctx, cmd); err != nil {
inout.EmitError(err)
}
case status := <-crcls.Net.StatusChan:
if status.Error != nil {
inout.EmitError(status.Error)
} else {
epk, err := network.PeerIdToPublicKey(status.Peer)
if err != nil {
inout.EmitError(err)
break
}
addr, err := crypto.PubkeyToAddress(*epk).MarshalText()
if err != nil {
inout.EmitError(err)
break
}
data, err := json.Marshal(inout.PeerMessage{Type: "peer", Connected: status.Connected, Id: string(addr)})
if err != nil {
inout.EmitError(err)
break
}
io.Write(data)
}
case <-stop:
os.Exit(0)
case <-ctx.Done():
os.Exit(0)
}
}
}