From 250b3bb5795240d5ebdab5416ab99dbc41be734b Mon Sep 17 00:00:00 2001 From: Wim Date: Sun, 1 Mar 2020 20:59:19 +0100 Subject: Use upstream slack-go/slack again (#1018) --- vendor/github.com/nlopes/slack/auth.go | 40 ---------------------------------- 1 file changed, 40 deletions(-) delete mode 100644 vendor/github.com/nlopes/slack/auth.go (limited to 'vendor/github.com/nlopes/slack/auth.go') diff --git a/vendor/github.com/nlopes/slack/auth.go b/vendor/github.com/nlopes/slack/auth.go deleted file mode 100644 index dc1dbcdf..00000000 --- a/vendor/github.com/nlopes/slack/auth.go +++ /dev/null @@ -1,40 +0,0 @@ -package slack - -import ( - "context" - "net/url" -) - -// AuthRevokeResponse contains our Auth response from the auth.revoke endpoint -type AuthRevokeResponse struct { - SlackResponse // Contains the "ok", and "Error", if any - Revoked bool `json:"revoked,omitempty"` -} - -// authRequest sends the actual request, and unmarshals the response -func (api *Client) authRequest(ctx context.Context, path string, values url.Values) (*AuthRevokeResponse, error) { - response := &AuthRevokeResponse{} - err := api.postMethod(ctx, path, values, response) - if err != nil { - return nil, err - } - - return response, response.Err() -} - -// SendAuthRevoke will send a revocation for our token -func (api *Client) SendAuthRevoke(token string) (*AuthRevokeResponse, error) { - return api.SendAuthRevokeContext(context.Background(), token) -} - -// SendAuthRevokeContext will retrieve the satus from api.test -func (api *Client) SendAuthRevokeContext(ctx context.Context, token string) (*AuthRevokeResponse, error) { - if token == "" { - token = api.token - } - values := url.Values{ - "token": {token}, - } - - return api.authRequest(ctx, "auth.revoke", values) -} -- cgit v1.2.3