diff --git a/api/v1/environments.go b/api/v1/environments.go index bcd4cea..60ad774 100644 --- a/api/v1/environments.go +++ b/api/v1/environments.go @@ -2,9 +2,9 @@ package v1 import ( "context" - "fmt" "git.badhouseplants.net/softplayer/softplayer-backend/internal/controllers" + "git.badhouseplants.net/softplayer/softplayer-backend/internal/kubernetes" "git.badhouseplants.net/softplayer/softplayer-backend/internal/providers" proto "git.badhouseplants.net/softplayer/softplayer-go-proto/pkg/environments" "github.com/golang/protobuf/ptypes/empty" @@ -29,18 +29,17 @@ func (e *EnvironmentsServer) Create(ctx context.Context, in *proto.CreateOptions return nil, err } - var location string - switch in.GetSpec().GetProvider() { - case proto.Provider_PROVIDER_HETZNER: - location, err = provider.GetServerLocation(in.GetSpec().GetHetznerOptions().GetServerLocation().String()) - if err != nil { - return nil, err - } - default: - return nil, fmt.Errorf("unknown provider: %s", in.GetSpec().GetProvider()) + k8s, err := kubernetes.GetKubernetes(in.GetSpec().GetKubernetes()) + if err != nil { + return nil, err } - serverType, err := provider.GetServerType(in.Spec.HetznerOptions.ServerType) + location, err := provider.GetServerLocation(in.GetSpec().GetServerLocation().String()) + if err != nil { + return nil, err + } + + serverType, err := provider.GetServerType(in.Spec.ServerType.String()) if err != nil { return nil, err } @@ -48,8 +47,8 @@ func (e *EnvironmentsServer) Create(ctx context.Context, in *proto.CreateOptions data := &controllers.EnvironemntData{ Name: in.GetMetadata().GetName(), Description: in.GetMetadata().GetDescription(), - Provider: in.GetSpec().GetProvider(), - Kubernetes: in.GetSpec().GetKubernetes().String(), + Provider: provider.GetProviderName(), + Kubernetes: k8s.GetKubernetesName(), Location: location, ServerType: serverType, } diff --git a/go.mod b/go.mod index 6337baf..f71ce58 100644 --- a/go.mod +++ b/go.mod @@ -67,7 +67,7 @@ require ( ) require ( - git.badhouseplants.net/softplayer/softplayer-go-proto v0.1.7 + git.badhouseplants.net/softplayer/softplayer-go-proto v0.1.8 github.com/golang/protobuf v1.5.4 golang.org/x/net v0.22.0 // indirect golang.org/x/sys v0.18.0 // indirect diff --git a/go.sum b/go.sum index b30b998..60ea3b8 100644 --- a/go.sum +++ b/go.sum @@ -1,5 +1,5 @@ -git.badhouseplants.net/softplayer/softplayer-go-proto v0.1.7 h1:l7v4iWm1cjvEg6BqbWAm21t6WmY0yb5TacKdjIT28rA= -git.badhouseplants.net/softplayer/softplayer-go-proto v0.1.7/go.mod h1:OU+833cHwvecr+gsnPEKQYlAJbpL8bqSJVLobdw63qI= +git.badhouseplants.net/softplayer/softplayer-go-proto v0.1.8 h1:ldO0P0GFilL9rVBdPU8NZFRg5x4FeYC7D3iOSSIHpIA= +git.badhouseplants.net/softplayer/softplayer-go-proto v0.1.8/go.mod h1:OU+833cHwvecr+gsnPEKQYlAJbpL8bqSJVLobdw63qI= github.com/alecthomas/assert/v2 v2.6.0 h1:o3WJwILtexrEUk3cUVal3oiQY2tfgr/FHWiz/v2n4FU= github.com/alecthomas/assert/v2 v2.6.0/go.mod h1:Bze95FyfUr7x34QZrjL+XP+0qgp/zg8yS+TtBj1WA3k= github.com/alecthomas/kong v0.9.0 h1:G5diXxc85KvoV2f0ZRVuMsi45IrBgx9zDNGNj165aPA= diff --git a/internal/controllers/environments.go b/internal/controllers/environments.go index 89a6066..758d2e7 100644 --- a/internal/controllers/environments.go +++ b/internal/controllers/environments.go @@ -9,7 +9,6 @@ import ( "github.com/joho/godotenv" "git.badhouseplants.net/softplayer/softplayer-backend/internal/helpers/kube" - proto "git.badhouseplants.net/softplayer/softplayer-go-proto/pkg/environments" corev1 "k8s.io/api/core/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "k8s.io/apimachinery/pkg/types" @@ -28,7 +27,7 @@ type Environemnt struct { type EnvironemntData struct { Name string Description string - Provider proto.Provider + Provider string Kubernetes string Location string ServerType string @@ -58,7 +57,7 @@ func (env *Environemnt) isNsVerified(ctx context.Context) error { val, ok := ns.GetLabels()["email-verified"] if !ok || val == "false" { - return errors.New("User email is not verified, can't create an new env") + return errors.New("user email is not verified, can't create an new env") } return nil } diff --git a/internal/kubernetes/common.go b/internal/kubernetes/common.go new file mode 100644 index 0000000..aba5510 --- /dev/null +++ b/internal/kubernetes/common.go @@ -0,0 +1,21 @@ +package kubernetes + +import ( + "fmt" + + proto "git.badhouseplants.net/softplayer/softplayer-go-proto/pkg/environments" +) + +type Kubernetes interface { + GetKubernetesName() string + RawKubernetesName() string +} + +func GetKubernetes(k8s proto.Kubernetes) (Kubernetes, error) { + switch k8s { + case proto.Kubernetes_KUBERNETES_K3S: + return &K3s{}, nil + default: + return nil, fmt.Errorf("unknown provider: %s", k8s.String()) + } +} diff --git a/internal/kubernetes/k3s.go b/internal/kubernetes/k3s.go new file mode 100644 index 0000000..ba50cf2 --- /dev/null +++ b/internal/kubernetes/k3s.go @@ -0,0 +1,15 @@ +package kubernetes + +import ( + proto "git.badhouseplants.net/softplayer/softplayer-go-proto/pkg/environments" +) + +type K3s struct{} + +func (k *K3s) GetKubernetesName() string { + return "k3s" +} + +func (k *K3s) RawKubernetesName() string { + return proto.Kubernetes_KUBERNETES_K3S.String() +} diff --git a/internal/providers/common.go b/internal/providers/common.go index 1a652a5..18844e4 100644 --- a/internal/providers/common.go +++ b/internal/providers/common.go @@ -7,8 +7,12 @@ import ( ) type Providers interface { - GetServerType(proto.ServerType) (string, error) + GetProviderName() string + RawProviderName() string + GetServerType(string) (string, error) GetServerLocation(string) (string, error) + RawServerType(string) (string, error) + RawServerLocation(string) (string, error) } func GetProvider(provider proto.Provider) (Providers, error) { diff --git a/internal/providers/hetzner.go b/internal/providers/hetzner.go index 619a99f..f21ca0b 100644 --- a/internal/providers/hetzner.go +++ b/internal/providers/hetzner.go @@ -1,47 +1,101 @@ package providers import ( + "errors" "fmt" + "strings" proto "git.badhouseplants.net/softplayer/softplayer-go-proto/pkg/environments" ) type Hetzner struct{} +// GetProviderName implements Providers. +func (h *Hetzner) GetProviderName() string { + return "hetzner" +} + +// RawProviderName implements Providers. +func (h *Hetzner) RawProviderName() string { + proto.Provider_PROVIDER_HETZNER.String() +} + +// RawServerLocation implements Providers. +func (h *Hetzner) RawServerLocation(location string) (string, error) { + switch location { + case "ash": + return proto.Location_LOCATION_HETZNER_ASHBURN.String(), nil + case "hil": + return proto.Location_LOCATION_HETZNER_HILLSBORO.String(), nil + case "fsn1": + return proto.Location_LOCATION_HETZNER_FALKENSTEIN.String(), nil + case "nbg1": + return proto.Location_LOCATION_HETZNER_NUREMBERG.String(), nil + case "hel1": + return proto.Location_LOCATION_HETZNER_HELSINKI.String(), nil + default: + return "", fmt.Errorf("unknown location: %s", location) + } + +} + +// RawServerType implements Providers. +func (h *Hetzner) RawServerType(kind string) (string, error) { + switch kind { + case "cpx21": + return proto.ServerType_SERVER_TYPE_STARTER.String(), nil + case "cpx31": + return proto.ServerType_SERVER_TYPE_REGULAR.String(), nil + case "cpx41": + return proto.ServerType_SERVER_TYPE_PLUS.String(), nil + case "cpx51": + return proto.ServerType_SERVER_TYPE_PRO.String(), nil + default: + err := fmt.Errorf("unknown server type: %s", kind) + return "", err + } +} + // GetServerLocation implements Providers. func (h *Hetzner) GetServerLocation(location string) (string, error) { + if !strings.HasPrefix(location, "HETZNER") { + return "", fmt.Errorf("location isn't supported by hetzner: %s", location) + } switch location { - case proto.HetznerLocation_HETZNER_LOCATION_ASHBURN.String(): + case proto.Location_LOCATION_HETZNER_ASHBURN.String(): return "ash", nil - case proto.HetznerLocation_HETZNER_LOCATION_HILLSBORO.String(): + case proto.Location_LOCATION_HETZNER_HILLSBORO.String(): return "hil", nil - case proto.HetznerLocation_HETZNER_LOCATION_FALKENSTEIN.String(): + case proto.Location_LOCATION_HETZNER_FALKENSTEIN.String(): return "fsn1", nil - case proto.HetznerLocation_HETZNER_LOCATION_NUREMBERG.String(): + case proto.Location_LOCATION_HETZNER_NUREMBERG.String(): return "nbg1", nil - case proto.HetznerLocation_HETZNER_LOCATION_HELSINKI.String(): + case proto.Location_LOCATION_HETZNER_HELSINKI.String(): return "hel1", nil default: return "", fmt.Errorf("unknown location: %s", location) } } -func (h *Hetzner) GetServerType(kind proto.ServerType) (serverType string, err error) { +func (h *Hetzner) GetServerType(kind string) (serverType string, err error) { switch kind { - case proto.ServerType_SERVER_TYPE_STARTER: + case proto.ServerType_SERVER_TYPE_STARTER.String(): serverType = "cpx21" return - case proto.ServerType_SERVER_TYPE_REGULAR: + case proto.ServerType_SERVER_TYPE_REGULAR.String(): serverType = "cpx31" return - case proto.ServerType_SERVER_TYPE_PLUS: + case proto.ServerType_SERVER_TYPE_PLUS.String(): serverType = "cpx41" return - case proto.ServerType_SERVER_TYPE_PRO: + case proto.ServerType_SERVER_TYPE_PRO.String(): serverType = "cpx51" return + case proto.ServerType_SERVER_TYPE_CUSTOM.String(): + err = errors.New("custom server types are not supported yet") + return default: - err = fmt.Errorf("unknown server type: %s", kind.String()) + err = fmt.Errorf("unknown server type: %s", kind) return } }