5
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2024-09-20 03:12:31 +00:00
matterbridge/vendor/github.com/slack-go/slack/bots.go

59 lines
1.3 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
"net/url"
)
// Bot contains information about a bot
type Bot struct {
2019-12-07 21:54:36 +00:00
ID string `json:"id"`
Name string `json:"name"`
Deleted bool `json:"deleted"`
UserID string `json:"user_id"`
AppID string `json:"app_id"`
Updated JSONTime `json:"updated"`
Icons Icons `json:"icons"`
2016-11-05 23:07:24 +00:00
}
type botResponseFull struct {
Bot `json:"bot,omitempty"` // GetBotInfo
SlackResponse
}
2019-09-07 20:46:58 +00:00
func (api *Client) botRequest(ctx context.Context, path string, values url.Values) (*botResponseFull, error) {
2016-11-05 23:07:24 +00:00
response := &botResponseFull{}
2019-09-07 20:46:58 +00:00
err := api.postMethod(ctx, path, values, response)
2016-11-05 23:07:24 +00:00
if err != nil {
return nil, err
}
2019-09-07 20:46:58 +00:00
if err := response.Err(); err != nil {
return nil, err
2016-11-05 23:07:24 +00:00
}
2019-09-07 20:46:58 +00:00
2016-11-05 23:07:24 +00:00
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{
2018-08-09 22:38:19 +00:00
"token": {api.token},
2016-11-05 23:07:24 +00:00
}
2018-08-09 22:38:19 +00:00
2019-09-07 20:46:58 +00:00
if bot != "" {
values.Add("bot", bot)
}
response, err := api.botRequest(ctx, "bots.info", values)
2016-11-05 23:07:24 +00:00
if err != nil {
return nil, err
}
return &response.Bot, nil
}