traefik/web.go
2015-09-09 10:29:49 +02:00

54 lines
1.6 KiB
Go

package main
import (
"github.com/gorilla/mux"
"net/http"
"os"
"github.com/gorilla/handlers"
"github.com/unrolled/render"
"fmt"
"io/ioutil"
"encoding/json"
"log"
)
var renderer = render.New()
type WebProvider struct {
Address string
}
type Page struct {
Configuration Configuration
}
func (provider *WebProvider) Provide(configurationChan chan<- *Configuration){
systemRouter := mux.NewRouter()
systemRouter.Methods("GET").PathPrefix("/web/").Handler(handlers.CombinedLoggingHandler(os.Stdout, http.HandlerFunc(GetHtmlConfigHandler)))
systemRouter.Methods("GET").PathPrefix("/api/").Handler(handlers.CombinedLoggingHandler(os.Stdout, http.HandlerFunc(GetConfigHandler)))
systemRouter.Methods("POST").PathPrefix("/api/").Handler(handlers.CombinedLoggingHandler(os.Stdout, http.HandlerFunc(
func(rw http.ResponseWriter, r *http.Request){
configuration := new(Configuration)
b, _ := ioutil.ReadAll(r.Body)
err:= json.Unmarshal(b, configuration)
if (err == nil) {
configurationChan <- configuration
GetConfigHandler(rw, r)
}else{
log.Printf("Error parsing configuration %+v\n", err)
http.Error(rw, fmt.Sprintf("%+v", err), http.StatusBadRequest)
}
})))
systemRouter.PathPrefix("/static/").Handler(http.StripPrefix("/static/", http.FileServer(http.Dir("static/"))))
go http.ListenAndServe(provider.Address, systemRouter)
}
func GetConfigHandler(rw http.ResponseWriter, r *http.Request) {
renderer.JSON(rw, http.StatusOK, currentConfiguration)
}
func GetHtmlConfigHandler(response http.ResponseWriter, request *http.Request) {
renderer.HTML(response, http.StatusOK, "configuration", Page{Configuration:*currentConfiguration})
}