Convert ResponseWriter to struct
This commit is contained in:
parent
4b27a736ac
commit
57a124a8b9
@ -26,7 +26,7 @@ func main() {
|
|||||||
config.ClientAuth = tls.RequestClientCert
|
config.ClientAuth = tls.RequestClientCert
|
||||||
|
|
||||||
mux := &gemini.ServeMux{}
|
mux := &gemini.ServeMux{}
|
||||||
mux.HandleFunc("/", func(rw gemini.ResponseWriter, req *gemini.Request) {
|
mux.HandleFunc("/", func(rw *gemini.ResponseWriter, req *gemini.Request) {
|
||||||
log.Printf("Request from %s for %s with certificates %v", req.RemoteAddr.String(), req.URL.String(), req.TLS.PeerCertificates)
|
log.Printf("Request from %s for %s with certificates %v", req.RemoteAddr.String(), req.URL.String(), req.TLS.PeerCertificates)
|
||||||
rw.WriteHeader(gemini.StatusSuccess, "text/gemini")
|
rw.WriteHeader(gemini.StatusSuccess, "text/gemini")
|
||||||
rw.Write([]byte("You requested " + req.URL.String()))
|
rw.Write([]byte("You requested " + req.URL.String()))
|
||||||
|
53
gemini.go
53
gemini.go
@ -74,7 +74,6 @@ type Request struct {
|
|||||||
|
|
||||||
// For client requests, Host specifies the host on which the URL is sought.
|
// For client requests, Host specifies the host on which the URL is sought.
|
||||||
// If this field is empty, the host will be inferred from the URL.
|
// If this field is empty, the host will be inferred from the URL.
|
||||||
|
|
||||||
// This field is ignored by the server.
|
// This field is ignored by the server.
|
||||||
Host string
|
Host string
|
||||||
|
|
||||||
@ -165,23 +164,6 @@ type Response struct {
|
|||||||
TLS tls.ConnectionState
|
TLS tls.ConnectionState
|
||||||
}
|
}
|
||||||
|
|
||||||
// ResponseWriter is used by a Gemini handler to construct a Gemini response.
|
|
||||||
type ResponseWriter interface {
|
|
||||||
// WriteHeader writes the response header.
|
|
||||||
//
|
|
||||||
// Meta contains more information related to the response status.
|
|
||||||
// For successful responses, Meta should contain the mimetype of the response.
|
|
||||||
// For failure responses, Meta should contain a short description of the failure.
|
|
||||||
// Meta should not be longer than 1024 bytes.
|
|
||||||
WriteHeader(status int, meta string)
|
|
||||||
|
|
||||||
// Write writes the response body.
|
|
||||||
// If the response status does not allow for a response body, Write returns
|
|
||||||
// ErrBodyNotAllowed.
|
|
||||||
// WriteHeader must be called before Write.
|
|
||||||
Write([]byte) (int, error)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Get makes a request for the provided URL. The host is inferred from the URL.
|
// Get makes a request for the provided URL. The host is inferred from the URL.
|
||||||
func Get(url string) (*Response, error) {
|
func Get(url string) (*Response, error) {
|
||||||
req, err := NewRequest(url)
|
req, err := NewRequest(url)
|
||||||
@ -336,19 +318,26 @@ func (s *Server) Serve(l net.Listener) error {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// response represents the server side of a Gemini response.
|
// ResponseWriter is used by a Gemini handler to construct a Gemini response.
|
||||||
type response struct {
|
type ResponseWriter struct {
|
||||||
w *bufio.Writer
|
w *bufio.Writer
|
||||||
|
wroteHeader bool
|
||||||
bodyAllowed bool
|
bodyAllowed bool
|
||||||
}
|
}
|
||||||
|
|
||||||
func newResponse(conn net.Conn) *response {
|
func newResponseWriter(conn net.Conn) *ResponseWriter {
|
||||||
return &response{
|
return &ResponseWriter{
|
||||||
w: bufio.NewWriter(conn),
|
w: bufio.NewWriter(conn),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (r *response) WriteHeader(status int, meta string) {
|
// WriteHeader writes the response header.
|
||||||
|
//
|
||||||
|
// Meta contains more information related to the response status.
|
||||||
|
// For successful responses, Meta should contain the mimetype of the response.
|
||||||
|
// For failure responses, Meta should contain a short description of the failure.
|
||||||
|
// Meta should not be longer than 1024 bytes.
|
||||||
|
func (r *ResponseWriter) WriteHeader(status int, meta string) {
|
||||||
r.w.WriteString(strconv.Itoa(status))
|
r.w.WriteString(strconv.Itoa(status))
|
||||||
r.w.WriteByte(' ')
|
r.w.WriteByte(' ')
|
||||||
r.w.WriteString(meta)
|
r.w.WriteString(meta)
|
||||||
@ -360,7 +349,11 @@ func (r *response) WriteHeader(status int, meta string) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (r *response) Write(b []byte) (int, error) {
|
// Write writes the response body.
|
||||||
|
// If the response status does not allow for a response body, Write returns
|
||||||
|
// ErrBodyNotAllowed.
|
||||||
|
// WriteHeader must be called before Write.
|
||||||
|
func (r *ResponseWriter) Write(b []byte) (int, error) {
|
||||||
if !r.bodyAllowed {
|
if !r.bodyAllowed {
|
||||||
return 0, ErrBodyNotAllowed
|
return 0, ErrBodyNotAllowed
|
||||||
}
|
}
|
||||||
@ -370,7 +363,7 @@ func (r *response) Write(b []byte) (int, error) {
|
|||||||
// respond responds to a connection.
|
// respond responds to a connection.
|
||||||
func (s *Server) respond(conn net.Conn) {
|
func (s *Server) respond(conn net.Conn) {
|
||||||
r := bufio.NewReader(conn)
|
r := bufio.NewReader(conn)
|
||||||
rw := newResponse(conn)
|
rw := newResponseWriter(conn)
|
||||||
// Read requested URL
|
// Read requested URL
|
||||||
rawurl, err := r.ReadString('\r')
|
rawurl, err := r.ReadString('\r')
|
||||||
if err != nil {
|
if err != nil {
|
||||||
@ -406,7 +399,7 @@ func (s *Server) respond(conn net.Conn) {
|
|||||||
// A Handler responds to a Gemini request.
|
// A Handler responds to a Gemini request.
|
||||||
type Handler interface {
|
type Handler interface {
|
||||||
// Serve accepts a Request and constructs a Response.
|
// Serve accepts a Request and constructs a Response.
|
||||||
Serve(ResponseWriter, *Request)
|
Serve(*ResponseWriter, *Request)
|
||||||
}
|
}
|
||||||
|
|
||||||
// ServeMux is a Gemini request multiplexer.
|
// ServeMux is a Gemini request multiplexer.
|
||||||
@ -450,13 +443,13 @@ func (m *ServeMux) Handle(pattern string, handler Handler) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// HandleFunc registers a HandlerFunc for the given pattern.
|
// HandleFunc registers a HandlerFunc for the given pattern.
|
||||||
func (m *ServeMux) HandleFunc(pattern string, handlerFunc func(ResponseWriter, *Request)) {
|
func (m *ServeMux) HandleFunc(pattern string, handlerFunc func(*ResponseWriter, *Request)) {
|
||||||
handler := HandlerFunc(handlerFunc)
|
handler := HandlerFunc(handlerFunc)
|
||||||
m.Handle(pattern, handler)
|
m.Handle(pattern, handler)
|
||||||
}
|
}
|
||||||
|
|
||||||
// Serve responds to the request with the appropriate handler.
|
// Serve responds to the request with the appropriate handler.
|
||||||
func (m *ServeMux) Serve(rw ResponseWriter, req *Request) {
|
func (m *ServeMux) Serve(rw *ResponseWriter, req *Request) {
|
||||||
h := m.match(req.URL)
|
h := m.match(req.URL)
|
||||||
if h == nil {
|
if h == nil {
|
||||||
rw.WriteHeader(StatusNotFound, "Not found")
|
rw.WriteHeader(StatusNotFound, "Not found")
|
||||||
@ -466,8 +459,8 @@ func (m *ServeMux) Serve(rw ResponseWriter, req *Request) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// A wrapper around a bare function that implements Handler.
|
// A wrapper around a bare function that implements Handler.
|
||||||
type HandlerFunc func(ResponseWriter, *Request)
|
type HandlerFunc func(*ResponseWriter, *Request)
|
||||||
|
|
||||||
func (f HandlerFunc) Serve(rw ResponseWriter, req *Request) {
|
func (f HandlerFunc) Serve(rw *ResponseWriter, req *Request) {
|
||||||
f(rw, req)
|
f(rw, req)
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user