mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2024-11-13 19:21:19 +08:00
91 lines
2.1 KiB
Go
91 lines
2.1 KiB
Go
package dto
|
|
|
|
import (
|
|
"github.com/1Panel-dev/1Panel/backend/app/model"
|
|
)
|
|
|
|
type WebSiteReq struct {
|
|
PageInfo
|
|
}
|
|
|
|
type AppType string
|
|
|
|
const (
|
|
NewApp AppType = "new"
|
|
InstalledApp AppType = "installed"
|
|
)
|
|
|
|
type WebSiteCreate struct {
|
|
PrimaryDomain string `json:"primaryDomain" validate:"required"`
|
|
Type string `json:"type" validate:"required"`
|
|
Alias string `json:"alias" validate:"required"`
|
|
Remark string `json:"remark"`
|
|
OtherDomains string `json:"otherDomains"`
|
|
AppType AppType `json:"appType"`
|
|
AppInstall NewAppInstall `json:"appInstall"`
|
|
AppID uint `json:"appID"`
|
|
AppInstallID uint `json:"appInstallID"`
|
|
WebSiteGroupID uint `json:"webSiteGroupID" validate:"required"`
|
|
}
|
|
|
|
type WebsiteDTO struct {
|
|
model.WebSite
|
|
}
|
|
|
|
type WebSiteUpdate struct {
|
|
ID uint `json:"id" validate:"required"`
|
|
PrimaryDomain string `json:"primaryDomain" validate:"required"`
|
|
Remark string `json:"remark"`
|
|
WebSiteGroupID uint `json:"webSiteGroupID" validate:"required"`
|
|
}
|
|
|
|
type NewAppInstall struct {
|
|
Name string `json:"name"`
|
|
AppDetailId uint `json:"appDetailID"`
|
|
Params map[string]interface{} `json:"params"`
|
|
}
|
|
|
|
type WebSiteDel struct {
|
|
ID uint `json:"id"`
|
|
DeleteApp bool `json:"deleteApp"`
|
|
DeleteBackup bool `json:"deleteBackup"`
|
|
}
|
|
|
|
type WebSiteDTO struct {
|
|
model.WebSite
|
|
}
|
|
|
|
type WebSiteGroupCreate struct {
|
|
Name string `json:"name"`
|
|
}
|
|
|
|
type WebSiteGroupUpdate struct {
|
|
ID uint `json:"id"`
|
|
Name string `json:"name"`
|
|
}
|
|
|
|
type WebSiteDomainCreate struct {
|
|
WebSiteID uint `json:"webSiteId"`
|
|
Port int `json:"port"`
|
|
Domain string `json:"domain"`
|
|
}
|
|
|
|
type WebsiteHTTPS struct {
|
|
Enable bool `json:"enable"`
|
|
SSL model.WebSiteSSL `json:"SSL"`
|
|
}
|
|
|
|
type SSlType string
|
|
|
|
const (
|
|
SSLExisted SSlType = "existed"
|
|
SSLAuto SSlType = "auto"
|
|
SSLManual SSlType = "manual"
|
|
)
|
|
|
|
type WebsiteHTTPSOp struct {
|
|
WebsiteID uint `json:"websiteId"`
|
|
Enable bool `json:"enable"`
|
|
WebsiteSSLID uint `json:"websiteSSLId"`
|
|
Type SSlType `json:"type"`
|
|
}
|