-
Notifications
You must be signed in to change notification settings - Fork 25
/
feedback_service.go
168 lines (143 loc) · 4.38 KB
/
feedback_service.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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
//Package for creating a connection to Apple's APNS gateway and facilitating
//sending push notifications via that gateway
package apns
import (
"container/list"
"crypto/tls"
"encoding/binary"
"encoding/hex"
"errors"
"fmt"
"io"
"net"
"time"
)
//Config for creating an APNS Feedback Service Connection
type APNSFeedbackServiceConfig struct {
//bytes for cert.pem : required
CertificateBytes []byte
//bytes for key.pem : required
KeyBytes []byte
//apple gateway, defaults to "feedback.push.apple.com"
GatewayHost string
//apple gateway port, defaults to "2196"
GatewayPort string
//number of seconds to wait for connection before bailing, defaults to 5 seconds
SocketTimeout int
//number of seconds to wait for Tls handshake to complete before bailing, defaults to 5 seconds
TlsTimeout int
}
//Feedback Response
type FeedbackResponse struct {
//A timestamp indicating when APNs
//determined that the app no longer exists on the device.
//This value represents the seconds since 12:00 midnight on January 1, 1970 UTC.
Timestamp uint32
//Device push token
Token string
}
const (
//Size of feedback header frame
FEEDBACK_RESPONSE_HEADER_FRAME_SIZE = 6
)
//Create a new apns feedback service connection with supplied config
//If invalid config an error will be returned
//Also if unable to create a connection an error will be returned
//Will return a list of *FeedbackResponse or error
func ConnectToFeedbackService(config *APNSFeedbackServiceConfig) (*list.List, error) {
errorStrs := ""
if config.CertificateBytes == nil || config.KeyBytes == nil {
errorStrs += "Invalid Key/Certificate bytes\n"
}
if errorStrs != "" {
return nil, errors.New(errorStrs)
}
if config.GatewayPort == "" {
config.GatewayPort = "2196"
}
if config.GatewayHost == "" {
config.GatewayHost = "feedback.push.apple.com"
}
if config.SocketTimeout == 0 {
config.SocketTimeout = 5
}
if config.TlsTimeout == 0 {
config.TlsTimeout = 5
}
x509Cert, err := tls.X509KeyPair(config.CertificateBytes, config.KeyBytes)
if err != nil {
//failed to validate key pair
return nil, err
}
tlsConf := &tls.Config{
Certificates: []tls.Certificate{x509Cert},
ServerName: config.GatewayHost,
}
tcpSocket, err := net.DialTimeout("tcp",
config.GatewayHost+":"+config.GatewayPort,
time.Duration(config.SocketTimeout)*time.Second)
if err != nil {
//failed to connect to gateway
return nil, err
}
tlsSocket := tls.Client(tcpSocket, tlsConf)
tlsSocket.SetReadDeadline(time.Now().Add(time.Duration(config.TlsTimeout) * time.Second))
err = tlsSocket.Handshake()
if err != nil {
//failed to handshake with tls information
return nil, err
}
//hooray! we're connected
//let socket close itself when we're finished
defer tlsSocket.Close()
return readFromFeedbackService(tlsSocket)
}
//Read from the socket until there is no more to be read or an error occurs
//Then close the socket
//On error some responses may be returned so one should check that the list
//returned doesn't have anything in it
func readFromFeedbackService(socket net.Conn) (*list.List, error) {
headerBuffer := make([]byte, FEEDBACK_RESPONSE_HEADER_FRAME_SIZE)
responses := list.New()
for {
bytesRead, err := socket.Read(headerBuffer)
if err != nil {
if err == io.EOF {
//we're good, just reached the end of the socket
return responses, nil
} else {
//this is a legit error, return it
return responses, err
}
}
if bytesRead != FEEDBACK_RESPONSE_HEADER_FRAME_SIZE {
//? should always be this size...
return responses,
errors.New(fmt.Sprintf("Should have read %v header bytes but read %v bytes",
FEEDBACK_RESPONSE_HEADER_FRAME_SIZE, bytesRead))
}
tokenSize := int(binary.BigEndian.Uint16(headerBuffer[4:6]))
tokenBuffer := make([]byte, tokenSize)
bytesRead, err = socket.Read(tokenBuffer)
if err != nil {
if err == io.EOF {
//we're good, just reached the end of the socket
return responses, nil
} else {
//this is a legit error, return it
return responses, err
}
}
if bytesRead != tokenSize {
//? should always be this size...
return responses,
errors.New(fmt.Sprintf("Should have read %v token bytes but read %v bytes",
tokenSize, bytesRead))
}
response := new(FeedbackResponse)
response.Timestamp = binary.BigEndian.Uint32(headerBuffer[0:4])
response.Token = hex.EncodeToString(tokenBuffer)
responses.PushBack(response)
}
return responses, nil
}