-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathchat-p2p.go
355 lines (306 loc) · 9.06 KB
/
chat-p2p.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
/*
Copyright 2019 NetFoundry Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
https://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package main
import (
"bufio"
"errors"
"fmt"
"github.com/michaelquigley/pfxlog"
"github.com/openziti/sdk-golang/ziti"
"github.com/openziti/sdk-golang/ziti/edge"
"github.com/sirupsen/logrus"
"github.com/spf13/cobra"
"io"
"os"
"strings"
"time"
)
func main() {
app := newCallApp()
cmd := &cobra.Command{
Use: "chat-p2p",
Example: "chat-p2p -i user1.json",
Short: "An example P2P chat app demonstrating addressable terminators ",
Args: cobra.ExactArgs(0),
Run: app.run,
}
cmd.AddCommand(newSetupCmd())
// allow interspersing positional args and flags
cmd.Flags().SetInterspersed(true)
cmd.Flags().BoolVarP(&app.cfg.verbose, "verbose", "v", false, "Enable verbose logging")
cmd.Flags().StringVar(&app.cfg.logFormatter, "log-formatter", "pfxlog", "Specify log formatter [json|pfxlog|text]")
cmd.Flags().StringVarP(&app.cfg.configFile, "identity", "i", "", "Specify the Ziti identity to use. If not specified the Ziti listener won't be started")
cmd.Flags().StringVarP(&app.cfg.service, "service", "s", "chat-p2p", "Specify the service to use")
cmd.Flags().SetInterspersed(true)
_ = cmd.Execute()
}
func newCallApp() *chatPeerToPeer {
return &chatPeerToPeer{
eventC: make(chan event),
}
}
type chatConfig struct {
configFile string
service string
verbose bool
logFormatter string
}
type chatPeerToPeer struct {
cfg chatConfig
context ziti.Context
identity string
listener edge.Listener
eventC chan event
pending edge.Conn
current edge.Conn
currentName string
}
type event interface {
handle(*chatPeerToPeer)
}
type connectEvent struct {
conn edge.Conn
}
func (event *connectEvent) handle(app *chatPeerToPeer) {
fmt.Printf("\n")
if app.pending != nil {
fmt.Printf("New incoming connection, dropping existing unanswered connection request\n")
_ = app.pending.Close()
}
connInfo := "from " + event.conn.SourceIdentifier()
appData := event.conn.GetAppData()
connInfo += " with appData '" + string(appData) + "'"
fmt.Printf("Incoming connection %v. Type /accept to accept the connection or /decline to decline it\n", connInfo)
fmt.Printf("%v > ", app.identity)
app.pending = event.conn
}
func (self *chatPeerToPeer) waitForCalls() {
for {
conn, err := self.listener.Accept()
if err != nil {
panic(err)
}
self.eventC <- &connectEvent{conn: conn.(edge.Conn)}
}
}
type userInputEvent struct {
input string
}
func (event *userInputEvent) handle(app *chatPeerToPeer) {
if strings.HasPrefix(event.input, "/connect") {
identity := strings.TrimPrefix(event.input, "/connect")
identity = strings.TrimSpace(identity)
if app.current != nil {
fmt.Printf("closing open connection before dialing %v...\n", identity)
app.disconnectCurrent()
}
fmt.Printf("connecting to %v...\n", identity)
dialOptions := &ziti.DialOptions{
Identity: identity,
ConnectTimeout: 1 * time.Minute,
AppData: []byte("hi there"),
}
conn, err := app.context.DialWithOptions(app.cfg.service, dialOptions)
if err != nil {
fmt.Printf("dial error (%v), unable to connect to %v\n", err, identity)
fmt.Printf("%v > ", app.identity)
} else {
fmt.Printf("connected to %v\n", identity)
fmt.Printf("%v > ", app.identity)
app.current = conn
app.currentName = identity
go app.connectionIO()
}
return
}
if app.current != nil {
if _, err := app.current.Write([]byte(event.input + "\n")); err != nil {
fmt.Printf("write error, closing connection %v\n", err)
fmt.Printf("%v > ", app.identity)
_ = app.current.Close()
}
}
}
type remoteDataEvent struct {
input string
}
func (event *remoteDataEvent) handle(app *chatPeerToPeer) {
fmt.Printf("\n%v: %v", app.currentName, event.input)
fmt.Printf("%v > ", app.identity)
}
type disconnectEvent struct{}
func (event *disconnectEvent) handle(app *chatPeerToPeer) {
app.current = nil
app.currentName = ""
}
func (self *chatPeerToPeer) run(*cobra.Command, []string) {
self.initLogging()
logger := pfxlog.Logger()
if self.cfg.configFile == "" {
panic("a config file is required")
} else {
cfg, err := ziti.NewConfigFromFile(self.cfg.configFile)
if err != nil {
panic(err)
}
self.context, err = ziti.NewContext(cfg)
if err != nil {
panic(err)
}
}
logger.Infof("registering to service %v\n", self.cfg.service)
options := ziti.ListenOptions{
ConnectTimeout: 5 * time.Minute,
MaxConnections: 3,
BindUsingEdgeIdentity: true,
}
listener, err := self.context.ListenWithOptions(self.cfg.service, &options)
if err != nil {
logrus.WithError(err).Fatalf("Error binding service")
}
self.listener = listener
identity, err := self.context.GetCurrentIdentity()
if err != nil {
panic(err)
}
self.identity = *identity.Name
go self.waitForCalls()
go self.consoleIO()
for event := range self.eventC {
event.handle(self)
}
}
func (self *chatPeerToPeer) outputHelp() {
fmt.Println("\nCommands:")
fmt.Println("/connect <identity> | Tries to make a connection to the given identity")
fmt.Println("/accept | Accepts an incoming chat connection")
fmt.Println("/decline | Declines an incoming chat connection")
fmt.Println("/bye | Disconnects the current chat connection")
fmt.Println("/list | Lists currently connected identities")
fmt.Println("/help | Should this help output")
fmt.Printf("/quit | Exit the application. You may also use Ctrl-D\n\n")
}
func (self *chatPeerToPeer) consoleIO() {
self.outputHelp()
// wait briefly to allow connections to be established to edge router(s)
// so output doesn't get overlapped. Could use SessionListener API to wait for connections,
// but want to keep example code simpler
time.Sleep(250 * time.Millisecond)
reader := bufio.NewReader(os.Stdin)
for {
fmt.Printf("%v > ", self.identity)
line, err := reader.ReadString('\n')
if err != nil {
if errors.Is(err, io.EOF) {
fmt.Println("\ngoodbye")
os.Exit(0)
}
panic(err)
}
line = strings.TrimSpace(line)
if line == "/quit" {
fmt.Println("quitting")
os.Exit(0)
}
if line == "/accept" {
if self.current != nil {
self.disconnectCurrent()
}
if self.pending != nil {
self.current = self.pending
self.currentName = self.current.SourceIdentifier()
if self.currentName == "" {
self.currentName = "Anonymous"
}
go self.connectionIO()
self.pending = nil
fmt.Println("\nconnection accepted and chat now in progress...")
} else {
fmt.Println("\nno current incoming connection, nothing to accept")
}
continue
}
if line == "/decline" {
if self.pending != nil {
_ = self.pending.Close()
} else {
fmt.Println("\nno current incoming connection, nothing to decline")
}
}
if line == "/list" {
l, _, err := self.context.GetServiceTerminators(self.cfg.service, 0, 100)
if err != nil {
fmt.Printf("error listing available chat identities %v\n", err)
} else {
for idx, l := range l {
fmt.Printf("%v: %v\n", idx+1, l.Identity)
}
}
continue
}
if line == "/help" {
self.outputHelp()
continue
}
if line == "/bye" {
self.disconnectCurrent()
continue
}
self.eventC <- &userInputEvent{input: line}
}
}
func (self *chatPeerToPeer) disconnectCurrent() {
if self.current != nil {
if err := self.current.Close(); err != nil {
fmt.Printf("error while closing connection %v\n", err)
}
self.current = nil
self.currentName = "Anonymous"
fmt.Printf("disconnected...\n")
fmt.Printf("%v > ", self.identity)
} else {
fmt.Printf("no active connection, nothing to disconnect\n")
fmt.Printf("%v > ", self.identity)
}
}
func (self *chatPeerToPeer) connectionIO() {
reader := bufio.NewReader(self.current)
for {
line, err := reader.ReadString('\n')
if err != nil {
fmt.Printf("err (%v)\n", err)
fmt.Printf("%v > ", self.identity)
self.eventC <- &disconnectEvent{}
return
}
self.eventC <- &remoteDataEvent{input: line}
}
}
func (self *chatPeerToPeer) initLogging() {
logLevel := logrus.InfoLevel
if self.cfg.verbose {
logLevel = logrus.DebugLevel
}
options := pfxlog.DefaultOptions().SetTrimPrefix("github.com/openziti/").NoColor()
pfxlog.GlobalInit(logLevel, options)
switch self.cfg.logFormatter {
case "pfxlog":
pfxlog.SetFormatter(pfxlog.NewFormatter(pfxlog.DefaultOptions().SetTrimPrefix("github.com/openziti/").StartingToday()))
case "json":
pfxlog.SetFormatter(&logrus.JSONFormatter{TimestampFormat: "2006-01-02T15:04:05.000Z"})
case "text":
pfxlog.SetFormatter(&logrus.TextFormatter{})
default:
// let logrus do its own thing
}
}