mirror of
https://github.com/mjl-/mox.git
synced 2024-12-26 16:33:47 +03:00
96d86ad6f1
if files {webmail,webaccount,webadmin}.{css,js} exist in the configdir (where the mox.conf file lives), their contents are included in the web apps. the webmail now uses css variables, mostly for colors. so you can write a custom webmail.css that changes the variables, e.g.: :root { --color: blue } you can also look at css class names and override their styles. in the future, we may want to make some css variables configurable in the per-user settings in the webmail. should reduce the number of variables first. any custom javascript is loaded first. if it defines a global function "moxBeforeDisplay", that is called each time a page loads (after authentication) with the DOM element of the page content as parameter. the webmail is a single persistent page. this can be used to make some changes to the DOM, e.g. inserting some elements. we'll have to see how well this works in practice. perhaps some patterns emerge (e.g. adding a logo), and we can make those use-cases easier to achieve. helps partially with issue #114, and based on questions from laura-lilly on matrix.
268 lines
7.2 KiB
Go
268 lines
7.2 KiB
Go
package mox
|
|
|
|
import (
|
|
"bytes"
|
|
"compress/gzip"
|
|
"context"
|
|
"errors"
|
|
"fmt"
|
|
"io"
|
|
"io/fs"
|
|
"log/slog"
|
|
"net/http"
|
|
"os"
|
|
"runtime"
|
|
"strings"
|
|
"sync"
|
|
"time"
|
|
|
|
"github.com/mjl-/mox/mlog"
|
|
"github.com/mjl-/mox/moxvar"
|
|
)
|
|
|
|
// WebappFile serves a merged HTML and JS webapp as a single compressed, cacheable
|
|
// file. It merges the JS into the HTML at first load, caches a gzipped version
|
|
// that is generated on first need, and responds with a Last-Modified header.
|
|
type WebappFile struct {
|
|
HTML, JS []byte // Embedded html/js data.
|
|
HTMLPath, JSPath string // Paths to load html/js from during development.
|
|
CustomStem string // For trying to read css/js customizations from $configdir/$stem.{css,js}.
|
|
|
|
sync.Mutex
|
|
combined []byte
|
|
combinedGzip []byte
|
|
mtime time.Time // For Last-Modified and conditional request.
|
|
}
|
|
|
|
// FallbackMtime returns a time to use for the Last-Modified header in case we
|
|
// cannot find a file, e.g. when used in production.
|
|
func FallbackMtime(log mlog.Log) time.Time {
|
|
p, err := os.Executable()
|
|
log.Check(err, "finding executable for mtime")
|
|
if err == nil {
|
|
st, err := os.Stat(p)
|
|
log.Check(err, "stat on executable for mtime")
|
|
if err == nil {
|
|
return st.ModTime()
|
|
}
|
|
}
|
|
log.Info("cannot find executable for webappfile mtime, using current time")
|
|
return time.Now()
|
|
}
|
|
|
|
func (a *WebappFile) serverError(log mlog.Log, w http.ResponseWriter, err error, action string) {
|
|
log.Errorx("serve webappfile", err, slog.String("msg", action))
|
|
http.Error(w, "500 - internal server error", http.StatusInternalServerError)
|
|
}
|
|
|
|
// Serve serves a combined file, with headers for caching and possibly gzipped.
|
|
func (a *WebappFile) Serve(ctx context.Context, log mlog.Log, w http.ResponseWriter, r *http.Request) {
|
|
// We typically return the embedded file, but during development it's handy
|
|
// to load from disk.
|
|
fhtml, _ := os.Open(a.HTMLPath)
|
|
if fhtml != nil {
|
|
defer fhtml.Close()
|
|
}
|
|
fjs, _ := os.Open(a.JSPath)
|
|
if fjs != nil {
|
|
defer fjs.Close()
|
|
}
|
|
|
|
html := a.HTML
|
|
js := a.JS
|
|
|
|
var diskmtime time.Time
|
|
var refreshdisk bool
|
|
if fhtml != nil && fjs != nil {
|
|
sth, err := fhtml.Stat()
|
|
if err != nil {
|
|
a.serverError(log, w, err, "stat html")
|
|
return
|
|
}
|
|
stj, err := fjs.Stat()
|
|
if err != nil {
|
|
a.serverError(log, w, err, "stat js")
|
|
return
|
|
}
|
|
|
|
maxmtime := sth.ModTime()
|
|
if stj.ModTime().After(maxmtime) {
|
|
maxmtime = stj.ModTime()
|
|
}
|
|
|
|
a.Lock()
|
|
refreshdisk = maxmtime.After(a.mtime) || a.combined == nil
|
|
a.Unlock()
|
|
|
|
if refreshdisk {
|
|
html, err = io.ReadAll(fhtml)
|
|
if err != nil {
|
|
a.serverError(log, w, err, "reading html")
|
|
return
|
|
}
|
|
js, err = io.ReadAll(fjs)
|
|
if err != nil {
|
|
a.serverError(log, w, err, "reading js")
|
|
return
|
|
}
|
|
diskmtime = maxmtime
|
|
}
|
|
}
|
|
|
|
// Check mtime of css/js files.
|
|
var haveCustomCSS, haveCustomJS bool
|
|
checkCustomMtime := func(ext string, have *bool) bool {
|
|
path := ConfigDirPath(a.CustomStem + "." + ext)
|
|
if fi, err := os.Stat(path); err != nil {
|
|
if !errors.Is(err, fs.ErrNotExist) {
|
|
a.serverError(log, w, err, "stat customization file")
|
|
return false
|
|
}
|
|
} else if mtm := fi.ModTime(); mtm.After(diskmtime) {
|
|
diskmtime = mtm
|
|
*have = true
|
|
}
|
|
return true
|
|
}
|
|
if !checkCustomMtime("css", &haveCustomCSS) || !checkCustomMtime("js", &haveCustomJS) {
|
|
return
|
|
}
|
|
// Detect removal of custom files.
|
|
if fi, err := os.Stat(ConfigDirPath(".")); err == nil && fi.ModTime().After(diskmtime) {
|
|
diskmtime = fi.ModTime()
|
|
}
|
|
|
|
a.Lock()
|
|
refreshdisk = refreshdisk || diskmtime.After(a.mtime)
|
|
a.Unlock()
|
|
|
|
gz := AcceptsGzip(r)
|
|
var out []byte
|
|
var mtime time.Time
|
|
var origSize int64
|
|
|
|
ok := func() bool {
|
|
a.Lock()
|
|
defer a.Unlock()
|
|
|
|
if refreshdisk || a.combined == nil {
|
|
var customCSS, customJS []byte
|
|
var err error
|
|
if haveCustomCSS {
|
|
customCSS, err = os.ReadFile(ConfigDirPath(a.CustomStem + ".css"))
|
|
if err != nil {
|
|
a.serverError(log, w, err, "read custom css file")
|
|
return false
|
|
}
|
|
}
|
|
if haveCustomJS {
|
|
customJS, err = os.ReadFile(ConfigDirPath(a.CustomStem + ".js"))
|
|
if err != nil {
|
|
a.serverError(log, w, err, "read custom js file")
|
|
return false
|
|
}
|
|
}
|
|
|
|
cssp := []byte(`/* css placeholder */`)
|
|
cssi := bytes.Index(html, cssp)
|
|
if cssi < 0 {
|
|
a.serverError(log, w, errors.New("css placeholder not found"), "generating combined html")
|
|
return false
|
|
}
|
|
jsp := []byte(`/* js placeholder */`)
|
|
jsi := bytes.Index(html, jsp)
|
|
if jsi < 0 {
|
|
a.serverError(log, w, errors.New("js placeholder not found"), "generating combined html")
|
|
return false
|
|
}
|
|
var b bytes.Buffer
|
|
b.Write(html[:cssi])
|
|
fmt.Fprintf(&b, "/* Custom CSS by admin from $configdir/%s.css: */\n", a.CustomStem)
|
|
b.Write(customCSS)
|
|
b.Write(html[cssi+len(cssp) : jsi])
|
|
fmt.Fprintf(&b, "// Custom JS by admin from $configdir/%s.js:\n", a.CustomStem)
|
|
b.Write(customJS)
|
|
fmt.Fprintf(&b, "\n// Javascript is generated from typescript, don't modify the javascript because changes will be lost.\nconst moxversion = \"%s\";\nconst moxgoos = \"%s\";\nconst moxgoarch = \"%s\";\n", moxvar.Version, runtime.GOOS, runtime.GOARCH)
|
|
b.Write(js)
|
|
b.Write(html[jsi+len(jsp):])
|
|
out = b.Bytes()
|
|
a.combined = out
|
|
if refreshdisk {
|
|
a.mtime = diskmtime
|
|
} else {
|
|
a.mtime = FallbackMtime(log)
|
|
}
|
|
a.combinedGzip = nil
|
|
} else {
|
|
out = a.combined
|
|
}
|
|
if gz {
|
|
if a.combinedGzip == nil {
|
|
var b bytes.Buffer
|
|
gzw, err := gzip.NewWriterLevel(&b, gzip.BestCompression)
|
|
if err == nil {
|
|
_, err = gzw.Write(out)
|
|
}
|
|
if err == nil {
|
|
err = gzw.Close()
|
|
}
|
|
if err != nil {
|
|
a.serverError(log, w, err, "gzipping combined html")
|
|
return false
|
|
}
|
|
a.combinedGzip = b.Bytes()
|
|
}
|
|
origSize = int64(len(out))
|
|
out = a.combinedGzip
|
|
}
|
|
mtime = a.mtime
|
|
return true
|
|
}()
|
|
if !ok {
|
|
return
|
|
}
|
|
|
|
w.Header().Set("Content-Type", "text/html; charset=utf-8")
|
|
http.ServeContent(gzipInjector{w, gz, origSize}, r, "", mtime, bytes.NewReader(out))
|
|
}
|
|
|
|
// gzipInjector is a http.ResponseWriter that optionally injects a
|
|
// Content-Encoding: gzip header, only in case of status 200 OK. Used with
|
|
// http.ServeContent to serve gzipped content if the client supports it. We cannot
|
|
// just unconditionally add the content-encoding header, because we don't know
|
|
// enough if we will be sending data: http.ServeContent may be sending a "not
|
|
// modified" response, and possibly others.
|
|
type gzipInjector struct {
|
|
http.ResponseWriter // Keep most methods.
|
|
gz bool
|
|
origSize int64
|
|
}
|
|
|
|
// WriteHeader adds a Content-Encoding: gzip header before actually writing the
|
|
// headers and status.
|
|
func (w gzipInjector) WriteHeader(statusCode int) {
|
|
if w.gz && statusCode == http.StatusOK {
|
|
w.ResponseWriter.Header().Set("Content-Encoding", "gzip")
|
|
if lw, ok := w.ResponseWriter.(interface{ SetUncompressedSize(int64) }); ok {
|
|
lw.SetUncompressedSize(w.origSize)
|
|
}
|
|
}
|
|
w.ResponseWriter.WriteHeader(statusCode)
|
|
}
|
|
|
|
// AcceptsGzip returns whether the client accepts gzipped responses.
|
|
func AcceptsGzip(r *http.Request) bool {
|
|
s := r.Header.Get("Accept-Encoding")
|
|
t := strings.Split(s, ",")
|
|
for _, e := range t {
|
|
e = strings.TrimSpace(e)
|
|
tt := strings.Split(e, ";")
|
|
if len(tt) > 1 && t[1] == "q=0" {
|
|
continue
|
|
}
|
|
if tt[0] == "gzip" {
|
|
return true
|
|
}
|
|
}
|
|
return false
|
|
}
|