blob: 4306b2cf871ae2ca7a65cd5e37237a07e70ccaaf (
plain)
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
|
// vim: shiftwidth=4 tabstop=4 noexpandtab
package main
import (
"fmt"
"log"
"net/http"
"github.com/go-chi/chi/v5"
"github.com/go-chi/chi/v5/middleware"
)
const (
APP_DATA = "/usr/share/birdscan"
)
type webConfig struct {
BindAddress string `json:"bind_address"`
BindPort string `json:"bind_port"`
}
func runServer(cfg *webConfig) {
router := chi.NewRouter()
router.Use(middleware.Logger)
router.Get("/", indexHandler)
router.Get("/css/birdscan.css", cssHandler)
log.Println("Binding to 'http://" + cfg.BindAddress + ":" + cfg.BindPort + "'")
log.Fatal(http.ListenAndServe(cfg.BindAddress + ":" + cfg.BindPort, router))
}
func indexHandler(w http.ResponseWriter, r *http.Request) {
http.ServeFile(w, r, fmt.Sprintf("%s/html/index.html", APP_DATA))
}
func cssHandler(w http.ResponseWriter, r *http.Request) {
http.ServeFile(w, r, fmt.Sprintf("%s/css/birdscan.css", APP_DATA))
}
|