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 (
|
2017-11-07 19:11:49 +08:00
|
|
|
|
"net/http"
|
|
|
|
|
|
2018-05-29 12:51:10 +08:00
|
|
|
|
"github.com/goodrain/rainbond/api/handler/share"
|
2017-11-07 11:40:44 +08:00
|
|
|
|
|
|
|
|
|
"github.com/go-chi/chi"
|
2018-05-29 12:51:10 +08:00
|
|
|
|
"github.com/goodrain/rainbond/api/handler"
|
|
|
|
|
"github.com/goodrain/rainbond/api/middleware"
|
|
|
|
|
"github.com/goodrain/rainbond/util"
|
2017-11-07 11:40:44 +08:00
|
|
|
|
|
2018-04-24 16:44:59 +08:00
|
|
|
|
api_model "github.com/goodrain/rainbond/api/model"
|
|
|
|
|
httputil "github.com/goodrain/rainbond/util/http"
|
2017-11-07 11:40:44 +08:00
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
//PluginAction plugin action
|
|
|
|
|
func (t *TenantStruct) PluginAction(w http.ResponseWriter, r *http.Request) {
|
|
|
|
|
switch r.Method {
|
|
|
|
|
case "PUT":
|
|
|
|
|
t.UpdatePlugin(w, r)
|
|
|
|
|
case "DELETE":
|
|
|
|
|
t.DeletePlugin(w, r)
|
|
|
|
|
case "POST":
|
|
|
|
|
t.CreatePlugin(w, r)
|
2017-11-07 19:11:49 +08:00
|
|
|
|
case "GET":
|
|
|
|
|
t.GetPlugins(w, r)
|
2017-11-07 11:40:44 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//CreatePlugin add plugin
|
|
|
|
|
func (t *TenantStruct) CreatePlugin(w http.ResponseWriter, r *http.Request) {
|
|
|
|
|
// swagger:operation POST /v2/tenants/{tenant_name}/plugin v2 createPlugin
|
|
|
|
|
//
|
|
|
|
|
// 创建插件
|
|
|
|
|
//
|
|
|
|
|
// create plugin
|
|
|
|
|
//
|
|
|
|
|
// ---
|
|
|
|
|
// consumes:
|
|
|
|
|
// - application/json
|
|
|
|
|
// - application/x-protobuf
|
|
|
|
|
//
|
|
|
|
|
// produces:
|
|
|
|
|
// - application/json
|
|
|
|
|
// - application/xml
|
|
|
|
|
//
|
|
|
|
|
// responses:
|
|
|
|
|
// default:
|
|
|
|
|
// schema:
|
|
|
|
|
// "$ref": "#/responses/commandResponse"
|
|
|
|
|
// description: 统一返回格式
|
|
|
|
|
tenantID := r.Context().Value(middleware.ContextKey("tenant_id")).(string)
|
2017-12-14 10:50:03 +08:00
|
|
|
|
tenantName := r.Context().Value(middleware.ContextKey("tenant_name")).(string)
|
2017-11-07 11:40:44 +08:00
|
|
|
|
var cps api_model.CreatePluginStruct
|
|
|
|
|
if ok := httputil.ValidatorRequestStructAndErrorResponse(r, w, &cps.Body, nil); !ok {
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
cps.Body.TenantID = tenantID
|
2017-12-14 10:50:03 +08:00
|
|
|
|
cps.TenantName = tenantName
|
2017-11-07 11:40:44 +08:00
|
|
|
|
if err := handler.GetPluginManager().CreatePluginAct(&cps); err != nil {
|
|
|
|
|
err.Handle(r, w)
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
httputil.ReturnSuccess(r, w, nil)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//UpdatePlugin UpdatePlugin
|
|
|
|
|
func (t *TenantStruct) UpdatePlugin(w http.ResponseWriter, r *http.Request) {
|
|
|
|
|
// swagger:operation PUT /v2/tenants/{tenant_name}/plugin/{plugin_id} v2 updatePlugin
|
|
|
|
|
//
|
|
|
|
|
// 插件更新 全量更新,但pluginID和所在租户不提供修改
|
|
|
|
|
//
|
|
|
|
|
// update plugin
|
|
|
|
|
//
|
|
|
|
|
// ---
|
|
|
|
|
// consumes:
|
|
|
|
|
// - application/json
|
|
|
|
|
// - application/x-protobuf
|
|
|
|
|
//
|
|
|
|
|
// produces:
|
|
|
|
|
// - application/json
|
|
|
|
|
// - application/xml
|
|
|
|
|
//
|
|
|
|
|
// responses:
|
|
|
|
|
// default:
|
|
|
|
|
// schema:
|
|
|
|
|
// "$ref": "#/responses/commandResponse"
|
|
|
|
|
// description: 统一返回格式
|
|
|
|
|
|
|
|
|
|
pluginID := r.Context().Value(middleware.ContextKey("plugin_id")).(string)
|
2018-01-18 13:45:24 +08:00
|
|
|
|
tenantID := r.Context().Value(middleware.ContextKey("tenant_id")).(string)
|
2017-11-07 11:40:44 +08:00
|
|
|
|
var ups api_model.UpdatePluginStruct
|
|
|
|
|
if ok := httputil.ValidatorRequestStructAndErrorResponse(r, w, &ups.Body, nil); !ok {
|
|
|
|
|
return
|
|
|
|
|
}
|
2018-04-13 15:45:02 +08:00
|
|
|
|
if err := handler.GetPluginManager().UpdatePluginAct(pluginID, tenantID, &ups); err != nil {
|
2017-11-07 11:40:44 +08:00
|
|
|
|
err.Handle(r, w)
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
httputil.ReturnSuccess(r, w, nil)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//DeletePlugin DeletePlugin
|
|
|
|
|
func (t *TenantStruct) DeletePlugin(w http.ResponseWriter, r *http.Request) {
|
|
|
|
|
// swagger:operation DELETE /v2/tenants/{tenant_name}/plugin/{plugin_id} v2 deletePlugin
|
|
|
|
|
//
|
|
|
|
|
// 插件删除
|
|
|
|
|
//
|
|
|
|
|
// delete plugin
|
|
|
|
|
//
|
|
|
|
|
// ---
|
|
|
|
|
// consumes:
|
|
|
|
|
// - application/json
|
|
|
|
|
// - application/x-protobuf
|
|
|
|
|
//
|
|
|
|
|
// produces:
|
|
|
|
|
// - application/json
|
|
|
|
|
// - application/xml
|
|
|
|
|
//
|
|
|
|
|
// responses:
|
|
|
|
|
// default:
|
|
|
|
|
// schema:
|
|
|
|
|
// "$ref": "#/responses/commandResponse"
|
|
|
|
|
// description: 统一返回格式
|
|
|
|
|
pluginID := r.Context().Value(middleware.ContextKey("plugin_id")).(string)
|
2018-01-18 13:45:24 +08:00
|
|
|
|
tenantID := r.Context().Value(middleware.ContextKey("tenant_id")).(string)
|
|
|
|
|
if err := handler.GetPluginManager().DeletePluginAct(pluginID, tenantID); err != nil {
|
2017-11-07 11:40:44 +08:00
|
|
|
|
err.Handle(r, w)
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
httputil.ReturnSuccess(r, w, nil)
|
|
|
|
|
}
|
|
|
|
|
|
2017-11-07 19:11:49 +08:00
|
|
|
|
//GetPlugins GetPlugins
|
|
|
|
|
func (t *TenantStruct) GetPlugins(w http.ResponseWriter, r *http.Request) {
|
2017-11-10 09:51:49 +08:00
|
|
|
|
// swagger:operation GET /v2/tenants/{tenant_name}/plugin v2 getPlugins
|
2017-11-07 19:11:49 +08:00
|
|
|
|
//
|
|
|
|
|
// 获取当前租户下所有的可用插件
|
|
|
|
|
//
|
|
|
|
|
// get plugins
|
|
|
|
|
//
|
|
|
|
|
// ---
|
|
|
|
|
// consumes:
|
|
|
|
|
// - application/json
|
|
|
|
|
// - application/x-protobuf
|
|
|
|
|
//
|
|
|
|
|
// produces:
|
|
|
|
|
// - application/json
|
|
|
|
|
// - application/xml
|
|
|
|
|
//
|
|
|
|
|
// responses:
|
|
|
|
|
// default:
|
|
|
|
|
// schema:
|
|
|
|
|
// "$ref": "#/responses/commandResponse"
|
|
|
|
|
// description: 统一返回格式
|
|
|
|
|
tenantID := r.Context().Value(middleware.ContextKey("tenant_id")).(string)
|
|
|
|
|
plugins, err := handler.GetPluginManager().GetPlugins(tenantID)
|
|
|
|
|
if err != nil {
|
|
|
|
|
err.Handle(r, w)
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
httputil.ReturnSuccess(r, w, plugins)
|
|
|
|
|
}
|
|
|
|
|
|
2017-11-07 11:40:44 +08:00
|
|
|
|
//PluginDefaultENV PluginDefaultENV
|
|
|
|
|
func (t *TenantStruct) PluginDefaultENV(w http.ResponseWriter, r *http.Request) {
|
|
|
|
|
switch r.Method {
|
|
|
|
|
case "POST":
|
|
|
|
|
t.AddDefatultENV(w, r)
|
|
|
|
|
case "DELETE":
|
|
|
|
|
t.DeleteDefaultENV(w, r)
|
|
|
|
|
case "PUT":
|
|
|
|
|
t.UpdateDefaultENV(w, r)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//AddDefatultENV AddDefatultENV
|
|
|
|
|
func (t *TenantStruct) AddDefatultENV(w http.ResponseWriter, r *http.Request) {
|
|
|
|
|
pluginID := r.Context().Value(middleware.ContextKey("plugin_id")).(string)
|
2017-12-12 12:52:29 +08:00
|
|
|
|
versionID := chi.URLParam(r, "version_id")
|
2017-11-07 11:40:44 +08:00
|
|
|
|
var est api_model.ENVStruct
|
|
|
|
|
if ok := httputil.ValidatorRequestStructAndErrorResponse(r, w, &est.Body, nil); !ok {
|
|
|
|
|
return
|
|
|
|
|
}
|
2017-12-12 12:52:29 +08:00
|
|
|
|
est.VersionID = versionID
|
2017-11-07 11:40:44 +08:00
|
|
|
|
est.PluginID = pluginID
|
|
|
|
|
if err := handler.GetPluginManager().AddDefaultEnv(&est); err != nil {
|
|
|
|
|
err.Handle(r, w)
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//DeleteDefaultENV DeleteDefaultENV
|
|
|
|
|
func (t *TenantStruct) DeleteDefaultENV(w http.ResponseWriter, r *http.Request) {
|
2017-11-09 18:31:31 +08:00
|
|
|
|
pluginID := r.Context().Value(middleware.ContextKey("plugin_id")).(string)
|
2017-11-07 11:40:44 +08:00
|
|
|
|
envName := chi.URLParam(r, "env_name")
|
2017-12-12 12:52:29 +08:00
|
|
|
|
versionID := chi.URLParam(r, "version_id")
|
|
|
|
|
if err := handler.GetPluginManager().DeleteDefaultEnv(pluginID, versionID, envName); err != nil {
|
2017-11-07 11:40:44 +08:00
|
|
|
|
err.Handle(r, w)
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//UpdateDefaultENV UpdateDefaultENV
|
|
|
|
|
func (t *TenantStruct) UpdateDefaultENV(w http.ResponseWriter, r *http.Request) {
|
2017-12-12 12:52:29 +08:00
|
|
|
|
|
|
|
|
|
pluginID := r.Context().Value(middleware.ContextKey("plugin_id")).(string)
|
|
|
|
|
versionID := chi.URLParam(r, "version_id")
|
2017-11-07 11:40:44 +08:00
|
|
|
|
var est api_model.ENVStruct
|
|
|
|
|
if ok := httputil.ValidatorRequestStructAndErrorResponse(r, w, &est.Body, nil); !ok {
|
|
|
|
|
return
|
|
|
|
|
}
|
2017-12-12 12:52:29 +08:00
|
|
|
|
est.PluginID = pluginID
|
|
|
|
|
est.VersionID = versionID
|
2017-11-07 11:40:44 +08:00
|
|
|
|
if err := handler.GetPluginManager().UpdateDefaultEnv(&est); err != nil {
|
|
|
|
|
err.Handle(r, w)
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-12-12 12:52:29 +08:00
|
|
|
|
//GetPluginDefaultEnvs GetPluginDefaultEnvs
|
2017-12-14 17:33:14 +08:00
|
|
|
|
func (t *TenantStruct) GetPluginDefaultEnvs(w http.ResponseWriter, r *http.Request) {
|
|
|
|
|
pluginID := r.Context().Value(middleware.ContextKey("plugin_id")).(string)
|
|
|
|
|
versionID := chi.URLParam(r, "version_id")
|
|
|
|
|
envs, err := handler.GetPluginManager().GetDefaultEnv(pluginID, versionID)
|
|
|
|
|
if err != nil {
|
|
|
|
|
err.Handle(r, w)
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
httputil.ReturnSuccess(r, w, envs)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//PluginBuild PluginBuild
|
|
|
|
|
// swagger:operation POST /v2/tenants/{tenant_name}/plugin/{plugin_id}/build v2 buildPlugin
|
2017-12-12 12:52:29 +08:00
|
|
|
|
//
|
2017-12-14 17:33:14 +08:00
|
|
|
|
// 构建plugin
|
2017-12-12 12:52:29 +08:00
|
|
|
|
//
|
2017-12-14 17:33:14 +08:00
|
|
|
|
// build plugin
|
2017-12-12 12:52:29 +08:00
|
|
|
|
//
|
|
|
|
|
// ---
|
|
|
|
|
// consumes:
|
|
|
|
|
// - application/json
|
|
|
|
|
// - application/x-protobuf
|
|
|
|
|
//
|
|
|
|
|
// produces:
|
|
|
|
|
// - application/json
|
|
|
|
|
// - application/xml
|
|
|
|
|
//
|
|
|
|
|
// responses:
|
|
|
|
|
// default:
|
|
|
|
|
// schema:
|
|
|
|
|
// "$ref": "#/responses/commandResponse"
|
|
|
|
|
// description: 统一返回格式
|
2017-11-07 11:40:44 +08:00
|
|
|
|
func (t *TenantStruct) PluginBuild(w http.ResponseWriter, r *http.Request) {
|
|
|
|
|
var build api_model.BuildPluginStruct
|
|
|
|
|
ok := httputil.ValidatorRequestStructAndErrorResponse(r, w, &build.Body, nil)
|
|
|
|
|
if !ok {
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
tenantName := r.Context().Value(middleware.ContextKey("tenant_name")).(string)
|
|
|
|
|
tenantID := r.Context().Value(middleware.ContextKey("tenant_id")).(string)
|
|
|
|
|
pluginID := r.Context().Value(middleware.ContextKey("plugin_id")).(string)
|
|
|
|
|
build.TenantName = tenantName
|
|
|
|
|
build.PluginID = pluginID
|
|
|
|
|
build.Body.TenantID = tenantID
|
2017-12-13 12:10:53 +08:00
|
|
|
|
pbv, err := handler.GetPluginManager().BuildPluginManual(&build)
|
2017-11-07 11:40:44 +08:00
|
|
|
|
if err != nil {
|
|
|
|
|
err.Handle(r, w)
|
|
|
|
|
return
|
|
|
|
|
}
|
2017-12-13 12:10:53 +08:00
|
|
|
|
httputil.ReturnSuccess(r, w, pbv)
|
2017-11-07 11:40:44 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//GetAllPluginBuildVersons 获取该插件所有的构建版本
|
2017-12-14 17:33:14 +08:00
|
|
|
|
// swagger:operation GET /v2/tenants/{tenant_name}/plugin/{plugin_id}/build-version v2 allPluginVersions
|
|
|
|
|
//
|
|
|
|
|
// 获取所有的构建版本信息
|
|
|
|
|
//
|
|
|
|
|
// all plugin versions
|
|
|
|
|
//
|
|
|
|
|
// ---
|
|
|
|
|
// consumes:
|
|
|
|
|
// - application/json
|
|
|
|
|
// - application/x-protobuf
|
|
|
|
|
//
|
|
|
|
|
// produces:
|
|
|
|
|
// - application/json
|
|
|
|
|
// - application/xml
|
|
|
|
|
//
|
|
|
|
|
// responses:
|
|
|
|
|
// default:
|
|
|
|
|
// schema:
|
|
|
|
|
// "$ref": "#/responses/commandResponse"
|
|
|
|
|
// description: 统一返回格式
|
2017-11-07 11:40:44 +08:00
|
|
|
|
func (t *TenantStruct) GetAllPluginBuildVersons(w http.ResponseWriter, r *http.Request) {
|
|
|
|
|
pluginID := r.Context().Value(middleware.ContextKey("plugin_id")).(string)
|
|
|
|
|
versions, err := handler.GetPluginManager().GetAllPluginBuildVersions(pluginID)
|
|
|
|
|
if err != nil {
|
|
|
|
|
err.Handle(r, w)
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
httputil.ReturnSuccess(r, w, versions)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//GetPluginBuildVersion 获取某构建版本信息
|
2017-12-14 17:33:14 +08:00
|
|
|
|
// swagger:operation GET /v2/tenants/{tenant_name}/plugin/{plugin_id}/build-version/{version_id} v2 pluginVersion
|
|
|
|
|
//
|
|
|
|
|
// 获取某个构建版本信息
|
|
|
|
|
//
|
|
|
|
|
// plugin version
|
|
|
|
|
//
|
|
|
|
|
// ---
|
|
|
|
|
// consumes:
|
|
|
|
|
// - application/json
|
|
|
|
|
// - application/x-protobuf
|
|
|
|
|
//
|
|
|
|
|
// produces:
|
|
|
|
|
// - application/json
|
|
|
|
|
// - application/xml
|
|
|
|
|
//
|
|
|
|
|
// responses:
|
|
|
|
|
// default:
|
|
|
|
|
// schema:
|
|
|
|
|
// "$ref": "#/responses/commandResponse"
|
|
|
|
|
// description: 统一返回格式
|
2017-11-07 11:40:44 +08:00
|
|
|
|
func (t *TenantStruct) GetPluginBuildVersion(w http.ResponseWriter, r *http.Request) {
|
|
|
|
|
pluginID := r.Context().Value(middleware.ContextKey("plugin_id")).(string)
|
|
|
|
|
versionID := chi.URLParam(r, "version_id")
|
|
|
|
|
version, err := handler.GetPluginManager().GetPluginBuildVersion(pluginID, versionID)
|
|
|
|
|
if err != nil {
|
|
|
|
|
err.Handle(r, w)
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
httputil.ReturnSuccess(r, w, version)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//DeletePluginBuildVersion DeletePluginBuildVersion
|
2017-12-13 17:38:45 +08:00
|
|
|
|
// swagger:operation DELETE /v2/tenants/{tenant_name}/plugin/{plugin_id}/build-version/{version_id} v2 deletePluginVersion
|
|
|
|
|
//
|
|
|
|
|
// 删除某个构建版本信息
|
|
|
|
|
//
|
|
|
|
|
// delete plugin version
|
|
|
|
|
//
|
|
|
|
|
// ---
|
|
|
|
|
// consumes:
|
|
|
|
|
// - application/json
|
|
|
|
|
// - application/x-protobuf
|
|
|
|
|
//
|
|
|
|
|
// produces:
|
|
|
|
|
// - application/json
|
|
|
|
|
// - application/xml
|
|
|
|
|
//
|
|
|
|
|
// responses:
|
|
|
|
|
// default:
|
|
|
|
|
// schema:
|
|
|
|
|
// "$ref": "#/responses/commandResponse"
|
|
|
|
|
// description: 统一返回格式
|
2017-11-07 11:40:44 +08:00
|
|
|
|
func (t *TenantStruct) DeletePluginBuildVersion(w http.ResponseWriter, r *http.Request) {
|
|
|
|
|
pluginID := r.Context().Value(middleware.ContextKey("plugin_id")).(string)
|
|
|
|
|
versionID := chi.URLParam(r, "version_id")
|
|
|
|
|
err := handler.GetPluginManager().DeletePluginBuildVersion(pluginID, versionID)
|
|
|
|
|
if err != nil {
|
|
|
|
|
err.Handle(r, w)
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
httputil.ReturnSuccess(r, w, nil)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//PluginSet PluginSet
|
|
|
|
|
func (t *TenantStruct) PluginSet(w http.ResponseWriter, r *http.Request) {
|
|
|
|
|
switch r.Method {
|
|
|
|
|
case "PUT":
|
|
|
|
|
t.updatePluginSet(w, r)
|
|
|
|
|
case "POST":
|
|
|
|
|
t.addPluginSet(w, r)
|
|
|
|
|
case "GET":
|
|
|
|
|
t.getPluginSet(w, r)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-12-13 17:38:45 +08:00
|
|
|
|
// swagger:operation PUT /v2/tenants/{tenant_name}/services/{service_alias}/plugin v2 updatePluginSet
|
|
|
|
|
//
|
|
|
|
|
// 更新插件设定
|
|
|
|
|
//
|
|
|
|
|
// update plugin setting
|
|
|
|
|
//
|
|
|
|
|
// ---
|
|
|
|
|
// consumes:
|
|
|
|
|
// - application/json
|
|
|
|
|
// - application/x-protobuf
|
|
|
|
|
//
|
|
|
|
|
// produces:
|
|
|
|
|
// - application/json
|
|
|
|
|
// - application/xml
|
|
|
|
|
//
|
|
|
|
|
// responses:
|
|
|
|
|
// default:
|
|
|
|
|
// schema:
|
|
|
|
|
// "$ref": "#/responses/commandResponse"
|
|
|
|
|
// description: 统一返回格式
|
2017-11-07 11:40:44 +08:00
|
|
|
|
func (t *TenantStruct) updatePluginSet(w http.ResponseWriter, r *http.Request) {
|
2017-11-07 19:11:49 +08:00
|
|
|
|
var pss api_model.PluginSetStruct
|
|
|
|
|
ok := httputil.ValidatorRequestStructAndErrorResponse(r, w, &pss.Body, nil)
|
|
|
|
|
if !ok {
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
serviceID := r.Context().Value(middleware.ContextKey("service_id")).(string)
|
2018-04-13 15:45:02 +08:00
|
|
|
|
relation, err := handler.GetServiceManager().UpdateTenantServicePluginRelation(serviceID, &pss)
|
|
|
|
|
if err != nil {
|
2017-11-07 19:11:49 +08:00
|
|
|
|
err.Handle(r, w)
|
|
|
|
|
return
|
|
|
|
|
}
|
2018-04-13 15:45:02 +08:00
|
|
|
|
httputil.ReturnSuccess(r, w, relation)
|
2017-11-07 11:40:44 +08:00
|
|
|
|
}
|
|
|
|
|
|
2017-11-30 15:03:10 +08:00
|
|
|
|
// swagger:operation POST /v2/tenants/{tenant_name}/services/{service_alias}/plugin v2 addPluginSet
|
|
|
|
|
//
|
|
|
|
|
// 添加插件设定
|
|
|
|
|
//
|
|
|
|
|
// add plugin setting
|
|
|
|
|
//
|
|
|
|
|
// ---
|
|
|
|
|
// consumes:
|
|
|
|
|
// - application/json
|
|
|
|
|
// - application/x-protobuf
|
|
|
|
|
//
|
|
|
|
|
// produces:
|
|
|
|
|
// - application/json
|
|
|
|
|
// - application/xml
|
|
|
|
|
//
|
|
|
|
|
// responses:
|
|
|
|
|
// default:
|
|
|
|
|
// schema:
|
|
|
|
|
// "$ref": "#/responses/commandResponse"
|
|
|
|
|
// description: 统一返回格式
|
2017-11-07 11:40:44 +08:00
|
|
|
|
func (t *TenantStruct) addPluginSet(w http.ResponseWriter, r *http.Request) {
|
2017-11-07 19:11:49 +08:00
|
|
|
|
var pss api_model.PluginSetStruct
|
|
|
|
|
ok := httputil.ValidatorRequestStructAndErrorResponse(r, w, &pss.Body, nil)
|
|
|
|
|
if !ok {
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
serviceID := r.Context().Value(middleware.ContextKey("service_id")).(string)
|
2017-11-30 15:03:10 +08:00
|
|
|
|
tenantID := r.Context().Value(middleware.ContextKey("tenant_id")).(string)
|
2018-05-11 18:57:31 +08:00
|
|
|
|
serviceAlias := r.Context().Value(middleware.ContextKey("service_alias")).(string)
|
|
|
|
|
tenantName := r.Context().Value(middleware.ContextKey("tenant_name")).(string)
|
|
|
|
|
pss.ServiceAlias = serviceAlias
|
|
|
|
|
pss.TenantName = tenantName
|
2018-04-13 15:45:02 +08:00
|
|
|
|
re, err := handler.GetServiceManager().SetTenantServicePluginRelation(tenantID, serviceID, &pss)
|
|
|
|
|
if err != nil {
|
2017-11-07 19:11:49 +08:00
|
|
|
|
err.Handle(r, w)
|
|
|
|
|
return
|
|
|
|
|
}
|
2018-04-13 15:45:02 +08:00
|
|
|
|
httputil.ReturnSuccess(r, w, re)
|
2017-11-07 11:40:44 +08:00
|
|
|
|
}
|
|
|
|
|
|
2017-11-30 15:03:10 +08:00
|
|
|
|
// swagger:operation GET /v2/tenants/{tenant_name}/services/{service_alias}/plugin v2 getPluginSet
|
|
|
|
|
//
|
|
|
|
|
// 获取插件设定
|
|
|
|
|
//
|
|
|
|
|
// get plugin setting
|
|
|
|
|
//
|
|
|
|
|
// ---
|
|
|
|
|
// consumes:
|
|
|
|
|
// - application/json
|
|
|
|
|
// - application/x-protobuf
|
|
|
|
|
//
|
|
|
|
|
// produces:
|
|
|
|
|
// - application/json
|
|
|
|
|
// - application/xml
|
|
|
|
|
//
|
|
|
|
|
// responses:
|
|
|
|
|
// default:
|
|
|
|
|
// schema:
|
|
|
|
|
// "$ref": "#/responses/commandResponse"
|
|
|
|
|
// description: 统一返回格式
|
2017-11-07 11:40:44 +08:00
|
|
|
|
func (t *TenantStruct) getPluginSet(w http.ResponseWriter, r *http.Request) {
|
|
|
|
|
serviceID := r.Context().Value(middleware.ContextKey("service_id")).(string)
|
2017-11-07 19:11:49 +08:00
|
|
|
|
gps, err := handler.GetServiceManager().GetTenantServicePluginRelation(serviceID)
|
2017-11-07 11:40:44 +08:00
|
|
|
|
if err != nil {
|
|
|
|
|
err.Handle(r, w)
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
httputil.ReturnSuccess(r, w, gps)
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//DeletePluginRelation DeletePluginRelation
|
2017-11-30 15:03:10 +08:00
|
|
|
|
// swagger:operation DELETE /v2/tenants/{tenant_name}/services/{service_alias}/plugin/{plugin_id} v2 deletePluginRelation
|
|
|
|
|
//
|
|
|
|
|
// 删除插件依赖
|
|
|
|
|
//
|
|
|
|
|
// delete plugin relation
|
|
|
|
|
//
|
|
|
|
|
// ---
|
|
|
|
|
// consumes:
|
|
|
|
|
// - application/json
|
|
|
|
|
// - application/x-protobuf
|
|
|
|
|
//
|
|
|
|
|
// produces:
|
|
|
|
|
// - application/json
|
|
|
|
|
// - application/xml
|
|
|
|
|
//
|
|
|
|
|
// responses:
|
|
|
|
|
// default:
|
|
|
|
|
// schema:
|
|
|
|
|
// "$ref": "#/responses/commandResponse"
|
|
|
|
|
// description: 统一返回格式
|
2017-11-07 11:40:44 +08:00
|
|
|
|
func (t *TenantStruct) DeletePluginRelation(w http.ResponseWriter, r *http.Request) {
|
2017-11-09 16:23:13 +08:00
|
|
|
|
pluginID := chi.URLParam(r, "plugin_id")
|
2017-11-07 11:40:44 +08:00
|
|
|
|
serviceID := r.Context().Value(middleware.ContextKey("service_id")).(string)
|
2017-12-25 11:14:02 +08:00
|
|
|
|
tenantID := r.Context().Value(middleware.ContextKey("tenant_id")).(string)
|
2019-02-15 17:20:08 +08:00
|
|
|
|
if err := handler.GetServiceManager().TenantServiceDeletePluginRelation(tenantID, serviceID, pluginID); err != nil {
|
2017-12-25 11:14:02 +08:00
|
|
|
|
err.Handle(r, w)
|
|
|
|
|
return
|
|
|
|
|
}
|
2017-11-07 11:40:44 +08:00
|
|
|
|
httputil.ReturnSuccess(r, w, nil)
|
|
|
|
|
}
|
2017-11-07 19:11:49 +08:00
|
|
|
|
|
2017-11-09 18:41:11 +08:00
|
|
|
|
//GePluginEnvWhichCanBeSet GePluginEnvWhichCanBeSet
|
2017-11-30 15:03:10 +08:00
|
|
|
|
// swagger:operation GET /v2/tenants/{tenant_name}/services/{service_alias}/plugin/{plugin_id}/envs v2 getVersionEnvs
|
|
|
|
|
//
|
|
|
|
|
// 获取可配置的env; 从service plugin对应中取, 若不存在则返回默认可修改的变量
|
|
|
|
|
//
|
|
|
|
|
// get version env
|
|
|
|
|
//
|
|
|
|
|
// ---
|
|
|
|
|
// consumes:
|
|
|
|
|
// - application/json
|
|
|
|
|
// - application/x-protobuf
|
|
|
|
|
//
|
|
|
|
|
// produces:
|
|
|
|
|
// - application/json
|
|
|
|
|
// - application/xml
|
|
|
|
|
//
|
|
|
|
|
// responses:
|
|
|
|
|
// default:
|
|
|
|
|
// schema:
|
|
|
|
|
// "$ref": "#/responses/commandResponse"
|
|
|
|
|
// description: 统一返回格式
|
2017-11-09 18:41:11 +08:00
|
|
|
|
func (t *TenantStruct) GePluginEnvWhichCanBeSet(w http.ResponseWriter, r *http.Request) {
|
2017-11-09 18:31:31 +08:00
|
|
|
|
serviceID := r.Context().Value(middleware.ContextKey("service_id")).(string)
|
|
|
|
|
pluginID := chi.URLParam(r, "plugin_id")
|
|
|
|
|
envs, err := handler.GetPluginManager().GetEnvsWhichCanBeSet(serviceID, pluginID)
|
2017-11-07 19:11:49 +08:00
|
|
|
|
if err != nil {
|
|
|
|
|
err.Handle(r, w)
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
httputil.ReturnSuccess(r, w, envs)
|
|
|
|
|
}
|
2017-11-09 18:31:31 +08:00
|
|
|
|
|
|
|
|
|
//UpdateVersionEnv UpdateVersionEnv
|
2017-12-13 17:38:45 +08:00
|
|
|
|
// swagger:operation PUT /v2/tenants/{tenant_name}/services/{service_alias}/plugin/{plugin_id}/upenv v2 updateVersionEnv
|
|
|
|
|
//
|
2018-04-14 13:53:05 +08:00
|
|
|
|
// modify the app plugin config info. it will Thermal effect
|
2017-12-13 17:38:45 +08:00
|
|
|
|
//
|
|
|
|
|
// update version env
|
|
|
|
|
//
|
|
|
|
|
// ---
|
|
|
|
|
// consumes:
|
|
|
|
|
// - application/json
|
|
|
|
|
// - application/x-protobuf
|
|
|
|
|
//
|
|
|
|
|
// produces:
|
|
|
|
|
// - application/json
|
|
|
|
|
// - application/xml
|
|
|
|
|
//
|
|
|
|
|
// responses:
|
|
|
|
|
// default:
|
|
|
|
|
// schema:
|
|
|
|
|
// "$ref": "#/responses/commandResponse"
|
|
|
|
|
// description: 统一返回格式
|
2017-11-09 18:31:31 +08:00
|
|
|
|
func (t *TenantStruct) UpdateVersionEnv(w http.ResponseWriter, r *http.Request) {
|
2017-12-13 17:38:45 +08:00
|
|
|
|
var uve api_model.SetVersionEnv
|
2017-11-09 18:31:31 +08:00
|
|
|
|
ok := httputil.ValidatorRequestStructAndErrorResponse(r, w, &uve.Body, nil)
|
|
|
|
|
if !ok {
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
serviceID := r.Context().Value(middleware.ContextKey("service_id")).(string)
|
2017-12-13 17:38:45 +08:00
|
|
|
|
serviceAlias := r.Context().Value(middleware.ContextKey("service_alias")).(string)
|
|
|
|
|
tenantID := r.Context().Value(middleware.ContextKey("tenant_id")).(string)
|
2017-11-09 18:31:31 +08:00
|
|
|
|
pluginID := chi.URLParam(r, "plugin_id")
|
|
|
|
|
uve.PluginID = pluginID
|
2017-12-13 17:38:45 +08:00
|
|
|
|
uve.Body.TenantID = tenantID
|
|
|
|
|
uve.ServiceAlias = serviceAlias
|
|
|
|
|
uve.Body.ServiceID = serviceID
|
|
|
|
|
if err := handler.GetServiceManager().UpdateVersionEnv(&uve); err != nil {
|
2017-11-09 18:31:31 +08:00
|
|
|
|
err.Handle(r, w)
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
httputil.ReturnSuccess(r, w, nil)
|
|
|
|
|
}
|
2018-05-29 12:51:10 +08:00
|
|
|
|
|
|
|
|
|
//SharePlugin share tenants plugin
|
|
|
|
|
func (t *TenantStruct) SharePlugin(w http.ResponseWriter, r *http.Request) {
|
|
|
|
|
var sp share.PluginShare
|
|
|
|
|
ok := httputil.ValidatorRequestStructAndErrorResponse(r, w, &sp.Body, nil)
|
|
|
|
|
if !ok {
|
|
|
|
|
return
|
|
|
|
|
}
|
2018-05-31 18:23:27 +08:00
|
|
|
|
if sp.Body.ImageInfo.HubURL == "" || sp.Body.ImageInfo.Namespace == "" {
|
|
|
|
|
httputil.ReturnError(r, w, 400, "hub url or hub namespace can not be empty")
|
|
|
|
|
return
|
|
|
|
|
}
|
2018-05-29 12:51:10 +08:00
|
|
|
|
tenantID := r.Context().Value(middleware.ContextKey("tenant_id")).(string)
|
|
|
|
|
sp.TenantID = tenantID
|
|
|
|
|
sp.PluginID = chi.URLParam(r, "plugin_id")
|
|
|
|
|
if sp.Body.EventID == "" {
|
|
|
|
|
sp.Body.EventID = util.NewUUID()
|
|
|
|
|
}
|
|
|
|
|
res, errS := handler.GetPluginShareHandle().Share(sp)
|
|
|
|
|
if errS != nil {
|
|
|
|
|
errS.Handle(r, w)
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
httputil.ReturnSuccess(r, w, res)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//SharePluginResult SharePluginResult
|
|
|
|
|
func (t *TenantStruct) SharePluginResult(w http.ResponseWriter, r *http.Request) {
|
|
|
|
|
shareID := chi.URLParam(r, "share_id")
|
|
|
|
|
res, errS := handler.GetPluginShareHandle().ShareResult(shareID)
|
|
|
|
|
if errS != nil {
|
|
|
|
|
errS.Handle(r, w)
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
httputil.ReturnSuccess(r, w, res)
|
|
|
|
|
}
|