go-gemini/examples/client.go

93 lines
1.9 KiB
Go
Raw Normal View History

2020-10-12 20:34:52 +00:00
// +build ignore
2020-09-21 21:23:51 +00:00
package main
import (
"bufio"
2020-09-28 03:49:41 +00:00
"crypto/tls"
2020-11-01 02:50:42 +00:00
"crypto/x509"
2020-09-21 21:23:51 +00:00
"fmt"
2020-10-27 23:16:55 +00:00
"io/ioutil"
"log"
2020-09-21 21:23:51 +00:00
"os"
2020-09-28 03:49:41 +00:00
"time"
2020-10-28 02:12:10 +00:00
"git.sr.ht/~adnano/go-gemini"
2020-09-21 21:23:51 +00:00
)
const trustPrompt = `The certificate offered by %s is of unknown trust. Its fingerprint is:
%s
If you knew the fingerprint to expect in advance, verify that this matches.
Otherwise, this should be safe to trust.
[t]rust always; trust [o]nce; [a]bort
=> `
2020-09-25 23:53:50 +00:00
var (
2020-09-27 23:45:48 +00:00
scanner = bufio.NewScanner(os.Stdin)
2020-10-28 02:12:10 +00:00
client = &gemini.Client{}
2020-09-25 23:53:50 +00:00
)
2020-09-21 21:23:51 +00:00
func init() {
2020-11-01 00:55:56 +00:00
client.Timeout = 2 * time.Minute
2020-11-01 02:50:42 +00:00
client.KnownHosts.LoadDefault()
client.TrustCertificate = func(hostname string, cert *x509.Certificate) gemini.Trust {
fmt.Printf(trustPrompt, hostname, gemini.Fingerprint(cert))
scanner.Scan()
switch scanner.Text() {
case "t":
return gemini.TrustAlways
case "o":
return gemini.TrustOnce
default:
return gemini.TrustNone
}
}
2020-10-28 17:40:25 +00:00
client.CreateCertificate = func(hostname, path string) (tls.Certificate, error) {
fmt.Println("Generating client certificate for", hostname, path)
return gemini.CreateCertificate(gemini.CertificateOptions{
Duration: time.Hour,
})
2020-09-28 03:49:41 +00:00
}
client.GetInput = func(prompt string, sensitive bool) (string, bool) {
fmt.Printf("%s: ", prompt)
scanner.Scan()
return scanner.Text(), true
}
}
2020-09-21 21:23:51 +00:00
func main() {
if len(os.Args) < 2 {
fmt.Printf("usage: %s gemini://... [host]", os.Args[0])
2020-09-27 23:45:48 +00:00
os.Exit(1)
}
url := os.Args[1]
2020-10-28 02:12:10 +00:00
req, err := gemini.NewRequest(url)
2020-09-27 23:45:48 +00:00
if err != nil {
fmt.Println(err)
os.Exit(1)
}
if len(os.Args) == 3 {
req.Host = os.Args[2]
}
2020-09-27 23:45:48 +00:00
resp, err := client.Do(req)
if err != nil {
log.Fatal(err)
}
if resp.Status.Class() == gemini.StatusClassSuccess {
defer resp.Body.Close()
body, err := ioutil.ReadAll(resp.Body)
if err != nil {
log.Fatal(err)
}
fmt.Print(string(body))
} else {
log.Fatalf("request failed: %d %s: %s", resp.Status, resp.Status.Message(), resp.Meta)
2020-09-21 21:23:51 +00:00
}
}