mirror of
https://gitee.com/rainbond/Rainbond.git
synced 2024-11-30 10:48:15 +08:00
88 lines
2.9 KiB
Go
88 lines
2.9 KiB
Go
// RAINBOND, Application Management Platform
|
|
// Copyright (C) 2014-2019 Goodrain Co., Ltd.
|
|
|
|
// 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.
|
|
|
|
// 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.
|
|
|
|
// 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 (
|
|
"context"
|
|
"fmt"
|
|
"net/http"
|
|
|
|
"github.com/goodrain/rainbond/api/handler"
|
|
"github.com/goodrain/rainbond/api/model"
|
|
ctxutil "github.com/goodrain/rainbond/api/util/ctx"
|
|
dbmodel "github.com/goodrain/rainbond/db/model"
|
|
httputil "github.com/goodrain/rainbond/util/http"
|
|
"github.com/sirupsen/logrus"
|
|
)
|
|
|
|
//BatchOperation batch operation for tenant
|
|
//support operation is : start,build,stop,update
|
|
func BatchOperation(w http.ResponseWriter, r *http.Request) {
|
|
var build model.BatchOperationReq
|
|
ok := httputil.ValidatorRequestStructAndErrorResponse(r, w, &build.Body, nil)
|
|
if !ok {
|
|
logrus.Errorf("start batch operation validate request body failure")
|
|
return
|
|
}
|
|
|
|
tenant := r.Context().Value(ctxutil.ContextKey("tenant")).(*dbmodel.Tenants)
|
|
|
|
var batchOpReqs []model.ComponentOpReq
|
|
var f func(ctx context.Context, tenant *dbmodel.Tenants, operator string, batchOpReqs model.BatchOpRequesters) (model.BatchOpResult, error)
|
|
switch build.Body.Operation {
|
|
case "build":
|
|
for _, build := range build.Body.Builds {
|
|
build.TenantName = tenant.Name
|
|
batchOpReqs = append(batchOpReqs, build)
|
|
}
|
|
f = handler.GetBatchOperationHandler().Build
|
|
case "start":
|
|
for _, start := range build.Body.Starts {
|
|
batchOpReqs = append(batchOpReqs, start)
|
|
}
|
|
f = handler.GetBatchOperationHandler().Start
|
|
case "stop":
|
|
for _, stop := range build.Body.Stops {
|
|
batchOpReqs = append(batchOpReqs, stop)
|
|
}
|
|
f = handler.GetBatchOperationHandler().Stop
|
|
case "upgrade":
|
|
for _, upgrade := range build.Body.Upgrades {
|
|
batchOpReqs = append(batchOpReqs, upgrade)
|
|
}
|
|
f = handler.GetBatchOperationHandler().Upgrade
|
|
default:
|
|
httputil.ReturnError(r, w, 400, fmt.Sprintf("operation %s do not support batch", build.Body.Operation))
|
|
return
|
|
}
|
|
if len(batchOpReqs) > 1024 {
|
|
batchOpReqs = batchOpReqs[0:1024]
|
|
}
|
|
res, err := f(r.Context(), tenant, build.Operator, batchOpReqs)
|
|
if err != nil {
|
|
httputil.ReturnBcodeError(r, w, err)
|
|
return
|
|
}
|
|
|
|
// append every create event result to re and then return
|
|
httputil.ReturnSuccess(r, w, map[string]interface{}{
|
|
"batch_result": res,
|
|
})
|
|
}
|