Codebase list golang-github-nlopes-slack / 676c3c4 slack.go
676c3c4

Tree @676c3c4 (Download .tar.gz)

slack.go @676c3c4raw · history · blame

package slack

import (
	"errors"
	"net/url"
)

/*
  Added as a var so that we can change this for testing purposes
*/
var SLACK_API string = "https://slack.com/api/"

type SlackResponse struct {
	Ok    bool   `json:"ok"`
	Error string `json:"error"`
}

type AuthTestResponse struct {
	Url    string `json:"url"`
	Team   string `json:"team"`
	User   string `json:"user"`
	TeamId string `json:"team_id"`
	UserId string `json:"user_id"`
}

type authTestResponseFull struct {
	SlackResponse
	AuthTestResponse
}

type Slack struct {
	config Config
	info   Info
	debug  bool
}

func New(token string) *Slack {
	return &Slack{
		config: Config{token: token},
	}
}

func (api *Slack) GetInfo() Info {
	return api.info
}

// AuthTest tests if the user is able to do authenticated requests or not
func (api *Slack) AuthTest() (response *AuthTestResponse, error error) {
	responseFull := &authTestResponseFull{}
	err := parseResponse("auth.test", url.Values{"token": {api.config.token}}, responseFull, api.debug)
	if err != nil {
		return nil, err
	}
	if !responseFull.Ok {
		return nil, errors.New(responseFull.Error)
	}
	return &responseFull.AuthTestResponse, nil
}

// SetDebug switches the api into debug mode
// When in debug mode, it logs various info about what its doing
// If you ever use this in production, don't call SetDebug(true)
func (api *Slack) SetDebug(debug bool) {
	api.debug = debug
}