Rainbond/api/controller/manager.go

89 lines
2.8 KiB
Go
Raw Normal View History

2018-03-14 14:12:26 +08:00
// Copyright (C) 2014-2018 Goodrain Co., Ltd.
2017-11-07 11:40:44 +08:00
// RAINBOND, Application Management Platform
2018-03-14 14:33:31 +08:00
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.
2018-03-14 14:33:31 +08:00
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.
2018-03-14 14:33:31 +08:00
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 controller
import (
"net/http"
2018-12-04 13:43:15 +08:00
"github.com/Sirupsen/logrus"
2019-02-12 17:19:42 +08:00
"github.com/goodrain/rainbond/api/api"
"github.com/goodrain/rainbond/api/discover"
"github.com/goodrain/rainbond/api/proxy"
2018-11-13 10:47:14 +08:00
"github.com/goodrain/rainbond/cmd/api/option"
2018-12-04 13:43:15 +08:00
mqclient "github.com/goodrain/rainbond/mq/client"
"github.com/goodrain/rainbond/worker/client"
2017-11-07 11:40:44 +08:00
)
//V2Manager v2 manager
type V2Manager interface {
Show(w http.ResponseWriter, r *http.Request)
Nodes(w http.ResponseWriter, r *http.Request)
Jobs(w http.ResponseWriter, r *http.Request)
Apps(w http.ResponseWriter, r *http.Request)
2018-07-20 14:19:35 +08:00
Health(w http.ResponseWriter, r *http.Request)
2018-08-08 17:15:10 +08:00
AlertManagerWebHook(w http.ResponseWriter, r *http.Request)
2018-10-30 16:46:18 +08:00
Version(w http.ResponseWriter, r *http.Request)
2017-11-07 11:40:44 +08:00
2019-02-12 17:19:42 +08:00
api.TenantInterface
api.ServiceInterface
api.LogInterface
api.PluginInterface
api.RulesInterface
api.AppInterface
api.Gatewayer
api.ThirdPartyServicer
2019-03-28 15:35:00 +08:00
api.Labeler
api.AppRestoreInterface
2019-08-21 15:07:20 +08:00
api.PodInterface
2017-11-07 11:40:44 +08:00
}
var defaultV2Manager V2Manager
//CreateV2RouterManager 创建manager
2018-11-26 18:08:16 +08:00
func CreateV2RouterManager(conf option.Config, statusCli *client.AppRuntimeSyncClient) (err error) {
defaultV2Manager, err = NewManager(conf, statusCli)
return err
2017-11-07 11:40:44 +08:00
}
//GetManager 获取管理器
func GetManager() V2Manager {
return defaultV2Manager
}
//NewManager new manager
2018-11-26 18:08:16 +08:00
func NewManager(conf option.Config, statusCli *client.AppRuntimeSyncClient) (*V2Routes, error) {
mqClient, err := mqclient.NewMqClient(conf.EtcdEndpoint, conf.MQAPI)
if err != nil {
return nil, err
}
2017-11-07 11:40:44 +08:00
var v2r V2Routes
v2r.TenantStruct.StatusCli = statusCli
v2r.TenantStruct.MQClient = mqClient
2017-11-07 11:40:44 +08:00
nodeProxy := proxy.CreateProxy("acp_node", "http", conf.NodeAPI)
discover.GetEndpointDiscover(conf.EtcdEndpoint).AddProject("acp_node", nodeProxy)
v2r.AcpNodeStruct.HTTPProxy = nodeProxy
logrus.Debugf("create node api proxy success")
2017-11-07 11:40:44 +08:00
2018-11-26 18:08:16 +08:00
v2r.GatewayStruct.MQClient = mqClient
2018-11-28 17:01:58 +08:00
v2r.GatewayStruct.cfg = &conf
2019-03-28 15:35:00 +08:00
v2r.LabelController.optconfig = &conf
2018-11-26 18:08:16 +08:00
return &v2r, nil
2017-11-07 11:40:44 +08:00
}