package hashfs
import "github.com/benbjohnson/hashfs"
Index ¶
- func FileServer(fsys fs.FS) http.Handler
- func FormatName(filename, hash string) string
- func ParseName(filename string) (base, hash string)
- type FS
Functions ¶
func FileServer ¶
FileServer returns an http.Handler for serving FS files. It provides a simplified implementation of http.FileServer which is used to aggressively cache files on the client since the file hash is in the filename.
Because FileServer is focused on small known path files, several features of http.FileServer have been removed including canonicalizing directories, defaulting index.html pages, precondition checks, & content range headers.
func FormatName ¶
FormatName returns a hash name that inserts hash before the filename's extension. If no extension exists on filename then the hash is appended. Returns blank string the original filename if hash is blank. Returns a blank string if the filename is blank.
func ParseName ¶
ParseName splits formatted hash filename into its base & hash components.
Types ¶
type FS ¶
type FS struct {
// contains filtered or unexported fields
}
FS represents an fs.FS file system that can optionally use content addressable hashes in the filename. This allows the caller to aggressively cache the data since the filename will change if the data changes.
func NewFS ¶
func (*FS) HashName ¶
HashName returns the hash name for a path, if exists. Otherwise returns the original path.
func (*FS) Open ¶
Open returns a reference to the named file. If name is a hash name then the underlying file is used.
func (*FS) ParseName ¶
ParseName splits formatted hash filename into its base & hash components.
Source Files ¶
- Version
- v0.2.2 (latest)
- Published
- Feb 19, 2024
- Platform
- linux/amd64
- Imports
- 12 packages
- Last checked
- 1 week ago –
Tools for package owners.