drone_plugin/config_handler/api_config.go

38 lines
818 B
Go
Raw Normal View History

2021-12-29 23:23:35 +08:00
package config_handler
2021-12-30 20:06:10 +08:00
import (
"git.icechen.cn/pkg/drone_plugin/consts"
"git.icechen.cn/pkg/drone_plugin/go_handler"
)
2021-12-29 23:23:35 +08:00
2022-01-10 17:51:52 +08:00
func (al ApiList) toDestinationConfig(deployEnv consts.Env) (string, error) {
2021-12-29 23:23:35 +08:00
retConfig := ""
for _, api := range al {
2022-01-10 17:51:52 +08:00
config, err := api.toDestinationConfig(deployEnv)
2021-12-29 23:23:35 +08:00
if err != nil {
return "", err
}
retConfig += config + "\n\n---\n\n"
}
return retConfig, nil
}
2022-01-10 17:51:52 +08:00
func (a Api) toDestinationConfig(deployEnv consts.Env) (string, error) {
2021-12-29 23:23:35 +08:00
var handler Handler
switch a.Type {
case go_handler.TypeGolang:
handler = go_handler.GoApiHandler{
2022-01-10 17:51:52 +08:00
NameSpace: a.Namespace,
Name: a.Name,
AliasName: a.AliasName,
Root: a.Root,
Port: a.Port,
Host: a.Host,
Path: a.Path,
DeployEnv: deployEnv,
2021-12-29 23:23:35 +08:00
}
}
return handler.ToDestinationConfig()
}