mirror of
https://github.com/thegeeklab/drone-yaml.git
synced 2024-11-05 19:10:38 +00:00
52 lines
1.4 KiB
Go
52 lines
1.4 KiB
Go
|
package converter
|
||
|
|
||
|
import (
|
||
|
"github.com/drone/drone-yaml/yaml/converter/bitbucket"
|
||
|
"github.com/drone/drone-yaml/yaml/converter/gitlab"
|
||
|
"github.com/drone/drone-yaml/yaml/converter/legacy"
|
||
|
)
|
||
|
|
||
|
// Metadata provides additional metadata used to
|
||
|
// convert the configuration file format.
|
||
|
type Metadata struct {
|
||
|
// Filename of the configuration file, helps
|
||
|
// determine the yaml configuration format.
|
||
|
Filename string
|
||
|
|
||
|
// Ref of the commit use to choose the correct
|
||
|
// pipeline if the configuration format defines
|
||
|
// multiple pipelines (like Bitbucket)
|
||
|
Ref string
|
||
|
}
|
||
|
|
||
|
// Convert converts the yaml configuration file from
|
||
|
// the legacy format to the 1.0+ format.
|
||
|
func Convert(d []byte, m Metadata) ([]byte, error) {
|
||
|
switch m.Filename {
|
||
|
case "bitbucket-pipelines.yml":
|
||
|
return bitbucket.Convert(d, m.Ref)
|
||
|
case "circle.yml", ".circleci/config.yml":
|
||
|
// TODO(bradrydzewski)
|
||
|
case ".gitlab-ci.yml":
|
||
|
return gitlab.Convert(d)
|
||
|
case ".travis.yml":
|
||
|
// TODO(bradrydzewski)
|
||
|
}
|
||
|
// if the filename does not match any external
|
||
|
// systems we check to see if the configuration
|
||
|
// file is a legacy (pre 1.0) .drone.yml format.
|
||
|
if legacy.Match(d) {
|
||
|
return legacy.Convert(d)
|
||
|
}
|
||
|
// else return the unmodified configuration
|
||
|
// back to the caller.
|
||
|
return d, nil
|
||
|
}
|
||
|
|
||
|
// ConvertString converts the yaml configuration file from
|
||
|
// the legacy format to the 1.0+ format.
|
||
|
func ConvertString(s string, m Metadata) (string, error) {
|
||
|
b, err := Convert([]byte(s), m)
|
||
|
return string(b), err
|
||
|
}
|