about summary refs log tree commit diff stats
path: root/internal/storage/files/file.go
diff options
context:
space:
mode:
authorAlan Pearce2025-01-27 21:42:41 +0100
committerAlan Pearce2025-01-28 01:28:32 +0100
commit127a675fc7cd9cdb65e4b4caac21e0f259102ee8 (patch)
tree9f2e269187702a4ea26bd776547d99e3832c60a6 /internal/storage/files/file.go
parent04809ffd7971032818238db14feb6d3c95470e3b (diff)
downloadwebsite-127a675fc7cd9cdb65e4b4caac21e0f259102ee8.tar.lz
website-127a675fc7cd9cdb65e4b4caac21e0f259102ee8.tar.zst
website-127a675fc7cd9cdb65e4b4caac21e0f259102ee8.zip
serve files from Storage implementation
Diffstat (limited to 'internal/storage/files/file.go')
-rw-r--r--internal/storage/files/file.go102
1 files changed, 102 insertions, 0 deletions
diff --git a/internal/storage/files/file.go b/internal/storage/files/file.go
new file mode 100644
index 0000000..a71811c
--- /dev/null
+++ b/internal/storage/files/file.go
@@ -0,0 +1,102 @@
+package files
+
+import (
+	"fmt"
+	"hash/fnv"
+	"io"
+	"mime"
+	"os"
+	"path/filepath"
+	"strings"
+
+	"gitlab.com/tozd/go/errors"
+	"go.alanpearce.eu/website/internal/storage"
+)
+
+type File struct {
+	storage.File
+}
+
+var encodings = map[string]string{
+	"br":   ".br",
+	"gzip": ".gz",
+}
+
+func (r *Reader) OpenFile(path string, filename string) (*File, error) {
+	f, err := os.Open(filename)
+	if err != nil {
+		return nil, errors.WithMessage(err, "could not open file for reading")
+	}
+	stat, err := f.Stat()
+	if err != nil {
+		return nil, errors.WithMessage(err, "could not stat file")
+	}
+
+	etag, err := etag(f)
+	if err != nil {
+		return nil, errors.WithMessage(err, "could not calculate etag")
+	}
+
+	file := &File{
+		File: storage.File{
+			Path:         path,
+			ContentType:  mime.TypeByExtension(filepath.Ext(filename)),
+			LastModified: stat.ModTime(),
+			Etag:         etag,
+			Encodings: map[string]io.ReadSeekCloser{
+				"identity": f,
+			},
+		},
+	}
+
+	for enc, suffix := range encodings {
+		_, err := os.Stat(filename + suffix)
+		if err != nil {
+			if errors.Is(err, os.ErrNotExist) {
+				continue
+			}
+
+			return nil, errors.WithMessagef(err, "could not stat file %s", filename+suffix)
+		}
+		file.Encodings[enc], err = os.Open(filename + suffix)
+		if err != nil {
+			return nil, errors.WithMessagef(err, "could not read file %s", filename+suffix)
+		}
+	}
+
+	return file, nil
+}
+
+func etag(f io.Reader) (string, error) {
+	hash := fnv.New64a()
+	if _, err := io.Copy(hash, f); err != nil {
+		return "", errors.WithMessage(err, "could not hash file")
+	}
+
+	return fmt.Sprintf(`W/"%x"`, hash.Sum(nil)), nil
+}
+
+func (f *File) Close() error {
+	var errs []error
+	for _, enc := range f.Encodings {
+		if err := enc.Close(); err != nil {
+			errs = append(errs, err)
+		}
+	}
+
+	return errors.Join(errs...)
+}
+
+func pathNameToFileName(pathname string) string {
+	if strings.HasSuffix(pathname, "/") {
+		pathname = pathname + "index.html"
+	}
+
+	return pathname
+}
+
+func fileNameToPathName(filename string) string {
+	pathname, _ := strings.CutSuffix(filename, "index.html")
+
+	return pathname
+}