@@ -36,7 +36,7 @@ func (rtm *RTM) ManageConnection() {
36
36
return
37
37
}
38
38
rtm .info = info
39
- rtm .IncomingEvents <- SlackEvent {"connected" , & ConnectedEvent {
39
+ rtm .IncomingEvents <- RTMEvent {"connected" , & ConnectedEvent {
40
40
ConnectionCount : connectionCount ,
41
41
Info : info ,
42
42
}}
@@ -76,7 +76,7 @@ func (rtm *RTM) connect(connectionCount int) (*Info, *websocket.Conn, error) {
76
76
77
77
for {
78
78
// send connecting event
79
- rtm .IncomingEvents <- SlackEvent {"connecting" , & ConnectingEvent {
79
+ rtm .IncomingEvents <- RTMEvent {"connecting" , & ConnectingEvent {
80
80
Attempt : boff .attempts + 1 ,
81
81
ConnectionCount : connectionCount ,
82
82
}}
@@ -86,13 +86,13 @@ func (rtm *RTM) connect(connectionCount int) (*Info, *websocket.Conn, error) {
86
86
return info , conn , nil
87
87
}
88
88
// check for fatal errors - currently only invalid_auth
89
- if sErr , ok := err .(* SlackWebError ); ok && sErr .Error () == "invalid_auth" {
90
- rtm .IncomingEvents <- SlackEvent {"invalid_auth" , & InvalidAuthEvent {}}
89
+ if sErr , ok := err .(* WebError ); ok && sErr .Error () == "invalid_auth" {
90
+ rtm .IncomingEvents <- RTMEvent {"invalid_auth" , & InvalidAuthEvent {}}
91
91
return nil , nil , sErr
92
92
}
93
93
// any other errors are treated as recoverable and we try again after
94
94
// sending the event along the IncomingEvents channel
95
- rtm .IncomingEvents <- SlackEvent {"connection_error" , & ConnectionErrorEvent {
95
+ rtm .IncomingEvents <- RTMEvent {"connection_error" , & ConnectionErrorEvent {
96
96
Attempt : boff .attempts ,
97
97
ErrorObj : err ,
98
98
}}
@@ -132,7 +132,7 @@ func (rtm *RTM) killConnection(keepRunning chan bool, intentional bool) error {
132
132
rtm .isConnected = false
133
133
rtm .wasIntentional = intentional
134
134
err := rtm .conn .Close ()
135
- rtm .IncomingEvents <- SlackEvent {"disconnected" , & DisconnectedEvent {intentional }}
135
+ rtm .IncomingEvents <- RTMEvent {"disconnected" , & DisconnectedEvent {intentional }}
136
136
return err
137
137
}
138
138
@@ -198,15 +198,15 @@ func (rtm *RTM) handleIncomingEvents(keepRunning <-chan bool) {
198
198
func (rtm * RTM ) sendOutgoingMessage (msg OutgoingMessage ) {
199
199
rtm .Debugln ("Sending message:" , msg )
200
200
if len (msg .Text ) > MaxMessageTextLength {
201
- rtm .IncomingEvents <- SlackEvent {"outgoing_error" , & MessageTooLongEvent {
201
+ rtm .IncomingEvents <- RTMEvent {"outgoing_error" , & MessageTooLongEvent {
202
202
Message : msg ,
203
203
MaxLength : MaxMessageTextLength ,
204
204
}}
205
205
return
206
206
}
207
207
err := websocket .JSON .Send (rtm .conn , msg )
208
208
if err != nil {
209
- rtm .IncomingEvents <- SlackEvent {"outgoing_error" , & OutgoingErrorEvent {
209
+ rtm .IncomingEvents <- RTMEvent {"outgoing_error" , & OutgoingErrorEvent {
210
210
Message : msg ,
211
211
ErrorObj : err ,
212
212
}}
@@ -249,7 +249,7 @@ func (rtm *RTM) receiveIncomingEvent() {
249
249
rtm .forcePing <- true
250
250
return
251
251
} else if err != nil {
252
- rtm .IncomingEvents <- SlackEvent {"incoming_error" , & IncomingEventError {
252
+ rtm .IncomingEvents <- RTMEvent {"incoming_error" , & IncomingEventError {
253
253
ErrorObj : err ,
254
254
}}
255
255
// force a ping here too?
@@ -268,14 +268,14 @@ func (rtm *RTM) handleRawEvent(rawEvent json.RawMessage) {
268
268
event := & Event {}
269
269
err := json .Unmarshal (rawEvent , event )
270
270
if err != nil {
271
- rtm .IncomingEvents <- SlackEvent {"unmarshalling_error" , & UnmarshallingErrorEvent {err }}
271
+ rtm .IncomingEvents <- RTMEvent {"unmarshalling_error" , & UnmarshallingErrorEvent {err }}
272
272
return
273
273
}
274
274
switch event .Type {
275
275
case "" :
276
276
rtm .handleAck (rawEvent )
277
277
case "hello" :
278
- rtm .IncomingEvents <- SlackEvent {"hello" , & HelloEvent {}}
278
+ rtm .IncomingEvents <- RTMEvent {"hello" , & HelloEvent {}}
279
279
case "pong" :
280
280
rtm .handlePong (rawEvent )
281
281
default :
@@ -292,9 +292,9 @@ func (rtm *RTM) handleAck(event json.RawMessage) {
292
292
return
293
293
}
294
294
if ack .Ok {
295
- rtm .IncomingEvents <- SlackEvent {"ack" , ack }
295
+ rtm .IncomingEvents <- RTMEvent {"ack" , ack }
296
296
} else {
297
- rtm .IncomingEvents <- SlackEvent {"ack_error" , & AckErrorEvent {ack .Error }}
297
+ rtm .IncomingEvents <- RTMEvent {"ack_error" , & AckErrorEvent {ack .Error }}
298
298
}
299
299
}
300
300
@@ -310,7 +310,7 @@ func (rtm *RTM) handlePong(event json.RawMessage) {
310
310
}
311
311
if pingTime , exists := rtm .pings [pong .ReplyTo ]; exists {
312
312
latency := time .Since (pingTime )
313
- rtm .IncomingEvents <- SlackEvent {"latency_report" , & LatencyReport {Value : latency }}
313
+ rtm .IncomingEvents <- RTMEvent {"latency_report" , & LatencyReport {Value : latency }}
314
314
delete (rtm .pings , pong .ReplyTo )
315
315
} else {
316
316
rtm .Debugln ("RTM Error - unmatched 'pong' event:" , string (event ))
@@ -328,7 +328,7 @@ func (rtm *RTM) handleEvent(typeStr string, event json.RawMessage) {
328
328
if ! exists {
329
329
rtm .Debugf ("RTM Error, received unmapped event %q: %s\n " , typeStr , string (event ))
330
330
err := fmt .Errorf ("RTM Error: Received unmapped event %q: %s\n " , typeStr , string (event ))
331
- rtm .IncomingEvents <- SlackEvent {"unmarshalling_error" , & UnmarshallingErrorEvent {err }}
331
+ rtm .IncomingEvents <- RTMEvent {"unmarshalling_error" , & UnmarshallingErrorEvent {err }}
332
332
return
333
333
}
334
334
t := reflect .TypeOf (v )
@@ -337,10 +337,10 @@ func (rtm *RTM) handleEvent(typeStr string, event json.RawMessage) {
337
337
if err != nil {
338
338
rtm .Debugf ("RTM Error, could not unmarshall event %q: %s\n " , typeStr , string (event ))
339
339
err := fmt .Errorf ("RTM Error: Could not unmarshall event %q: %s\n " , typeStr , string (event ))
340
- rtm .IncomingEvents <- SlackEvent {"unmarshalling_error" , & UnmarshallingErrorEvent {err }}
340
+ rtm .IncomingEvents <- RTMEvent {"unmarshalling_error" , & UnmarshallingErrorEvent {err }}
341
341
return
342
342
}
343
- rtm .IncomingEvents <- SlackEvent {typeStr , recvEvent }
343
+ rtm .IncomingEvents <- RTMEvent {typeStr , recvEvent }
344
344
}
345
345
346
346
// eventMapping holds a mapping of event names to their corresponding struct
0 commit comments