matterbridge/vendor/github.com/slack-go/slack/emoji.go

36 lines
714 B
Go
Raw Normal View History

2016-09-05 16:34:37 +02:00
package slack
import (
2017-07-16 14:29:46 +02:00
"context"
2016-09-05 16:34:37 +02:00
"net/url"
)
type emojiResponseFull struct {
Emoji map[string]string `json:"emoji"`
SlackResponse
}
// GetEmoji retrieves all the emojis
func (api *Client) GetEmoji() (map[string]string, error) {
2017-07-16 14:29:46 +02:00
return api.GetEmojiContext(context.Background())
}
// GetEmojiContext retrieves all the emojis with a custom context
func (api *Client) GetEmojiContext(ctx context.Context) (map[string]string, error) {
2016-09-05 16:34:37 +02:00
values := url.Values{
2018-08-10 00:38:19 +02:00
"token": {api.token},
2016-09-05 16:34:37 +02:00
}
response := &emojiResponseFull{}
2018-08-10 00:38:19 +02:00
2019-09-07 22:46:58 +02:00
err := api.postMethod(ctx, "emoji.list", values, response)
2016-09-05 16:34:37 +02:00
if err != nil {
return nil, err
}
2019-09-07 22:46:58 +02:00
if response.Err() != nil {
return nil, response.Err()
2016-09-05 16:34:37 +02:00
}
2019-09-07 22:46:58 +02:00
2016-09-05 16:34:37 +02:00
return response.Emoji, nil
}