85 lines
2.3 KiB
Go
85 lines
2.3 KiB
Go
// Copyright 2019 Drone IO, 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 converter
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
|
|
"github.com/drone/drone/core"
|
|
|
|
"github.com/drone/drone/plugin/converter/starlark"
|
|
|
|
"regexp"
|
|
"strings"
|
|
|
|
"gopkg.in/yaml.v2"
|
|
)
|
|
|
|
var (
|
|
// templateFileRE regex to verifying kind is template.
|
|
templateFileRE = regexp.MustCompile("^kind:\\s+template+\\n")
|
|
ErrTemplateNotFound = errors.New("template converter: template name given not found")
|
|
ErrTemplateSyntaxErrors = errors.New("template converter: there is a problem with the yaml file provided")
|
|
)
|
|
|
|
func Template(templateStore core.TemplateStore) core.ConvertService {
|
|
return &templatePlugin{
|
|
templateStore: templateStore,
|
|
}
|
|
}
|
|
|
|
type templatePlugin struct {
|
|
templateStore core.TemplateStore
|
|
}
|
|
|
|
func (p *templatePlugin) Convert(ctx context.Context, req *core.ConvertArgs) (*core.Config, error) {
|
|
// check type is yaml
|
|
if strings.HasSuffix(req.Repo.Config, ".yml") == false {
|
|
return nil, nil
|
|
}
|
|
// check kind is template
|
|
if templateFileRE.MatchString(req.Config.Data) == false {
|
|
return nil, nil
|
|
}
|
|
// map to templateArgs
|
|
var templateArgs core.TemplateArgs
|
|
err := yaml.Unmarshal([]byte(req.Config.Data), &templateArgs)
|
|
if err != nil {
|
|
return nil, ErrTemplateSyntaxErrors
|
|
}
|
|
// get template from db
|
|
template, err := p.templateStore.FindName(ctx, templateArgs.Load, req.Repo.Namespace)
|
|
if err != nil {
|
|
return nil, nil
|
|
}
|
|
if template == nil {
|
|
return nil, ErrTemplateNotFound
|
|
}
|
|
// Check if file is Starlark
|
|
if strings.HasSuffix(templateArgs.Load, ".script") ||
|
|
strings.HasSuffix(templateArgs.Load, ".star") ||
|
|
strings.HasSuffix(templateArgs.Load, ".starlark") {
|
|
|
|
file, err := starlark.Parse(req, template, templateArgs.Data)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return &core.Config{
|
|
Data: *file,
|
|
}, nil
|
|
}
|
|
return nil, nil
|
|
}
|