gin/fs.go

46 lines
1.1 KiB
Go
Raw Normal View History

2017-06-12 09:04:52 +03:00
// Copyright 2017 Manu Martinez-Almeida. All rights reserved.
// Use of this source code is governed by a MIT style
// license that can be found in the LICENSE file.
package gin
import (
"net/http"
"os"
)
2020-05-25 15:13:09 +03:00
type onlyFilesFS struct {
2017-07-05 10:47:36 +03:00
fs http.FileSystem
}
type neuteredReaddirFile struct {
http.File
}
2017-03-01 11:42:59 +03:00
// Dir returns a http.Filesystem that can be used by http.FileServer(). It is used internally
2015-05-29 22:03:41 +03:00
// in router.Static().
// if listDirectory == true, then it works the same as http.Dir() otherwise it returns
// a filesystem that prevents http.FileServer() to list the directory files.
func Dir(root string, listDirectory bool) http.FileSystem {
fs := http.Dir(root)
if listDirectory {
return fs
}
2020-05-25 15:13:09 +03:00
return &onlyFilesFS{fs}
}
2017-08-16 06:55:50 +03:00
// Open conforms to http.Filesystem.
2020-05-25 15:13:09 +03:00
func (fs onlyFilesFS) Open(name string) (http.File, error) {
f, err := fs.fs.Open(name)
if err != nil {
return nil, err
}
return neuteredReaddirFile{f}, nil
}
2017-08-16 06:55:50 +03:00
// Readdir overrides the http.File default implementation.
func (f neuteredReaddirFile) Readdir(count int) ([]os.FileInfo, error) {
// this disables directory listing
return nil, nil
}