go-resume/main.go

63 lines
1.5 KiB
Go
Raw Normal View History

package main
import (
"embed"
"html/template"
"log/slog"
"net/http"
"slices"
2023-12-03 22:36:42 +02:00
"strings"
2023-12-03 22:59:37 +02:00
"time"
)
//go:embed "static/css/*.css" "templates/*.html"
var static embed.FS
var templates map[string]*template.Template
func main() {
readConfig("")
staticFileServer := http.FileServer(http.FS(static))
mux := http.NewServeMux()
mux.HandleFunc("/", home)
mux.HandleFunc("/light", home)
mux.HandleFunc("/dark", home)
mux.Handle("/static/", staticFileServer)
slog.Info("Starting go-resume server, listening on port 3000")
err := http.ListenAndServe(":3000", mux)
slog.Error(err.Error())
}
func home(w http.ResponseWriter, r *http.Request) {
acceptedPages := []string{"/", "/light", "/dark"}
if !slices.Contains(acceptedPages, r.URL.Path) {
http.NotFound(w, r)
}
templateFiles := []string{
"templates/index.html",
"templates/metatag.html",
"templates/githubCorner.html",
}
tmpl, err := template.ParseFS(static, templateFiles...)
if err != nil {
slog.Error(err.Error())
http.Error(w, "Server error", http.StatusInternalServerError)
}
data, err := readConfig("")
if err != nil {
slog.Error(err.Error())
http.Error(w, "Server error", http.StatusInternalServerError)
}
2023-12-03 22:36:42 +02:00
// TODO: Theme from browser
if strings.HasSuffix(r.URL.Path, "/light") || strings.HasSuffix(r.URL.Path, "/dark") {
urlSlice := strings.Split(r.URL.Path, "/")
data.Theme = urlSlice[len(urlSlice)-1]
}
2023-12-03 22:59:37 +02:00
data.Year = time.Now().Format("2006")
err = tmpl.Execute(w, *data)
if err != nil {
slog.Error(err.Error())
http.Error(w, "Server error", http.StatusInternalServerError)
}
}