Codebase list golang-github-nlopes-slack / f282e598-9350-4d40-ba4b-90cbf2cd4600/upstream/0.6.0 emoji.go
f282e598-9350-4d40-ba4b-90cbf2cd4600/upstream/0.6.0

Tree @f282e598-9350-4d40-ba4b-90cbf2cd4600/upstream/0.6.0 (Download .tar.gz)

emoji.go @f282e598-9350-4d40-ba4b-90cbf2cd4600/upstream/0.6.0raw · history · blame

package slack

import (
	"context"
	"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) {
	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) {
	values := url.Values{
		"token": {api.token},
	}
	response := &emojiResponseFull{}

	err := api.postMethod(ctx, "emoji.list", values, response)
	if err != nil {
		return nil, err
	}

	if response.Err() != nil {
		return nil, response.Err()
	}

	return response.Emoji, nil
}