mirror of
https://github.com/muety/wakapi.git
synced 2023-08-10 21:12:56 +03:00
bb1d6c048d
fix: forbid to browse file system index
33 lines
688 B
Go
33 lines
688 B
Go
package middlewares
|
|
|
|
import (
|
|
"net/http"
|
|
"strings"
|
|
)
|
|
|
|
type SuffixFilterMiddleware struct {
|
|
handler http.Handler
|
|
filterTypes []string
|
|
}
|
|
|
|
func NewFileTypeFilterMiddleware(filter []string) func(http.Handler) http.Handler {
|
|
return func(h http.Handler) http.Handler {
|
|
return &SuffixFilterMiddleware{
|
|
handler: h,
|
|
filterTypes: filter,
|
|
}
|
|
}
|
|
}
|
|
|
|
func (f *SuffixFilterMiddleware) ServeHTTP(w http.ResponseWriter, r *http.Request) {
|
|
path := strings.ToLower(r.URL.Path)
|
|
for _, t := range f.filterTypes {
|
|
if strings.HasSuffix(path, strings.ToLower(t)) {
|
|
w.WriteHeader(http.StatusForbidden)
|
|
w.Write([]byte("403 forbidden"))
|
|
return
|
|
}
|
|
}
|
|
f.handler.ServeHTTP(w, r)
|
|
}
|