mirror of
https://github.com/joohoi/acme-dns.git
synced 2024-12-22 22:23:52 +07:00
c13035a344
The DB.Update function takes a type of ACMETxt. However, the function only requires the Value and Subdomain fields. Refactor the function such that it takes ACMETxtPost instead of the full ACMETxt record. This will simplify extraction of txt-record related logic from the db code.
84 lines
1.8 KiB
Go
84 lines
1.8 KiB
Go
package main
|
|
|
|
import (
|
|
"database/sql"
|
|
"sync"
|
|
|
|
"github.com/google/uuid"
|
|
)
|
|
|
|
// Config is global configuration struct
|
|
var Config DNSConfig
|
|
|
|
// DB is used to access the database functions in acme-dns
|
|
var DB database
|
|
|
|
// DNSConfig holds the config structure
|
|
type DNSConfig struct {
|
|
General general
|
|
Database dbsettings
|
|
API httpapi
|
|
Logconfig logconfig
|
|
}
|
|
|
|
// Auth middleware
|
|
type authMiddleware struct{}
|
|
|
|
// Config file general section
|
|
type general struct {
|
|
Listen string
|
|
Proto string `toml:"protocol"`
|
|
Domain string
|
|
Nsname string
|
|
Nsadmin string
|
|
Debug bool
|
|
StaticRecords []string `toml:"records"`
|
|
}
|
|
|
|
type dbsettings struct {
|
|
Engine string
|
|
Connection string
|
|
}
|
|
|
|
// API config
|
|
type httpapi struct {
|
|
Domain string `toml:"api_domain"`
|
|
IP string
|
|
DisableRegistration bool `toml:"disable_registration"`
|
|
AutocertPort string `toml:"autocert_port"`
|
|
Port string `toml:"port"`
|
|
TLS string
|
|
TLSCertPrivkey string `toml:"tls_cert_privkey"`
|
|
TLSCertFullchain string `toml:"tls_cert_fullchain"`
|
|
ACMECacheDir string `toml:"acme_cache_dir"`
|
|
CorsOrigins []string
|
|
UseHeader bool `toml:"use_header"`
|
|
HeaderName string `toml:"header_name"`
|
|
}
|
|
|
|
// Logging config
|
|
type logconfig struct {
|
|
Level string `toml:"loglevel"`
|
|
Logtype string `toml:"logtype"`
|
|
File string `toml:"logfile"`
|
|
Format string `toml:"logformat"`
|
|
}
|
|
|
|
type acmedb struct {
|
|
sync.Mutex
|
|
DB *sql.DB
|
|
}
|
|
|
|
type database interface {
|
|
Init(string, string) error
|
|
Register(cidrslice) (ACMETxt, error)
|
|
GetByUsername(uuid.UUID) (ACMETxt, error)
|
|
GetTXTForDomain(string) ([]string, error)
|
|
Update(ACMETxtPost) error
|
|
GetBackend() *sql.DB
|
|
SetBackend(*sql.DB)
|
|
Close()
|
|
Lock()
|
|
Unlock()
|
|
}
|