Skip to content

Commit 065c48f

Browse files
committed
Removed Slack prefix from some structs
1 parent 8802c0d commit 065c48f

File tree

7 files changed

+40
-42
lines changed

7 files changed

+40
-42
lines changed

TODO.txt

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
11
- Add more tests!!!
2-
- Add timeouts
3-
- Fix the Websocket mess
42
- Add support to have markdown hints
53
- See section Message Formatting at https://api.slack.com/docs/formatting

examples/websocket/websocket.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ func main() {
3636
case *slack.LatencyReport:
3737
fmt.Printf("Current latency: %v\n", ev.Value)
3838

39-
case *slack.SlackWSError:
39+
case *slack.RTMError:
4040
fmt.Printf("Error: %s\n", ev.Error())
4141

4242
default:

info.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ type Info struct {
157157

158158
type infoResponseFull struct {
159159
Info
160-
SlackWebResponse
160+
WebResponse
161161
}
162162

163163
// GetBotByID returns a bot given a bot id

misc.go

+11
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,17 @@ import (
1616
"time"
1717
)
1818

19+
type WebResponse struct {
20+
Ok bool `json:"ok"`
21+
Error *WebError `json:"error"`
22+
}
23+
24+
type WebError string
25+
26+
func (s WebError) Error() string {
27+
return string(s)
28+
}
29+
1930
func fileUploadReq(path, fpath string, values url.Values) (*http.Request, error) {
2031
fullpath, err := filepath.Abs(fpath)
2132
if err != nil {

websocket.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ type RTM struct {
2525

2626
// Connection life-cycle
2727
conn *websocket.Conn
28-
IncomingEvents chan SlackEvent
28+
IncomingEvents chan RTMEvent
2929
outgoingMessages chan OutgoingMessage
3030
killChannel chan bool
3131
forcePing chan bool
@@ -46,7 +46,7 @@ type RTM struct {
4646
func newRTM(api *Client) *RTM {
4747
return &RTM{
4848
Client: *api,
49-
IncomingEvents: make(chan SlackEvent, 50),
49+
IncomingEvents: make(chan RTMEvent, 50),
5050
outgoingMessages: make(chan OutgoingMessage, 20),
5151
pings: make(map[int]time.Time),
5252
isConnected: false,

websocket_managed_conn.go

+17-17
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ func (rtm *RTM) ManageConnection() {
3636
return
3737
}
3838
rtm.info = info
39-
rtm.IncomingEvents <- SlackEvent{"connected", &ConnectedEvent{
39+
rtm.IncomingEvents <- RTMEvent{"connected", &ConnectedEvent{
4040
ConnectionCount: connectionCount,
4141
Info: info,
4242
}}
@@ -76,7 +76,7 @@ func (rtm *RTM) connect(connectionCount int) (*Info, *websocket.Conn, error) {
7676

7777
for {
7878
// send connecting event
79-
rtm.IncomingEvents <- SlackEvent{"connecting", &ConnectingEvent{
79+
rtm.IncomingEvents <- RTMEvent{"connecting", &ConnectingEvent{
8080
Attempt: boff.attempts + 1,
8181
ConnectionCount: connectionCount,
8282
}}
@@ -86,13 +86,13 @@ func (rtm *RTM) connect(connectionCount int) (*Info, *websocket.Conn, error) {
8686
return info, conn, nil
8787
}
8888
// 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{}}
9191
return nil, nil, sErr
9292
}
9393
// any other errors are treated as recoverable and we try again after
9494
// sending the event along the IncomingEvents channel
95-
rtm.IncomingEvents <- SlackEvent{"connection_error", &ConnectionErrorEvent{
95+
rtm.IncomingEvents <- RTMEvent{"connection_error", &ConnectionErrorEvent{
9696
Attempt: boff.attempts,
9797
ErrorObj: err,
9898
}}
@@ -132,7 +132,7 @@ func (rtm *RTM) killConnection(keepRunning chan bool, intentional bool) error {
132132
rtm.isConnected = false
133133
rtm.wasIntentional = intentional
134134
err := rtm.conn.Close()
135-
rtm.IncomingEvents <- SlackEvent{"disconnected", &DisconnectedEvent{intentional}}
135+
rtm.IncomingEvents <- RTMEvent{"disconnected", &DisconnectedEvent{intentional}}
136136
return err
137137
}
138138

@@ -198,15 +198,15 @@ func (rtm *RTM) handleIncomingEvents(keepRunning <-chan bool) {
198198
func (rtm *RTM) sendOutgoingMessage(msg OutgoingMessage) {
199199
rtm.Debugln("Sending message:", msg)
200200
if len(msg.Text) > MaxMessageTextLength {
201-
rtm.IncomingEvents <- SlackEvent{"outgoing_error", &MessageTooLongEvent{
201+
rtm.IncomingEvents <- RTMEvent{"outgoing_error", &MessageTooLongEvent{
202202
Message: msg,
203203
MaxLength: MaxMessageTextLength,
204204
}}
205205
return
206206
}
207207
err := websocket.JSON.Send(rtm.conn, msg)
208208
if err != nil {
209-
rtm.IncomingEvents <- SlackEvent{"outgoing_error", &OutgoingErrorEvent{
209+
rtm.IncomingEvents <- RTMEvent{"outgoing_error", &OutgoingErrorEvent{
210210
Message: msg,
211211
ErrorObj: err,
212212
}}
@@ -249,7 +249,7 @@ func (rtm *RTM) receiveIncomingEvent() {
249249
rtm.forcePing <- true
250250
return
251251
} else if err != nil {
252-
rtm.IncomingEvents <- SlackEvent{"incoming_error", &IncomingEventError{
252+
rtm.IncomingEvents <- RTMEvent{"incoming_error", &IncomingEventError{
253253
ErrorObj: err,
254254
}}
255255
// force a ping here too?
@@ -268,14 +268,14 @@ func (rtm *RTM) handleRawEvent(rawEvent json.RawMessage) {
268268
event := &Event{}
269269
err := json.Unmarshal(rawEvent, event)
270270
if err != nil {
271-
rtm.IncomingEvents <- SlackEvent{"unmarshalling_error", &UnmarshallingErrorEvent{err}}
271+
rtm.IncomingEvents <- RTMEvent{"unmarshalling_error", &UnmarshallingErrorEvent{err}}
272272
return
273273
}
274274
switch event.Type {
275275
case "":
276276
rtm.handleAck(rawEvent)
277277
case "hello":
278-
rtm.IncomingEvents <- SlackEvent{"hello", &HelloEvent{}}
278+
rtm.IncomingEvents <- RTMEvent{"hello", &HelloEvent{}}
279279
case "pong":
280280
rtm.handlePong(rawEvent)
281281
default:
@@ -292,9 +292,9 @@ func (rtm *RTM) handleAck(event json.RawMessage) {
292292
return
293293
}
294294
if ack.Ok {
295-
rtm.IncomingEvents <- SlackEvent{"ack", ack}
295+
rtm.IncomingEvents <- RTMEvent{"ack", ack}
296296
} else {
297-
rtm.IncomingEvents <- SlackEvent{"ack_error", &AckErrorEvent{ack.Error}}
297+
rtm.IncomingEvents <- RTMEvent{"ack_error", &AckErrorEvent{ack.Error}}
298298
}
299299
}
300300

@@ -310,7 +310,7 @@ func (rtm *RTM) handlePong(event json.RawMessage) {
310310
}
311311
if pingTime, exists := rtm.pings[pong.ReplyTo]; exists {
312312
latency := time.Since(pingTime)
313-
rtm.IncomingEvents <- SlackEvent{"latency_report", &LatencyReport{Value: latency}}
313+
rtm.IncomingEvents <- RTMEvent{"latency_report", &LatencyReport{Value: latency}}
314314
delete(rtm.pings, pong.ReplyTo)
315315
} else {
316316
rtm.Debugln("RTM Error - unmatched 'pong' event:", string(event))
@@ -328,7 +328,7 @@ func (rtm *RTM) handleEvent(typeStr string, event json.RawMessage) {
328328
if !exists {
329329
rtm.Debugf("RTM Error, received unmapped event %q: %s\n", typeStr, string(event))
330330
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}}
332332
return
333333
}
334334
t := reflect.TypeOf(v)
@@ -337,10 +337,10 @@ func (rtm *RTM) handleEvent(typeStr string, event json.RawMessage) {
337337
if err != nil {
338338
rtm.Debugf("RTM Error, could not unmarshall event %q: %s\n", typeStr, string(event))
339339
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}}
341341
return
342342
}
343-
rtm.IncomingEvents <- SlackEvent{typeStr, recvEvent}
343+
rtm.IncomingEvents <- RTMEvent{typeStr, recvEvent}
344344
}
345345

346346
// eventMapping holds a mapping of event names to their corresponding struct

websocket_misc.go

+8-19
Original file line numberDiff line numberDiff line change
@@ -10,38 +10,27 @@ type AckMessage struct {
1010
ReplyTo int `json:"reply_to"`
1111
Timestamp string `json:"ts"`
1212
Text string `json:"text"`
13-
SlackWSResponse
13+
RTMResponse
1414
}
1515

16-
type SlackWebResponse struct {
17-
Ok bool `json:"ok"`
18-
Error *SlackWebError `json:"error"`
16+
type RTMResponse struct {
17+
Ok bool `json:"ok"`
18+
Error *RTMError `json:"error"`
1919
}
2020

21-
type SlackWebError string
22-
23-
func (s SlackWebError) Error() string {
24-
return string(s)
25-
}
26-
27-
type SlackWSResponse struct {
28-
Ok bool `json:"ok"`
29-
Error *SlackWSError `json:"error"`
30-
}
31-
32-
type SlackWSError struct {
21+
type RTMError struct {
3322
Code int
3423
Msg string
3524
}
3625

37-
func (s SlackWSError) Error() string {
26+
func (s RTMError) Error() string {
3827
return fmt.Sprintf("Code %d - %s", s.Code, s.Msg)
3928
}
4029

4130
type MessageEvent Message
4231

43-
// SlackEvent is the main wrapper. You will find all the other messages attached
44-
type SlackEvent struct {
32+
// RTMEvent is the main wrapper. You will find all the other messages attached
33+
type RTMEvent struct {
4534
Type string
4635
Data interface{}
4736
}

0 commit comments

Comments
 (0)