dsh1102 2018-03-31 15:57
浏览 747
已采纳

在Go中使用http.FileServer禁用目录列表的好方法

If you use the http.FileServer in Go like:

func main() {
    port := flag.String("p", "8100", "port to serve on")
    directory := flag.String("d", ".", "the directory of static file to host")
    flag.Parse()

    http.Handle("/", http.FileServer(http.Dir(*directory)))

    log.Printf("Serving %s on HTTP port: %s
", *directory, *port)
    log.Fatal(http.ListenAndServe(":"+*port, nil))
}

Then accessing a directory will give you a listing of files. Often this is disabled for web services and instead responds with 404 and I would like this behaviour too.

http.FileServer has no options for this AFAIK and I have seen a proposed way to solve this here https://groups.google.com/forum/#!topic/golang-nuts/bStLPdIVM6w what they do is wrapping the http.FileSystem type and implementing an own Open method. However this doesn't give a 404 when the path is a directory, it just gives a blank page, and it's unclear how to modify it to accomodate this. This is what they do:

type justFilesFilesystem struct {
    fs http.FileSystem
}

func (fs justFilesFilesystem) Open(name string) (http.File, error) {
    f, err := fs.fs.Open(name)
    if err != nil {
        return nil, err
    }
    return neuteredReaddirFile{f}, nil
}

type neuteredReaddirFile struct {
    http.File
}

func (f neuteredReaddirFile) Readdir(count int) ([]os.FileInfo, error) {
    return nil, nil
}

func main() {
    fs := justFilesFilesystem{http.Dir("/tmp/")}
    http.ListenAndServe(":8080", http.FileServer(fs))
}

Note: if you make Readdir return nil, os.ErrNotExist then you get a 500 response with "Error reading directory" - not 404.

Any ideas on how to neatly present a 404 and still preserving the feature of automatically finding an index.html if present?

  • 写回答

1条回答 默认 最新

  • duankange2433 2018-03-31 20:45
    关注

    This behavior can be changed if you substitute not a Readdir method, but the Stat.
    Please take a look at working code below. It supports serving of index.html files if they are inside of requested directory and returns 404 in case there is no index.html and it is a directory.

        package main
    
        import (
            "io"
            "net/http"
            "os"
        )
    
        type justFilesFilesystem struct {
            fs               http.FileSystem
            // readDirBatchSize - configuration parameter for `Readdir` func  
            readDirBatchSize int
        }
    
        func (fs justFilesFilesystem) Open(name string) (http.File, error) {
            f, err := fs.fs.Open(name)
            if err != nil {
                return nil, err
            }
            return neuteredStatFile{File: f, readDirBatchSize: fs.readDirBatchSize}, nil
        }
    
        type neuteredStatFile struct {
            http.File
            readDirBatchSize int
        }
    
        func (e neuteredStatFile) Stat() (os.FileInfo, error) {
            s, err := e.File.Stat()
            if err != nil {
                return nil, err
            }
            if s.IsDir() {
            LOOP:
                for {
                    fl, err := e.File.Readdir(e.readDirBatchSize)
                    switch err {
                    case io.EOF:
                        break LOOP
                    case nil:
                        for _, f := range fl {
                            if f.Name() == "index.html" {
                                return s, err
                            }
                        }
                    default:
                        return nil, err
                    }
                }
                return nil, os.ErrNotExist
            }
            return s, err
        }
    
        func main() {
            fs := justFilesFilesystem{fs: http.Dir("/tmp/"), readDirBatchSize: 2}
            fss := http.FileServer(fs)
            http.ListenAndServe(":8080", fss)
        }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 乌班图ip地址配置及远程SSH
  • ¥15 怎么让点阵屏显示静态爱心,用keiluVision5写出让点阵屏显示静态爱心的代码,越快越好
  • ¥15 PSPICE制作一个加法器
  • ¥15 javaweb项目无法正常跳转
  • ¥15 VMBox虚拟机无法访问
  • ¥15 skd显示找不到头文件
  • ¥15 机器视觉中图片中长度与真实长度的关系
  • ¥15 fastreport table 怎么只让每页的最下面和最顶部有横线
  • ¥15 java 的protected权限 ,问题在注释里
  • ¥15 这个是哪里有问题啊?