mirror of
https://github.com/smallstep/certificates.git
synced 2024-11-11 07:11:00 +00:00
65 lines
1.4 KiB
Go
65 lines
1.4 KiB
Go
package x509util
|
|
|
|
import (
|
|
"bytes"
|
|
"io/ioutil"
|
|
"text/template"
|
|
|
|
"github.com/Masterminds/sprig"
|
|
"github.com/pkg/errors"
|
|
"github.com/smallstep/cli/config"
|
|
)
|
|
|
|
type Options struct {
|
|
CertBuffer *bytes.Buffer
|
|
}
|
|
|
|
func (o *Options) apply(opts []Option) (*Options, error) {
|
|
for _, fn := range opts {
|
|
if err := fn(o); err != nil {
|
|
return o, err
|
|
}
|
|
}
|
|
return o, nil
|
|
}
|
|
|
|
type Option func(o *Options) error
|
|
|
|
func WithTemplate(text string, data map[string]interface{}) Option {
|
|
return func(o *Options) error {
|
|
tmpl, err := template.New("template").Funcs(sprig.TxtFuncMap()).Parse(text)
|
|
if err != nil {
|
|
return errors.Wrapf(err, "error parsing template")
|
|
}
|
|
|
|
buf := new(bytes.Buffer)
|
|
if err := tmpl.Execute(buf, data); err != nil {
|
|
return errors.Wrapf(err, "error executing template")
|
|
}
|
|
o.CertBuffer = buf
|
|
return nil
|
|
}
|
|
}
|
|
|
|
func WithTemplateFile(path string, data map[string]interface{}) Option {
|
|
return func(o *Options) error {
|
|
filename := config.StepAbs(path)
|
|
b, err := ioutil.ReadFile(filename)
|
|
if err != nil {
|
|
return errors.Wrapf(err, "error reading %s", path)
|
|
}
|
|
|
|
tmpl, err := template.New(path).Funcs(sprig.TxtFuncMap()).Parse(string(b))
|
|
if err != nil {
|
|
return errors.Wrapf(err, "error parsing %s", path)
|
|
}
|
|
|
|
buf := new(bytes.Buffer)
|
|
if err := tmpl.Execute(buf, data); err != nil {
|
|
return errors.Wrapf(err, "error executing %s", path)
|
|
}
|
|
o.CertBuffer = buf
|
|
return nil
|
|
}
|
|
}
|