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
|
package funcs
import (
"sync"
"github.com/hairyhenderson/gomplate/conv"
"github.com/google/uuid"
)
var (
uuidNS *UUIDFuncs
uuidNSInit sync.Once
)
// UUIDNS -
func UUIDNS() *UUIDFuncs {
uuidNSInit.Do(func() {
uuidNS = &UUIDFuncs{}
})
return uuidNS
}
// AddUUIDFuncs -
func AddUUIDFuncs(f map[string]interface{}) {
f["uuid"] = UUIDNS
}
// UUIDFuncs -
type UUIDFuncs struct{}
// V1 - return a version 1 UUID (based on the current MAC Address and the
// current date/time). Use V4 instead in most cases.
func (f *UUIDFuncs) V1() (string, error) {
u, err := uuid.NewUUID()
if err != nil {
return "", err
}
return u.String(), nil
}
// V4 - return a version 4 (random) UUID
func (f *UUIDFuncs) V4() (string, error) {
u, err := uuid.NewRandom()
if err != nil {
return "", err
}
return u.String(), nil
}
// Nil -
func (f *UUIDFuncs) Nil() (string, error) {
return uuid.Nil.String(), nil
}
// IsValid - checks if the given UUID is in the correct format. It does not
// validate whether the version or variant are correct.
func (f *UUIDFuncs) IsValid(in interface{}) (bool, error) {
_, err := f.Parse(in)
return err == nil, nil
}
// Parse - parse a UUID for further manipulation or inspection.
//
// Both the standard UUID forms of xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx and
// urn:uuid:xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx are decoded as well as the
// Microsoft encoding {xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx} and the raw hex
// encoding: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx.
func (f *UUIDFuncs) Parse(in interface{}) (uuid.UUID, error) {
u, err := uuid.Parse(conv.ToString(in))
if err != nil {
return uuid.Nil, err
}
return u, err
}
|