mirror of
https://github.com/kubevela/kubevela.git
synced 2026-05-20 08:13:23 +00:00
* Refactor: use createOrUpdateNamespace as a common util function
Signed-off-by: Jianbo Sun <jianbo.sjb@alibaba-inc.com>
* Feat: add ENV webservice handelr
* Fix: fix Env usecase logic
* Feat: Add Delete Env API
Signed-off-by: Jianbo Sun <jianbo.sjb@alibaba-inc.com>
* Fix: filter empty addon data
Signed-off-by: Jianbo Sun <jianbo.sjb@alibaba-inc.com>
* Feat: split makefiels and make it clear
* Feat: add k8s utils test
* Feat: Add env update interface
Signed-off-by: Jianbo Sun <jianbo.sjb@alibaba-inc.com>
* Feat: change env implementation
Signed-off-by: barnettZQG <barnett.zqg@gmail.com>
* Fix: minor fix
* Revert "Fix: minor fix"
This reverts commit 9cafefa65a.
* Fix: use appusecase as parameter
Signed-off-by: Jianbo Sun <jianbo.sjb@alibaba-inc.com>
* Refactor: align CLI vela env with new env design
Signed-off-by: Jianbo Sun <jianbo.sjb@alibaba-inc.com>
* Fix: minor fix
Signed-off-by: Jianbo Sun <jianbo.sjb@alibaba-inc.com>
* Feat: add page index and alias of env
Signed-off-by: Jianbo Sun <jianbo.sjb@alibaba-inc.com>
* Fix: fix tests and licence header
* Fix: fix makefile and add default target
Signed-off-by: Jianbo Sun <jianbo.sjb@alibaba-inc.com>
* Fix: update build swagger.json
Signed-off-by: Jianbo Sun <jianbo.sjb@alibaba-inc.com>
* Fix: change update env api
Signed-off-by: barnettZQG <barnett.zqg@gmail.com>
* Feat: list env with alias
* Feat: add log to env delete
* Fix: can not get app status
Signed-off-by: barnettZQG <barnett.zqg@gmail.com>
* Feat: support update workflow and refactor code
* Fix: lint
* Fix: remove swagger check
Signed-off-by: Jianbo Sun <jianbo.sjb@alibaba-inc.com>
* Fix: fix cli vela delete
* Fix: update test
Signed-off-by: Jianbo Sun <jianbo.sjb@alibaba-inc.com>
* Fix: update test
Signed-off-by: Jianbo Sun <jianbo.sjb@alibaba-inc.com>
* Fix: app deploy unit test case
Signed-off-by: barnettZQG <barnett.zqg@gmail.com>
* Fix: SortOrderDescending is not effective
Signed-off-by: barnettZQG <barnett.zqg@gmail.com>
* Fix: e2e test case
Signed-off-by: barnettZQG <barnett.zqg@gmail.com>
* Feat: support default project/target/env
* Fix: make test and add swagger
* Fix: use separated datasource for unit test
* Fix: app rollback bug
Signed-off-by: barnettZQG <barnett.zqg@gmail.com>
* Fix: fix e2e test
* Fix: kubeapi driver sort bug
Signed-off-by: barnettZQG <barnett.zqg@gmail.com>
* Fix: e2e test
* Fix: api e2e test
Signed-off-by: barnettZQG <barnett.zqg@gmail.com>
* Fix: e2e test fix
* Fix: try fix e2e test
* Fix: api e2e test
Signed-off-by: barnettZQG <barnett.zqg@gmail.com>
Co-authored-by: barnettZQG <barnett.zqg@gmail.com>
152 lines
4.6 KiB
Go
152 lines
4.6 KiB
Go
/*
|
|
Copyright 2021 The KubeVela Authors.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
package model
|
|
|
|
import (
|
|
"fmt"
|
|
"strconv"
|
|
"time"
|
|
|
|
"github.com/oam-dev/kubevela/apis/core.oam.dev/common"
|
|
)
|
|
|
|
func init() {
|
|
RegistModel(&Workflow{})
|
|
RegistModel(&WorkflowRecord{})
|
|
}
|
|
|
|
// Workflow application delivery database model
|
|
type Workflow struct {
|
|
BaseModel
|
|
Name string `json:"name"`
|
|
Alias string `json:"alias"`
|
|
Description string `json:"description"`
|
|
// Workflow used by the default
|
|
Default *bool `json:"default"`
|
|
AppPrimaryKey string `json:"appPrimaryKey"`
|
|
EnvName string `json:"envName"`
|
|
Steps []WorkflowStep `json:"steps,omitempty"`
|
|
}
|
|
|
|
// WorkflowStep defines how to execute a workflow step.
|
|
type WorkflowStep struct {
|
|
// Name is the unique name of the workflow step.
|
|
Name string `json:"name"`
|
|
Alias string `json:"alias"`
|
|
Type string `json:"type"`
|
|
Description string `json:"description"`
|
|
OrderIndex int `json:"orderIndex"`
|
|
Inputs common.StepInputs `json:"inputs,omitempty"`
|
|
Outputs common.StepOutputs `json:"outputs,omitempty"`
|
|
DependsOn []string `json:"dependsOn"`
|
|
Properties *JSONStruct `json:"properties,omitempty"`
|
|
}
|
|
|
|
// TableName return custom table name
|
|
func (w *Workflow) TableName() string {
|
|
return tableNamePrefix + "workflow"
|
|
}
|
|
|
|
// PrimaryKey return custom primary key
|
|
func (w *Workflow) PrimaryKey() string {
|
|
return fmt.Sprintf("%s-%s", w.AppPrimaryKey, w.Name)
|
|
}
|
|
|
|
// Index return custom primary key
|
|
func (w *Workflow) Index() map[string]string {
|
|
index := make(map[string]string)
|
|
if w.Name != "" {
|
|
index["name"] = w.Name
|
|
}
|
|
if w.AppPrimaryKey != "" {
|
|
index["appPrimaryKey"] = w.AppPrimaryKey
|
|
}
|
|
if w.EnvName != "" {
|
|
index["envName"] = w.EnvName
|
|
}
|
|
if w.Default != nil {
|
|
index["default"] = strconv.FormatBool(*w.Default)
|
|
}
|
|
|
|
return index
|
|
}
|
|
|
|
// WorkflowRecord is the workflow record database model
|
|
type WorkflowRecord struct {
|
|
BaseModel
|
|
WorkflowName string `json:"workflowName"`
|
|
WorkflowAlias string `json:"workflowAlias"`
|
|
AppPrimaryKey string `json:"appPrimaryKey"`
|
|
RevisionPrimaryKey string `json:"revisionPrimaryKey"`
|
|
Name string `json:"name"`
|
|
Namespace string `json:"namespace"`
|
|
StartTime time.Time `json:"startTime,omitempty"`
|
|
Finished string `json:"finished"`
|
|
Steps []WorkflowStepStatus `json:"steps,omitempty"`
|
|
Status string `json:"status"`
|
|
}
|
|
|
|
// WorkflowStepStatus is the workflow step status database model
|
|
type WorkflowStepStatus struct {
|
|
ID string `json:"id"`
|
|
Name string `json:"name"`
|
|
Alias string `json:"alias"`
|
|
Type string `json:"type,omitempty"`
|
|
Phase common.WorkflowStepPhase `json:"phase,omitempty"`
|
|
Message string `json:"message,omitempty"`
|
|
Reason string `json:"reason,omitempty"`
|
|
FirstExecuteTime time.Time `json:"firstExecuteTime,omitempty"`
|
|
LastExecuteTime time.Time `json:"lastExecuteTime,omitempty"`
|
|
}
|
|
|
|
// TableName return custom table name
|
|
func (w *WorkflowRecord) TableName() string {
|
|
return tableNamePrefix + "workflow_record"
|
|
}
|
|
|
|
// PrimaryKey return custom primary key
|
|
func (w *WorkflowRecord) PrimaryKey() string {
|
|
return w.Name
|
|
}
|
|
|
|
// Index return custom primary key
|
|
func (w *WorkflowRecord) Index() map[string]string {
|
|
index := make(map[string]string)
|
|
if w.Name != "" {
|
|
index["name"] = w.Name
|
|
}
|
|
if w.Namespace != "" {
|
|
index["namespace"] = w.Namespace
|
|
}
|
|
if w.WorkflowName != "" {
|
|
index["workflowPrimaryKey"] = w.WorkflowName
|
|
}
|
|
if w.AppPrimaryKey != "" {
|
|
index["appPrimaryKey"] = w.AppPrimaryKey
|
|
}
|
|
if w.RevisionPrimaryKey != "" {
|
|
index["revisionPrimaryKey"] = w.RevisionPrimaryKey
|
|
}
|
|
if w.Finished != "" {
|
|
index["finished"] = w.Finished
|
|
}
|
|
if w.Status != "" {
|
|
index["status"] = w.Status
|
|
}
|
|
return index
|
|
}
|