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

36 lines
714 B
Go
Raw Normal View History

2016-09-05 14:34:37 +00:00
package slack
import (
2017-07-16 12:29:46 +00:00
"context"
2016-09-05 14:34:37 +00: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 12:29:46 +00: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 14:34:37 +00:00
values := url.Values{
2018-08-09 22:38:19 +00:00
"token": {api.token},
2016-09-05 14:34:37 +00:00
}
response := &emojiResponseFull{}
2018-08-09 22:38:19 +00:00
2019-09-07 20:46:58 +00:00
err := api.postMethod(ctx, "emoji.list", values, response)
2016-09-05 14:34:37 +00:00
if err != nil {
return nil, err
}
2019-09-07 20:46:58 +00:00
if response.Err() != nil {
return nil, response.Err()
2016-09-05 14:34:37 +00:00
}
2019-09-07 20:46:58 +00:00
2016-09-05 14:34:37 +00:00
return response.Emoji, nil
}