Rainbond/pkg/api/server/api.go

213 lines
6.2 KiB
Go
Raw Normal View History

2017-11-07 11:40:44 +08:00
// RAINBOND, Application Management Platform
// Copyright (C) 2014-2017 Goodrain Co., Ltd.
2017-11-07 11:40:44 +08:00
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version. For any non-GPL usage of Rainbond,
// one or multiple Commercial Licenses authorized by Goodrain Co., Ltd.
// must be obtained first.
2017-11-07 11:40:44 +08:00
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
2017-11-07 11:40:44 +08:00
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
package server
import (
"context"
"log"
2017-11-07 11:40:44 +08:00
"net/http"
"os"
"time"
2018-03-07 10:28:13 +08:00
"github.com/goodrain/rainbond/pkg/api/discover"
2018-02-24 14:19:37 +08:00
"github.com/goodrain/rainbond/pkg/util"
"github.com/coreos/etcd/client"
"github.com/goodrain/rainbond/cmd/api/option"
2017-11-07 11:40:44 +08:00
"github.com/goodrain/rainbond/pkg/api/apiRouters/doc"
"github.com/goodrain/rainbond/pkg/api/apiRouters/license"
2018-01-11 13:58:24 +08:00
"github.com/goodrain/rainbond/pkg/api/proxy"
2017-11-07 11:40:44 +08:00
"github.com/goodrain/rainbond/pkg/api/apiRouters/cloud"
2017-11-07 11:40:44 +08:00
"github.com/goodrain/rainbond/pkg/api/apiRouters/version2"
"github.com/goodrain/rainbond/pkg/api/apiRouters/websocket"
apimiddleware "github.com/goodrain/rainbond/pkg/api/middleware"
"github.com/Sirupsen/logrus"
"github.com/go-chi/chi"
"github.com/go-chi/chi/middleware"
)
//Manager apiserver
type Manager struct {
2018-01-11 13:58:24 +08:00
ctx context.Context
cancel context.CancelFunc
conf option.Config
stopChan chan struct{}
r *chi.Mux
prometheusProxy proxy.Proxy
2017-11-07 11:40:44 +08:00
}
//NewManager newManager
func NewManager(c option.Config) *Manager {
ctx, cancel := context.WithCancel(context.Background())
2017-11-22 14:59:20 +08:00
//初始化 middleware
apimiddleware.InitProxy(c)
2017-11-07 11:40:44 +08:00
//controller.CreateV2RouterManager(c)
r := chi.NewRouter()
r.Use(middleware.RequestID) //每个请求的上下文中注册一个id
//Sets a http.Request's RemoteAddr to either X-Forwarded-For or X-Real-IP
r.Use(middleware.RealIP)
//Logs the start and end of each request with the elapsed processing time
if c.LoggerFile != "" {
logerFile, err := os.OpenFile(c.LoggerFile, os.O_CREATE|os.O_EXCL|os.O_RDWR, 0644)
if err != nil {
logrus.Errorf("open logger file %s error %s", c.LoggerFile, err.Error())
} else {
requestLog := middleware.RequestLogger(&middleware.DefaultLogFormatter{Logger: log.New(logerFile, "", log.LstdFlags)})
r.Use(requestLog)
}
} else {
r.Use(middleware.DefaultLogger)
}
2017-11-07 11:40:44 +08:00
//Gracefully absorb panics and prints the stack trace
r.Use(middleware.Recoverer)
//request time out
r.Use(middleware.Timeout(time.Second * 5))
//simple authz
if os.Getenv("TOKEN") != "" {
2017-12-03 19:35:48 +08:00
r.Use(apimiddleware.FullToken)
2017-11-07 11:40:44 +08:00
}
2018-02-24 14:19:37 +08:00
if os.Getenv("DEBUG") == "true" {
util.ProfilerSetup(r)
}
2017-11-07 11:40:44 +08:00
//simple api version
r.Use(apimiddleware.APIVersion)
2017-11-22 14:59:20 +08:00
r.Use(apimiddleware.Proxy)
2018-01-11 13:58:24 +08:00
2018-02-01 15:30:30 +08:00
r.Get("/monitor", func(res http.ResponseWriter, req *http.Request) {
2018-02-01 15:34:14 +08:00
res.Write([]byte("ok"))
2018-02-01 15:30:30 +08:00
})
2017-11-07 11:40:44 +08:00
return &Manager{
ctx: ctx,
cancel: cancel,
conf: c,
stopChan: make(chan struct{}),
r: r,
}
}
//Start manager
func (m *Manager) Start() error {
go m.Do()
logrus.Info("start api router success.")
return nil
}
//Do do
func (m *Manager) Do() {
for {
select {
case <-m.ctx.Done():
return
default:
m.Run()
}
}
}
//Stop manager
func (m *Manager) Stop() error {
logrus.Info("api router is stopped.")
m.cancel()
return nil
}
//Run run
func (m *Manager) Run() {
2017-11-07 11:40:44 +08:00
v2R := &version2.V2{}
m.r.Mount("/v2", v2R.Routes())
m.r.Mount("/cloud", cloud.Routes())
2017-11-07 11:40:44 +08:00
m.r.Mount("/", doc.Routes())
m.r.Mount("/license", license.Routes())
//兼容老版docker
2017-11-24 11:10:15 +08:00
m.r.Get("/v1/etcd/event-log/instances", m.EventLogInstance)
2018-01-11 13:58:24 +08:00
//prometheus单节点代理
m.r.Get("/api/v1/query", m.PrometheusAPI)
m.r.Get("/api/v1/query_range", m.PrometheusAPI)
2017-11-07 11:40:44 +08:00
//开启对浏览器的websocket服务和文件服务
go func() {
websocketRouter := chi.NewRouter()
websocketRouter.Mount("/", websocket.Routes())
websocketRouter.Mount("/logs", websocket.LogRoutes())
if m.conf.WebsocketSSL {
logrus.Infof("websocket listen on (HTTPs) 0.0.0.0%v", m.conf.WebsocketAddr)
logrus.Fatal(http.ListenAndServeTLS(m.conf.WebsocketAddr, m.conf.WebsocketCertFile, m.conf.WebsocketKeyFile, websocketRouter))
} else {
logrus.Infof("websocket listen on (HTTP) 0.0.0.0%v", m.conf.WebsocketAddr)
logrus.Fatal(http.ListenAndServe(m.conf.WebsocketAddr, websocketRouter))
}
}()
2017-12-07 17:15:03 +08:00
if m.conf.APISSL {
logrus.Infof("api listen on (HTTPs) 0.0.0.0%v", m.conf.APIAddrSSL)
logrus.Fatal(http.ListenAndServeTLS(m.conf.APIAddrSSL, m.conf.APICertFile, m.conf.APIKeyFile, m.r))
2017-12-07 19:59:15 +08:00
go func() {
logrus.Infof("api listen on (HTTP) 0.0.0.0%v", m.conf.APIAddr)
logrus.Fatal(http.ListenAndServe(m.conf.APIAddr, m.r))
}()
} else {
logrus.Infof("api listen on (HTTP) 0.0.0.0%v", m.conf.APIAddr)
logrus.Fatal(http.ListenAndServe(m.conf.APIAddr, m.r))
2017-11-07 11:40:44 +08:00
}
}
//EventLogInstance 查询event server instance
func (m *Manager) EventLogInstance(w http.ResponseWriter, r *http.Request) {
etcdclient, err := client.New(client.Config{
Endpoints: m.conf.EtcdEndpoint,
})
if err != nil {
w.WriteHeader(500)
return
}
keyAPI := client.NewKeysAPI(etcdclient)
res, err := keyAPI.Get(context.Background(), "/event/instance", &client.GetOptions{Recursive: true})
if err != nil {
w.WriteHeader(500)
return
}
if res.Node != nil && res.Node.Nodes.Len() > 0 {
result := `{"data":{"instance":[`
for _, node := range res.Node.Nodes {
result += node.Value + ","
}
result = result[:len(result)-1] + `]},"ok":true}`
w.Write([]byte(result))
w.WriteHeader(200)
return
}
w.WriteHeader(404)
return
}
2018-01-11 13:58:24 +08:00
//PrometheusAPI prometheus api 代理
func (m *Manager) PrometheusAPI(w http.ResponseWriter, r *http.Request) {
if m.prometheusProxy == nil {
m.prometheusProxy = proxy.CreateProxy("prometheus", "http", []string{"127.0.0.1:9999"})
2018-03-07 10:28:13 +08:00
discover.GetEndpointDiscover(m.conf.EtcdEndpoint).AddProject("prometheus", m.prometheusProxy)
2018-01-11 13:58:24 +08:00
}
m.prometheusProxy.Proxy(w, r)
}