mirror of
https://github.com/cwinfo/matterbridge.git
synced 2025-06-26 13:09:24 +00:00
Do not panic on non-json response from server (zulip)
This commit is contained in:
5
vendor/github.com/matterbridge/gozulipbot/queue.go
generated
vendored
5
vendor/github.com/matterbridge/gozulipbot/queue.go
generated
vendored
@ -1,6 +1,7 @@
|
||||
package gozulipbot
|
||||
|
||||
import (
|
||||
"bytes"
|
||||
"encoding/json"
|
||||
"fmt"
|
||||
"io/ioutil"
|
||||
@ -18,6 +19,7 @@ var (
|
||||
BackoffError = fmt.Errorf("Too many requests")
|
||||
BadEventQueueError = fmt.Errorf("BAD_EVENT_QUEUE_ID error")
|
||||
UnknownError = fmt.Errorf("Error was unknown")
|
||||
NoJSONError = fmt.Errorf("No JSON in body found")
|
||||
)
|
||||
|
||||
type Queue struct {
|
||||
@ -150,6 +152,9 @@ func (q *Queue) GetEvents() ([]EventMessage, error) {
|
||||
case resp.StatusCode == 403:
|
||||
return nil, UnauthorizedError
|
||||
case resp.StatusCode >= 400:
|
||||
if bytes.HasPrefix(body, []byte("<")) {
|
||||
return nil, NoJSONError
|
||||
}
|
||||
qErr, err := q.ParseError(body)
|
||||
if err != nil || qErr == nil {
|
||||
return nil, UnknownError
|
||||
|
2
vendor/modules.txt
vendored
2
vendor/modules.txt
vendored
@ -70,7 +70,7 @@ github.com/magiconair/properties
|
||||
github.com/matterbridge/go-xmpp
|
||||
# github.com/matterbridge/gomatrix v0.0.0-20190102230110-6f9631ca6dea
|
||||
github.com/matterbridge/gomatrix
|
||||
# github.com/matterbridge/gozulipbot v0.0.0-20190211002717-befe50663a92
|
||||
# github.com/matterbridge/gozulipbot v0.0.0-20190212232658-7aa251978a18
|
||||
github.com/matterbridge/gozulipbot
|
||||
# github.com/matterbridge/logrus-prefixed-formatter v0.0.0-20180806162718-01618749af61
|
||||
github.com/matterbridge/logrus-prefixed-formatter
|
||||
|
Reference in New Issue
Block a user