5
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2024-09-20 18:22:30 +00:00
matterbridge/vendor/github.com/nlopes/slack/bots.go

51 lines
1.2 KiB
Go
Raw Normal View History

2016-11-05 23:07:24 +00:00
package slack
import (
2017-07-16 12:29:46 +00:00
"context"
2016-11-05 23:07:24 +00:00
"errors"
"net/url"
)
// Bot contains information about a bot
type Bot struct {
ID string `json:"id"`
Name string `json:"name"`
Deleted bool `json:"deleted"`
Icons Icons `json:"icons"`
}
type botResponseFull struct {
Bot `json:"bot,omitempty"` // GetBotInfo
SlackResponse
}
2017-07-16 12:29:46 +00:00
func botRequest(ctx context.Context, path string, values url.Values, debug bool) (*botResponseFull, error) {
2016-11-05 23:07:24 +00:00
response := &botResponseFull{}
2017-07-16 12:29:46 +00:00
err := post(ctx, path, values, response, debug)
2016-11-05 23:07:24 +00:00
if err != nil {
return nil, err
}
if !response.Ok {
return nil, errors.New(response.Error)
}
return response, nil
}
2017-01-27 23:36:22 +00:00
// GetBotInfo will retrieve the complete bot information
2016-11-05 23:07:24 +00:00
func (api *Client) GetBotInfo(bot string) (*Bot, error) {
2017-07-16 12:29:46 +00:00
return api.GetBotInfoContext(context.Background(), bot)
}
// GetBotInfoContext will retrieve the complete bot information using a custom context
func (api *Client) GetBotInfoContext(ctx context.Context, bot string) (*Bot, error) {
2016-11-05 23:07:24 +00:00
values := url.Values{
"token": {api.config.token},
"bot": {bot},
}
2017-07-16 12:29:46 +00:00
response, err := botRequest(ctx, "bots.info", values, api.debug)
2016-11-05 23:07:24 +00:00
if err != nil {
return nil, err
}
return &response.Bot, nil
}