93 lines
3.0 KiB
Go
93 lines
3.0 KiB
Go
package main
|
|
|
|
import (
|
|
"encoding/json"
|
|
"flag"
|
|
"fmt"
|
|
"log"
|
|
"net/http"
|
|
"os"
|
|
|
|
"github.com/joho/godotenv"
|
|
)
|
|
|
|
type Config struct {
|
|
Job string `json:"job"`
|
|
}
|
|
|
|
func loadConfig() (*Config, error) {
|
|
data, err := os.ReadFile("data.json")
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
var c Config
|
|
return &c, json.Unmarshal(data, &c)
|
|
}
|
|
|
|
// ---------- Main ----------
|
|
|
|
func main() {
|
|
|
|
err := godotenv.Load()
|
|
if err != nil {
|
|
log.Fatal("Error loading .env file")
|
|
}
|
|
|
|
port := flag.String("port", "8081", "port to listen on")
|
|
flag.Parse()
|
|
|
|
fs := http.FileServer(http.Dir("static"))
|
|
http.Handle("/static/", http.StripPrefix("/static/", fs))
|
|
|
|
http.HandleFunc("GET /{$}", func(w http.ResponseWriter, r *http.Request) { http.ServeFile(w, r, "./static/about.html") })
|
|
http.HandleFunc("GET /infra", func(w http.ResponseWriter, r *http.Request) { http.ServeFile(w, r, "./static/infra.html") })
|
|
http.HandleFunc("GET /finance", func(w http.ResponseWriter, r *http.Request) { http.ServeFile(w, r, "./static/finance.html") })
|
|
http.HandleFunc("GET /cinema", func(w http.ResponseWriter, r *http.Request) { http.ServeFile(w, r, "./static/cinema.html") })
|
|
http.HandleFunc("GET /engine", func(w http.ResponseWriter, r *http.Request) { http.ServeFile(w, r, "./static/engine.html") })
|
|
http.HandleFunc("GET /42", func(w http.ResponseWriter, r *http.Request) { http.ServeFile(w, r, "./static/42.html") })
|
|
http.HandleFunc("GET /secret", func(w http.ResponseWriter, r *http.Request) { http.ServeFile(w, r, "./static/secret.html") })
|
|
http.HandleFunc("GET /favicon.ico", func(w http.ResponseWriter, r *http.Request) { http.ServeFile(w, r, "./static/icon.png") })
|
|
http.HandleFunc("GET /login", func(w http.ResponseWriter, r *http.Request) { http.ServeFile(w, r, "./static/login.html") })
|
|
|
|
http.HandleFunc("POST /login", func(w http.ResponseWriter, r *http.Request) {
|
|
r.ParseForm()
|
|
|
|
password := r.FormValue("password")
|
|
totp := r.FormValue("totp")
|
|
|
|
if os.Getenv("password") == password && os.Getenv("auth") == totp {
|
|
fmt.Fprintf(w, "logged in")
|
|
http.Redirect(w, r, "/admin", http.StatusAccepted)
|
|
} else {
|
|
w.WriteHeader(http.StatusAccepted)
|
|
fmt.Fprintf(w, "password or auth is wrong")
|
|
}
|
|
})
|
|
|
|
http.HandleFunc("GET /status", func(w http.ResponseWriter, r *http.Request) {
|
|
config, err := loadConfig()
|
|
if err != nil {
|
|
http.Error(w, "failed to load config", http.StatusInternalServerError)
|
|
return
|
|
}
|
|
|
|
w.Header().Set("Content-Type", "text/html")
|
|
|
|
if config.Job == "" || config.Job == "none" {
|
|
fmt.Fprint(w, `<span><span class="dot dot--available"></span>available for work</span>`)
|
|
} else {
|
|
fmt.Fprintf(w, `<span><span class="dot dot--busy"></span>working at: <b>%s</b></span>`, config.Job)
|
|
}
|
|
})
|
|
|
|
//http.HandleFunc("/portfolio", Portfolio)
|
|
http.HandleFunc("/git", func(w http.ResponseWriter, r *http.Request) {
|
|
http.Redirect(w, r, "https://git.samantha42.xyz", http.StatusFound)
|
|
})
|
|
|
|
fmt.Printf("running on http://localhost:%s/\n", *port)
|
|
if err := http.ListenAndServe(":"+*port, nil); err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
}
|