ipbl/vendor/github.com/labstack/echo/v4/context_fs.go

53 lines
1.3 KiB
Go
Raw Normal View History

2024-05-11 18:03:51 +02:00
// SPDX-License-Identifier: MIT
// SPDX-FileCopyrightText: © 2015 LabStack LLC and Echo contributors
2022-03-11 23:34:09 +01:00
package echo
import (
2023-01-14 13:28:44 +01:00
"errors"
"io"
"io/fs"
2022-03-11 23:34:09 +01:00
"net/http"
"path/filepath"
)
2023-01-14 13:28:44 +01:00
func (c *context) File(file string) error {
return fsFile(c, file, c.echo.Filesystem)
}
// FileFS serves file from given file system.
//
// When dealing with `embed.FS` use `fs := echo.MustSubFS(fs, "rootDirectory") to create sub fs which uses necessary
// prefix for directory path. This is necessary as `//go:embed assets/images` embeds files with paths
// including `assets/images` as their prefix.
func (c *context) FileFS(file string, filesystem fs.FS) error {
return fsFile(c, file, filesystem)
}
func fsFile(c Context, file string, filesystem fs.FS) error {
f, err := filesystem.Open(file)
2022-03-11 23:34:09 +01:00
if err != nil {
2023-01-14 13:28:44 +01:00
return ErrNotFound
2022-03-11 23:34:09 +01:00
}
defer f.Close()
fi, _ := f.Stat()
if fi.IsDir() {
2023-01-14 13:28:44 +01:00
file = filepath.ToSlash(filepath.Join(file, indexPage)) // ToSlash is necessary for Windows. fs.Open and os.Open are different in that aspect.
f, err = filesystem.Open(file)
2022-03-11 23:34:09 +01:00
if err != nil {
2023-01-14 13:28:44 +01:00
return ErrNotFound
2022-03-11 23:34:09 +01:00
}
defer f.Close()
if fi, err = f.Stat(); err != nil {
2023-01-14 13:28:44 +01:00
return err
2022-03-11 23:34:09 +01:00
}
}
2023-01-14 13:28:44 +01:00
ff, ok := f.(io.ReadSeeker)
if !ok {
return errors.New("file does not implement io.ReadSeeker")
}
http.ServeContent(c.Response(), c.Request(), fi.Name(), fi.ModTime(), ff)
return nil
2022-03-11 23:34:09 +01:00
}