salix/namespace.go

92 lines
1.9 KiB
Go
Raw Normal View History

package salix
2023-11-01 19:00:44 +00:00
import "sync"
// Namespace represents a collection of templates that can include each other
type Namespace struct {
2023-10-31 04:06:17 +00:00
mu sync.Mutex
2023-10-31 04:18:35 +00:00
tmpls map[string]Template
2023-11-01 19:00:44 +00:00
vars map[string]any
2023-10-31 04:06:17 +00:00
tags map[string]Tag
escapeHTML *bool
}
// New returns a new template namespace
func New() *Namespace {
return &Namespace{
2023-10-31 04:18:35 +00:00
tmpls: map[string]Template{},
2023-11-01 19:00:44 +00:00
vars: map[string]any{},
2023-10-31 04:06:17 +00:00
tags: map[string]Tag{},
}
}
// WithVarMap sets the namespace's variable map to m
func (n *Namespace) WithVarMap(m map[string]any) *Namespace {
n.mu.Lock()
defer n.mu.Unlock()
2023-11-01 19:04:54 +00:00
if m == nil {
n.vars = map[string]any{}
} else {
n.vars = m
}
return n
}
// WithTagMap sets the namespace's tag map to m
func (n *Namespace) WithTagMap(m map[string]Tag) *Namespace {
n.mu.Lock()
defer n.mu.Unlock()
2023-11-01 19:04:54 +00:00
if m == nil {
n.tags = map[string]Tag{}
2023-11-01 19:04:54 +00:00
} else {
n.tags = m
}
return n
}
// WithVarMap turns HTML escaping on or off for the namespace
func (n *Namespace) WithEscapeHTML(b bool) *Namespace {
n.mu.Lock()
defer n.mu.Unlock()
n.escapeHTML = &b
return n
}
// GetTemplate tries to get a template from the namespace's template map.
// If it finds the template, it returns the template and true. If it
// doesn't find it, it returns nil and false.
2023-10-31 04:18:35 +00:00
func (n *Namespace) GetTemplate(name string) (Template, bool) {
n.mu.Lock()
defer n.mu.Unlock()
t, ok := n.tmpls[name]
return t, ok
}
// getVar tries to get a variable from the namespace's variable map
2023-11-01 19:00:44 +00:00
func (n *Namespace) getVar(name string) (any, bool) {
n.mu.Lock()
defer n.mu.Unlock()
v, ok := n.vars[name]
return v, ok
}
// getTag tries to get a tag from the namespace's tag map
func (n *Namespace) getTag(name string) (Tag, bool) {
n.mu.Lock()
defer n.mu.Unlock()
t, ok := n.tags[name]
return t, ok
}
// getEscapeHTML returns the namespace's escapeHTML value
func (n *Namespace) getEscapeHTML() *bool {
n.mu.Lock()
defer n.mu.Unlock()
return n.escapeHTML
}