lib/httpserver: properly set status code for empty response

This commit is contained in:
Aliaksandr Valialkin 2020-05-24 23:55:28 +03:00
parent 947009f459
commit f5a4731412

View File

@ -365,10 +365,7 @@ func (zrw *gzipResponseWriter) Write(p []byte) (int, error) {
h.Set("Content-Type", "text/html")
}
}
if zrw.statusCode == 0 {
zrw.statusCode = http.StatusOK
}
zrw.ResponseWriter.WriteHeader(zrw.statusCode)
zrw.writeHeader()
zrw.firstWriteDone = true
}
if zrw.disableCompression {
@ -378,12 +375,16 @@ func (zrw *gzipResponseWriter) Write(p []byte) (int, error) {
}
func (zrw *gzipResponseWriter) WriteHeader(statusCode int) {
if zrw.statusCode != 0 {
return
}
zrw.statusCode = statusCode
}
func (zrw *gzipResponseWriter) writeHeader() {
if zrw.statusCode == 0 {
zrw.statusCode = http.StatusOK
}
zrw.ResponseWriter.WriteHeader(zrw.statusCode)
}
// Implements http.Flusher
func (zrw *gzipResponseWriter) Flush() {
if err := zrw.bw.Flush(); err != nil && !isTrivialNetworkError(err) {
@ -399,6 +400,7 @@ func (zrw *gzipResponseWriter) Flush() {
func (zrw *gzipResponseWriter) Close() error {
if !zrw.firstWriteDone {
zrw.writeHeader()
return nil
}
zrw.Flush()