Refactor providers data

This commit is contained in:
Nikolai Rodionov 2024-04-29 20:03:37 +02:00
parent a8325fd202
commit 87e204ed46
Signed by: allanger
GPG Key ID: 0AA46A90E25592AD
8 changed files with 123 additions and 31 deletions

View File

@ -2,9 +2,9 @@ package v1
import ( import (
"context" "context"
"fmt"
"git.badhouseplants.net/softplayer/softplayer-backend/internal/controllers" "git.badhouseplants.net/softplayer/softplayer-backend/internal/controllers"
"git.badhouseplants.net/softplayer/softplayer-backend/internal/kubernetes"
"git.badhouseplants.net/softplayer/softplayer-backend/internal/providers" "git.badhouseplants.net/softplayer/softplayer-backend/internal/providers"
proto "git.badhouseplants.net/softplayer/softplayer-go-proto/pkg/environments" proto "git.badhouseplants.net/softplayer/softplayer-go-proto/pkg/environments"
"github.com/golang/protobuf/ptypes/empty" "github.com/golang/protobuf/ptypes/empty"
@ -29,18 +29,17 @@ func (e *EnvironmentsServer) Create(ctx context.Context, in *proto.CreateOptions
return nil, err return nil, err
} }
var location string k8s, err := kubernetes.GetKubernetes(in.GetSpec().GetKubernetes())
switch in.GetSpec().GetProvider() {
case proto.Provider_PROVIDER_HETZNER:
location, err = provider.GetServerLocation(in.GetSpec().GetHetznerOptions().GetServerLocation().String())
if err != nil { if err != nil {
return nil, err return nil, err
} }
default:
return nil, fmt.Errorf("unknown provider: %s", in.GetSpec().GetProvider()) location, err := provider.GetServerLocation(in.GetSpec().GetServerLocation().String())
if err != nil {
return nil, err
} }
serverType, err := provider.GetServerType(in.Spec.HetznerOptions.ServerType) serverType, err := provider.GetServerType(in.Spec.ServerType.String())
if err != nil { if err != nil {
return nil, err return nil, err
} }
@ -48,8 +47,8 @@ func (e *EnvironmentsServer) Create(ctx context.Context, in *proto.CreateOptions
data := &controllers.EnvironemntData{ data := &controllers.EnvironemntData{
Name: in.GetMetadata().GetName(), Name: in.GetMetadata().GetName(),
Description: in.GetMetadata().GetDescription(), Description: in.GetMetadata().GetDescription(),
Provider: in.GetSpec().GetProvider(), Provider: provider.GetProviderName(),
Kubernetes: in.GetSpec().GetKubernetes().String(), Kubernetes: k8s.GetKubernetesName(),
Location: location, Location: location,
ServerType: serverType, ServerType: serverType,
} }

2
go.mod
View File

@ -67,7 +67,7 @@ require (
) )
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 github.com/golang/protobuf v1.5.4
golang.org/x/net v0.22.0 // indirect golang.org/x/net v0.22.0 // indirect
golang.org/x/sys v0.18.0 // indirect golang.org/x/sys v0.18.0 // indirect

4
go.sum
View File

@ -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.8 h1:ldO0P0GFilL9rVBdPU8NZFRg5x4FeYC7D3iOSSIHpIA=
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/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 h1:o3WJwILtexrEUk3cUVal3oiQY2tfgr/FHWiz/v2n4FU=
github.com/alecthomas/assert/v2 v2.6.0/go.mod h1:Bze95FyfUr7x34QZrjL+XP+0qgp/zg8yS+TtBj1WA3k= 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= github.com/alecthomas/kong v0.9.0 h1:G5diXxc85KvoV2f0ZRVuMsi45IrBgx9zDNGNj165aPA=

View File

@ -9,7 +9,6 @@ import (
"github.com/joho/godotenv" "github.com/joho/godotenv"
"git.badhouseplants.net/softplayer/softplayer-backend/internal/helpers/kube" "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" corev1 "k8s.io/api/core/v1"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/types" "k8s.io/apimachinery/pkg/types"
@ -28,7 +27,7 @@ type Environemnt struct {
type EnvironemntData struct { type EnvironemntData struct {
Name string Name string
Description string Description string
Provider proto.Provider Provider string
Kubernetes string Kubernetes string
Location string Location string
ServerType string ServerType string
@ -58,7 +57,7 @@ func (env *Environemnt) isNsVerified(ctx context.Context) error {
val, ok := ns.GetLabels()["email-verified"] val, ok := ns.GetLabels()["email-verified"]
if !ok || val == "false" { 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 return nil
} }

View File

@ -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())
}
}

View File

@ -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()
}

View File

@ -7,8 +7,12 @@ import (
) )
type Providers interface { type Providers interface {
GetServerType(proto.ServerType) (string, error) GetProviderName() string
RawProviderName() string
GetServerType(string) (string, error)
GetServerLocation(string) (string, error) GetServerLocation(string) (string, error)
RawServerType(string) (string, error)
RawServerLocation(string) (string, error)
} }
func GetProvider(provider proto.Provider) (Providers, error) { func GetProvider(provider proto.Provider) (Providers, error) {

View File

@ -1,47 +1,101 @@
package providers package providers
import ( import (
"errors"
"fmt" "fmt"
"strings"
proto "git.badhouseplants.net/softplayer/softplayer-go-proto/pkg/environments" proto "git.badhouseplants.net/softplayer/softplayer-go-proto/pkg/environments"
) )
type Hetzner struct{} 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. // GetServerLocation implements Providers.
func (h *Hetzner) GetServerLocation(location string) (string, error) { 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 { switch location {
case proto.HetznerLocation_HETZNER_LOCATION_ASHBURN.String(): case proto.Location_LOCATION_HETZNER_ASHBURN.String():
return "ash", nil return "ash", nil
case proto.HetznerLocation_HETZNER_LOCATION_HILLSBORO.String(): case proto.Location_LOCATION_HETZNER_HILLSBORO.String():
return "hil", nil return "hil", nil
case proto.HetznerLocation_HETZNER_LOCATION_FALKENSTEIN.String(): case proto.Location_LOCATION_HETZNER_FALKENSTEIN.String():
return "fsn1", nil return "fsn1", nil
case proto.HetznerLocation_HETZNER_LOCATION_NUREMBERG.String(): case proto.Location_LOCATION_HETZNER_NUREMBERG.String():
return "nbg1", nil return "nbg1", nil
case proto.HetznerLocation_HETZNER_LOCATION_HELSINKI.String(): case proto.Location_LOCATION_HETZNER_HELSINKI.String():
return "hel1", nil return "hel1", nil
default: default:
return "", fmt.Errorf("unknown location: %s", location) 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 { switch kind {
case proto.ServerType_SERVER_TYPE_STARTER: case proto.ServerType_SERVER_TYPE_STARTER.String():
serverType = "cpx21" serverType = "cpx21"
return return
case proto.ServerType_SERVER_TYPE_REGULAR: case proto.ServerType_SERVER_TYPE_REGULAR.String():
serverType = "cpx31" serverType = "cpx31"
return return
case proto.ServerType_SERVER_TYPE_PLUS: case proto.ServerType_SERVER_TYPE_PLUS.String():
serverType = "cpx41" serverType = "cpx41"
return return
case proto.ServerType_SERVER_TYPE_PRO: case proto.ServerType_SERVER_TYPE_PRO.String():
serverType = "cpx51" serverType = "cpx51"
return return
case proto.ServerType_SERVER_TYPE_CUSTOM.String():
err = errors.New("custom server types are not supported yet")
return
default: default:
err = fmt.Errorf("unknown server type: %s", kind.String()) err = fmt.Errorf("unknown server type: %s", kind)
return return
} }
} }