summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/nlopes/slack/team.go
diff options
context:
space:
mode:
authorWim <wim@42.be>2017-11-02 17:09:34 +0100
committerWim <wim@42.be>2017-11-02 17:09:34 +0100
commitb2a6777995c55233a47212743c781a27dde8dce6 (patch)
treebe4a9ef00448f82c71ae47d42835347160b70900 /vendor/github.com/nlopes/slack/team.go
parentb461fc5e404c6e0df7289477171cad629cddb3e6 (diff)
downloadmatterbridge-msglm-b2a6777995c55233a47212743c781a27dde8dce6.tar.gz
matterbridge-msglm-b2a6777995c55233a47212743c781a27dde8dce6.tar.bz2
matterbridge-msglm-b2a6777995c55233a47212743c781a27dde8dce6.zip
Use matterbridge vendored slack
Diffstat (limited to 'vendor/github.com/nlopes/slack/team.go')
-rw-r--r--vendor/github.com/nlopes/slack/team.go176
1 files changed, 0 insertions, 176 deletions
diff --git a/vendor/github.com/nlopes/slack/team.go b/vendor/github.com/nlopes/slack/team.go
deleted file mode 100644
index e70ac57e..00000000
--- a/vendor/github.com/nlopes/slack/team.go
+++ /dev/null
@@ -1,176 +0,0 @@
-package slack
-
-import (
- "context"
- "errors"
- "net/url"
- "strconv"
-)
-
-const (
- DEFAULT_LOGINS_COUNT = 100
- DEFAULT_LOGINS_PAGE = 1
-)
-
-type TeamResponse struct {
- Team TeamInfo `json:"team"`
- SlackResponse
-}
-
-type TeamInfo struct {
- ID string `json:"id"`
- Name string `json:"name"`
- Domain string `json:"domain"`
- EmailDomain string `json:"email_domain"`
- Icon map[string]interface{} `json:"icon"`
-}
-
-type LoginResponse struct {
- Logins []Login `json:"logins"`
- Paging `json:"paging"`
- SlackResponse
-}
-
-type Login struct {
- UserID string `json:"user_id"`
- Username string `json:"username"`
- DateFirst int `json:"date_first"`
- DateLast int `json:"date_last"`
- Count int `json:"count"`
- IP string `json:"ip"`
- UserAgent string `json:"user_agent"`
- ISP string `json:"isp"`
- Country string `json:"country"`
- Region string `json:"region"`
-}
-
-type BillableInfoResponse struct {
- BillableInfo map[string]BillingActive `json:"billable_info"`
- SlackResponse
-}
-
-type BillingActive struct {
- BillingActive bool `json:"billing_active"`
-}
-
-// AccessLogParameters contains all the parameters necessary (including the optional ones) for a GetAccessLogs() request
-type AccessLogParameters struct {
- Count int
- Page int
-}
-
-// NewAccessLogParameters provides an instance of AccessLogParameters with all the sane default values set
-func NewAccessLogParameters() AccessLogParameters {
- return AccessLogParameters{
- Count: DEFAULT_LOGINS_COUNT,
- Page: DEFAULT_LOGINS_PAGE,
- }
-}
-
-func teamRequest(ctx context.Context, path string, values url.Values, debug bool) (*TeamResponse, error) {
- response := &TeamResponse{}
- err := post(ctx, path, values, response, debug)
- if err != nil {
- return nil, err
- }
-
- if !response.Ok {
- return nil, errors.New(response.Error)
- }
-
- return response, nil
-}
-
-func billableInfoRequest(ctx context.Context, path string, values url.Values, debug bool) (map[string]BillingActive, error) {
- response := &BillableInfoResponse{}
- err := post(ctx, path, values, response, debug)
- if err != nil {
- return nil, err
- }
-
- if !response.Ok {
- return nil, errors.New(response.Error)
- }
-
- return response.BillableInfo, nil
-}
-
-func accessLogsRequest(ctx context.Context, path string, values url.Values, debug bool) (*LoginResponse, error) {
- response := &LoginResponse{}
- err := post(ctx, path, values, response, debug)
- if err != nil {
- return nil, err
- }
- if !response.Ok {
- return nil, errors.New(response.Error)
- }
- return response, nil
-}
-
-// GetTeamInfo gets the Team Information of the user
-func (api *Client) GetTeamInfo() (*TeamInfo, error) {
- return api.GetTeamInfoContext(context.Background())
-}
-
-// GetTeamInfoContext gets the Team Information of the user with a custom context
-func (api *Client) GetTeamInfoContext(ctx context.Context) (*TeamInfo, error) {
- values := url.Values{
- "token": {api.config.token},
- }
-
- response, err := teamRequest(ctx, "team.info", values, api.debug)
- if err != nil {
- return nil, err
- }
- return &response.Team, nil
-}
-
-// GetAccessLogs retrieves a page of logins according to the parameters given
-func (api *Client) GetAccessLogs(params AccessLogParameters) ([]Login, *Paging, error) {
- return api.GetAccessLogsContext(context.Background(), params)
-}
-
-// GetAccessLogsContext retrieves a page of logins according to the parameters given with a custom context
-func (api *Client) GetAccessLogsContext(ctx context.Context, params AccessLogParameters) ([]Login, *Paging, error) {
- values := url.Values{
- "token": {api.config.token},
- }
- if params.Count != DEFAULT_LOGINS_COUNT {
- values.Add("count", strconv.Itoa(params.Count))
- }
- if params.Page != DEFAULT_LOGINS_PAGE {
- values.Add("page", strconv.Itoa(params.Page))
- }
- response, err := accessLogsRequest(ctx, "team.accessLogs", values, api.debug)
- if err != nil {
- return nil, nil, err
- }
- return response.Logins, &response.Paging, nil
-}
-
-func (api *Client) GetBillableInfo(user string) (map[string]BillingActive, error) {
- return api.GetBillableInfoContext(context.Background(), user)
-}
-
-func (api *Client) GetBillableInfoContext(ctx context.Context, user string) (map[string]BillingActive, error) {
- values := url.Values{
- "token": {api.config.token},
- "user": {user},
- }
-
- return billableInfoRequest(ctx, "team.billableInfo", values, api.debug)
-}
-
-// GetBillableInfoForTeam returns the billing_active status of all users on the team.
-func (api *Client) GetBillableInfoForTeam() (map[string]BillingActive, error) {
- return api.GetBillableInfoForTeamContext(context.Background())
-}
-
-// GetBillableInfoForTeamContext returns the billing_active status of all users on the team with a custom context
-func (api *Client) GetBillableInfoForTeamContext(ctx context.Context) (map[string]BillingActive, error) {
- values := url.Values{
- "token": {api.config.token},
- }
-
- return billableInfoRequest(ctx, "team.billableInfo", values, api.debug)
-}