1Panel/backend/app/dto/app.go

92 lines
2.3 KiB
Go
Raw Normal View History

package dto
2022-09-30 09:56:06 +00:00
import (
"encoding/json"
2022-09-26 10:20:21 +00:00
)
type AppDatabase struct {
ServiceName string `json:"PANEL_DB_HOST"`
DbName string `json:"PANEL_DB_NAME"`
DbUser string `json:"PANEL_DB_USER"`
Password string `json:"PANEL_DB_USER_PASSWORD"`
}
type AuthParam struct {
RootPassword string `json:"PANEL_DB_ROOT_PASSWORD"`
}
type ContainerExec struct {
ContainerName string `json:"containerName"`
DbParam AppDatabase `json:"dbParam"`
Auth AuthParam `json:"auth"`
}
2022-10-13 10:56:53 +00:00
2022-10-14 06:48:55 +00:00
type AppOssConfig struct {
Version string `json:"version"`
Package string `json:"package"`
}
2022-10-13 10:56:53 +00:00
type AppVersion struct {
Version string `json:"version"`
DetailId uint `json:"detailId"`
}
2022-10-14 06:48:55 +00:00
type AppList struct {
Version string `json:"version"`
Tags []Tag `json:"tags"`
Items []AppDefine `json:"items"`
}
type AppDefine struct {
2022-11-22 06:32:45 +00:00
Key string `json:"key"`
Name string `json:"name"`
Tags []string `json:"tags"`
Versions []string `json:"versions"`
2023-02-17 08:21:13 +00:00
ShortDescZh string `json:"shortDescZh"`
ShortDescEn string `json:"shortDescEn"`
2022-10-14 06:48:55 +00:00
Type string `json:"type"`
Required []string `json:"Required"`
CrossVersionUpdate bool `json:"crossVersionUpdate"`
2022-11-22 06:32:45 +00:00
Limit int `json:"limit"`
2023-02-08 08:21:17 +00:00
Recommend int `json:"recommend"`
Website string `json:"website"`
Github string `json:"github"`
Document string `json:"document"`
2022-10-14 06:48:55 +00:00
}
func (define AppDefine) GetRequired() string {
by, _ := json.Marshal(define.Required)
return string(by)
}
type Tag struct {
Key string `json:"key"`
Name string `json:"name"`
}
type AppForm struct {
FormFields []AppFormFields `json:"formFields"`
2022-10-14 06:48:55 +00:00
}
type AppFormFields struct {
Type string `json:"type"`
LabelZh string `json:"labelZh"`
LabelEn string `json:"labelEn"`
Required bool `json:"required"`
Default interface{} `json:"default"`
EnvKey string `json:"envKey"`
Disabled bool `json:"disabled"`
2023-03-08 03:04:22 +00:00
Edit bool `json:"edit"`
Rule string `json:"rule"`
2022-10-14 06:48:55 +00:00
}
2022-12-01 11:25:02 +00:00
type AppResource struct {
Type string `json:"type"`
Name string `json:"name"`
}
var AppToolMap = map[string]string{
"mysql": "phpmyadmin",
"redis": "redis-commander",
}