Rainbond/api/handler/application_handler.go

518 lines
15 KiB
Go
Raw Normal View History

2020-09-17 15:45:46 +08:00
package handler
import (
2020-09-28 16:43:27 +08:00
"context"
2020-09-27 16:27:46 +08:00
"fmt"
2021-04-23 10:03:15 +08:00
"sort"
2020-09-28 16:43:27 +08:00
"strconv"
"time"
"github.com/goodrain/rainbond/api/client/prometheus"
2020-09-17 15:45:46 +08:00
"github.com/goodrain/rainbond/api/model"
2020-09-20 01:09:29 +08:00
"github.com/goodrain/rainbond/api/util/bcode"
2020-09-17 15:45:46 +08:00
"github.com/goodrain/rainbond/db"
dbmodel "github.com/goodrain/rainbond/db/model"
2021-04-16 10:07:34 +08:00
"github.com/goodrain/rainbond/pkg/apis/rainbond/v1alpha1"
"github.com/goodrain/rainbond/pkg/generated/clientset/versioned"
2021-04-17 15:47:59 +08:00
util "github.com/goodrain/rainbond/util"
2021-04-16 10:07:34 +08:00
"github.com/goodrain/rainbond/util/commonutil"
2020-09-28 16:43:27 +08:00
"github.com/goodrain/rainbond/worker/client"
"github.com/goodrain/rainbond/worker/server/pb"
2021-04-14 20:17:40 +08:00
"github.com/jinzhu/gorm"
2021-04-16 16:27:21 +08:00
"github.com/pkg/errors"
2020-09-27 16:27:46 +08:00
"github.com/sirupsen/logrus"
2021-04-16 16:27:21 +08:00
k8sErrors "k8s.io/apimachinery/pkg/api/errors"
2021-04-16 10:07:34 +08:00
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
2021-04-17 15:47:59 +08:00
clientset "k8s.io/client-go/kubernetes"
2020-09-17 15:45:46 +08:00
)
// ApplicationAction -
2020-09-28 16:43:27 +08:00
type ApplicationAction struct {
2021-04-16 10:07:34 +08:00
statusCli *client.AppRuntimeSyncClient
promClient prometheus.Interface
rainbondClient versioned.Interface
2021-04-17 15:47:59 +08:00
kubeClient clientset.Interface
2020-09-28 16:43:27 +08:00
}
2020-09-17 15:45:46 +08:00
// ApplicationHandler defines handler methods to TenantApplication.
type ApplicationHandler interface {
2021-04-16 10:07:34 +08:00
CreateApp(ctx context.Context, req *model.Application) (*model.Application, error)
BatchCreateApp(ctx context.Context, req *model.CreateAppRequest, tenantID string) ([]model.CreateAppResponse, error)
2021-04-26 14:51:23 +08:00
UpdateApp(ctx context.Context, app *dbmodel.Application, req model.UpdateAppRequest) (*dbmodel.Application, error)
2020-09-20 02:07:10 +08:00
ListApps(tenantID, appName string, page, pageSize int) (*model.ListAppResponse, error)
2020-09-18 11:26:01 +08:00
GetAppByID(appID string) (*dbmodel.Application, error)
BatchBindService(appID string, req model.BindServiceRequest) error
2021-04-21 18:17:15 +08:00
DeleteApp(ctx context.Context, app *dbmodel.Application) error
2020-09-28 16:43:27 +08:00
2020-09-22 15:51:57 +08:00
AddConfigGroup(appID string, req *model.ApplicationConfigGroup) (*model.ApplicationConfigGroupResp, error)
2020-09-24 14:30:34 +08:00
UpdateConfigGroup(appID, configGroupName string, req *model.UpdateAppConfigGroupReq) (*model.ApplicationConfigGroupResp, error)
2020-09-28 16:43:27 +08:00
2020-09-30 11:03:14 +08:00
BatchUpdateComponentPorts(appID string, ports []*model.AppPort) error
2021-04-19 17:34:56 +08:00
GetStatus(ctx context.Context, app *dbmodel.Application) (*model.AppStatus, error)
2021-04-16 16:27:21 +08:00
GetDetectProcess(ctx context.Context, app *dbmodel.Application) ([]*model.AppDetectProcess, error)
2021-04-21 16:14:59 +08:00
Install(ctx context.Context, app *dbmodel.Application, values string) error
2021-04-17 15:47:59 +08:00
ListServices(ctx context.Context, app *dbmodel.Application) ([]*model.AppService, error)
2021-04-21 19:45:00 +08:00
EnsureAppName(ctx context.Context, namespace, appName string) (*model.EnsureAppNameResp, error)
2021-04-23 10:03:15 +08:00
ParseServices(ctx context.Context, app *dbmodel.Application, values string) ([]*model.AppService, error)
2020-09-24 14:30:34 +08:00
DeleteConfigGroup(appID, configGroupName string) error
ListConfigGroups(appID string, page, pageSize int) (*model.ListApplicationConfigGroupResp, error)
2020-09-17 15:45:46 +08:00
}
// NewApplicationHandler creates a new Tenant Application Handler.
2021-04-17 15:47:59 +08:00
func NewApplicationHandler(statusCli *client.AppRuntimeSyncClient, promClient prometheus.Interface, rainbondClient versioned.Interface, kubeClient clientset.Interface) ApplicationHandler {
2020-09-28 16:43:27 +08:00
return &ApplicationAction{
2021-04-16 16:27:21 +08:00
statusCli: statusCli,
promClient: promClient,
rainbondClient: rainbondClient,
2021-04-17 15:47:59 +08:00
kubeClient: kubeClient,
2020-09-28 16:43:27 +08:00
}
2020-09-17 15:45:46 +08:00
}
// CreateApp -
2021-04-16 10:07:34 +08:00
func (a *ApplicationAction) CreateApp(ctx context.Context, req *model.Application) (*model.Application, error) {
2020-09-17 15:45:46 +08:00
appReq := &dbmodel.Application{
2021-04-16 10:07:34 +08:00
EID: req.EID,
TenantID: req.TenantID,
AppID: util.NewUUID(),
AppName: req.AppName,
AppType: req.AppType,
AppStoreName: req.AppStoreName,
2021-04-16 17:48:26 +08:00
AppStoreURL: req.AppStoreURL,
2021-04-16 10:07:34 +08:00
AppTemplateName: req.AppTemplateName,
Version: req.Version,
2020-09-17 15:45:46 +08:00
}
2020-09-18 14:05:48 +08:00
req.AppID = appReq.AppID
2021-04-16 16:27:21 +08:00
err := db.GetManager().DB().Transaction(func(tx *gorm.DB) error {
2021-04-14 20:17:40 +08:00
if err := db.GetManager().ApplicationDaoTransactions(tx).AddModel(appReq); err != nil {
return err
}
2021-04-14 20:17:40 +08:00
if len(req.ServiceIDs) != 0 {
if err := db.GetManager().TenantServiceDaoTransactions(tx).BindAppByServiceIDs(appReq.AppID, req.ServiceIDs); err != nil {
return err
}
}
2021-04-23 10:03:15 +08:00
if appReq.AppType == model.AppTypeHelm {
// create helmapp.rainbond.goodrain.io
return a.createHelmApp(ctx, appReq)
}
return nil
2021-04-14 20:17:40 +08:00
})
return req, err
2020-09-17 15:45:46 +08:00
}
2020-09-17 16:43:53 +08:00
2021-04-16 10:07:34 +08:00
func (a *ApplicationAction) createHelmApp(ctx context.Context, app *dbmodel.Application) error {
helmApp := &v1alpha1.HelmApp{
ObjectMeta: metav1.ObjectMeta{
Name: app.AppName,
Namespace: app.TenantID,
// TODO: rainbond labels.
},
Spec: v1alpha1.HelmAppSpec{
EID: app.EID,
TemplateName: app.AppTemplateName,
Version: app.Version,
Revision: commonutil.Int32(0),
AppStore: &v1alpha1.HelmAppStore{
2021-04-26 16:17:07 +08:00
Version: "", // TODO: setup version.
Name: app.AppStoreName,
URL: app.AppStoreURL,
2021-04-16 10:07:34 +08:00
},
}}
2021-04-16 16:27:21 +08:00
ctx, cancel := context.WithTimeout(ctx, 3*time.Second)
defer cancel()
_, err := a.rainbondClient.RainbondV1alpha1().HelmApps(helmApp.Namespace).Create(ctx, helmApp, metav1.CreateOptions{})
2021-04-16 17:48:26 +08:00
if k8sErrors.IsAlreadyExists(err) {
return errors.Wrap(bcode.ErrApplicationExist, "create helm app")
}
2021-04-16 10:07:34 +08:00
return err
}
2020-11-10 16:12:40 +08:00
// BatchCreateApp -
2021-04-16 10:07:34 +08:00
func (a *ApplicationAction) BatchCreateApp(ctx context.Context, apps *model.CreateAppRequest, tenantID string) ([]model.CreateAppResponse, error) {
2020-11-10 16:12:40 +08:00
var (
resp model.CreateAppResponse
respList []model.CreateAppResponse
)
for _, app := range apps.AppsInfo {
app.TenantID = tenantID
2021-04-16 10:07:34 +08:00
regionApp, err := GetApplicationHandler().CreateApp(ctx, &app)
2020-11-10 16:12:40 +08:00
if err != nil {
logrus.Errorf("Batch Create App [%v] error is [%v] ", app.AppName, err)
2020-11-10 16:47:44 +08:00
continue
2020-11-10 16:12:40 +08:00
}
resp.AppID = app.ConsoleAppID
resp.RegionAppID = regionApp.AppID
respList = append(respList, resp)
}
return respList, nil
}
2020-09-18 11:39:05 +08:00
// UpdateApp -
2021-04-26 14:51:23 +08:00
func (a *ApplicationAction) UpdateApp(ctx context.Context, app *dbmodel.Application, req model.UpdateAppRequest) (*dbmodel.Application, error) {
2020-11-07 10:11:33 +08:00
if req.AppName != "" {
2021-04-26 14:51:23 +08:00
app.AppName = req.AppName
2020-11-07 10:11:33 +08:00
}
if req.GovernanceMode != "" {
if !dbmodel.IsGovernanceModeValid(req.GovernanceMode) {
return nil, bcode.NewBadRequest(fmt.Sprintf("governance mode '%s' is valid", req.GovernanceMode))
}
2021-04-26 14:51:23 +08:00
app.GovernanceMode = req.GovernanceMode
2020-11-07 10:11:33 +08:00
}
2021-04-26 14:51:23 +08:00
err := db.GetManager().DB().Transaction(func(tx *gorm.DB) error {
if err := db.GetManager().ApplicationDao().UpdateModel(app); err != nil {
return err
}
2021-04-26 16:17:07 +08:00
if req.Values != "" || req.Version != "" {
ctx, cancel := context.WithTimeout(ctx, 5*time.Second)
2021-04-26 14:51:23 +08:00
defer cancel()
helmApp, err := a.rainbondClient.RainbondV1alpha1().HelmApps(app.TenantID).Get(ctx, app.AppName, metav1.GetOptions{})
if err != nil {
if k8sErrors.IsNotFound(err) {
return errors.Wrap(bcode.ErrApplicationNotFound, "update app")
}
return errors.Wrap(err, "update app")
}
2021-04-26 16:17:07 +08:00
if req.Values != "" {
helmApp.Spec.Values = req.Values
}
if req.Version != "" {
helmApp.Spec.Version = req.Version
2021-04-26 14:51:23 +08:00
}
_, err = a.rainbondClient.RainbondV1alpha1().HelmApps(app.TenantID).Update(ctx, helmApp, metav1.UpdateOptions{})
return err
}
return nil
})
return app, err
2020-09-18 11:39:05 +08:00
}
2020-09-17 16:43:53 +08:00
// ListApps -
func (a *ApplicationAction) ListApps(tenantID, appName string, page, pageSize int) (*model.ListAppResponse, error) {
2020-09-19 21:17:40 +08:00
var resp model.ListAppResponse
2020-09-23 15:30:31 +08:00
apps, total, err := db.GetManager().ApplicationDao().ListApps(tenantID, appName, page, pageSize)
2020-09-19 21:17:40 +08:00
if err != nil {
return nil, err
2020-09-17 16:43:53 +08:00
}
2020-09-19 21:17:40 +08:00
if apps != nil {
resp.Apps = apps
} else {
resp.Apps = make([]*dbmodel.Application, 0)
}
resp.Page = page
resp.Total = total
resp.PageSize = pageSize
return &resp, nil
2020-09-17 16:43:53 +08:00
}
2020-09-18 11:26:01 +08:00
// GetAppByID -
func (a *ApplicationAction) GetAppByID(appID string) (*dbmodel.Application, error) {
2020-09-23 15:30:31 +08:00
app, err := db.GetManager().ApplicationDao().GetAppByID(appID)
2020-09-18 11:26:01 +08:00
if err != nil {
return nil, err
}
return app, nil
}
2020-09-18 18:08:32 +08:00
// DeleteApp -
2021-04-21 18:17:15 +08:00
func (a *ApplicationAction) DeleteApp(ctx context.Context, app *dbmodel.Application) error {
// Get the number of services under the application
2021-04-21 18:17:15 +08:00
total, err := db.GetManager().TenantServiceDao().CountServiceByAppID(app.AppID)
if err != nil {
return err
}
if total != 0 {
2020-09-20 01:09:29 +08:00
return bcode.ErrDeleteDueToBindService
}
2021-04-21 18:17:15 +08:00
2021-04-21 19:45:00 +08:00
ctx, cancel := context.WithTimeout(ctx, 5*time.Second)
2021-04-21 18:17:15 +08:00
defer cancel()
return db.GetManager().DB().Transaction(func(tx *gorm.DB) error {
if err := db.GetManager().ApplicationDaoTransactions(tx).DeleteApp(app.AppID); err != nil {
return err
}
if err := a.rainbondClient.RainbondV1alpha1().HelmApps(app.TenantID).Delete(ctx, app.AppName, metav1.DeleteOptions{}); err != nil {
if !k8sErrors.IsNotFound(err) {
return err
}
}
return nil
})
2020-09-18 18:08:32 +08:00
}
2020-10-08 14:01:37 +08:00
2020-09-30 11:03:14 +08:00
// BatchUpdateComponentPorts -
func (a *ApplicationAction) BatchUpdateComponentPorts(appID string, ports []*model.AppPort) error {
2020-09-27 16:27:46 +08:00
if err := a.checkPorts(appID, ports); err != nil {
return err
}
tx := db.GetManager().Begin()
defer func() {
if r := recover(); r != nil {
logrus.Errorf("Unexpected panic occurred, rollback transaction: %v", r)
tx.Rollback()
}
}()
// update port
for _, p := range ports {
port, err := db.GetManager().TenantServicesPortDaoTransactions(tx).GetPort(p.ServiceID, p.ContainerPort)
if err != nil {
tx.Rollback()
return err
}
port.PortAlias = p.PortAlias
port.K8sServiceName = p.K8sServiceName
err = db.GetManager().TenantServicesPortDaoTransactions(tx).UpdateModel(port)
if err != nil {
tx.Rollback()
return err
}
}
if err := tx.Commit().Error; err != nil {
tx.Rollback()
return err
}
return nil
}
func (a *ApplicationAction) checkPorts(appID string, ports []*model.AppPort) error {
// check if the ports are belong to the given appID
services, err := db.GetManager().TenantServiceDao().ListByAppID(appID)
if err != nil {
return err
}
set := make(map[string]struct{})
for _, svc := range services {
set[svc.ServiceID] = struct{}{}
}
var k8sServiceNames []string
key2ports := make(map[string]*model.AppPort)
for i := range ports {
port := ports[i]
if _, ok := set[port.ServiceID]; !ok {
return bcode.NewBadRequest(fmt.Sprintf("port(%s) is not belong to app(%s)", port.ServiceID, appID))
}
k8sServiceNames = append(k8sServiceNames, port.ServiceID)
key2ports[port.ServiceID+strconv.Itoa(port.ContainerPort)] = port
}
// check if k8s_service_name is unique
servicesPorts, err := db.GetManager().TenantServicesPortDao().ListByK8sServiceNames(k8sServiceNames)
if err != nil {
return err
}
for _, port := range servicesPorts {
// check if the port is as same as the one in request
if _, ok := key2ports[port.ServiceID+strconv.Itoa(port.ContainerPort)]; !ok {
logrus.Errorf("kubernetes service name(%s) already exists", port.K8sServiceName)
return bcode.ErrK8sServiceNameExists
}
}
return nil
}
2020-09-28 16:43:27 +08:00
2020-09-30 11:03:14 +08:00
// GetStatus -
2021-04-19 17:34:56 +08:00
func (a *ApplicationAction) GetStatus(ctx context.Context, app *dbmodel.Application) (*model.AppStatus, error) {
ctx, cancel := context.WithTimeout(ctx, 5*time.Second)
2020-09-28 16:43:27 +08:00
defer cancel()
status, err := a.statusCli.GetAppStatus(ctx, &pb.AppStatusReq{
2021-04-16 17:48:26 +08:00
AppId: app.AppID,
2020-09-28 16:43:27 +08:00
})
if err != nil {
2021-04-19 17:34:56 +08:00
return nil, errors.Wrap(err, "get app status")
2020-09-28 16:43:27 +08:00
}
2021-04-16 17:48:26 +08:00
diskUsage := a.getDiskUsage(app.AppID)
2020-09-28 16:43:27 +08:00
2021-04-26 14:51:23 +08:00
var cpu *int64
if status.SetCPU {
cpu = commonutil.Int64(status.Cpu)
}
var memory *int64
if status.SetMemory {
memory = commonutil.Int64(status.Memory)
}
2020-09-28 16:43:27 +08:00
res := &model.AppStatus{
2021-04-20 22:27:09 +08:00
Status: status.Status,
2021-04-26 14:51:23 +08:00
Cpu: cpu,
Memory: memory,
2021-04-20 22:27:09 +08:00
Disk: int64(diskUsage),
Phase: status.Phase,
ValuesTemplate: status.ValuesTemplate,
Readme: status.Readme,
2020-09-28 16:43:27 +08:00
}
return res, nil
}
2021-04-16 16:27:21 +08:00
func (a *ApplicationAction) GetDetectProcess(ctx context.Context, app *dbmodel.Application) ([]*model.AppDetectProcess, error) {
nctx, cancel := context.WithTimeout(ctx, 3*time.Second)
defer cancel()
2021-04-19 17:34:56 +08:00
res, err := a.statusCli.ListHelmAppDetectConditions(nctx, &pb.AppReq{
AppId: app.AppID,
})
2021-04-16 16:27:21 +08:00
if err != nil {
2021-04-19 17:34:56 +08:00
return nil, err
2021-04-16 16:27:21 +08:00
}
2021-04-19 17:34:56 +08:00
var conditions []*model.AppDetectProcess
for _, condition := range res.Conditions {
conditions = append(conditions, &model.AppDetectProcess{
Type: condition.Type,
Ready: condition.Ready,
Error: condition.Error,
2021-04-16 16:27:21 +08:00
})
}
2021-04-19 17:34:56 +08:00
return conditions, nil
2021-04-16 16:27:21 +08:00
}
2021-04-23 10:03:15 +08:00
func (a *ApplicationAction) ParseServices(ctx context.Context, app *dbmodel.Application, values string) ([]*model.AppService, error) {
nctx, cancel := context.WithTimeout(ctx, 60*time.Second)
defer cancel()
services, err := a.statusCli.ParseAppServices(nctx, &pb.ParseAppServicesReq{
AppID: app.AppID,
Values: values,
})
if err != nil {
return nil, err
}
var appServices []*model.AppService
for _, service := range services.Services {
svc := &model.AppService{
ServiceName: service.Name,
Address: service.Address,
}
for _, port := range service.TcpPorts {
svc.TCPPorts = append(svc.TCPPorts, port)
}
appServices = append(appServices, svc)
}
return appServices, nil
}
2021-04-21 16:14:59 +08:00
func (a *ApplicationAction) Install(ctx context.Context, app *dbmodel.Application, values string) error {
2021-04-20 22:27:09 +08:00
ctx1, cancel := context.WithTimeout(ctx, 3*time.Second)
2021-04-16 21:22:16 +08:00
defer cancel()
2021-04-20 22:27:09 +08:00
helmApp, err := a.rainbondClient.RainbondV1alpha1().HelmApps(app.TenantID).Get(ctx1, app.AppName, metav1.GetOptions{})
2021-04-16 21:22:16 +08:00
if err != nil {
if k8sErrors.IsNotFound(err) {
2021-04-21 16:14:59 +08:00
return errors.Wrap(bcode.ErrApplicationNotFound, "install app")
2021-04-16 21:22:16 +08:00
}
2021-04-21 16:14:59 +08:00
return errors.Wrap(err, "install app")
2021-04-16 21:22:16 +08:00
}
2021-04-20 22:27:09 +08:00
ctx3, cancel := context.WithTimeout(ctx, 3*time.Second)
defer cancel()
2021-04-16 21:22:16 +08:00
helmApp.Spec.Values = values
2021-04-20 22:27:09 +08:00
_, err = a.rainbondClient.RainbondV1alpha1().HelmApps(app.TenantID).Update(ctx3, helmApp, metav1.UpdateOptions{})
if err != nil {
2021-04-21 16:14:59 +08:00
return err
2021-04-20 22:27:09 +08:00
}
2021-04-21 16:14:59 +08:00
return errors.Wrap(err, "install app")
2021-04-16 21:22:16 +08:00
}
2021-04-17 15:47:59 +08:00
func (a *ApplicationAction) ListServices(ctx context.Context, app *dbmodel.Application) ([]*model.AppService, error) {
nctx, cancel := context.WithTimeout(ctx, 3*time.Second)
defer cancel()
2021-04-20 11:25:24 +08:00
appServices, err := a.statusCli.ListAppServices(nctx, &pb.AppReq{AppId: app.AppID})
2021-04-17 15:47:59 +08:00
if err != nil {
return nil, err
}
var services []*model.AppService
2021-04-20 11:25:24 +08:00
for _, service := range appServices.Services {
2021-04-17 15:47:59 +08:00
svc := &model.AppService{
ServiceName: service.Name,
2021-04-21 15:12:34 +08:00
Address: service.Address,
2021-04-17 15:47:59 +08:00
}
2021-04-20 11:25:24 +08:00
var pods []*model.AppPod
for _, pod := range service.Pods {
pods = append(pods, &model.AppPod{
PodName: pod.Name,
PodStatus: pod.Status,
})
}
svc.Pods = pods
for _, port := range service.TcpPorts {
svc.TCPPorts = append(svc.TCPPorts, port)
}
2021-04-17 15:47:59 +08:00
services = append(services, svc)
}
2021-04-23 10:03:15 +08:00
sort.Sort(model.ByServiceName(services))
2021-04-17 15:47:59 +08:00
return services, nil
}
2020-09-28 16:43:27 +08:00
func (a *ApplicationAction) getDiskUsage(appID string) float64 {
var result float64
2020-09-30 11:03:14 +08:00
query := fmt.Sprintf(`sum(max(app_resource_appfs{app_id=~"%s"}) by(app_id))`, appID)
2020-09-28 16:43:27 +08:00
metric := a.promClient.GetMetric(query, time.Now())
for _, m := range metric.MetricData.MetricValues {
result += m.Sample.Value()
}
return result
}
2020-11-07 10:11:33 +08:00
// BatchBindService -
func (a *ApplicationAction) BatchBindService(appID string, req model.BindServiceRequest) error {
2020-11-09 15:48:35 +08:00
for _, sid := range req.ServiceIDs {
2020-10-23 14:17:30 +08:00
if _, err := db.GetManager().TenantServiceDao().GetServiceByID(sid); err != nil {
return err
}
}
if err := db.GetManager().TenantServiceDao().BindAppByServiceIDs(appID, req.ServiceIDs); err != nil {
2020-10-08 14:01:37 +08:00
return err
}
return nil
2020-10-09 09:15:21 +08:00
}
2021-04-21 19:45:00 +08:00
func (a *ApplicationAction) EnsureAppName(ctx context.Context, namespace, appName string) (*model.EnsureAppNameResp, error) {
nctx, cancel := context.WithTimeout(ctx, 5*time.Second)
defer cancel()
retries := 3
for i := 0; i < retries; i++ {
_, err := a.rainbondClient.RainbondV1alpha1().HelmApps(namespace).Get(nctx, appName, metav1.GetOptions{})
if err != nil {
if k8sErrors.IsNotFound(err) {
break
}
return nil, errors.Wrap(err, "ensure app name")
}
appName += "-" + util.NewUUID()[:5]
}
return &model.EnsureAppNameResp{
AppName: appName,
}, nil
}