drone-template-lib/template/helpers.go

163 lines
3.2 KiB
Go
Raw Normal View History

2018-03-30 01:04:58 +02:00
// Copyright 2018 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 template
import (
"fmt"
"net/url"
2018-09-25 00:41:34 +02:00
"regexp"
2018-03-30 01:04:58 +02:00
"strings"
"time"
"unicode"
"unicode/utf8"
2019-02-19 10:04:44 +01:00
"github.com/Masterminds/sprig"
2018-03-30 01:04:58 +02:00
"github.com/aymerick/raymond"
)
var (
funcs = map[string]interface{}{
"duration": toDuration,
"datetime": toDatetime,
"success": isSuccess,
"failure": isFailure,
"truncate": truncate,
"urlencode": urlencode,
"since": since,
"uppercasefirst": uppercaseFirst,
"uppercase": strings.ToUpper,
"lowercase": strings.ToLower,
2018-09-25 22:41:51 +02:00
"regexReplace": regexReplace,
2018-03-30 01:04:58 +02:00
}
)
func init() {
2019-02-19 10:04:44 +01:00
for name, function := range sprig.GenericFuncMap() {
if invalidHelper(name) {
continue
}
funcs[name] = function
}
2018-03-30 01:04:58 +02:00
raymond.RegisterHelpers(funcs)
}
2018-08-01 11:05:11 +02:00
func toDuration(started, finished int64) string {
2018-03-30 01:04:58 +02:00
return fmt.Sprint(time.Duration(finished-started) * time.Second)
}
2018-08-01 11:05:11 +02:00
func toDatetime(timestamp int64, layout, zone string) string {
2018-03-30 01:04:58 +02:00
if len(zone) == 0 {
2018-08-01 11:05:11 +02:00
return time.Unix(timestamp, 0).Format(layout)
2018-03-30 01:04:58 +02:00
}
loc, err := time.LoadLocation(zone)
if err != nil {
2018-08-01 11:05:11 +02:00
return time.Unix(timestamp, 0).Local().Format(layout)
2018-03-30 01:04:58 +02:00
}
2018-08-01 11:05:11 +02:00
return time.Unix(timestamp, 0).In(loc).Format(layout)
2018-03-30 01:04:58 +02:00
}
func isSuccess(conditional bool, options *raymond.Options) string {
if !conditional {
return options.Inverse()
}
switch options.ParamStr(0) {
case "success":
return options.Fn()
default:
return options.Inverse()
}
}
func isFailure(conditional bool, options *raymond.Options) string {
if !conditional {
return options.Inverse()
}
switch options.ParamStr(0) {
case "failure", "error", "killed":
return options.Fn()
default:
return options.Inverse()
}
}
func truncate(s string, len int) string {
if utf8.RuneCountInString(s) <= int(math.Abs(float64(len))) {
2018-03-30 01:04:58 +02:00
return s
}
runes := []rune(s)
if len < 0 {
len = -len
return string(runes[len:])
} else {
return string(runes[:len])
}
2018-03-30 01:04:58 +02:00
}
func urlencode(options *raymond.Options) string {
return url.QueryEscape(options.Fn())
}
func since(start int64) string {
now := time.Unix(time.Now().Unix(), 0)
return fmt.Sprint(now.Sub(time.Unix(start, 0)))
}
func uppercaseFirst(s string) string {
a := []rune(s)
a[0] = unicode.ToUpper(a[0])
s = string(a)
return s
}
2018-09-25 00:41:34 +02:00
func regexReplace(pattern string, input string, replacement string) string {
re := regexp.MustCompile(pattern)
return re.ReplaceAllString(input, replacement)
}
2019-02-19 10:04:44 +01:00
func invalidHelper(name string) bool {
invalids := []string{
2019-08-01 01:07:41 +02:00
"genPrivateKey",
"derivePassword",
2019-02-19 10:04:44 +01:00
"buildCustomCert",
"genSelfSignedCert",
"genSignedCert",
"genCA",
2019-08-01 01:07:41 +02:00
"fail",
2019-02-19 10:04:44 +01:00
"semver",
"semverCompare",
2019-08-01 01:07:41 +02:00
"hello",
"trimall",
2019-02-19 10:04:44 +01:00
}
for _, invalid := range invalids {
if name == invalid {
return true
}
}
return false
}