-
Notifications
You must be signed in to change notification settings - Fork 78
/
op_base64.go
96 lines (76 loc) · 2.5 KB
/
op_base64.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
package spruce
import (
"encoding/base64"
"fmt"
"github.com/starkandwayne/goutils/ansi"
"github.com/starkandwayne/goutils/tree"
. "github.com/geofffranks/spruce/log"
)
// Base64Operator ...
type Base64Operator struct{}
// Setup ...
func (Base64Operator) Setup() error {
return nil
}
// Phase ...
func (Base64Operator) Phase() OperatorPhase {
return EvalPhase
}
// Dependencies ...
func (Base64Operator) Dependencies(_ *Evaluator, _ []*Expr, _ []*tree.Cursor, auto []*tree.Cursor) []*tree.Cursor {
return auto
}
// Run ...
func (Base64Operator) Run(ev *Evaluator, args []*Expr) (*Response, error) {
DEBUG("running (( base64 ... )) operation at $.%s", ev.Here)
defer DEBUG("done with (( base64 ... )) operation at $%s\n", ev.Here)
if len(args) != 1 {
return nil, fmt.Errorf("base64 operator requires exactly one string or reference argument")
}
var contents string
arg := args[0]
i := 0
v, err := arg.Resolve(ev.Tree)
if err != nil {
DEBUG(" arg[%d]: failed to resolve expression to a concrete value", i)
DEBUG(" [%d]: error was: %s", i, err)
return nil, err
}
switch v.Type {
case Literal:
DEBUG(" arg[%d]: using string literal '%v'", i, v.Literal)
DEBUG(" [%d]: appending '%v' to resultant string", i, v.Literal)
if fmt.Sprintf("%T", v.Literal) != "string" {
return nil, ansi.Errorf("@R{tried to base64 encode} @c{%v}@R{, which is not a string scalar}", v.Literal)
}
contents = fmt.Sprintf("%v", v.Literal)
case Reference:
DEBUG(" arg[%d]: trying to resolve reference $.%s", i, v.Reference)
s, err := v.Reference.Resolve(ev.Tree)
if err != nil {
DEBUG(" [%d]: resolution failed\n error: %s", i, err)
return nil, fmt.Errorf("Unable to resolve `%s`: %s", v.Reference, err)
}
switch s.(type) {
case string:
DEBUG(" [%d]: appending '%s' to resultant string", i, s)
contents = fmt.Sprintf("%v", s)
default:
DEBUG(" arg[%d]: %v is not a string scalar", i, s)
return nil, ansi.Errorf("@R{tried to base64 encode} @c{%v}@R{, which is not a string scalar}", v.Reference)
}
default:
DEBUG(" arg[%d]: I don't know what to do with '%v'", i, arg)
return nil, fmt.Errorf("base64 operator only accepts string literals and key reference argument")
}
DEBUG("")
encoded := base64.StdEncoding.EncodeToString([]byte(contents))
DEBUG(" resolved (( base64 ... )) operation to the string:\n \"%s\"", string(encoded))
return &Response{
Type: Replace,
Value: string(encoded),
}, nil
}
func init() {
RegisterOp("base64", Base64Operator{})
}