Files
nuclei/pkg/templates/cache.go
Dwi Siswanto 770f20eeab feat(templates): add file metadata fields to parsedTemplate (#6534)
* feat(templates): add file metadata fields to `parsedTemplate`

to track template file information for cache
validation purposes.

closes #6515.

Signed-off-by: Dwi Siswanto <git@dw1.io>

* chore(templates): satisfy lints

Signed-off-by: Dwi Siswanto <git@dw1.io>

---------

Signed-off-by: Dwi Siswanto <git@dw1.io>
2025-11-02 19:09:03 +07:00

109 lines
2.3 KiB
Go

package templates
import (
"os"
"time"
"github.com/projectdiscovery/utils/conversion"
mapsutil "github.com/projectdiscovery/utils/maps"
)
// Templates is a cache for caching and storing templates for reuse.
type Cache struct {
items *mapsutil.SyncLockMap[string, parsedTemplate]
}
// New returns a new templates cache
func NewCache() *Cache {
return &Cache{
items: mapsutil.NewSyncLockMap[string, parsedTemplate](),
}
}
type parsedTemplate struct {
template *Template
raw string
err error
filePath string
modTime time.Time
}
// setModTime sets the modification time of the file if it exists.
func (p *parsedTemplate) setModTime(id string) {
if stat, err := os.Stat(id); err == nil {
p.modTime = stat.ModTime()
}
}
// isValid checks if the cached template is still valid based on the file's
// modification time.
func (p *parsedTemplate) isValid(templatePath string) bool {
if p.modTime.IsZero() {
return true
}
stat, err := os.Stat(templatePath)
if err != nil {
return false
}
return stat.ModTime().Equal(p.modTime)
}
// Has returns true if the cache has a template. The template
// is returned along with any errors if found.
func (t *Cache) Has(template string) (*Template, []byte, error) {
value, ok := t.items.Get(template)
if !ok {
return nil, nil, nil
}
if !value.isValid(template) {
t.items.Delete(template)
return nil, nil, nil
}
return value.template, conversion.Bytes(value.raw), value.err
}
// Store stores a template with data and error
func (t *Cache) Store(id string, tpl *Template, raw []byte, err error) {
entry := parsedTemplate{
template: tpl,
err: err,
raw: conversion.String(raw),
filePath: id,
}
entry.setModTime(id)
_ = t.items.Set(id, entry)
}
// StoreWithoutRaw stores a template without raw data for memory efficiency
func (t *Cache) StoreWithoutRaw(id string, tpl *Template, err error) {
entry := parsedTemplate{
template: tpl,
err: err,
raw: "",
filePath: id,
}
entry.setModTime(id)
_ = t.items.Set(id, entry)
}
// Get returns only the template without raw bytes
func (t *Cache) Get(id string) (*Template, error) {
value, ok := t.items.Get(id)
if !ok {
return nil, nil
}
return value.template, value.err
}
// Purge the cache
func (t *Cache) Purge() {
t.items.Clear()
}