-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpublisher.go
50 lines (39 loc) · 990 Bytes
/
publisher.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
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
package main
import (
"encoding/json"
"log"
graph "gopkg.in/r3labs/graph.v2"
)
func send(c graph.Component) error {
data, err := json.Marshal(c)
if err != nil {
return err
}
subject := c.GetType() + "." + c.GetAction() + "." + c.GetProvider()
log.Printf("sending: %s", subject)
return nc.Publish(subject, data)
}
func errored(g *graph.Graph, err error) {
log.Println("Error: " + err.Error())
if g != nil {
data, _ := g.ToJSON()
err := nc.Publish(g.Action+".error", data)
if err != nil {
log.Println(err.Error())
}
}
}
func completed(g *graph.Graph) {
log.Println("Completed: " + g.ID)
data, err := g.ToJSON()
if err != nil {
log.Println(err.Error())
}
err = nc.Publish(g.Action+".done", data)
if err != nil {
log.Println(err.Error())
}
}