2022-09-26 16:32:40 +08:00
|
|
|
package model
|
|
|
|
|
2022-09-29 18:16:56 +08:00
|
|
|
import (
|
|
|
|
"path"
|
2023-03-02 13:54:07 +08:00
|
|
|
|
|
|
|
"github.com/1Panel-dev/1Panel/backend/constant"
|
2022-09-29 18:16:56 +08:00
|
|
|
)
|
|
|
|
|
2022-09-26 16:32:40 +08:00
|
|
|
type AppInstall struct {
|
|
|
|
BaseModel
|
2023-03-02 13:54:07 +08:00
|
|
|
Name string `json:"name" gorm:"type:varchar(64);not null;UNIQUE"`
|
|
|
|
AppId uint `json:"appId" gorm:"type:integer;not null"`
|
|
|
|
AppDetailId uint `json:"appDetailId" gorm:"type:integer;not null"`
|
|
|
|
Version string `json:"version" gorm:"type:varchar(64);not null"`
|
|
|
|
Param string `json:"param" gorm:"type:longtext;"`
|
|
|
|
Env string `json:"env" gorm:"type:longtext;"`
|
|
|
|
DockerCompose string `json:"dockerCompose" gorm:"type:longtext;"`
|
|
|
|
Status string `json:"status" gorm:"type:varchar(256);not null"`
|
|
|
|
Description string `json:"description" gorm:"type:varchar(256);"`
|
|
|
|
Message string `json:"message" gorm:"type:longtext;"`
|
|
|
|
ContainerName string `json:"containerName" gorm:"type:varchar(256);not null"`
|
|
|
|
ServiceName string `json:"serviceName" gorm:"type:varchar(256);not null"`
|
|
|
|
HttpPort int `json:"httpPort" gorm:"type:integer;not null"`
|
|
|
|
HttpsPort int `json:"httpsPort" gorm:"type:integer;not null"`
|
|
|
|
App App `json:"app" gorm:"-:migration"`
|
2022-09-29 18:16:56 +08:00
|
|
|
}
|
|
|
|
|
2022-10-07 15:49:39 +08:00
|
|
|
func (i *AppInstall) GetPath() string {
|
2022-10-12 18:57:22 +08:00
|
|
|
return path.Join(constant.AppInstallDir, i.App.Key, i.Name)
|
2022-09-29 18:16:56 +08:00
|
|
|
}
|
|
|
|
|
2022-10-07 15:49:39 +08:00
|
|
|
func (i *AppInstall) GetComposePath() string {
|
2022-10-12 18:57:22 +08:00
|
|
|
return path.Join(constant.AppInstallDir, i.App.Key, i.Name, "docker-compose.yml")
|
2022-09-26 16:32:40 +08:00
|
|
|
}
|