2022-10-28 17:04:57 +08:00
|
|
|
package model
|
|
|
|
|
2023-11-23 11:00:08 +08:00
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"github.com/1Panel-dev/1Panel/backend/constant"
|
|
|
|
"path"
|
|
|
|
"time"
|
|
|
|
)
|
2022-11-11 17:41:39 +08:00
|
|
|
|
2022-12-13 17:20:13 +08:00
|
|
|
type WebsiteSSL struct {
|
2022-10-28 17:04:57 +08:00
|
|
|
BaseModel
|
2023-01-04 11:44:43 +08:00
|
|
|
PrimaryDomain string `gorm:"type:varchar(256);not null" json:"primaryDomain"`
|
|
|
|
PrivateKey string `gorm:"type:longtext;not null" json:"privateKey"`
|
|
|
|
Pem string `gorm:"type:longtext;not null" json:"pem"`
|
|
|
|
Domains string `gorm:"type:varchar(256);not null" json:"domains"`
|
|
|
|
CertURL string `gorm:"type:varchar(256);not null" json:"certURL"`
|
|
|
|
Type string `gorm:"type:varchar(64);not null" json:"type"`
|
|
|
|
Provider string `gorm:"type:varchar(64);not null" json:"provider"`
|
|
|
|
Organization string `gorm:"type:varchar(64);not null" json:"organization"`
|
|
|
|
DnsAccountID uint `gorm:"type:integer;not null" json:"dnsAccountId"`
|
|
|
|
AcmeAccountID uint `gorm:"type:integer;not null" json:"acmeAccountId"`
|
2023-11-27 18:36:10 +08:00
|
|
|
CaID uint `gorm:"type:integer;not null;default:0" json:"caId"`
|
2023-01-04 11:44:43 +08:00
|
|
|
AutoRenew bool `gorm:"type:varchar(64);not null" json:"autoRenew"`
|
|
|
|
ExpireDate time.Time `json:"expireDate"`
|
|
|
|
StartDate time.Time `json:"startDate"`
|
2023-11-20 10:44:10 +08:00
|
|
|
Status string `gorm:"not null;default:ready" json:"status"`
|
|
|
|
Message string `json:"message"`
|
|
|
|
KeyType string `gorm:"not null;default:2048" json:"keyType"`
|
2023-11-27 14:00:09 +08:00
|
|
|
PushDir bool `gorm:"not null;default:0" json:"pushDir"`
|
|
|
|
Dir string `json:"dir"`
|
2023-01-04 11:44:43 +08:00
|
|
|
|
2023-02-27 17:22:14 +08:00
|
|
|
AcmeAccount WebsiteAcmeAccount `json:"acmeAccount" gorm:"-:migration"`
|
2023-11-27 14:00:09 +08:00
|
|
|
DnsAccount WebsiteDnsAccount `json:"dnsAccount" gorm:"-:migration"`
|
2023-02-27 17:22:14 +08:00
|
|
|
Websites []Website `json:"websites" gorm:"-:migration"`
|
2022-11-11 17:41:39 +08:00
|
|
|
}
|
|
|
|
|
2022-12-13 17:20:13 +08:00
|
|
|
func (w WebsiteSSL) TableName() string {
|
2022-11-11 17:41:39 +08:00
|
|
|
return "website_ssls"
|
2022-10-28 17:04:57 +08:00
|
|
|
}
|
2023-11-23 11:00:08 +08:00
|
|
|
|
|
|
|
func (w WebsiteSSL) GetLogPath() string {
|
|
|
|
return path.Join(constant.SSLLogDir, fmt.Sprintf("%s-ssl-%d.log", w.PrimaryDomain, w.ID))
|
|
|
|
}
|