frp/server/dashboard.go

74 lines
2.1 KiB
Go
Raw Normal View History

2017-03-23 02:01:25 +08:00
// Copyright 2017 fatedier, fatedier@gmail.com
//
// 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 (
"fmt"
"net"
2016-08-09 21:17:02 +08:00
"net/http"
"time"
2017-03-09 02:03:47 +08:00
"github.com/fatedier/frp/assets"
2018-04-10 17:46:49 +08:00
"github.com/fatedier/frp/g"
frpNet "github.com/fatedier/frp/utils/net"
2017-03-23 02:01:25 +08:00
2018-05-20 19:06:05 +08:00
"github.com/gorilla/mux"
)
var (
httpServerReadTimeout = 10 * time.Second
httpServerWriteTimeout = 10 * time.Second
)
2016-08-09 21:17:02 +08:00
func RunDashboardServer(addr string, port int) (err error) {
// url router
2018-05-20 19:06:05 +08:00
router := mux.NewRouter()
2017-03-23 02:01:25 +08:00
2018-04-10 17:46:49 +08:00
user, passwd := g.GlbServerCfg.DashboardUser, g.GlbServerCfg.DashboardPwd
2018-05-20 19:06:05 +08:00
router.Use(frpNet.NewHttpAuthMiddleware(user, passwd).Middleware)
// api, see dashboard_api.go
2018-05-20 19:06:05 +08:00
router.HandleFunc("/api/serverinfo", apiServerInfo).Methods("GET")
router.HandleFunc("/api/proxy/{type}", apiProxyByType).Methods("GET")
router.HandleFunc("/api/proxy/{type}/{name}", apiProxyByTypeAndName).Methods("GET")
router.HandleFunc("/api/traffic/{name}", apiProxyTraffic).Methods("GET")
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")
router.PathPrefix("/static/").Handler(frpNet.MakeHttpGzipHandler(http.StripPrefix("/static/", http.FileServer(assets.FileSystem)))).Methods("GET")
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
})
address := fmt.Sprintf("%s:%d", addr, port)
server := &http.Server{
Addr: address,
2017-03-23 02:01:25 +08:00
Handler: router,
ReadTimeout: httpServerReadTimeout,
WriteTimeout: httpServerWriteTimeout,
}
if address == "" {
address = ":http"
}
ln, err := net.Listen("tcp", address)
2016-08-09 21:17:02 +08:00
if err != nil {
return err
}
go server.Serve(ln)
return
2016-08-09 21:17:02 +08:00
}