mirror of
				https://github.com/1Panel-dev/1Panel.git
				synced 2025-10-31 11:15:58 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			51 lines
		
	
	
	
		
			1.7 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			51 lines
		
	
	
	
		
			1.7 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| package model
 | |
| 
 | |
| import (
 | |
| 	"fmt"
 | |
| 	"path"
 | |
| 	"time"
 | |
| 
 | |
| 	"github.com/1Panel-dev/1Panel/agent/global"
 | |
| )
 | |
| 
 | |
| type WebsiteSSL struct {
 | |
| 	BaseModel
 | |
| 	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"`
 | |
| 	ExpireDate    time.Time `json:"expireDate"`
 | |
| 	StartDate     time.Time `json:"startDate"`
 | |
| 	Status        string    `json:"status"`
 | |
| 	Message       string    `json:"message"`
 | |
| 	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"`
 | |
| 	ExecShell     bool      `json:"execShell"`
 | |
| 	Shell         string    `json:"shell"`
 | |
| 
 | |
| 	AcmeAccount WebsiteAcmeAccount `json:"acmeAccount" gorm:"-:migration"`
 | |
| 	DnsAccount  WebsiteDnsAccount  `json:"dnsAccount" gorm:"-:migration"`
 | |
| 	Websites    []Website          `json:"websites" gorm:"-:migration"`
 | |
| }
 | |
| 
 | |
| func (w WebsiteSSL) TableName() string {
 | |
| 	return "website_ssls"
 | |
| }
 | |
| 
 | |
| func (w WebsiteSSL) GetLogPath() string {
 | |
| 	return path.Join(global.Dir.SSLLogDir, fmt.Sprintf("%s-ssl-%d.log", w.PrimaryDomain, w.ID))
 | |
| }
 |