mirror of
https://github.com/thegeeklab/wp-matrix.git
synced 2024-11-09 18:10:39 +00:00
65 lines
1.6 KiB
Go
65 lines
1.6 KiB
Go
|
// Copyright (c) 2018, Drone.IO Inc
|
||
|
// Copyright (c) 2021, Robert Kaussow <mail@thegeeklab.de>
|
||
|
|
||
|
// Use of this source code is governed by an Apache 2.0 license that can be
|
||
|
// found in the LICENSE file.
|
||
|
|
||
|
package plugin
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
"io/ioutil"
|
||
|
"net/http"
|
||
|
"net/url"
|
||
|
"strings"
|
||
|
|
||
|
"github.com/aymerick/raymond"
|
||
|
)
|
||
|
|
||
|
// Render parses and executes a template, returning the results in string
|
||
|
// format. Trailing or leading spaces or new-lines are not getting truncated. It
|
||
|
// is able to read templates from remote paths, local files or directly from the
|
||
|
// string.
|
||
|
func Render(template string, payload interface{}) (s string, err error) {
|
||
|
u, err := url.Parse(template)
|
||
|
|
||
|
if err == nil {
|
||
|
switch u.Scheme {
|
||
|
case "http", "https":
|
||
|
res, err := http.Get(template)
|
||
|
|
||
|
if err != nil {
|
||
|
return s, fmt.Errorf("failed to fetch: %w", err)
|
||
|
}
|
||
|
|
||
|
defer res.Body.Close()
|
||
|
|
||
|
out, err := ioutil.ReadAll(res.Body)
|
||
|
|
||
|
if err != nil {
|
||
|
return s, fmt.Errorf("failed to read: %w", err)
|
||
|
}
|
||
|
|
||
|
template = string(out)
|
||
|
case "file":
|
||
|
out, err := ioutil.ReadFile(u.Path)
|
||
|
|
||
|
if err != nil {
|
||
|
return s, fmt.Errorf("failed to read: %w", err)
|
||
|
}
|
||
|
|
||
|
template = string(out)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
return raymond.Render(template, payload)
|
||
|
}
|
||
|
|
||
|
// RenderTrim parses and executes a template, returning the results in string
|
||
|
// format. The result is trimmed to remove left and right padding and newlines
|
||
|
// that may be added unintentially in the template markup.
|
||
|
func RenderTrim(template string, playload interface{}) (string, error) {
|
||
|
out, err := Render(template, playload)
|
||
|
return strings.Trim(out, " \n"), err
|
||
|
}
|