mirror of
https://github.com/kubevela/kubevela.git
synced 2026-05-23 17:53:04 +00:00
* Docs: change swagger json * Feat: support manage multiple workflows in one application. * Docs: update swagger doc * Fix: fix code bug * Update pkg/apiserver/rest/webservice/workflow.go Co-authored-by: Tianxin Dong <wuwuglu19@gmail.com> Co-authored-by: barnettZQG <yiyun.pro> Co-authored-by: Tianxin Dong <wuwuglu19@gmail.com>
77 lines
2.2 KiB
Go
77 lines
2.2 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 (
|
|
"strconv"
|
|
|
|
"github.com/oam-dev/kubevela/apis/core.oam.dev/common"
|
|
)
|
|
|
|
func init() {
|
|
RegistModel(&Workflow{})
|
|
}
|
|
|
|
// Workflow application delivery plan database model
|
|
type Workflow struct {
|
|
Model
|
|
Name string `json:"name"`
|
|
Description string `json:"description"`
|
|
Enable bool `json:"enable"`
|
|
// Workflow used by the default
|
|
Default bool `json:"default"`
|
|
AppPrimaryKey string `json:"appPrimaryKey"`
|
|
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"`
|
|
Type string `json:"type"`
|
|
Group string `json:"group"`
|
|
Description string `json:"description"`
|
|
OrderIndex int `json:"orderIndex"`
|
|
Inputs common.StepInputs `json:"inputs,omitempty"`
|
|
Outputs common.StepOutputs `json:"outputs,omitempty"`
|
|
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 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
|
|
}
|
|
index["default"] = strconv.FormatBool(w.Default)
|
|
index["enable"] = strconv.FormatBool(w.Enable)
|
|
return index
|
|
}
|