2017-03-23 02:01:25 +08:00
|
|
|
// Copyright 2017 fatedier, fatedier@gmail.com
|
2016-05-19 00:04:19 +08:00
|
|
|
//
|
|
|
|
// 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 server
|
|
|
|
|
|
|
|
import (
|
2016-08-10 20:18:36 +08:00
|
|
|
"net"
|
2016-08-09 21:17:02 +08:00
|
|
|
"net/http"
|
2016-08-10 20:18:36 +08:00
|
|
|
"time"
|
2016-08-11 21:47:26 +08:00
|
|
|
|
2017-03-09 02:03:47 +08:00
|
|
|
"github.com/fatedier/frp/assets"
|
2020-09-23 13:49:14 +08:00
|
|
|
frpNet "github.com/fatedier/frp/pkg/util/net"
|
2017-03-23 02:01:25 +08:00
|
|
|
|
2018-05-20 19:06:05 +08:00
|
|
|
"github.com/gorilla/mux"
|
2020-03-11 13:20:26 +08:00
|
|
|
"github.com/prometheus/client_golang/prometheus/promhttp"
|
2016-05-19 00:04:19 +08:00
|
|
|
)
|
|
|
|
|
2016-08-10 20:18:36 +08:00
|
|
|
var (
|
|
|
|
httpServerReadTimeout = 10 * time.Second
|
|
|
|
httpServerWriteTimeout = 10 * time.Second
|
|
|
|
)
|
2016-08-09 21:17:02 +08:00
|
|
|
|
2021-03-10 20:19:58 +08:00
|
|
|
func (svr *Service) RunDashboardServer(address string) (err error) {
|
2016-08-10 20:18:36 +08:00
|
|
|
// url router
|
2018-05-20 19:06:05 +08:00
|
|
|
router := mux.NewRouter()
|
2017-03-23 02:01:25 +08:00
|
|
|
|
2019-08-20 02:07:37 +08:00
|
|
|
user, passwd := svr.cfg.DashboardUser, svr.cfg.DashboardPwd
|
2020-05-24 17:48:37 +08:00
|
|
|
router.Use(frpNet.NewHTTPAuthMiddleware(user, passwd).Middleware)
|
2017-07-13 02:20:49 +08:00
|
|
|
|
2020-03-11 13:20:26 +08:00
|
|
|
// metrics
|
|
|
|
if svr.cfg.EnablePrometheus {
|
|
|
|
router.Handle("/metrics", promhttp.Handler())
|
|
|
|
}
|
|
|
|
|
2016-08-10 20:18:36 +08:00
|
|
|
// api, see dashboard_api.go
|
2020-05-24 17:48:37 +08:00
|
|
|
router.HandleFunc("/api/serverinfo", svr.APIServerInfo).Methods("GET")
|
|
|
|
router.HandleFunc("/api/proxy/{type}", svr.APIProxyByType).Methods("GET")
|
|
|
|
router.HandleFunc("/api/proxy/{type}/{name}", svr.APIProxyByTypeAndName).Methods("GET")
|
|
|
|
router.HandleFunc("/api/traffic/{name}", svr.APIProxyTraffic).Methods("GET")
|
2021-08-04 14:33:53 +08:00
|
|
|
router.HandleFunc("/healthz", svr.Healthz)
|
2016-08-10 20:18:36 +08:00
|
|
|
|
2017-03-27 01:39:05 +08:00
|
|
|
// view
|
2018-05-20 19:06:05 +08:00
|
|
|
router.Handle("/favicon.ico", http.FileServer(assets.FileSystem)).Methods("GET")
|
2020-05-24 17:48:37 +08:00
|
|
|
router.PathPrefix("/static/").Handler(frpNet.MakeHTTPGzipHandler(http.StripPrefix("/static/", http.FileServer(assets.FileSystem)))).Methods("GET")
|
2017-07-13 02:20:49 +08:00
|
|
|
|
2018-05-20 19:06:05 +08:00
|
|
|
router.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
|
2017-03-27 01:39:05 +08:00
|
|
|
http.Redirect(w, r, "/static/", http.StatusMovedPermanently)
|
2018-05-20 19:06:05 +08:00
|
|
|
})
|
2016-08-10 20:18:36 +08:00
|
|
|
|
|
|
|
server := &http.Server{
|
|
|
|
Addr: address,
|
2017-03-23 02:01:25 +08:00
|
|
|
Handler: router,
|
2016-08-10 20:18:36 +08:00
|
|
|
ReadTimeout: httpServerReadTimeout,
|
|
|
|
WriteTimeout: httpServerWriteTimeout,
|
|
|
|
}
|
2021-03-10 20:19:58 +08:00
|
|
|
if address == "" || address == ":" {
|
2016-08-10 20:18:36 +08:00
|
|
|
address = ":http"
|
|
|
|
}
|
|
|
|
ln, err := net.Listen("tcp", address)
|
2016-08-09 21:17:02 +08:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2016-08-10 20:18:36 +08:00
|
|
|
go server.Serve(ln)
|
|
|
|
return
|
2016-08-09 21:17:02 +08:00
|
|
|
}
|