open-consul/command/agent/ui_endpoint.go

25 lines
539 B
Go
Raw Normal View History

2014-04-23 19:57:06 +00:00
package agent
import (
"net/http"
"path/filepath"
"strings"
"time"
)
// UiIndex serves files in the /ui/ prefix from a preconfigured directory
func (s *HTTPServer) UiIndex(resp http.ResponseWriter, req *http.Request) {
// Invoke the handler
start := time.Now()
defer func() {
s.logger.Printf("[DEBUG] http: Request %v (%v)", req.URL, time.Now().Sub(start))
}()
file := strings.TrimPrefix(req.URL.Path, "/ui/")
if file == "" {
file = "index.html"
}
path := filepath.Join(s.uiDir, file)
http.ServeFile(resp, req, path)
}