-
Notifications
You must be signed in to change notification settings - Fork 32
/
gcm.go
57 lines (46 loc) · 1.63 KB
/
gcm.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
package chrome
import "github.com/gopherjs/gopherjs/js"
type Gcm struct {
o *js.Object
MAX_MESSAGE_SIZE int
}
func NewGcm(gcmObj *js.Object) *Gcm {
g := new(Gcm)
g.o = gcmObj
if g.o.String() != "undefined" {
g.MAX_MESSAGE_SIZE = g.o.Get("MAX_MESSAGE_SIZE").Int()
}
return g
}
/*
* Methods:
*/
// Register registers the application with GCM. The registration ID will be returned by the callback.
// If register is called again with the same list of senderIds, the same registration ID will be returned.
func (g *Gcm) Register(senderIds []string, callback func(registrationId string)) {
g.o.Call("register", senderIds, callback)
}
// Unregister unregisters the application from GCM.
func (g *Gcm) Unregister(callback func()) {
g.o.Call("unregister", callback)
}
// Send sends a message according to its contents.
func (g *Gcm) Send(message Object, callback func(messageId string)) {
g.o.Call("send", message, callback)
}
/*
* Events
*/
// OnMessage fired when a message is received through GCM.
func (g *Gcm) OnMessage(callback func(message Object)) {
g.o.Get("onMessage").Call("addListener", callback)
}
// OnMessageDeleted fired when a GCM server had to delete messages sent by an app server to the application.
// See Messages deleted event section of Cloud Messaging documentation for details on handling this event.
func (g *Gcm) OnMessageDeleted(callback func()) {
g.o.Get("onMessageDeleted").Call("addListener", callback)
}
// OnSendError fired when it was not possible to send a message to the GCM server.
func (g *Gcm) OnSendError(callback func(error Object)) {
g.o.Get("onSendError").Call("addListener", callback)
}