mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
2d8fcd9bf4
Co-authored-by: Malte Poll <mp@edgeless.systems> Co-authored-by: katexochen <katexochen@users.noreply.github.com> Co-authored-by: Daniel Weiße <dw@edgeless.systems> Co-authored-by: Thomas Tendyck <tt@edgeless.systems> Co-authored-by: Benedict Schlueter <bs@edgeless.systems> Co-authored-by: leongross <leon.gross@rub.de> Co-authored-by: Moritz Eckert <m1gh7ym0@gmail.com>
153 lines
4.7 KiB
Go
153 lines
4.7 KiB
Go
package client
|
|
|
|
import (
|
|
"context"
|
|
"encoding/json"
|
|
"fmt"
|
|
"net/url"
|
|
|
|
adminpb "google.golang.org/genproto/googleapis/iam/admin/v1"
|
|
)
|
|
|
|
// CreateServiceAccount creates a new GCP service account and returns an account key as service account URI.
|
|
func (c *Client) CreateServiceAccount(ctx context.Context, input ServiceAccountInput) (string, error) {
|
|
insertInput := insertServiceAccountInput{
|
|
Project: c.project,
|
|
AccountID: "constellation-app-" + c.uid,
|
|
DisplayName: "constellation-app-" + c.uid,
|
|
Description: "This service account belongs to a Constellation.",
|
|
}
|
|
|
|
email, err := c.insertServiceAccount(ctx, insertInput)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
c.serviceAccount = email
|
|
|
|
iamInput := input.addIAMPolicyBindingInput(c.serviceAccount)
|
|
if err := c.addIAMPolicyBindings(ctx, iamInput); err != nil {
|
|
return "", err
|
|
}
|
|
|
|
key, err := c.createServiceAccountKey(ctx, email)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
|
|
return key.ConvertToCloudServiceAccountURI(), nil
|
|
}
|
|
|
|
func (c *Client) TerminateServiceAccount(ctx context.Context) error {
|
|
if c.serviceAccount != "" {
|
|
req := &adminpb.DeleteServiceAccountRequest{
|
|
Name: "projects/-/serviceAccounts/" + c.serviceAccount,
|
|
}
|
|
if err := c.iamAPI.DeleteServiceAccount(ctx, req); err != nil {
|
|
return fmt.Errorf("deleting service account failed: %w", err)
|
|
}
|
|
c.serviceAccount = ""
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type ServiceAccountInput struct {
|
|
Roles []string
|
|
}
|
|
|
|
func (i ServiceAccountInput) addIAMPolicyBindingInput(serviceAccount string) AddIAMPolicyBindingInput {
|
|
iamPolicyBindingInput := AddIAMPolicyBindingInput{
|
|
Bindings: make([]PolicyBinding, len(i.Roles)),
|
|
}
|
|
for i, role := range i.Roles {
|
|
iamPolicyBindingInput.Bindings[i] = PolicyBinding{
|
|
ServiceAccount: serviceAccount,
|
|
Role: role,
|
|
}
|
|
}
|
|
return iamPolicyBindingInput
|
|
}
|
|
|
|
// ServiceAccountKey is a GCP service account key.
|
|
type ServiceAccountKey struct {
|
|
Type string `json:"type"`
|
|
ProjectID string `json:"project_id"`
|
|
PrivateKeyID string `json:"private_key_id"`
|
|
PrivateKey string `json:"private_key"`
|
|
ClientEmail string `json:"client_email"`
|
|
ClientID string `json:"client_id"`
|
|
AuthURI string `json:"auth_uri"`
|
|
TokenURI string `json:"token_uri"`
|
|
AuthProviderX509CertURL string `json:"auth_provider_x509_cert_url"`
|
|
ClientX509CertURL string `json:"client_x509_cert_url"`
|
|
}
|
|
|
|
// ConvertToCloudServiceAccountURI converts the ServiceAccountKey into a cloud service account URI.
|
|
func (k ServiceAccountKey) ConvertToCloudServiceAccountURI() string {
|
|
query := url.Values{}
|
|
query.Add("type", k.Type)
|
|
query.Add("project_id", k.ProjectID)
|
|
query.Add("private_key_id", k.PrivateKeyID)
|
|
query.Add("private_key", k.PrivateKey)
|
|
query.Add("client_email", k.ClientEmail)
|
|
query.Add("client_id", k.ClientID)
|
|
query.Add("auth_uri", k.AuthURI)
|
|
query.Add("token_uri", k.TokenURI)
|
|
query.Add("auth_provider_x509_cert_url", k.AuthProviderX509CertURL)
|
|
query.Add("client_x509_cert_url", k.ClientX509CertURL)
|
|
uri := url.URL{
|
|
Scheme: "serviceaccount",
|
|
Host: "gcp",
|
|
RawQuery: query.Encode(),
|
|
}
|
|
return uri.String()
|
|
}
|
|
|
|
func (c *Client) insertServiceAccount(ctx context.Context, input insertServiceAccountInput) (string, error) {
|
|
req := input.createServiceAccountRequest()
|
|
account, err := c.iamAPI.CreateServiceAccount(ctx, req)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
|
|
return account.Email, nil
|
|
}
|
|
|
|
func (c *Client) createServiceAccountKey(ctx context.Context, email string) (ServiceAccountKey, error) {
|
|
req := createServiceAccountKeyRequest(email)
|
|
key, err := c.iamAPI.CreateServiceAccountKey(ctx, req)
|
|
if err != nil {
|
|
return ServiceAccountKey{}, fmt.Errorf("creating service account key failed: %w", err)
|
|
}
|
|
var serviceAccountKey ServiceAccountKey
|
|
if err := json.Unmarshal(key.PrivateKeyData, &serviceAccountKey); err != nil {
|
|
return ServiceAccountKey{}, fmt.Errorf("decoding service account key JSON failed: %w", err)
|
|
}
|
|
|
|
return serviceAccountKey, nil
|
|
}
|
|
|
|
// insertServiceAccountInput is the input for a createServiceAccount operation.
|
|
type insertServiceAccountInput struct {
|
|
Project string
|
|
AccountID string
|
|
DisplayName string
|
|
Description string
|
|
}
|
|
|
|
func (c insertServiceAccountInput) createServiceAccountRequest() *adminpb.CreateServiceAccountRequest {
|
|
return &adminpb.CreateServiceAccountRequest{
|
|
Name: "projects/" + c.Project,
|
|
AccountId: c.AccountID,
|
|
ServiceAccount: &adminpb.ServiceAccount{
|
|
DisplayName: c.DisplayName,
|
|
Description: c.Description,
|
|
},
|
|
}
|
|
}
|
|
|
|
func createServiceAccountKeyRequest(email string) *adminpb.CreateServiceAccountKeyRequest {
|
|
return &adminpb.CreateServiceAccountKeyRequest{
|
|
Name: "projects/-/serviceAccounts/" + email,
|
|
}
|
|
}
|