-
Notifications
You must be signed in to change notification settings - Fork 0
/
broadcaster.go
113 lines (84 loc) · 3 KB
/
broadcaster.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
package broadcaster
import (
"context"
"fmt"
"image"
"net/url"
"sort"
"strings"
"github.com/aaronland/go-roster"
"github.com/aaronland/go-uid"
)
// Broadcaster provides a minimalist interface for "broadcasting" messages to an arbitrary service or target.
type Broadcaster interface {
// BroadcastMessage "broadcasts" a `Message` struct.
BroadcastMessage(context.Context, *Message) (uid.UID, error)
}
// Message defines a struct containing properties to "broadcast". The semantics of these
// properties are determined by the server or target -specific implementation of the `Broadcaster`
// interface.
type Message struct {
// Title is a string to use as the title of a "broadcast" message.
Title string
// Body is a string to use as the body of a "broadcast" message.
Body string
// Images is zero or more `image.Image` instances to be included with a "broadcast" messages.
// Images are encoded according to rules implemented by service or target -specific implementation
// of the `Broadcaster` interface.
Images []image.Image
}
var broadcaster_roster roster.Roster
// BroadcasterInitializationFunc is a function defined by individual broadcaster package and used to create
// an instance of that broadcaster
type BroadcasterInitializationFunc func(ctx context.Context, uri string) (Broadcaster, error)
// RegisterBroadcaster registers 'scheme' as a key pointing to 'init_func' in an internal lookup table
// used to create new `Broadcaster` instances by the `NewBroadcaster` method.
func RegisterBroadcaster(ctx context.Context, scheme string, init_func BroadcasterInitializationFunc) error {
err := ensureBroadcasterRoster()
if err != nil {
return err
}
return broadcaster_roster.Register(ctx, scheme, init_func)
}
func ensureBroadcasterRoster() error {
if broadcaster_roster == nil {
r, err := roster.NewDefaultRoster()
if err != nil {
return err
}
broadcaster_roster = r
}
return nil
}
// NewBroadcaster returns a new `Broadcaster` instance configured by 'uri'. The value of 'uri' is parsed
// as a `url.URL` and its scheme is used as the key for a corresponding `BroadcasterInitializationFunc`
// function used to instantiate the new `Broadcaster`. It is assumed that the scheme (and initialization
// function) have been registered by the `RegisterBroadcaster` method.
func NewBroadcaster(ctx context.Context, uri string) (Broadcaster, error) {
u, err := url.Parse(uri)
if err != nil {
return nil, err
}
scheme := u.Scheme
i, err := broadcaster_roster.Driver(ctx, scheme)
if err != nil {
return nil, err
}
init_func := i.(BroadcasterInitializationFunc)
return init_func(ctx, uri)
}
// Schemes returns the list of schemes that have been registered.
func Schemes() []string {
ctx := context.Background()
schemes := []string{}
err := ensureBroadcasterRoster()
if err != nil {
return schemes
}
for _, dr := range broadcaster_roster.Drivers(ctx) {
scheme := fmt.Sprintf("%s://", strings.ToLower(dr))
schemes = append(schemes, scheme)
}
sort.Strings(schemes)
return schemes
}