alertmanager/web.go

71 lines
2.0 KiB
Go
Raw Normal View History

2015-10-12 05:10:25 +00:00
// Copyright 2015 Prometheus Team
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package main
import (
2015-11-11 14:34:36 +00:00
"bytes"
"io"
2015-10-12 05:10:25 +00:00
"net/http"
2015-11-11 14:34:36 +00:00
"path/filepath"
2015-10-12 05:10:25 +00:00
2016-01-09 12:16:00 +00:00
"github.com/prometheus/client_golang/prometheus"
2015-11-11 14:34:36 +00:00
"github.com/prometheus/common/log"
2015-10-12 05:10:25 +00:00
"github.com/prometheus/common/route"
2015-11-11 14:34:36 +00:00
"github.com/prometheus/alertmanager/ui"
2015-10-12 05:10:25 +00:00
)
2015-11-11 14:34:36 +00:00
func serveAsset(w http.ResponseWriter, req *http.Request, fp string) {
info, err := ui.AssetInfo(fp)
if err != nil {
log.Warn("Could not get file: ", err)
w.WriteHeader(http.StatusNotFound)
return
}
file, err := ui.Asset(fp)
if err != nil {
if err != io.EOF {
log.With("file", fp).Warn("Could not get file: ", err)
}
w.WriteHeader(http.StatusNotFound)
return
}
2015-10-12 05:10:25 +00:00
2015-11-11 14:34:36 +00:00
http.ServeContent(w, req, info.Name(), info.ModTime(), bytes.NewReader(file))
}
2015-10-12 05:10:25 +00:00
2015-11-11 14:34:36 +00:00
// RegisterWeb registers handlers to serve files for the web interface.
func RegisterWeb(r *route.Router) {
2016-01-09 12:16:00 +00:00
ihf := prometheus.InstrumentHandlerFunc
r.Get("/app/*filepath", ihf("app_files",
func(w http.ResponseWriter, req *http.Request) {
fp := route.Param(route.Context(req), "filepath")
serveAsset(w, req, filepath.Join("ui/app", fp))
},
))
r.Get("/lib/*filepath", ihf("lib_files",
func(w http.ResponseWriter, req *http.Request) {
fp := route.Param(route.Context(req), "filepath")
serveAsset(w, req, filepath.Join("ui/lib", fp))
},
))
r.Get("/metrics", prometheus.Handler().ServeHTTP)
r.Get("/", ihf("index", func(w http.ResponseWriter, req *http.Request) {
2015-11-11 14:34:36 +00:00
serveAsset(w, req, "ui/app/index.html")
2016-01-09 12:16:00 +00:00
}))
2015-10-12 05:10:25 +00:00
}