| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307 |
- package v2
- import (
- "context"
- "errors"
- "fmt"
- "strings"
- porterv1 "github.com/porter-dev/api-contracts/generated/go/porter/v1"
- "github.com/porter-dev/porter/internal/telemetry"
- "gopkg.in/yaml.v2"
- )
- // AppProtoWithEnv is a struct containing a PorterApp proto object and its environment variables
- type AppProtoWithEnv struct {
- AppProto *porterv1.PorterApp
- EnvVariables map[string]string
- }
- // AppWithPreviewOverrides is a porter app definition with its preview app definition, if it exists
- type AppWithPreviewOverrides struct {
- AppProtoWithEnv
- PreviewApp *AppProtoWithEnv
- }
- // AppProtoFromYaml converts a Porter YAML file into a PorterApp proto object
- func AppProtoFromYaml(ctx context.Context, porterYamlBytes []byte) (AppWithPreviewOverrides, error) {
- ctx, span := telemetry.NewSpan(ctx, "v2-app-proto-from-yaml")
- defer span.End()
- var out AppWithPreviewOverrides
- if porterYamlBytes == nil {
- return out, telemetry.Error(ctx, span, nil, "porter yaml is nil")
- }
- porterYaml := &PorterYAML{}
- err := yaml.Unmarshal(porterYamlBytes, porterYaml)
- if err != nil {
- return out, telemetry.Error(ctx, span, err, "error unmarshaling porter yaml")
- }
- appProto, envVariables, err := buildAppProto(ctx, porterYaml.PorterApp)
- if err != nil {
- return out, telemetry.Error(ctx, span, err, "error converting porter yaml to proto")
- }
- out.AppProto = appProto
- out.EnvVariables = envVariables
- if porterYaml.Previews != nil {
- previewAppProto, previewEnvVariables, err := buildAppProto(ctx, *porterYaml.Previews)
- if err != nil {
- return out, telemetry.Error(ctx, span, err, "error converting preview porter yaml to proto")
- }
- out.PreviewApp = &AppProtoWithEnv{
- AppProto: previewAppProto,
- EnvVariables: previewEnvVariables,
- }
- }
- return out, nil
- }
- // PorterApp represents all the possible fields in a Porter YAML file
- type PorterApp struct {
- Name string `yaml:"name"`
- Services map[string]Service `yaml:"services"`
- Image *Image `yaml:"image"`
- Build *Build `yaml:"build"`
- Env map[string]string `yaml:"env"`
- Predeploy *Service `yaml:"predeploy"`
- EnvGroups []string `yaml:"envGroups,omitempty"`
- }
- // PorterYAML represents all the possible fields in a Porter YAML file
- type PorterYAML struct {
- PorterApp `yaml:",inline"`
- Previews *PorterApp `yaml:"previews,omitempty"`
- }
- // Build represents the build settings for a Porter app
- type Build struct {
- Context string `yaml:"context" validate:"dir"`
- Method string `yaml:"method" validate:"required,oneof=pack docker registry"`
- Builder string `yaml:"builder" validate:"required_if=Method pack"`
- Buildpacks []string `yaml:"buildpacks"`
- Dockerfile string `yaml:"dockerfile" validate:"required_if=Method docker"`
- }
- // Service represents a single service in a porter app
- type Service struct {
- Run *string `yaml:"run,omitempty"`
- Type string `yaml:"type" validate:"required, oneof=web worker job"`
- Instances int `yaml:"instances"`
- CpuCores float32 `yaml:"cpuCores"`
- RamMegabytes int `yaml:"ramMegabytes"`
- SmartOptimization *bool `yaml:"smartOptimization"`
- Port int `yaml:"port"`
- Autoscaling *AutoScaling `yaml:"autoscaling,omitempty" validate:"excluded_if=Type job"`
- Domains []Domains `yaml:"domains" validate:"excluded_unless=Type web"`
- HealthCheck *HealthCheck `yaml:"healthCheck,omitempty" validate:"excluded_unless=Type web"`
- AllowConcurrent bool `yaml:"allowConcurrent" validate:"excluded_unless=Type job"`
- Cron string `yaml:"cron" validate:"excluded_unless=Type job"`
- Private *bool `yaml:"private" validate:"excluded_unless=Type web"`
- }
- // AutoScaling represents the autoscaling settings for web services
- type AutoScaling struct {
- Enabled bool `yaml:"enabled"`
- MinInstances int `yaml:"minInstances"`
- MaxInstances int `yaml:"maxInstances"`
- CpuThresholdPercent int `yaml:"cpuThresholdPercent"`
- MemoryThresholdPercent int `yaml:"memoryThresholdPercent"`
- }
- // Domains are the custom domains for a web service
- type Domains struct {
- Name string `yaml:"name"`
- }
- // HealthCheck is the health check settings for a web service
- type HealthCheck struct {
- Enabled bool `yaml:"enabled"`
- HttpPath string `yaml:"httpPath"`
- }
- // Image is the repository and tag for an app's build image
- type Image struct {
- Repository string `yaml:"repository"`
- Tag string `yaml:"tag"`
- }
- func buildAppProto(ctx context.Context, porterApp PorterApp) (*porterv1.PorterApp, map[string]string, error) {
- ctx, span := telemetry.NewSpan(ctx, "build-app-proto")
- defer span.End()
- appProto := &porterv1.PorterApp{
- Name: porterApp.Name,
- }
- if porterApp.Build != nil {
- appProto.Build = &porterv1.Build{
- Context: porterApp.Build.Context,
- Method: porterApp.Build.Method,
- Builder: porterApp.Build.Builder,
- Buildpacks: porterApp.Build.Buildpacks,
- Dockerfile: porterApp.Build.Dockerfile,
- }
- }
- if porterApp.Image != nil {
- appProto.Image = &porterv1.AppImage{
- Repository: porterApp.Image.Repository,
- Tag: porterApp.Image.Tag,
- }
- }
- if porterApp.Services == nil {
- return appProto, nil, telemetry.Error(ctx, span, nil, "porter yaml is missing services")
- }
- services := make(map[string]*porterv1.Service, 0)
- for name, service := range porterApp.Services {
- serviceType := protoEnumFromType(name, service)
- serviceProto, err := serviceProtoFromConfig(service, serviceType)
- if err != nil {
- return appProto, nil, telemetry.Error(ctx, span, err, "error casting service config")
- }
- services[name] = serviceProto
- }
- appProto.Services = services
- if porterApp.Predeploy != nil {
- predeployProto, err := serviceProtoFromConfig(*porterApp.Predeploy, porterv1.ServiceType_SERVICE_TYPE_JOB)
- if err != nil {
- return appProto, nil, telemetry.Error(ctx, span, err, "error casting predeploy config")
- }
- appProto.Predeploy = predeployProto
- }
- envGroups := make([]*porterv1.EnvGroup, 0)
- if porterApp.EnvGroups != nil {
- for _, envGroupName := range porterApp.EnvGroups {
- envGroups = append(envGroups, &porterv1.EnvGroup{
- Name: envGroupName,
- })
- }
- }
- appProto.EnvGroups = envGroups
- return appProto, porterApp.Env, nil
- }
- func protoEnumFromType(name string, service Service) porterv1.ServiceType {
- serviceType := porterv1.ServiceType_SERVICE_TYPE_WORKER
- if strings.Contains(name, "web") {
- serviceType = porterv1.ServiceType_SERVICE_TYPE_WEB
- }
- if strings.Contains(name, "wkr") || strings.Contains(name, "worker") {
- serviceType = porterv1.ServiceType_SERVICE_TYPE_WORKER
- }
- if strings.Contains(name, "job") {
- serviceType = porterv1.ServiceType_SERVICE_TYPE_JOB
- }
- switch service.Type {
- case "web":
- serviceType = porterv1.ServiceType_SERVICE_TYPE_WEB
- case "worker":
- serviceType = porterv1.ServiceType_SERVICE_TYPE_WORKER
- case "job":
- serviceType = porterv1.ServiceType_SERVICE_TYPE_JOB
- }
- return serviceType
- }
- func serviceProtoFromConfig(service Service, serviceType porterv1.ServiceType) (*porterv1.Service, error) {
- serviceProto := &porterv1.Service{
- RunOptional: service.Run,
- Type: serviceType,
- Instances: int32(service.Instances),
- CpuCores: service.CpuCores,
- RamMegabytes: int32(service.RamMegabytes),
- Port: int32(service.Port),
- SmartOptimization: service.SmartOptimization,
- }
- switch serviceType {
- default:
- return nil, fmt.Errorf("invalid service type '%s'", serviceType)
- case porterv1.ServiceType_SERVICE_TYPE_UNSPECIFIED:
- return nil, errors.New("Service type unspecified")
- case porterv1.ServiceType_SERVICE_TYPE_WEB:
- webConfig := &porterv1.WebServiceConfig{}
- var autoscaling *porterv1.Autoscaling
- if service.Autoscaling != nil {
- autoscaling = &porterv1.Autoscaling{
- Enabled: service.Autoscaling.Enabled,
- MinInstances: int32(service.Autoscaling.MinInstances),
- MaxInstances: int32(service.Autoscaling.MaxInstances),
- CpuThresholdPercent: int32(service.Autoscaling.CpuThresholdPercent),
- MemoryThresholdPercent: int32(service.Autoscaling.MemoryThresholdPercent),
- }
- }
- webConfig.Autoscaling = autoscaling
- var healthCheck *porterv1.HealthCheck
- if service.HealthCheck != nil {
- healthCheck = &porterv1.HealthCheck{
- Enabled: service.HealthCheck.Enabled,
- HttpPath: service.HealthCheck.HttpPath,
- }
- }
- webConfig.HealthCheck = healthCheck
- domains := make([]*porterv1.Domain, 0)
- for _, domain := range service.Domains {
- domains = append(domains, &porterv1.Domain{
- Name: domain.Name,
- })
- }
- webConfig.Domains = domains
- if service.Private != nil {
- webConfig.Private = service.Private
- }
- serviceProto.Config = &porterv1.Service_WebConfig{
- WebConfig: webConfig,
- }
- case porterv1.ServiceType_SERVICE_TYPE_WORKER:
- workerConfig := &porterv1.WorkerServiceConfig{}
- var autoscaling *porterv1.Autoscaling
- if service.Autoscaling != nil {
- autoscaling = &porterv1.Autoscaling{
- Enabled: service.Autoscaling.Enabled,
- MinInstances: int32(service.Autoscaling.MinInstances),
- MaxInstances: int32(service.Autoscaling.MaxInstances),
- CpuThresholdPercent: int32(service.Autoscaling.CpuThresholdPercent),
- MemoryThresholdPercent: int32(service.Autoscaling.MemoryThresholdPercent),
- }
- }
- workerConfig.Autoscaling = autoscaling
- serviceProto.Config = &porterv1.Service_WorkerConfig{
- WorkerConfig: workerConfig,
- }
- case porterv1.ServiceType_SERVICE_TYPE_JOB:
- jobConfig := &porterv1.JobServiceConfig{
- AllowConcurrent: service.AllowConcurrent,
- Cron: service.Cron,
- }
- serviceProto.Config = &porterv1.Service_JobConfig{
- JobConfig: jobConfig,
- }
- }
- return serviceProto, nil
- }
|