5
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2024-09-20 06:42:31 +00:00
matterbridge/vendor/github.com/slack-go/slack/team.go

168 lines
4.7 KiB
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"
2016-11-05 23:07:24 +00:00
"strconv"
)
const (
2017-07-16 12:29:46 +00:00
DEFAULT_LOGINS_COUNT = 100
DEFAULT_LOGINS_PAGE = 1
2016-09-05 14:34:37 +00:00
)
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"`
}
2016-11-05 23:07:24 +00:00
type LoginResponse struct {
Logins []Login `json:"logins"`
2017-07-16 12:29:46 +00:00
Paging `json:"paging"`
2016-11-05 23:07:24 +00:00
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"`
}
2017-01-27 23:36:22 +00:00
type BillableInfoResponse struct {
BillableInfo map[string]BillingActive `json:"billable_info"`
SlackResponse
}
type BillingActive struct {
BillingActive bool `json:"billing_active"`
}
2016-11-05 23:07:24 +00:00
// AccessLogParameters contains all the parameters necessary (including the optional ones) for a GetAccessLogs() request
type AccessLogParameters struct {
2017-07-16 12:29:46 +00:00
Count int
Page int
2016-11-05 23:07:24 +00:00
}
// 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,
}
}
2019-09-07 20:46:58 +00:00
func (api *Client) teamRequest(ctx context.Context, path string, values url.Values) (*TeamResponse, error) {
2016-09-05 14:34:37 +00:00
response := &TeamResponse{}
2019-09-07 20:46:58 +00:00
err := api.postMethod(ctx, path, values, response)
2016-09-05 14:34:37 +00:00
if err != nil {
return nil, err
}
2018-12-01 18:55:35 +00:00
return response, response.Err()
2016-09-05 14:34:37 +00:00
}
2019-09-07 20:46:58 +00:00
func (api *Client) billableInfoRequest(ctx context.Context, path string, values url.Values) (map[string]BillingActive, error) {
2017-01-27 23:36:22 +00:00
response := &BillableInfoResponse{}
2019-09-07 20:46:58 +00:00
err := api.postMethod(ctx, path, values, response)
2017-01-27 23:36:22 +00:00
if err != nil {
return nil, err
}
2018-12-01 18:55:35 +00:00
return response.BillableInfo, response.Err()
2017-01-27 23:36:22 +00:00
}
2019-09-07 20:46:58 +00:00
func (api *Client) accessLogsRequest(ctx context.Context, path string, values url.Values) (*LoginResponse, error) {
2016-11-05 23:07:24 +00:00
response := &LoginResponse{}
2019-09-07 20:46:58 +00:00
err := api.postMethod(ctx, path, values, response)
2016-11-05 23:07:24 +00:00
if err != nil {
return nil, err
}
2018-12-01 18:55:35 +00:00
return response, response.Err()
2016-11-05 23:07:24 +00:00
}
2016-09-05 14:34:37 +00:00
// GetTeamInfo gets the Team Information of the user
func (api *Client) GetTeamInfo() (*TeamInfo, error) {
2017-07-16 12:29:46 +00:00
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) {
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
}
2019-09-07 20:46:58 +00:00
response, err := api.teamRequest(ctx, "team.info", values)
2016-09-05 14:34:37 +00:00
if err != nil {
return nil, err
}
return &response.Team, nil
}
2016-11-05 23:07:24 +00:00
// GetAccessLogs retrieves a page of logins according to the parameters given
func (api *Client) GetAccessLogs(params AccessLogParameters) ([]Login, *Paging, error) {
2017-07-16 12:29:46 +00:00
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) {
2016-11-05 23:07:24 +00:00
values := url.Values{
2018-08-09 22:38:19 +00:00
"token": {api.token},
2016-11-05 23:07:24 +00:00
}
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))
}
2018-08-09 22:38:19 +00:00
2019-09-07 20:46:58 +00:00
response, err := api.accessLogsRequest(ctx, "team.accessLogs", values)
2016-11-05 23:07:24 +00:00
if err != nil {
return nil, nil, err
}
return response.Logins, &response.Paging, nil
}
2019-09-07 20:46:58 +00:00
// GetBillableInfo ...
2017-01-27 23:36:22 +00:00
func (api *Client) GetBillableInfo(user string) (map[string]BillingActive, error) {
2017-07-16 12:29:46 +00:00
return api.GetBillableInfoContext(context.Background(), user)
}
2019-09-07 20:46:58 +00:00
// GetBillableInfoContext ...
2017-07-16 12:29:46 +00:00
func (api *Client) GetBillableInfoContext(ctx context.Context, user string) (map[string]BillingActive, error) {
2017-01-27 23:36:22 +00:00
values := url.Values{
2018-08-09 22:38:19 +00:00
"token": {api.token},
2017-07-16 12:29:46 +00:00
"user": {user},
2017-01-27 23:36:22 +00:00
}
2019-09-07 20:46:58 +00:00
return api.billableInfoRequest(ctx, "team.billableInfo", values)
2017-01-27 23:36:22 +00:00
}
// GetBillableInfoForTeam returns the billing_active status of all users on the team.
func (api *Client) GetBillableInfoForTeam() (map[string]BillingActive, error) {
2017-07-16 12:29:46 +00:00
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) {
2017-01-27 23:36:22 +00:00
values := url.Values{
2018-08-09 22:38:19 +00:00
"token": {api.token},
2017-01-27 23:36:22 +00:00
}
2019-09-07 20:46:58 +00:00
return api.billableInfoRequest(ctx, "team.billableInfo", values)
2017-01-27 23:36:22 +00:00
}