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 (
|
2017-05-31 01:44:18 +08:00
|
|
|
"compress/gzip"
|
2016-05-19 00:04:19 +08:00
|
|
|
"fmt"
|
2017-05-31 01:44:18 +08:00
|
|
|
"io"
|
2016-08-10 20:18:36 +08:00
|
|
|
"net"
|
2016-08-09 21:17:02 +08:00
|
|
|
"net/http"
|
2017-05-31 01:44:18 +08:00
|
|
|
"strings"
|
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"
|
|
|
|
"github.com/fatedier/frp/models/config"
|
2017-03-23 02:01:25 +08:00
|
|
|
|
|
|
|
"github.com/julienschmidt/httprouter"
|
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
|
|
|
|
2016-05-19 00:04:19 +08:00
|
|
|
func RunDashboardServer(addr string, port int64) (err error) {
|
2016-08-10 20:18:36 +08:00
|
|
|
// url router
|
2017-03-23 02:01:25 +08:00
|
|
|
router := httprouter.New()
|
|
|
|
|
2016-08-10 20:18:36 +08:00
|
|
|
// api, see dashboard_api.go
|
2017-05-15 21:18:06 +08:00
|
|
|
router.GET("/api/serverinfo", httprouterBasicAuth(apiServerInfo))
|
|
|
|
router.GET("/api/proxy/tcp", httprouterBasicAuth(apiProxyTcp))
|
|
|
|
router.GET("/api/proxy/udp", httprouterBasicAuth(apiProxyUdp))
|
|
|
|
router.GET("/api/proxy/http", httprouterBasicAuth(apiProxyHttp))
|
|
|
|
router.GET("/api/proxy/https", httprouterBasicAuth(apiProxyHttps))
|
|
|
|
router.GET("/api/proxy/traffic/:name", httprouterBasicAuth(apiProxyTraffic))
|
2016-08-10 20:18:36 +08:00
|
|
|
|
2017-03-27 01:39:05 +08:00
|
|
|
// view
|
2017-03-23 02:01:25 +08:00
|
|
|
router.Handler("GET", "/favicon.ico", http.FileServer(assets.FileSystem))
|
2017-05-31 01:44:18 +08:00
|
|
|
router.Handler("GET", "/static/*filepath", MakeGzipHandler(basicAuthWraper(http.StripPrefix("/static/", http.FileServer(assets.FileSystem)))))
|
2017-05-15 21:18:06 +08:00
|
|
|
router.HandlerFunc("GET", "/", basicAuth(func(w http.ResponseWriter, r *http.Request) {
|
2017-03-27 01:39:05 +08:00
|
|
|
http.Redirect(w, r, "/static/", http.StatusMovedPermanently)
|
2017-05-15 21:18:06 +08:00
|
|
|
}))
|
2016-08-10 20:18:36 +08:00
|
|
|
|
|
|
|
address := fmt.Sprintf("%s:%d", addr, port)
|
|
|
|
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,
|
|
|
|
}
|
|
|
|
if address == "" {
|
|
|
|
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
|
|
|
}
|
2016-12-20 18:32:17 +08:00
|
|
|
|
|
|
|
func use(h http.HandlerFunc, middleware ...func(http.HandlerFunc) http.HandlerFunc) http.HandlerFunc {
|
|
|
|
for _, m := range middleware {
|
|
|
|
h = m(h)
|
|
|
|
}
|
|
|
|
return h
|
|
|
|
}
|
|
|
|
|
2017-05-15 21:18:06 +08:00
|
|
|
type AuthWraper struct {
|
|
|
|
h http.Handler
|
|
|
|
user string
|
|
|
|
passwd string
|
|
|
|
}
|
2016-12-20 18:32:17 +08:00
|
|
|
|
2017-05-15 21:18:06 +08:00
|
|
|
func (aw *AuthWraper) ServeHTTP(w http.ResponseWriter, r *http.Request) {
|
|
|
|
user, passwd, hasAuth := r.BasicAuth()
|
2017-05-31 01:07:51 +08:00
|
|
|
if (aw.user == "" && aw.passwd == "") || (hasAuth && user == aw.user && passwd == aw.passwd) {
|
2017-05-15 21:18:06 +08:00
|
|
|
aw.h.ServeHTTP(w, r)
|
|
|
|
} else {
|
2016-12-20 18:32:17 +08:00
|
|
|
w.Header().Set("WWW-Authenticate", `Basic realm="Restricted"`)
|
2017-05-15 21:18:06 +08:00
|
|
|
http.Error(w, http.StatusText(http.StatusUnauthorized), http.StatusUnauthorized)
|
|
|
|
}
|
|
|
|
}
|
2016-12-20 18:32:17 +08:00
|
|
|
|
2017-05-15 21:18:06 +08:00
|
|
|
func basicAuthWraper(h http.Handler) http.Handler {
|
|
|
|
return &AuthWraper{
|
|
|
|
h: h,
|
|
|
|
user: config.ServerCommonCfg.DashboardUser,
|
|
|
|
passwd: config.ServerCommonCfg.DashboardPwd,
|
|
|
|
}
|
|
|
|
}
|
2016-12-20 18:32:17 +08:00
|
|
|
|
2017-05-15 21:18:06 +08:00
|
|
|
func basicAuth(h http.HandlerFunc) http.HandlerFunc {
|
|
|
|
return func(w http.ResponseWriter, r *http.Request) {
|
|
|
|
user, passwd, hasAuth := r.BasicAuth()
|
2017-05-15 21:30:13 +08:00
|
|
|
if (config.ServerCommonCfg.DashboardUser == "" && config.ServerCommonCfg.DashboardPwd == "") ||
|
2017-05-31 01:07:51 +08:00
|
|
|
(hasAuth && user == config.ServerCommonCfg.DashboardUser && passwd == config.ServerCommonCfg.DashboardPwd) {
|
2017-05-15 21:18:06 +08:00
|
|
|
h.ServeHTTP(w, r)
|
|
|
|
} else {
|
|
|
|
w.Header().Set("WWW-Authenticate", `Basic realm="Restricted"`)
|
|
|
|
http.Error(w, http.StatusText(http.StatusUnauthorized), http.StatusUnauthorized)
|
2016-12-20 18:32:17 +08:00
|
|
|
}
|
2017-05-15 21:18:06 +08:00
|
|
|
}
|
|
|
|
}
|
2016-12-20 18:32:17 +08:00
|
|
|
|
2017-05-15 21:18:06 +08:00
|
|
|
func httprouterBasicAuth(h httprouter.Handle) httprouter.Handle {
|
|
|
|
return func(w http.ResponseWriter, r *http.Request, ps httprouter.Params) {
|
|
|
|
user, passwd, hasAuth := r.BasicAuth()
|
2017-05-15 21:30:13 +08:00
|
|
|
if (config.ServerCommonCfg.DashboardUser == "" && config.ServerCommonCfg.DashboardPwd == "") ||
|
2017-05-31 01:07:51 +08:00
|
|
|
(hasAuth && user == config.ServerCommonCfg.DashboardUser && passwd == config.ServerCommonCfg.DashboardPwd) {
|
2017-05-15 21:18:06 +08:00
|
|
|
h(w, r, ps)
|
|
|
|
} else {
|
|
|
|
w.Header().Set("WWW-Authenticate", `Basic realm="Restricted"`)
|
|
|
|
http.Error(w, http.StatusText(http.StatusUnauthorized), http.StatusUnauthorized)
|
|
|
|
}
|
2016-12-20 18:32:17 +08:00
|
|
|
}
|
|
|
|
}
|
2017-05-31 01:44:18 +08:00
|
|
|
|
|
|
|
type GzipWraper struct {
|
|
|
|
h http.Handler
|
|
|
|
}
|
|
|
|
|
|
|
|
func (gw *GzipWraper) ServeHTTP(w http.ResponseWriter, r *http.Request) {
|
|
|
|
if !strings.Contains(r.Header.Get("Accept-Encoding"), "gzip") {
|
|
|
|
gw.h.ServeHTTP(w, r)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
w.Header().Set("Content-Encoding", "gzip")
|
|
|
|
gz := gzip.NewWriter(w)
|
|
|
|
defer gz.Close()
|
|
|
|
gzr := gzipResponseWriter{Writer: gz, ResponseWriter: w}
|
|
|
|
gw.h.ServeHTTP(gzr, r)
|
|
|
|
}
|
|
|
|
|
|
|
|
func MakeGzipHandler(h http.Handler) http.Handler {
|
|
|
|
return &GzipWraper{
|
|
|
|
h: h,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
type gzipResponseWriter struct {
|
|
|
|
io.Writer
|
|
|
|
http.ResponseWriter
|
|
|
|
}
|
|
|
|
|
|
|
|
func (w gzipResponseWriter) Write(b []byte) (int, error) {
|
|
|
|
return w.Writer.Write(b)
|
|
|
|
}
|