-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathevents.go
79 lines (65 loc) · 1.49 KB
/
events.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
package main
import (
"encoding/json"
"fmt"
)
const (
txCreated = "transaction.created"
blockCreated = "block.created"
eventVersion = "1.0"
moneroNATSChannel = "monero"
)
type Event struct {
Type string `json:"type"`
Version string `json:"version"`
Data interface{} `json:"data"`
}
func NewTXCreatedEvent(tx Tx) Event {
return Event{
Type: txCreated,
Version: eventVersion,
Data: tx,
}
}
func NewBlockCreatedEvent(b Block) Event {
return Event{
Type: blockCreated,
Version: eventVersion,
Data: b,
}
}
type Publisher interface {
Publish([]byte, string) error
IsConnected() bool
}
type EventPublishing struct {
Publisher Publisher
}
func (ep *EventPublishing) IsConnected() bool {
return ep.Publisher.IsConnected()
}
func (ep *EventPublishing) PushEvent(ev interface{}) error {
fmt.Println(fmt.Sprintf("Event Payload: %+v", ev))
jsonPayload, err := json.Marshal(ev)
if err != nil {
return err
}
if err := ep.Publisher.Publish(jsonPayload, moneroNATSChannel); err != nil {
// TODO: return retriable/non-retriable error
return err
}
return nil
}
func (ep *EventPublishing) PushTxEvent(tx Tx) error {
eventPayload := NewTXCreatedEvent(tx)
return ep.PushEvent(eventPayload)
}
func (ep *EventPublishing) PushBlockEvent(b Block) error {
ev := NewBlockCreatedEvent(b)
return ep.PushEvent(ev)
}
func NewNatsPublishingClient(natsHost string) *EventPublishing {
return &EventPublishing{
Publisher: NewNATSClient(natsHost),
}
}