internal/website/filemap.go (view raw)
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 | package website
import (
"fmt"
"hash/fnv"
"io"
"io/fs"
"os"
"path/filepath"
"strings"
"website/internal/log"
"github.com/pkg/errors"
)
type File struct {
filename string
etag string
}
var files = map[string]File{}
func hashFile(filename string) (string, error) {
f, err := os.Open(filename)
if err != nil {
return "", errors.Wrapf(err, "could not open file %s for hashing", filename)
}
defer f.Close()
hash := fnv.New64a()
if _, err := io.Copy(hash, f); err != nil {
return "", errors.Wrapf(err, "could not hash file %s", filename)
}
return fmt.Sprintf(`W/"%x"`, hash.Sum(nil)), nil
}
func registerFile(urlpath string, filepath string) error {
if files[urlpath] != (File{}) {
log.Info("registerFile called with duplicate file", "url_path", urlpath)
return nil
}
hash, err := hashFile(filepath)
if err != nil {
return err
}
files[urlpath] = File{
filename: filepath,
etag: hash,
}
return nil
}
func registerContentFiles(root string) error {
err := filepath.WalkDir(root, func(filePath string, f fs.DirEntry, err error) error {
if err != nil {
return errors.WithMessagef(err, "failed to access path %s", filePath)
}
relPath, err := filepath.Rel(root, filePath)
if err != nil {
return errors.WithMessagef(err, "failed to make path relative, path: %s", filePath)
}
urlPath, _ := strings.CutSuffix(relPath, "index.html")
if !f.IsDir() {
log.Debug("registering file", "urlpath", "/"+urlPath)
return registerFile("/"+urlPath, filePath)
}
return nil
})
if err != nil {
return errors.Wrap(err, "could not walk directory")
}
return nil
}
func GetFile(urlPath string) File {
return files[urlPath]
}
|