go-gemini/fs.go

156 lines
3.2 KiB
Go
Raw Normal View History

2020-10-24 19:15:32 +00:00
package gemini
2020-10-11 22:57:04 +00:00
import (
"fmt"
2020-10-11 22:57:04 +00:00
"io"
2021-02-16 23:53:41 +00:00
"io/fs"
2020-10-12 00:13:53 +00:00
"mime"
"net/url"
2020-10-11 22:57:04 +00:00
"path"
"sort"
"strings"
2020-10-11 22:57:04 +00:00
)
2020-10-12 00:13:53 +00:00
func init() {
// Add Gemini mime types
mime.AddExtensionType(".gmi", "text/gemini")
mime.AddExtensionType(".gemini", "text/gemini")
2020-10-12 00:13:53 +00:00
}
2021-02-15 00:50:38 +00:00
// FileServer returns a handler that serves Gemini requests with the contents
// of the provided file system.
//
2021-02-16 23:53:41 +00:00
// To use the operating system's file system implementation, use os.DirFS:
2021-02-15 00:50:38 +00:00
//
2021-02-16 23:53:41 +00:00
// gemini.FileServer(os.DirFS("/tmp"))
func FileServer(fsys fs.FS) Handler {
2021-02-15 00:50:38 +00:00
return fileServer{fsys}
}
type fileServer struct {
2021-02-16 23:53:41 +00:00
fs.FS
2021-02-15 00:50:38 +00:00
}
func (fs fileServer) ServeGemini(w ResponseWriter, r *Request) {
2021-02-17 06:38:18 +00:00
serveFile(w, r, fs, path.Clean(r.URL.Path), true)
2020-10-27 17:32:48 +00:00
}
// ServeFile responds to the request with the contents of the named file
// or directory.
2021-02-15 00:50:38 +00:00
//
// If the provided file or directory name is a relative path, it is interpreted
// relative to the current directory and may ascend to parent directories. If
// the provided name is constructed from user input, it should be sanitized
// before calling ServeFile.
2021-02-17 06:38:18 +00:00
func ServeFile(w ResponseWriter, r *Request, fsys fs.FS, name string) {
serveFile(w, r, fsys, name, false)
}
func serveFile(w ResponseWriter, r *Request, fsys fs.FS, name string, redirect bool) {
const indexPage = "/index.gmi"
// Redirect .../index.gmi to .../
if strings.HasSuffix(r.URL.Path, indexPage) {
w.Header(StatusPermanentRedirect, "./")
return
}
if name == "/" {
name = "."
} else {
name = strings.Trim(name, "/")
}
2021-02-15 00:50:38 +00:00
f, err := fsys.Open(name)
2020-10-11 22:57:04 +00:00
if err != nil {
w.Status(StatusNotFound)
return
2020-10-11 22:57:04 +00:00
}
defer f.Close()
2020-10-11 22:57:04 +00:00
2021-02-15 00:50:38 +00:00
stat, err := f.Stat()
if err != nil {
w.Status(StatusTemporaryFailure)
return
2021-02-15 00:50:38 +00:00
}
2021-02-17 06:38:18 +00:00
// Redirect to canonical path
if redirect {
url := r.URL.Path
if stat.IsDir() {
// Add trailing slash
if url[len(url)-1] != '/' {
w.Header(StatusPermanentRedirect, path.Base(url)+"/")
return
}
} else {
// Remove trailing slash
if url[len(url)-1] == '/' {
2021-02-17 06:38:18 +00:00
w.Header(StatusPermanentRedirect, "../"+path.Base(url))
return
}
}
}
2021-02-15 00:50:38 +00:00
if stat.IsDir() {
2021-02-17 06:38:18 +00:00
// Redirect if the directory name doesn't end in a slash
url := r.URL.Path
if url[len(url)-1] != '/' {
w.Header(StatusRedirect, path.Base(url)+"/")
return
}
// Use contents of index.gmi if present
index, err := fsys.Open(path.Join(name, indexPage))
if err == nil {
defer index.Close()
istat, err := index.Stat()
if err == nil {
f = index
stat = istat
}
2021-02-15 00:50:38 +00:00
}
}
if stat.IsDir() {
// Failed to find index file
dirList(w, f)
return
}
// Detect mimetype from file extension
ext := path.Ext(name)
mimetype := mime.TypeByExtension(ext)
w.Meta(mimetype)
io.Copy(w, f)
}
func dirList(w ResponseWriter, f fs.File) {
var entries []fs.DirEntry
var err error
d, ok := f.(fs.ReadDirFile)
if ok {
entries, err = d.ReadDir(-1)
}
if !ok || err != nil {
w.Header(StatusTemporaryFailure, "Error reading directory")
return
}
sort.Slice(entries, func(i, j int) bool {
return entries[i].Name() < entries[j].Name()
})
for _, entry := range entries {
name := entry.Name()
if entry.IsDir() {
name += "/"
2021-02-15 00:50:38 +00:00
}
link := LineLink{
Name: name,
URL: (&url.URL{Path: name}).EscapedPath(),
2020-10-11 22:57:04 +00:00
}
fmt.Fprintln(w, link.String())
2020-10-11 22:57:04 +00:00
}
}