mirror of
https://github.com/netbirdio/netbird.git
synced 2026-04-16 07:16:38 +00:00
120 lines
3.8 KiB
Go
120 lines
3.8 KiB
Go
package rest
|
|
|
|
import (
|
|
"bytes"
|
|
"context"
|
|
"encoding/json"
|
|
|
|
"github.com/netbirdio/netbird/shared/management/http/api"
|
|
)
|
|
|
|
// SCIMAPI APIs for SCIM IDP integrations
|
|
type SCIMAPI struct {
|
|
c *Client
|
|
}
|
|
|
|
// List retrieves all SCIM IDP integrations
|
|
// See more: https://docs.netbird.io/api/resources/scim#list-all-scim-integrations
|
|
func (a *SCIMAPI) List(ctx context.Context) ([]api.ScimIntegration, error) {
|
|
resp, err := a.c.NewRequest(ctx, "GET", "/api/integrations/scim-idp", nil, nil)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
if resp.Body != nil {
|
|
defer resp.Body.Close()
|
|
}
|
|
ret, err := parseResponse[[]api.ScimIntegration](resp)
|
|
return ret, err
|
|
}
|
|
|
|
// Get retrieves a specific SCIM IDP integration by ID
|
|
// See more: https://docs.netbird.io/api/resources/scim#retrieve-a-scim-integration
|
|
func (a *SCIMAPI) Get(ctx context.Context, integrationID string) (*api.ScimIntegration, error) {
|
|
resp, err := a.c.NewRequest(ctx, "GET", "/api/integrations/scim-idp/"+integrationID, nil, nil)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
if resp.Body != nil {
|
|
defer resp.Body.Close()
|
|
}
|
|
ret, err := parseResponse[api.ScimIntegration](resp)
|
|
return &ret, err
|
|
}
|
|
|
|
// Create creates a new SCIM IDP integration
|
|
// See more: https://docs.netbird.io/api/resources/scim#create-a-scim-integration
|
|
func (a *SCIMAPI) Create(ctx context.Context, request api.CreateScimIntegrationRequest) (*api.ScimIntegration, error) {
|
|
requestBytes, err := json.Marshal(request)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
resp, err := a.c.NewRequest(ctx, "POST", "/api/integrations/scim-idp", bytes.NewReader(requestBytes), nil)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
if resp.Body != nil {
|
|
defer resp.Body.Close()
|
|
}
|
|
ret, err := parseResponse[api.ScimIntegration](resp)
|
|
return &ret, err
|
|
}
|
|
|
|
// Update updates an existing SCIM IDP integration
|
|
// See more: https://docs.netbird.io/api/resources/scim#update-a-scim-integration
|
|
func (a *SCIMAPI) Update(ctx context.Context, integrationID string, request api.UpdateScimIntegrationRequest) (*api.ScimIntegration, error) {
|
|
requestBytes, err := json.Marshal(request)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
resp, err := a.c.NewRequest(ctx, "PUT", "/api/integrations/scim-idp/"+integrationID, bytes.NewReader(requestBytes), nil)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
if resp.Body != nil {
|
|
defer resp.Body.Close()
|
|
}
|
|
ret, err := parseResponse[api.ScimIntegration](resp)
|
|
return &ret, err
|
|
}
|
|
|
|
// Delete deletes a SCIM IDP integration
|
|
// See more: https://docs.netbird.io/api/resources/scim#delete-a-scim-integration
|
|
func (a *SCIMAPI) Delete(ctx context.Context, integrationID string) error {
|
|
resp, err := a.c.NewRequest(ctx, "DELETE", "/api/integrations/scim-idp/"+integrationID, nil, nil)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
if resp.Body != nil {
|
|
defer resp.Body.Close()
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// RegenerateToken regenerates the SCIM API token for an integration
|
|
// See more: https://docs.netbird.io/api/resources/scim#regenerate-scim-token
|
|
func (a *SCIMAPI) RegenerateToken(ctx context.Context, integrationID string) (*api.ScimTokenResponse, error) {
|
|
resp, err := a.c.NewRequest(ctx, "POST", "/api/integrations/scim-idp/"+integrationID+"/token", nil, nil)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
if resp.Body != nil {
|
|
defer resp.Body.Close()
|
|
}
|
|
ret, err := parseResponse[api.ScimTokenResponse](resp)
|
|
return &ret, err
|
|
}
|
|
|
|
// GetLogs retrieves synchronization logs for an SCIM IDP integration
|
|
// See more: https://docs.netbird.io/api/resources/scim#get-scim-sync-logs
|
|
func (a *SCIMAPI) GetLogs(ctx context.Context, integrationID string) ([]api.IdpIntegrationSyncLog, error) {
|
|
resp, err := a.c.NewRequest(ctx, "GET", "/api/integrations/scim-idp/"+integrationID+"/logs", nil, nil)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
if resp.Body != nil {
|
|
defer resp.Body.Close()
|
|
}
|
|
ret, err := parseResponse[[]api.IdpIntegrationSyncLog](resp)
|
|
return ret, err
|
|
}
|