mirror of
https://github.com/42wim/matterbridge.git
synced 2024-11-22 20:19:35 +01:00
c4157a4d5b
* Update dependencies * Fix whatsmeow API changes
73 lines
2.3 KiB
Go
73 lines
2.3 KiB
Go
package slack
|
|
|
|
import (
|
|
"context"
|
|
"encoding/json"
|
|
"net/url"
|
|
)
|
|
|
|
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"`
|
|
}
|
|
|
|
// ListEventAuthorizations lists authed users and teams for the given event_context.
|
|
// You must provide an app-level token to the client using OptionAppLevelToken.
|
|
// For more details, see ListEventAuthorizationsContext documentation.
|
|
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 with a custom context.
|
|
// Slack API docs: 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
|
|
}
|
|
|
|
// UninstallApp uninstalls your app from a workspace.
|
|
// For more details, see UninstallAppContext documentation.
|
|
func (api *Client) UninstallApp(clientID, clientSecret string) error {
|
|
return api.UninstallAppContext(context.Background(), clientID, clientSecret)
|
|
}
|
|
|
|
// UninstallAppContext uninstalls your app from a workspace with a custom context.
|
|
// Slack API docs: https://api.slack.com/methods/apps.uninstall
|
|
func (api *Client) UninstallAppContext(ctx context.Context, clientID, clientSecret string) error {
|
|
values := url.Values{
|
|
"client_id": {clientID},
|
|
"client_secret": {clientSecret},
|
|
}
|
|
|
|
response := SlackResponse{}
|
|
|
|
err := api.getMethod(ctx, "apps.uninstall", api.token, values, &response)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
return response.Err()
|
|
}
|