mirror of
https://github.com/42wim/matterbridge
synced 2024-11-03 15:40:24 +00:00
44 lines
1.3 KiB
Go
44 lines
1.3 KiB
Go
package slack
|
|
|
|
import (
|
|
"context"
|
|
"encoding/json"
|
|
)
|
|
|
|
type listEventAuthorizationsResponse struct {
|
|
SlackResponse
|
|
Authorizations []EventAuthorization `json:"authorizations"`
|
|
}
|
|
|
|
type EventAuthorization struct {
|
|
EnterpriseID string `json:"enterprise_id"`
|
|
TeamID string `json:"team_id"`
|
|
UserID string `json:"user_id"`
|
|
IsBot bool `json:"is_bot"`
|
|
IsEnterpriseInstall bool `json:"is_enterprise_install"`
|
|
}
|
|
|
|
func (api *Client) ListEventAuthorizations(eventContext string) ([]EventAuthorization, error) {
|
|
return api.ListEventAuthorizationsContext(context.Background(), eventContext)
|
|
}
|
|
|
|
// ListEventAuthorizationsContext lists authed users and teams for the given event_context. You must provide an app-level token to the client using OptionAppLevelToken. More info: https://api.slack.com/methods/apps.event.authorizations.list
|
|
func (api *Client) ListEventAuthorizationsContext(ctx context.Context, eventContext string) ([]EventAuthorization, error) {
|
|
resp := &listEventAuthorizationsResponse{}
|
|
|
|
request, _ := json.Marshal(map[string]string{
|
|
"event_context": eventContext,
|
|
})
|
|
|
|
err := postJSON(ctx, api.httpclient, api.endpoint+"apps.event.authorizations.list", api.appLevelToken, request, &resp, api)
|
|
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
if !resp.Ok {
|
|
return nil, resp.Err()
|
|
}
|
|
|
|
return resp.Authorizations, nil
|
|
}
|