go-gemini/response.go

263 lines
6.4 KiB
Go
Raw Normal View History

2020-10-24 19:15:32 +00:00
package gemini
2020-10-21 21:07:28 +00:00
import (
"bufio"
2021-02-23 21:36:17 +00:00
"crypto/tls"
2020-10-27 23:16:55 +00:00
"io"
2021-02-23 21:36:17 +00:00
"net"
2020-10-21 21:07:28 +00:00
"strconv"
)
2021-02-17 18:36:16 +00:00
// The default media type for responses.
const defaultMediaType = "text/gemini; charset=utf-8"
2021-02-14 21:23:38 +00:00
// Response represents the response from a Gemini request.
//
// The Client returns Responses from servers once the response
// header has been received. The response body is streamed on demand
2021-02-23 22:50:47 +00:00
// as the response is read. If the network connection fails or the server
// terminates the response, Read calls return an error.
//
// It is the caller's responsibility to close the response.
2020-10-21 21:07:28 +00:00
type Response struct {
2020-11-01 00:32:38 +00:00
// Status contains the response status code.
Status Status
2020-10-21 21:07:28 +00:00
// Meta contains more information related to the response status.
2021-01-10 06:07:38 +00:00
// For successful responses, Meta should contain the media type of the response.
2020-10-21 21:07:28 +00:00
// For failure responses, Meta should contain a short description of the failure.
// Meta should not be longer than 1024 bytes.
Meta string
2021-02-23 22:50:47 +00:00
body io.ReadCloser
2021-02-23 21:36:17 +00:00
conn net.Conn
2020-10-21 21:07:28 +00:00
}
// ReadResponse reads a Gemini response from the provided io.ReadCloser.
func ReadResponse(rc io.ReadCloser) (*Response, error) {
resp := &Response{}
2020-10-27 23:16:55 +00:00
br := bufio.NewReader(rc)
2020-10-21 21:07:28 +00:00
// Read the status
statusB := make([]byte, 2)
2020-10-27 23:16:55 +00:00
if _, err := br.Read(statusB); err != nil {
return nil, err
2020-10-21 21:07:28 +00:00
}
status, err := strconv.Atoi(string(statusB))
if err != nil {
return nil, ErrInvalidResponse
2020-10-21 21:07:28 +00:00
}
resp.Status = Status(status)
2020-10-21 21:07:28 +00:00
// Read one space
2020-10-27 23:16:55 +00:00
if b, err := br.ReadByte(); err != nil {
return nil, err
2020-10-21 21:07:28 +00:00
} else if b != ' ' {
return nil, ErrInvalidResponse
2020-10-21 21:07:28 +00:00
}
// Read the meta
2020-10-27 23:16:55 +00:00
meta, err := br.ReadString('\r')
2020-10-21 21:07:28 +00:00
if err != nil {
return nil, err
2020-10-21 21:07:28 +00:00
}
// Trim carriage return
meta = meta[:len(meta)-1]
// Ensure meta is less than or equal to 1024 bytes
if len(meta) > 1024 {
return nil, ErrInvalidResponse
2020-10-21 21:07:28 +00:00
}
if resp.Status.Class() == StatusSuccess && meta == "" {
2021-02-17 18:36:16 +00:00
// Use default media type
meta = defaultMediaType
2020-11-01 00:32:38 +00:00
}
2020-10-21 21:07:28 +00:00
resp.Meta = meta
// Read terminating newline
2020-10-27 23:16:55 +00:00
if b, err := br.ReadByte(); err != nil {
return nil, err
2020-10-21 21:07:28 +00:00
} else if b != '\n' {
return nil, ErrInvalidResponse
2020-10-21 21:07:28 +00:00
}
if resp.Status.Class() == StatusSuccess {
2021-02-23 22:50:47 +00:00
resp.body = newReadCloserBody(br, rc)
} else {
2021-02-23 22:50:47 +00:00
resp.body = nopReadCloser{}
rc.Close()
2020-10-21 21:07:28 +00:00
}
return resp, nil
2020-10-21 21:07:28 +00:00
}
2020-10-27 23:16:55 +00:00
type nopReadCloser struct{}
func (nopReadCloser) Read(p []byte) (int, error) {
return 0, io.EOF
}
func (nopReadCloser) Close() error {
return nil
}
2020-10-27 23:16:55 +00:00
type readCloserBody struct {
br *bufio.Reader // used until empty
io.ReadCloser
}
func newReadCloserBody(br *bufio.Reader, rc io.ReadCloser) io.ReadCloser {
body := &readCloserBody{ReadCloser: rc}
if br.Buffered() != 0 {
body.br = br
}
return body
}
func (b *readCloserBody) Read(p []byte) (n int, err error) {
if b.br != nil {
if n := b.br.Buffered(); len(p) > n {
p = p[:n]
}
n, err = b.br.Read(p)
if b.br.Buffered() == 0 {
b.br = nil
}
return n, err
}
return b.ReadCloser.Read(p)
}
2021-01-10 05:50:35 +00:00
2021-02-23 22:50:47 +00:00
// Read reads data from the response body.
// The response body is streamed on demand as Read is called.
func (r *Response) Read(p []byte) (n int, err error) {
return r.body.Read(p)
}
// Close closes the response body.
func (r *Response) Close() error {
return r.body.Close()
2021-02-18 05:07:43 +00:00
}
2021-02-23 21:36:17 +00:00
// Conn returns the network connection on which the response was received.
func (r *Response) Conn() net.Conn {
return r.conn
}
// TLS returns information about the TLS connection on which the
// response was received.
func (r *Response) TLS() *tls.ConnectionState {
if tlsConn, ok := r.conn.(*tls.Conn); ok {
state := tlsConn.ConnectionState()
return &state
}
return nil
}
2021-02-17 18:36:16 +00:00
// A ResponseWriter interface is used by a Gemini handler to construct
// a Gemini response.
//
// A ResponseWriter may not be used after the Handler.ServeGemini method
// has returned.
2021-02-09 14:45:10 +00:00
type ResponseWriter interface {
// SetMediaType sets the media type that will be sent by Write for a
2021-02-17 18:36:16 +00:00
// successful response. If no media type is set, a default of
// "text/gemini; charset=utf-8" will be used.
//
// Setting the media type after a call to Write or WriteHeader has
// no effect.
SetMediaType(string)
2021-02-09 14:45:10 +00:00
2021-02-17 18:36:16 +00:00
// Write writes the data to the connection as part of a Gemini response.
//
// If WriteHeader has not yet been called, Write calls WriteHeader with
// StatusSuccess and the media type set in SetMediaType before writing the data.
2021-02-17 18:36:16 +00:00
// If no media type was set, Write uses a default media type of
// "text/gemini; charset=utf-8".
Write([]byte) (int, error)
2021-02-09 14:45:10 +00:00
2021-02-17 18:36:16 +00:00
// WriteHeader sends a Gemini response header with the provided
// status code and meta.
2021-02-09 14:45:10 +00:00
//
2021-02-17 18:36:16 +00:00
// If WriteHeader is not called explicitly, the first call to Write
// will trigger an implicit call to WriteHeader with a successful
// status code and the media type set in SetMediaType.
2021-02-09 14:45:10 +00:00
//
2021-02-17 18:36:16 +00:00
// The provided code must be a valid Gemini status code.
// The provided meta must not be longer than 1024 bytes.
// Only one header may be written.
WriteHeader(status Status, meta string)
2021-02-09 14:45:10 +00:00
// Flush sends any buffered data to the client.
2021-02-09 14:45:10 +00:00
Flush() error
2021-02-23 22:32:23 +00:00
// Close closes the connection.
// Any blocked Read or Write operations will be unblocked and return errors.
Close() error
2021-02-09 14:45:10 +00:00
}
type responseWriter struct {
2021-01-10 05:50:35 +00:00
b *bufio.Writer
2021-02-23 22:32:23 +00:00
closer io.Closer
2021-02-17 18:36:16 +00:00
mediatype string
2021-01-10 05:50:35 +00:00
wroteHeader bool
bodyAllowed bool
}
// NewResponseWriter returns a ResponseWriter that uses the provided io.Writer.
2021-02-23 22:32:23 +00:00
func NewResponseWriter(wc io.WriteCloser) ResponseWriter {
return newResponseWriter(wc)
}
2021-02-23 22:32:23 +00:00
func newResponseWriter(wc io.WriteCloser) *responseWriter {
2021-02-09 14:45:10 +00:00
return &responseWriter{
2021-02-23 22:32:23 +00:00
b: bufio.NewWriter(wc),
closer: wc,
2021-01-10 05:50:35 +00:00
}
}
func (w *responseWriter) SetMediaType(mediatype string) {
2021-02-17 18:36:16 +00:00
w.mediatype = mediatype
2021-01-10 05:50:35 +00:00
}
2021-02-09 14:45:10 +00:00
func (w *responseWriter) Write(b []byte) (int, error) {
2021-01-10 05:50:35 +00:00
if !w.wroteHeader {
2021-02-17 18:36:16 +00:00
meta := w.mediatype
if meta == "" {
// Use default media type
meta = defaultMediaType
}
w.WriteHeader(StatusSuccess, meta)
2021-01-10 05:50:35 +00:00
}
if !w.bodyAllowed {
return 0, ErrBodyNotAllowed
}
return w.b.Write(b)
}
func (w *responseWriter) WriteHeader(status Status, meta string) {
if w.wroteHeader {
return
}
if status.Class() == StatusSuccess {
2021-01-10 05:50:35 +00:00
w.bodyAllowed = true
}
w.b.WriteString(strconv.Itoa(int(status)))
2021-01-10 05:50:35 +00:00
w.b.WriteByte(' ')
w.b.WriteString(meta)
w.b.Write(crlf)
w.wroteHeader = true
}
2021-02-09 14:45:10 +00:00
func (w *responseWriter) Flush() error {
2021-01-10 05:50:35 +00:00
if !w.wroteHeader {
2021-02-17 18:36:16 +00:00
w.WriteHeader(StatusTemporaryFailure, "Temporary failure")
2021-01-10 05:50:35 +00:00
}
// Write errors from writeHeader will be returned here.
return w.b.Flush()
}
2021-02-23 22:32:23 +00:00
func (w *responseWriter) Close() error {
return w.closer.Close()
}