|
@@ -1,26 +1,34 @@
|
|
|
package main
|
|
|
|
|
|
import (
|
|
|
- "fmt"
|
|
|
"log"
|
|
|
"os"
|
|
|
"io"
|
|
|
|
|
|
"encoding/json"
|
|
|
+ "html/template"
|
|
|
"net/http"
|
|
|
|
|
|
"git.sr.ht/~jordyn/imagination/figtree"
|
|
|
)
|
|
|
|
|
|
func main() {
|
|
|
+ fs := http.FileServer(http.Dir(figtree.FIGS))
|
|
|
+ http.Handle("/imagination/", http.StripPrefix("/imagination/", fs))
|
|
|
+ css := http.FileServer(http.Dir("css/"))
|
|
|
+ http.Handle("/style/", http.StripPrefix("/style/", css))
|
|
|
http.HandleFunc("/", homeHandler)
|
|
|
- http.HandleFunc("/figs/", figHandler)
|
|
|
- http.HandleFunc("/all/", allHandler)
|
|
|
+ http.HandleFunc("/fig/", figHandler)
|
|
|
+ http.HandleFunc("/all/", seeFigs)
|
|
|
+ http.HandleFunc("/dry/", dryHandler)
|
|
|
log.Fatal(http.ListenAndServe(":8080", nil))
|
|
|
}
|
|
|
|
|
|
func homeHandler(w http.ResponseWriter, r *http.Request) {
|
|
|
- fmt.Fprintf(w, "<h1>my beautiful figs</h1>")
|
|
|
+ page := template.Must(template.ParseFiles("pages/home.html"))
|
|
|
+ if err := page.Execute(w, nil); err != nil {
|
|
|
+ panic(err)
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
func figHandler(w http.ResponseWriter, r *http.Request) {
|
|
@@ -54,9 +62,32 @@ func figHandler(w http.ResponseWriter, r *http.Request) {
|
|
|
io.Copy(f, file)
|
|
|
|
|
|
figtree.DryFig(newfig)
|
|
|
+
|
|
|
+ page := template.Must(template.ParseFiles("pages/driedfig.html"))
|
|
|
+
|
|
|
+ fancyfig := newfig.Fancy()
|
|
|
+
|
|
|
+ if err := page.Execute(w, fancyfig); err != nil {
|
|
|
+ panic(err)
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
func allHandler(w http.ResponseWriter, r *http.Request) {
|
|
|
figs, _ := figtree.AllFigsFancy()
|
|
|
json.NewEncoder(w).Encode(figs)
|
|
|
}
|
|
|
+
|
|
|
+func seeFigs(w http.ResponseWriter, r *http.Request) {
|
|
|
+ figs, _ := figtree.AllFigsFancy()
|
|
|
+ page := template.Must(template.ParseFiles("pages/allfigs.html"))
|
|
|
+ if err := page.Execute(w, figs); err != nil {
|
|
|
+ panic(err)
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+func dryHandler(w http.ResponseWriter, r *http.Request) {
|
|
|
+ page := template.Must(template.ParseFiles("pages/dryfig.html"))
|
|
|
+ if err := page.Execute(w, nil); err != nil {
|
|
|
+ panic(err)
|
|
|
+ }
|
|
|
+}
|