drone_plugin/config_handler/service_config.go

34 lines
793 B
Go
Raw Normal View History

2021-12-29 23:23:35 +08:00
package config_handler
import (
"git.icechen.cn/pkg/drone_plugin/go_handler"
)
2021-12-30 00:41:38 +08:00
func (sl ServiceList) toDestinationConfig(nameSpace string, serviceEnv map[string]string) (string, error) {
2021-12-29 23:23:35 +08:00
retConfig := ""
for _, service := range sl {
2021-12-30 00:41:38 +08:00
config, err := service.toDestinationConfig(nameSpace, serviceEnv)
2021-12-29 23:23:35 +08:00
if err != nil {
return "", err
}
retConfig += config + "\n\n---\n\n"
}
return retConfig, nil
}
2021-12-30 00:00:25 +08:00
func (s Service) toDestinationConfig(nameSpace string, serviceEnv map[string]string) (string, error) {
2021-12-29 23:23:35 +08:00
var handler Handler
switch s.Type {
case go_handler.TypeGolang:
handler = go_handler.GoServiceHandler{
2021-12-30 00:00:25 +08:00
NameSpace: nameSpace,
Name: s.Name,
Root: s.Root,
Port: s.Port,
ServiceEnv: serviceEnv,
2021-12-29 23:23:35 +08:00
}
}
return handler.ToDestinationConfig()
}