package main import ( "bufio" "bytes" "crypto/tls" "fmt" "io" "log" "net" "net/url" "os" "path" "strings" "github.com/h2non/filetype" "github.com/makeworld-the-better-one/go-gemini" ) func writeHeader(c net.Conn, code int, meta string) { fmt.Fprintf(c, "%d %s\r\n", code, meta) } func writeStatus(c net.Conn, code int) { var meta string switch code { case gemini.StatusTemporaryFailure: meta = "Temporary failure" case gemini.StatusBadRequest: meta = "Bad request" case gemini.StatusNotFound: meta = "Not found" } writeHeader(c, code, meta) } func serveFile(c net.Conn, filePath string) { fi, err := os.Stat(filePath) if os.IsNotExist(err) { writeStatus(c, gemini.StatusNotFound) return } else if err != nil { writeStatus(c, gemini.StatusTemporaryFailure) return } if mode := fi.Mode(); mode.IsDir() { _, err := os.Stat(path.Join(filePath, "index.gemini")) if err == nil { filePath = path.Join(filePath, "index.gemini") } else { filePath = path.Join(filePath, "index.gmi") } } fi, err = os.Stat(filePath) if os.IsNotExist(err) { writeStatus(c, gemini.StatusNotFound) return } else if err != nil { writeStatus(c, gemini.StatusTemporaryFailure) return } // Open file file, _ := os.Open(filePath) defer file.Close() // Read file header buf := make([]byte, 261) n, _ := file.Read(buf) // Write header var mimeType string if strings.HasSuffix(filePath, ".html") && strings.HasSuffix(filePath, ".htm") { mimeType = "text/html; charset=utf-8" } else if strings.HasSuffix(filePath, ".txt") && strings.HasSuffix(filePath, ".text") { mimeType = "text/plain; charset=utf-8" } else if !strings.HasSuffix(filePath, ".gmi") && !strings.HasSuffix(filePath, ".gemini") { kind, _ := filetype.Match(buf[:n]) if kind != filetype.Unknown { mimeType = kind.MIME.Value } } if mimeType == "" { mimeType = "text/gemini; charset=utf-8" } writeHeader(c, gemini.StatusSuccess, mimeType) // Write body c.Write(buf[:n]) io.Copy(c, file) } func scanCRLF(data []byte, atEOF bool) (advance int, token []byte, err error) { if atEOF && len(data) == 0 { return 0, nil, nil } if i := bytes.IndexByte(data, '\r'); i >= 0 { // We have a full newline-terminated line. return i + 1, data[0:i], nil } // If we're at EOF, we have a final, non-terminated line. Return it. if atEOF { return len(data), data, nil } // Request more data. return 0, nil, nil } func handleConn(c net.Conn) { defer c.Close() var requestData string scanner := bufio.NewScanner(c) scanner.Split(scanCRLF) if scanner.Scan() { requestData = scanner.Text() } if err := scanner.Err(); err != nil { writeStatus(c, gemini.StatusBadRequest) return } request, err := url.Parse(requestData) if err != nil || request.Scheme != "gemini" || request.Host == "" { writeStatus(c, gemini.StatusBadRequest) return } if request.Path == "" { request.Path = "/" } pathBytes := []byte(request.Path) strippedPath := request.Path if strippedPath[0] == '/' { strippedPath = strippedPath[1:] } var realPath string for _, serve := range config.Serve { if serve.r != nil && serve.r.Match(pathBytes) { realPath = path.Join(serve.Root, strippedPath) } else if serve.r == nil && strings.HasPrefix(request.Path, serve.Path) { realPath = path.Join(serve.Root, request.Path[len(serve.Path):]) } else { continue } serveFile(c, realPath) return } writeStatus(c, gemini.StatusNotFound) } func handleListener(l net.Listener) { for { conn, err := l.Accept() if err != nil { log.Fatal(err) } go handleConn(conn) } } func listen(address, certFile, keyFile string) { cert, err := tls.LoadX509KeyPair(certFile, keyFile) if err != nil { log.Fatalf("failed to load certificate: %s", err) } tlsConfig := &tls.Config{ Certificates: []tls.Certificate{cert}, } listener, err := tls.Listen("tcp", address, tlsConfig) if err != nil { log.Fatalf("failed to listen on %s: %s", address, err) } handleListener(listener) }