1
0
Fork 0
mirror of https://git.sr.ht/~adnano/go-gemini synced 2024-06-07 07:16:26 +02:00
go-gemini/doc.go

85 lines
2.2 KiB
Go
Raw Normal View History

2020-10-12 22:34:52 +02:00
/*
Package gmi implements the Gemini protocol.
Send makes a Gemini request with the default client:
2020-10-12 22:34:52 +02:00
req := gmi.NewRequest("gemini://example.com")
2020-10-12 22:49:35 +02:00
resp, err := gmi.Send(req)
2020-10-12 22:34:52 +02:00
if err != nil {
// handle error
}
2020-10-12 22:49:35 +02:00
// ...
2020-10-12 22:34:52 +02:00
For control over client behavior, create a custom Client:
2020-10-12 22:34:52 +02:00
var client gmi.Client
resp, err := client.Send(req)
2020-10-12 22:34:52 +02:00
if err != nil {
// handle error
}
// ...
2020-10-12 22:34:52 +02:00
The default client loads known hosts from "$XDG_DATA_HOME/gemini/known_hosts".
Custom clients can load their own list of known hosts:
err := client.KnownHosts.Load("path/to/my/known_hosts")
2020-10-12 22:34:52 +02:00
if err != nil {
// handle error
}
Clients can control when to trust certificates with TrustCertificate:
client.TrustCertificate = func(hostname string, cert *x509.Certificate, knownHosts *gmi.KnownHosts) error {
return knownHosts.Lookup(hostname, cert)
}
2020-10-12 22:49:35 +02:00
If a server responds with StatusCertificateRequired, the default client will generate a certificate and resend the request with it. Custom clients can do so in GetCertificate:
2020-10-12 22:34:52 +02:00
client.GetCertificate = func(hostname string, store *gmi.CertificateStore) *tls.Certificate {
// If the certificate is in the store, return it
if cert, err := store.Lookup(hostname); err == nil {
return &cert
}
// Otherwise, generate a certificate
duration := time.Hour
cert, err := gmi.NewCertificate(hostname, duration)
if err != nil {
return nil
}
// Store and return the certificate
store.Add(hostname, cert)
return &cert
}
Server is a Gemini server.
var server gmi.Server
Servers must be configured with certificates:
err := server.CertificateStore.Load("/var/lib/gemini/certs")
if err != nil {
// handle error
}
2020-10-12 22:34:52 +02:00
Servers can accept requests for multiple hosts and schemes:
2020-10-21 23:07:28 +02:00
server.RegisterFunc("example.com", func(w *gmi.ResponseWriter, r *gmi.Request) {
2020-10-14 02:22:12 +02:00
fmt.Fprint(w, "Welcome to example.com")
2020-10-12 22:34:52 +02:00
})
2020-10-21 23:07:28 +02:00
server.RegisterFunc("example.org", func(w *gmi.ResponseWriter, r *gmi.Request) {
2020-10-14 02:22:12 +02:00
fmt.Fprint(w, "Welcome to example.org")
2020-10-12 22:34:52 +02:00
})
2020-10-21 23:07:28 +02:00
server.RegisterFunc("http://example.net", func(w *gmi.ResponseWriter, r *gmi.Request) {
2020-10-21 21:57:04 +02:00
fmt.Fprint(w, "Proxied content from http://example.net")
2020-10-12 22:34:52 +02:00
})
To start the server, call ListenAndServe:
err := server.ListenAndServe()
if err != nil {
// handle error
}
*/
package gmi