-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
84 lines (71 loc) · 2.57 KB
/
main.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
// SPDX-License-Identifier: CC0-1.0
package main
import (
"flag"
"log"
"net/http"
"os"
"strings"
"atomgardner.com/wwwanditsdiscontents/git"
"atomgardner.com/wwwanditsdiscontents/multi"
"atomgardner.com/wwwanditsdiscontents/robots"
"atomgardner.com/wwwanditsdiscontents/vanity"
"atomgardner.com/wwwanditsdiscontents/with"
"golang.org/x/crypto/acme/autocert"
)
var (
repo = flag.String("repo", ".", "path to git repo")
defaultBranch = flag.String("branch", "main", "default branch")
commitFormat = flag.String("format", "%h/%cI%n%s%n%n%b", "default format")
port = flag.String("port", "http", "listen for non-tls connections on this port")
tlsPort = flag.String("tls-port", "https", "listen for tls connections on this port")
noACME = flag.Bool("no-acme", false, "disable ACME and don't run the TLS server")
disallowRobots = flag.Bool("disallow-robots", true, "essentially whether to disable crawlers")
randoFavicon = flag.Bool("favicon", true, "use a random favicon")
// TODO: find a way to store config in git refs.
hosts multi.String
assets multi.String
)
func init() {
flag.Var(&hosts, "auto-cert-host", "hostname for Let's Encrypt! Automatic Certificate Management")
flag.Var(&assets, "asset-dir", "path to a directory served by an http file server.")
flag.Parse()
if err := git.CheckRepository(*repo); err != nil {
log.Printf("`%s` is not a git repo\n", *repo)
os.Exit(1)
}
}
func main() {
mux := http.NewServeMux()
show := git.Show(*repo, *defaultBranch, *commitFormat)
patterns := map[string]http.Handler{"/": http.HandlerFunc(show)}
if *randoFavicon {
patterns["/favicon.ico"] = http.HandlerFunc(vanity.Favicon)
}
if *disallowRobots {
patterns["/robots.txt"] = http.HandlerFunc(robots.Disallow)
patterns["/.well-known/robots.txt"] = http.HandlerFunc(robots.Disallow)
}
for _, dir := range assets {
slash := strings.LastIndex(dir, "/")
if slash == -1 || slash+1 == len(dir) {
log.Printf("skipping asset dir `%s`: unusable final slash", dir)
continue
}
patterns[dir[slash+1:]+"/"] = http.FileServer(http.Dir(dir))
}
for pattern, handler := range patterns {
mux.Handle(pattern, with.Feedback(handler))
}
if *noACME {
log.Fatal(http.ListenAndServe(":"+*port, mux))
}
m := autocert.Manager{
Prompt: autocert.AcceptTOS,
HostPolicy: autocert.HostWhitelist(hosts...),
Cache: autocert.DirCache("certs"),
}
go http.ListenAndServe(":"+*port, m.HTTPHandler(mux))
tlsServer := &http.Server{Handler: mux, Addr: ":" + *tlsPort, TLSConfig: m.TLSConfig()}
log.Fatal(tlsServer.ListenAndServeTLS("", ""))
}