1
0
mirror of https://git.sr.ht/~adnano/go-gemini synced 2024-09-18 13:31:36 +02:00
go-gemini/request.go

130 lines
3.2 KiB
Go
Raw Normal View History

2020-10-24 21:15:32 +02:00
package gemini
2020-10-21 23:07:28 +02:00
import (
"bufio"
2024-03-10 14:35:32 +01:00
"bytes"
2020-10-21 23:07:28 +02:00
"crypto/tls"
"io"
"net"
2020-10-21 23:07:28 +02:00
"net/url"
)
2021-02-14 21:50:41 +01:00
// A Request represents a Gemini request received by a server or to be sent
// by a client.
2020-10-21 23:07:28 +02:00
type Request struct {
2021-02-24 00:45:58 +01:00
// URL specifies the URL being requested.
2020-10-21 23:07:28 +02:00
URL *url.URL
2021-02-15 01:02:34 +01:00
// For client requests, Host optionally specifies the server to
// connect to. It may be of the form "host" or "host:port".
2021-02-15 01:02:34 +01:00
// If empty, the value of URL.Host is used.
// For international domain names, Host may be in Punycode or
// Unicode form. Use golang.org/x/net/idna to convert it to
// either format if needed.
2021-02-24 00:45:58 +01:00
// This field is ignored by the Gemini server.
2020-10-21 23:07:28 +02:00
Host string
// For client requests, Certificate optionally specifies the
// TLS certificate to present to the other side of the connection.
// This field is ignored by the Gemini server.
2020-10-21 23:07:28 +02:00
Certificate *tls.Certificate
conn net.Conn
2021-02-27 19:59:45 +01:00
tls *tls.ConnectionState
2020-10-21 23:07:28 +02:00
}
2021-02-15 01:02:34 +01:00
// NewRequest returns a new request.
// The returned Request is suitable for use with Client.Do.
//
// Callers should be careful that the URL query is properly escaped.
// See the documentation for QueryEscape for more information.
2020-10-21 23:07:28 +02:00
func NewRequest(rawurl string) (*Request, error) {
u, err := url.Parse(rawurl)
if err != nil {
return nil, err
}
return &Request{URL: u}, nil
2020-10-21 23:07:28 +02:00
}
2021-02-14 21:50:41 +01:00
// ReadRequest reads and parses an incoming request from r.
//
// ReadRequest is a low-level function and should only be used
// for specialized applications; most code should use the Server
// to read requests and handle them via the Handler interface.
func ReadRequest(r io.Reader) (*Request, error) {
2021-03-20 17:27:20 +01:00
// Limit request size
r = io.LimitReader(r, 1026)
2021-02-14 21:50:41 +01:00
br := bufio.NewReaderSize(r, 1026)
2021-03-20 17:27:20 +01:00
b, err := br.ReadBytes('\n')
if err != nil {
2021-03-20 17:27:20 +01:00
if err == io.EOF {
return nil, ErrInvalidRequest
}
return nil, err
}
2021-03-20 17:27:20 +01:00
// Read URL
2024-03-10 14:35:32 +01:00
rawurl, ok := bytes.CutSuffix(b, crlf)
2021-03-20 17:27:20 +01:00
if !ok {
return nil, ErrInvalidRequest
}
2021-03-20 17:27:20 +01:00
if len(rawurl) == 0 {
return nil, ErrInvalidRequest
}
2021-03-20 17:27:20 +01:00
u, err := url.Parse(string(rawurl))
if err != nil {
return nil, err
}
return &Request{URL: u}, nil
}
2021-03-01 04:16:38 +01:00
// WriteTo writes r to w in the Gemini request format.
2021-02-14 21:50:41 +01:00
// This method consults the request URL only.
2021-03-01 04:20:43 +01:00
func (r *Request) WriteTo(w io.Writer) (int64, error) {
2021-02-19 03:58:35 +01:00
bw := bufio.NewWriterSize(w, 1026)
url := r.URL.String()
if len(url) > 1024 {
2021-03-01 04:16:38 +01:00
return 0, ErrInvalidRequest
}
2021-03-01 04:20:43 +01:00
var wrote int64
2021-03-01 04:16:38 +01:00
n, err := bw.WriteString(url)
2021-03-01 04:20:43 +01:00
wrote += int64(n)
2021-03-01 04:16:38 +01:00
if err != nil {
return wrote, err
2020-10-21 23:07:28 +02:00
}
2021-03-01 04:16:38 +01:00
n, err = bw.Write(crlf)
2021-03-01 04:20:43 +01:00
wrote += int64(n)
2021-03-01 04:16:38 +01:00
if err != nil {
return wrote, err
2020-10-21 23:07:28 +02:00
}
2021-03-01 04:16:38 +01:00
return wrote, bw.Flush()
2020-10-21 23:07:28 +02:00
}
// Conn returns the network connection on which the request was received.
// Conn returns nil for client requests.
func (r *Request) Conn() net.Conn {
return r.conn
}
// TLS returns information about the TLS connection on which the
// request was received.
// TLS returns nil for client requests.
func (r *Request) TLS() *tls.ConnectionState {
2021-02-27 19:59:45 +01:00
if r.tls == nil {
if tlsConn, ok := r.conn.(*tls.Conn); ok {
state := tlsConn.ConnectionState()
r.tls = &state
}
}
2021-02-27 19:59:45 +01:00
return r.tls
}
2021-02-27 20:02:30 +01:00
// ServerName returns the value of the TLS Server Name Indication extension
// sent by the client.
// ServerName returns an empty string for client requests.
2021-02-27 20:02:30 +01:00
func (r *Request) ServerName() string {
if tls := r.TLS(); tls != nil {
return tls.ServerName
}
return ""
}