mirror of
https://github.com/filebrowser/filebrowser.git
synced 2024-06-07 23:00:43 +00:00
30 lines
835 B
Go
30 lines
835 B
Go
package filemanager
|
|
|
|
import "net/http"
|
|
|
|
// ResponseWriterNoBody is a wrapper used to suprress the body of the response
|
|
// to a request. Mainly used for HEAD requests.
|
|
type ResponseWriterNoBody struct {
|
|
http.ResponseWriter
|
|
}
|
|
|
|
// NewResponseWriterNoBody creates a new ResponseWriterNoBody.
|
|
func NewResponseWriterNoBody(w http.ResponseWriter) *ResponseWriterNoBody {
|
|
return &ResponseWriterNoBody{w}
|
|
}
|
|
|
|
// Header executes the Header method from the http.ResponseWriter.
|
|
func (w ResponseWriterNoBody) Header() http.Header {
|
|
return w.ResponseWriter.Header()
|
|
}
|
|
|
|
// Write suprresses the body.
|
|
func (w ResponseWriterNoBody) Write(data []byte) (int, error) {
|
|
return 0, nil
|
|
}
|
|
|
|
// WriteHeader writes the header to the http.ResponseWriter.
|
|
func (w ResponseWriterNoBody) WriteHeader(statusCode int) {
|
|
w.ResponseWriter.WriteHeader(statusCode)
|
|
}
|