mirror of https://github.com/harness/drone.git
133 lines
4.0 KiB
Go
133 lines
4.0 KiB
Go
// Copyright 2023 Harness, Inc.
|
|
//
|
|
// 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 types
|
|
|
|
import (
|
|
"encoding/json"
|
|
"fmt"
|
|
"strings"
|
|
)
|
|
|
|
//nolint:tagliatelle
|
|
type DevcontainerConfig struct {
|
|
Image string `json:"image,omitempty"`
|
|
PostCreateCommand LifecycleCommand `json:"postCreateCommand,omitempty"`
|
|
PostStartCommand LifecycleCommand `json:"postStartCommand,omitempty"`
|
|
ForwardPorts []json.Number `json:"forwardPorts,omitempty"`
|
|
ContainerEnv map[string]string `json:"containerEnv,omitempty"`
|
|
Customizations DevContainerConfigCustomizations `json:"customizations,omitempty"`
|
|
RunArgs []string `json:"runArgs,omitempty"`
|
|
ContainerUser string `json:"containerUser,omitempty"`
|
|
RemoteUser string `json:"remoteUser,omitempty"`
|
|
}
|
|
|
|
// Constants for discriminator values.
|
|
const (
|
|
TypeString = "string"
|
|
TypeArray = "array"
|
|
TypeCommandMap = "commandMap"
|
|
)
|
|
|
|
//nolint:tagliatelle
|
|
type LifecycleCommand struct {
|
|
CommandString string `json:"commandString,omitempty"`
|
|
CommandArray []string `json:"commandArray,omitempty"`
|
|
CommandMap map[string]any `json:"commandMap,omitempty"`
|
|
Discriminator string `json:"-"` // Tracks the original type for proper re-marshaling
|
|
}
|
|
|
|
func (lc *LifecycleCommand) UnmarshalJSON(data []byte) error {
|
|
// Try to unmarshal as a single string
|
|
var commandStr string
|
|
if err := json.Unmarshal(data, &commandStr); err == nil {
|
|
lc.CommandString = commandStr
|
|
lc.Discriminator = TypeString
|
|
return nil
|
|
}
|
|
|
|
// Try to unmarshal as an array of strings
|
|
var commandArr []string
|
|
if err := json.Unmarshal(data, &commandArr); err == nil {
|
|
lc.CommandArray = commandArr
|
|
lc.Discriminator = TypeArray
|
|
return nil
|
|
}
|
|
|
|
// Try to unmarshal as a map with mixed types
|
|
var rawMap map[string]any
|
|
if err := json.Unmarshal(data, &rawMap); err == nil {
|
|
for key, value := range rawMap {
|
|
switch v := value.(type) {
|
|
case string:
|
|
// Valid string value
|
|
case []interface{}:
|
|
// Convert []interface{} to []string
|
|
var strArray []string
|
|
for _, item := range v {
|
|
if str, ok := item.(string); ok {
|
|
strArray = append(strArray, str)
|
|
} else {
|
|
return fmt.Errorf("invalid format: array contains non-string value")
|
|
}
|
|
}
|
|
rawMap[key] = strArray
|
|
default:
|
|
return fmt.Errorf("invalid format: map contains unsupported type")
|
|
}
|
|
}
|
|
lc.CommandMap = rawMap
|
|
lc.Discriminator = TypeCommandMap
|
|
return nil
|
|
}
|
|
|
|
return fmt.Errorf("invalid format: must be string, []string, or map[string]any")
|
|
}
|
|
|
|
func (lc *LifecycleCommand) MarshalJSON() ([]byte, error) {
|
|
switch lc.Discriminator {
|
|
case TypeString:
|
|
return json.Marshal(lc.CommandString)
|
|
case TypeArray:
|
|
return json.Marshal(lc.CommandArray)
|
|
case TypeCommandMap:
|
|
return json.Marshal(lc.CommandMap)
|
|
default:
|
|
return nil, fmt.Errorf("unknown type for LifecycleCommand")
|
|
}
|
|
}
|
|
|
|
// ToCommandArray converts the LifecycleCommand into a slice of full commands.
|
|
func (lc *LifecycleCommand) ToCommandArray() []string {
|
|
switch lc.Discriminator {
|
|
case TypeString:
|
|
return []string{lc.CommandString}
|
|
case TypeArray:
|
|
return []string{strings.Join(lc.CommandArray, " ")}
|
|
case TypeCommandMap:
|
|
var commands []string
|
|
for _, value := range lc.CommandMap {
|
|
switch v := value.(type) {
|
|
case string:
|
|
commands = append(commands, v)
|
|
case []string:
|
|
commands = append(commands, strings.Join(v, " "))
|
|
}
|
|
}
|
|
return commands
|
|
default:
|
|
return nil
|
|
}
|
|
}
|