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
85
86
87
88
89
90
91
92
|
package main
import (
"context"
"flag"
"fmt"
"log"
"log/slog"
"net"
"net/http"
"github.com/donatj/hmacsig"
"github.com/facebookgo/flagenv"
"github.com/go-git/go-git/v5"
_ "github.com/joho/godotenv/autoload"
"tailscale.com/tsweb"
"xeiaso.net/v4/internal"
"xeiaso.net/v4/internal/lume"
)
var (
bind = flag.String("bind", ":3000", "Port to listen on")
devel = flag.Bool("devel", false, "Enable development mode")
gitBranch = flag.String("git-branch", "main", "Git branch to clone")
gitRepo = flag.String("git-repo", "https://github.com/Xe/site", "Git repository to clone")
githubSecret = flag.String("github-secret", "", "GitHub secret to use for webhooks")
siteURL = flag.String("site-url", "https://kaine.shark-harmonic.ts.net/", "URL to use for the site")
)
func main() {
flagenv.Parse()
flag.Parse()
internal.Slog()
ctx := context.Background()
ln, err := net.Listen("tcp", *bind)
if err != nil {
log.Fatal(err)
}
fs, err := lume.New(ctx, &lume.Options{
Branch: *gitBranch,
Repo: *gitRepo,
StaticSiteDir: "lume",
URL: *siteURL,
Development: *devel,
})
if err != nil {
log.Fatal(err)
}
defer fs.Close()
if err != nil {
log.Fatal(err)
}
mux := http.NewServeMux()
mux.Handle("/", http.FileServer(http.FS(fs)))
mux.HandleFunc("/metrics", tsweb.VarzHandler)
mux.HandleFunc("/blog.atom", func(w http.ResponseWriter, r *http.Request) {
http.Redirect(w, r, "/blog/index.rss", http.StatusMovedPermanently)
})
if *devel {
mux.HandleFunc("/.within/hook/github", func(w http.ResponseWriter, r *http.Request) {
if err := fs.Update(r.Context()); err != nil {
if err == git.NoErrAlreadyUpToDate {
w.WriteHeader(http.StatusOK)
fmt.Fprintln(w, "already up to date")
return
}
log.Println(err)
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}
})
} else {
gh := &GitHubWebhook{fs: fs}
s := hmacsig.Handler256(gh, *githubSecret)
mux.Handle("/.within/hook/github", s)
}
var h http.Handler = mux
h = internal.ClackSet(fs.Clacks()).Middleware(h)
h = internal.CacheHeader(h)
slog.Info("starting server", "bind", *bind)
log.Fatal(http.Serve(ln, h))
}
|