1Panel/backend/app/model/website_ssl.go

49 lines
1.6 KiB
Go
Raw Normal View History

2022-10-28 09:04:57 +00:00
package model
2023-11-23 03:00:08 +00:00
import (
"fmt"
"github.com/1Panel-dev/1Panel/backend/constant"
"path"
"time"
)
2022-11-11 09:41:39 +00:00
2022-12-13 09:20:13 +00:00
type WebsiteSSL struct {
2022-10-28 09:04:57 +00:00
BaseModel
2024-05-07 10:01:00 +00:00
PrimaryDomain string `json:"primaryDomain"`
PrivateKey string `json:"privateKey"`
Pem string `json:"pem"`
Domains string `json:"domains"`
CertURL string `json:"certURL"`
Type string `json:"type"`
Provider string `json:"provider"`
Organization string `json:"organization"`
DnsAccountID uint `json:"dnsAccountId"`
AcmeAccountID uint `gorm:"column:acme_account_id" json:"acmeAccountId" `
CaID uint `json:"caId"`
AutoRenew bool `json:"autoRenew"`
2023-01-04 03:44:43 +00:00
ExpireDate time.Time `json:"expireDate"`
StartDate time.Time `json:"startDate"`
2024-05-07 10:01:00 +00:00
Status string `json:"status"`
Message string `json:"message"`
2024-05-07 10:01:00 +00:00
KeyType string `json:"keyType"`
PushDir bool `json:"pushDir"`
Dir string `json:"dir"`
Description string `json:"description"`
SkipDNS bool `json:"skipDNS"`
Nameserver1 string `json:"nameserver1"`
Nameserver2 string `json:"nameserver2"`
DisableCNAME bool `json:"disableCNAME"`
2023-01-04 03:44:43 +00:00
AcmeAccount WebsiteAcmeAccount `json:"acmeAccount" gorm:"-:migration"`
DnsAccount WebsiteDnsAccount `json:"dnsAccount" gorm:"-:migration"`
Websites []Website `json:"websites" gorm:"-:migration"`
2022-11-11 09:41:39 +00:00
}
2022-12-13 09:20:13 +00:00
func (w WebsiteSSL) TableName() string {
2022-11-11 09:41:39 +00:00
return "website_ssls"
2022-10-28 09:04:57 +00:00
}
2023-11-23 03:00:08 +00:00
func (w WebsiteSSL) GetLogPath() string {
return path.Join(constant.SSLLogDir, fmt.Sprintf("%s-ssl-%d.log", w.PrimaryDomain, w.ID))
}