-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathapi_event.go
88 lines (72 loc) · 2.21 KB
/
api_event.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
package sdk
import (
"errors"
"fmt"
)
// NotificationEvent :
type NotificationEvent struct {
Type string `json:"type"`
ReferenceID string `json:"referenceId"`
Data string `json:"data"`
}
// Notification :
type Notification struct {
Title string `json:"title"`
Description string `json:"description"`
NotificationEvent NotificationEvent `json:"event"`
}
// SendEventRequest :
type SendEventRequest struct {
ReferenceID string `json:"referenceId"`
Platform string `json:"platform"`
Channel string `json:"channel"`
Action string `json:"action"`
Notification Notification `json:"notification"`
Body string `json:"body"`
}
// SendEventRequestResponse :
type SendEventRequestResponse struct {
Code string `json:"code"`
Err *Error `json:"error"`
}
// SendEvent :
func (c Client) SendEvent(req SendEventRequest) (*SendEventRequestResponse, error) {
if c.err != nil {
return nil, c.err
}
method := pathAPIPostSendEventURL.method
requestURL := c.prepareAPIURL(pathAPIPostSendEventURL)
response := new(SendEventRequestResponse)
if err := c.httpAPI(method, fmt.Sprintf("%s", requestURL), req, response); err != nil {
return nil, err
}
if response.Err != nil {
return response, errors.New(response.Err.Message)
}
return response, nil
}
// SendEventByStoreRequest :
type SendEventByStoreRequest struct {
StoreID string `json:"-"`
Platform string `json:"platform"`
Channel string `json:"channel"`
Action string `json:"action"`
Notification Notification `json:"notification"`
Body string `json:"body"`
}
// SendEventByStore :
func (c Client) SendEventByStore(req SendEventByStoreRequest) (*SendEventRequestResponse, error) {
if c.err != nil {
return nil, c.err
}
method := pathAPIPostSendEventByStoreURL.method
requestURL := c.prepareAPIURL(pathAPIPostSendEventByStoreURL)
response := new(SendEventRequestResponse)
if err := c.httpAPI(method, fmt.Sprintf("%s/%s", requestURL, req.StoreID), req, response); err != nil {
return nil, err
}
if response.Err != nil {
return response, errors.New(response.Err.Message)
}
return response, nil
}