forked from LaconicNetwork/kompose
205 lines
5.1 KiB
Go
205 lines
5.1 KiB
Go
/*
|
|
Copyright 2016 Skippbox, Ltd All rights reserved.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
package bundle
|
|
|
|
import (
|
|
"encoding/json"
|
|
"fmt"
|
|
"io"
|
|
"io/ioutil"
|
|
"strings"
|
|
|
|
"k8s.io/kubernetes/pkg/api"
|
|
|
|
"github.com/Sirupsen/logrus"
|
|
"github.com/kubernetes-incubator/kompose/pkg/kobject"
|
|
)
|
|
|
|
type Bundle struct {
|
|
}
|
|
|
|
// Bundlefile stores the contents of a bundlefile
|
|
type Bundlefile struct {
|
|
Version string
|
|
Services map[string]Service
|
|
}
|
|
|
|
// Service is a service from a bundlefile
|
|
type Service struct {
|
|
Image string
|
|
Command []string `json:",omitempty"`
|
|
Args []string `json:",omitempty"`
|
|
Env []string `json:",omitempty"`
|
|
Labels map[string]string `json:",omitempty"`
|
|
Ports []Port `json:",omitempty"`
|
|
WorkingDir *string `json:",omitempty"`
|
|
User *string `json:",omitempty"`
|
|
Networks []string `json:",omitempty"`
|
|
}
|
|
|
|
// Port is a port as defined in a bundlefile
|
|
type Port struct {
|
|
Protocol string
|
|
Port uint32
|
|
}
|
|
|
|
// load image from dab file
|
|
func loadImage(service Service) (string, string) {
|
|
character := "@"
|
|
if strings.Contains(service.Image, character) {
|
|
return service.Image[0:strings.Index(service.Image, character)], ""
|
|
}
|
|
return "", "Invalid image format"
|
|
}
|
|
|
|
// load environment variables from dab file
|
|
func loadEnvVars(service Service) ([]kobject.EnvVar, string) {
|
|
envs := []kobject.EnvVar{}
|
|
for _, env := range service.Env {
|
|
character := "="
|
|
if strings.Contains(env, character) {
|
|
value := env[strings.Index(env, character)+1:]
|
|
name := env[0:strings.Index(env, character)]
|
|
name = strings.TrimSpace(name)
|
|
value = strings.TrimSpace(value)
|
|
envs = append(envs, kobject.EnvVar{
|
|
Name: name,
|
|
Value: value,
|
|
})
|
|
} else {
|
|
character = ":"
|
|
if strings.Contains(env, character) {
|
|
charQuote := "'"
|
|
value := env[strings.Index(env, character)+1:]
|
|
name := env[0:strings.Index(env, character)]
|
|
name = strings.TrimSpace(name)
|
|
value = strings.TrimSpace(value)
|
|
if strings.Contains(value, charQuote) {
|
|
value = strings.Trim(value, "'")
|
|
}
|
|
envs = append(envs, kobject.EnvVar{
|
|
Name: name,
|
|
Value: value,
|
|
})
|
|
} else {
|
|
return envs, "Invalid container env " + env
|
|
}
|
|
}
|
|
}
|
|
return envs, ""
|
|
}
|
|
|
|
// load ports from dab file
|
|
func loadPorts(service Service) ([]kobject.Ports, string) {
|
|
ports := []kobject.Ports{}
|
|
for _, port := range service.Ports {
|
|
var p api.Protocol
|
|
switch port.Protocol {
|
|
default:
|
|
p = api.ProtocolTCP
|
|
case "TCP":
|
|
p = api.ProtocolTCP
|
|
case "UDP":
|
|
p = api.ProtocolUDP
|
|
}
|
|
ports = append(ports, kobject.Ports{
|
|
HostPort: int32(port.Port),
|
|
ContainerPort: int32(port.Port),
|
|
Protocol: p,
|
|
})
|
|
}
|
|
return ports, ""
|
|
}
|
|
|
|
// load dab file into KomposeObject
|
|
func (b *Bundle) LoadFile(file string) kobject.KomposeObject {
|
|
komposeObject := kobject.KomposeObject{
|
|
ServiceConfigs: make(map[string]kobject.ServiceConfig),
|
|
}
|
|
|
|
buf, err := ioutil.ReadFile(file)
|
|
if err != nil {
|
|
logrus.Fatalf("Failed to read bundles file: ", err)
|
|
}
|
|
reader := strings.NewReader(string(buf))
|
|
bundle, err := loadFile(reader)
|
|
if err != nil {
|
|
logrus.Fatalf("Failed to parse bundles file: ", err)
|
|
}
|
|
|
|
for name, service := range bundle.Services {
|
|
kobject.CheckUnsupportedKey(service)
|
|
|
|
serviceConfig := kobject.ServiceConfig{}
|
|
serviceConfig.Command = service.Command
|
|
serviceConfig.Args = service.Args
|
|
// convert bundle labels to annotations
|
|
serviceConfig.Annotations = service.Labels
|
|
|
|
image, err := loadImage(service)
|
|
if err != "" {
|
|
logrus.Fatalf("Failed to load image from bundles file: " + err)
|
|
}
|
|
serviceConfig.Image = image
|
|
|
|
envs, err := loadEnvVars(service)
|
|
if err != "" {
|
|
logrus.Fatalf("Failed to load envvar from bundles file: " + err)
|
|
}
|
|
serviceConfig.Environment = envs
|
|
|
|
ports, err := loadPorts(service)
|
|
if err != "" {
|
|
logrus.Fatalf("Failed to load ports from bundles file: " + err)
|
|
}
|
|
serviceConfig.Port = ports
|
|
|
|
if service.WorkingDir != nil {
|
|
serviceConfig.WorkingDir = *service.WorkingDir
|
|
}
|
|
|
|
komposeObject.ServiceConfigs[name] = serviceConfig
|
|
}
|
|
|
|
return komposeObject
|
|
}
|
|
|
|
// LoadFile loads a bundlefile from a path to the file
|
|
func loadFile(reader io.Reader) (*Bundlefile, error) {
|
|
bundlefile := &Bundlefile{}
|
|
|
|
decoder := json.NewDecoder(reader)
|
|
if err := decoder.Decode(bundlefile); err != nil {
|
|
switch jsonErr := err.(type) {
|
|
case *json.SyntaxError:
|
|
return nil, fmt.Errorf(
|
|
"JSON syntax error at byte %v: %s",
|
|
jsonErr.Offset,
|
|
jsonErr.Error())
|
|
case *json.UnmarshalTypeError:
|
|
return nil, fmt.Errorf(
|
|
"Unexpected type at byte %v. Expected %s but received %s.",
|
|
jsonErr.Offset,
|
|
jsonErr.Type,
|
|
jsonErr.Value)
|
|
}
|
|
return nil, err
|
|
}
|
|
|
|
return bundlefile, nil
|
|
}
|