293 lines
6.8 KiB
Go
Raw Normal View History

2017-08-26 10:53:28 +02:00
package slack
import (
"bytes"
2017-12-01 23:52:25 +01:00
"context"
2017-08-26 10:53:28 +02:00
"encoding/json"
2018-07-21 13:21:22 +02:00
"errors"
2017-08-26 10:53:28 +02:00
"fmt"
"io"
"io/ioutil"
"mime/multipart"
"net/http"
"net/http/httputil"
"net/url"
"os"
"path/filepath"
"strconv"
2017-12-01 23:52:25 +01:00
"strings"
2017-08-26 10:53:28 +02:00
"time"
)
// SlackResponse handles parsing out errors from the web api.
2018-07-21 13:21:22 +02:00
type SlackResponse struct {
Ok bool `json:"ok"`
Error string `json:"error"`
2017-08-26 10:53:28 +02:00
}
2018-07-21 13:21:22 +02:00
func (t SlackResponse) Err() error {
if t.Ok {
return nil
}
// handle pure text based responses like chat.post
// which while they have a slack response in their data structure
// it doesn't actually get set during parsing.
if strings.TrimSpace(t.Error) == "" {
return nil
}
return errors.New(t.Error)
}
// StatusCodeError represents an http response error.
// type httpStatusCode interface { HTTPStatusCode() int } to handle it.
type statusCodeError struct {
Code int
Status string
}
func (t statusCodeError) Error() string {
return fmt.Sprintf("slack server error: %s", t.Status)
2018-07-21 13:21:22 +02:00
}
2017-08-26 10:53:28 +02:00
2018-07-21 13:21:22 +02:00
func (t statusCodeError) HTTPStatusCode() int {
return t.Code
2017-08-26 10:53:28 +02:00
}
func (t statusCodeError) Retryable() bool {
if t.Code >= 500 || t.Code == http.StatusTooManyRequests {
return true
}
return false
}
// RateLimitedError represents the rate limit respond from slack
type RateLimitedError struct {
RetryAfter time.Duration
}
func (e *RateLimitedError) Error() string {
return fmt.Sprintf("slack rate limit exceeded, retry after %s", e.RetryAfter)
}
func (e *RateLimitedError) Retryable() bool {
return true
}
2017-08-26 10:53:28 +02:00
func fileUploadReq(ctx context.Context, path string, values url.Values, r io.Reader) (*http.Request, error) {
req, err := http.NewRequest("POST", path, r)
2017-08-26 10:53:28 +02:00
if err != nil {
return nil, err
}
req = req.WithContext(ctx)
req.URL.RawQuery = (values).Encode()
return req, nil
}
func downloadFile(client httpClient, token string, downloadURL string, writer io.Writer, d debug) error {
if downloadURL == "" {
return fmt.Errorf("received empty download URL")
}
req, err := http.NewRequest("GET", downloadURL, &bytes.Buffer{})
2017-08-26 10:53:28 +02:00
if err != nil {
return err
2017-08-26 10:53:28 +02:00
}
var bearer = "Bearer " + token
req.Header.Add("Authorization", bearer)
req.WithContext(context.Background())
resp, err := client.Do(req)
2017-08-26 10:53:28 +02:00
if err != nil {
return err
2017-08-26 10:53:28 +02:00
}
defer resp.Body.Close()
err = checkStatusCode(resp, d)
if err != nil {
return err
}
_, err = io.Copy(writer, resp.Body)
return err
2017-08-26 10:53:28 +02:00
}
func parseResponseBody(body io.ReadCloser, intf interface{}, d debug) error {
2017-08-26 10:53:28 +02:00
response, err := ioutil.ReadAll(body)
if err != nil {
return err
}
if d.Debug() {
d.Debugln("parseResponseBody", string(response))
2017-08-26 10:53:28 +02:00
}
2018-07-21 13:21:22 +02:00
return json.Unmarshal(response, intf)
2017-08-26 10:53:28 +02:00
}
func postLocalWithMultipartResponse(ctx context.Context, client httpClient, path, fpath, fieldname string, values url.Values, intf interface{}, d debug) error {
2017-12-01 23:52:25 +01:00
fullpath, err := filepath.Abs(fpath)
if err != nil {
return err
}
file, err := os.Open(fullpath)
if err != nil {
return err
}
defer file.Close()
return postWithMultipartResponse(ctx, client, path, filepath.Base(fpath), fieldname, values, file, intf, d)
2017-12-01 23:52:25 +01:00
}
func postWithMultipartResponse(ctx context.Context, client httpClient, path, name, fieldname string, values url.Values, r io.Reader, intf interface{}, d debug) error {
pipeReader, pipeWriter := io.Pipe()
wr := multipart.NewWriter(pipeWriter)
errc := make(chan error)
go func() {
defer pipeWriter.Close()
ioWriter, err := wr.CreateFormFile(fieldname, name)
if err != nil {
errc <- err
return
}
_, err = io.Copy(ioWriter, r)
if err != nil {
errc <- err
return
}
if err = wr.Close(); err != nil {
errc <- err
return
}
}()
req, err := fileUploadReq(ctx, path, values, pipeReader)
2017-12-01 23:52:25 +01:00
if err != nil {
return err
}
req.Header.Add("Content-Type", wr.FormDataContentType())
2017-12-01 23:52:25 +01:00
req = req.WithContext(ctx)
resp, err := client.Do(req)
2017-08-26 10:53:28 +02:00
if err != nil {
return err
}
defer resp.Body.Close()
err = checkStatusCode(resp, d)
if err != nil {
return err
}
select {
case err = <-errc:
return err
default:
return parseResponseBody(resp.Body, intf, d)
2017-08-26 10:53:28 +02:00
}
}
func doPost(ctx context.Context, client httpClient, req *http.Request, intf interface{}, d debug) error {
2017-12-01 23:52:25 +01:00
req = req.WithContext(ctx)
resp, err := client.Do(req)
2017-08-26 10:53:28 +02:00
if err != nil {
return err
}
defer resp.Body.Close()
err = checkStatusCode(resp, d)
if err != nil {
return err
2017-12-01 23:52:25 +01:00
}
return parseResponseBody(resp.Body, intf, d)
2018-07-21 13:21:22 +02:00
}
2018-08-26 14:12:23 +02:00
// post JSON.
func postJSON(ctx context.Context, client httpClient, endpoint, token string, json []byte, intf interface{}, d debug) error {
2018-07-21 13:21:22 +02:00
reqBody := bytes.NewBuffer(json)
req, err := http.NewRequest("POST", endpoint, reqBody)
if err != nil {
return err
}
req.Header.Set("Content-Type", "application/json")
req.Header.Set("Authorization", fmt.Sprintf("Bearer %s", token))
return doPost(ctx, client, req, intf, d)
2018-07-21 13:21:22 +02:00
}
2018-08-26 14:12:23 +02:00
// post a url encoded form.
func postForm(ctx context.Context, client httpClient, endpoint string, values url.Values, intf interface{}, d debug) error {
2018-07-21 13:21:22 +02:00
reqBody := strings.NewReader(values.Encode())
req, err := http.NewRequest("POST", endpoint, reqBody)
if err != nil {
return err
}
req.Header.Set("Content-Type", "application/x-www-form-urlencoded")
return doPost(ctx, client, req, intf, d)
2017-08-26 10:53:28 +02:00
}
func getResource(ctx context.Context, client httpClient, endpoint string, values url.Values, intf interface{}, d debug) error {
req, err := http.NewRequest("GET", endpoint, nil)
if err != nil {
return err
}
req.Header.Set("Content-Type", "application/x-www-form-urlencoded")
req.URL.RawQuery = values.Encode()
return doPost(ctx, client, req, intf, d)
2017-08-26 10:53:28 +02:00
}
func parseAdminResponse(ctx context.Context, client httpClient, method string, teamName string, values url.Values, intf interface{}, d debug) error {
endpoint := fmt.Sprintf(WEBAPIURLFormat, teamName, method, time.Now().Unix())
return postForm(ctx, client, endpoint, values, intf, d)
2017-08-26 10:53:28 +02:00
}
func logResponse(resp *http.Response, d debug) error {
if d.Debug() {
2017-08-26 10:53:28 +02:00
text, err := httputil.DumpResponse(resp, true)
if err != nil {
return err
}
d.Debugln(string(text))
2017-08-26 10:53:28 +02:00
}
return nil
}
2017-12-01 23:52:25 +01:00
2018-08-26 14:12:23 +02:00
func okJSONHandler(rw http.ResponseWriter, r *http.Request) {
rw.Header().Set("Content-Type", "application/json")
response, _ := json.Marshal(SlackResponse{
Ok: true,
})
rw.Write(response)
2017-12-01 23:52:25 +01:00
}
2018-07-21 13:21:22 +02:00
2018-08-26 14:12:23 +02:00
// timerReset safely reset a timer, see time.Timer.Reset for details.
func timerReset(t *time.Timer, d time.Duration) {
if !t.Stop() {
<-t.C
}
t.Reset(d)
}
func checkStatusCode(resp *http.Response, d debug) error {
if resp.StatusCode == http.StatusTooManyRequests {
retry, err := strconv.ParseInt(resp.Header.Get("Retry-After"), 10, 64)
if err != nil {
return err
}
return &RateLimitedError{time.Duration(retry) * time.Second}
}
// Slack seems to send an HTML body along with 5xx error codes. Don't parse it.
if resp.StatusCode != http.StatusOK {
logResponse(resp, d)
return statusCodeError{Code: resp.StatusCode, Status: resp.Status}
}
return nil
}