[node operator] GCP: use canonical references

This commit is contained in:
Malte Poll 2022-08-05 12:15:06 +02:00 committed by Malte Poll
parent 51cf638361
commit 80ebfab164
9 changed files with 151 additions and 3 deletions

View file

@ -0,0 +1,26 @@
package client
import (
"context"
"errors"
"regexp"
"google.golang.org/genproto/googleapis/cloud/compute/v1"
)
var numericProjectIDRegex = regexp.MustCompile(`^\d+$`)
// canonicalProjectID returns the project id for a given project id or project number.
func (c *Client) canonicalProjectID(ctx context.Context, project string) (string, error) {
if !numericProjectIDRegex.MatchString(project) {
return project, nil
}
computeProject, err := c.projectAPI.Get(ctx, &compute.GetProjectRequest{Project: project})
if err != nil {
return "", err
}
if computeProject == nil || computeProject.Name == nil {
return "", errors.New("invalid project")
}
return *computeProject.Name, nil
}