Skip to content

Commit 75c16e2

Browse files
committed
Use http.ResponseController instead of http.Hijacker assertion
Fixes #455
1 parent b366270 commit 75c16e2

File tree

3 files changed

+47
-10
lines changed

3 files changed

+47
-10
lines changed

accept.go

+7-10
Original file line numberDiff line numberDiff line change
@@ -105,13 +105,6 @@ func accept(w http.ResponseWriter, r *http.Request, opts *AcceptOptions) (_ *Con
105105
}
106106
}
107107

108-
hj, ok := w.(http.Hijacker)
109-
if !ok {
110-
err = errors.New("http.ResponseWriter does not implement http.Hijacker")
111-
http.Error(w, http.StatusText(http.StatusNotImplemented), http.StatusNotImplemented)
112-
return nil, err
113-
}
114-
115108
w.Header().Set("Upgrade", "websocket")
116109
w.Header().Set("Connection", "Upgrade")
117110

@@ -136,10 +129,14 @@ func accept(w http.ResponseWriter, r *http.Request, opts *AcceptOptions) (_ *Con
136129
ginWriter.WriteHeaderNow()
137130
}
138131

139-
netConn, brw, err := hj.Hijack()
132+
netConn, brw, err := hijack(w)
140133
if err != nil {
141-
err = fmt.Errorf("failed to hijack connection: %w", err)
142-
http.Error(w, http.StatusText(http.StatusInternalServerError), http.StatusInternalServerError)
134+
if errors.Is(err, errHTTPHijackNotSupported) {
135+
http.Error(w, http.StatusText(http.StatusNotImplemented), http.StatusNotImplemented)
136+
} else {
137+
err = fmt.Errorf("failed to hijack connection: %w", err)
138+
http.Error(w, http.StatusText(http.StatusInternalServerError), http.StatusInternalServerError)
139+
}
143140
return nil, err
144141
}
145142

hijack.go

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
//go:build go1.20
2+
3+
package websocket
4+
5+
import (
6+
"bufio"
7+
"errors"
8+
"net"
9+
"net/http"
10+
)
11+
12+
var errHTTPHijackNotSupported = errors.New("http.ResponseWriter does not implement http.Hijacker")
13+
14+
func hijack(w http.ResponseWriter) (net.Conn, *bufio.ReadWriter, error) {
15+
conn, rw, err := http.NewResponseController(w).Hijack()
16+
if errors.Is(err, http.ErrNotSupported) {
17+
return nil, nil, errHTTPHijackNotSupported
18+
}
19+
return conn, rw, err
20+
}

hijack_119.go

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
//go:build !go1.20
2+
3+
package websocket
4+
5+
import (
6+
"bufio"
7+
"errors"
8+
"net"
9+
"net/http"
10+
)
11+
12+
var errHTTPHijackNotSupported = errors.New("http.ResponseWriter does not implement http.Hijacker")
13+
14+
func hijack(w http.ResponseWriter) (net.Conn, *bufio.ReadWriter, error) {
15+
hj, ok := w.(http.Hijacker)
16+
if !ok {
17+
return nil, nil, errHTTPHijackNotSupported
18+
}
19+
return hj.Hijack()
20+
}

0 commit comments

Comments
 (0)