mirror of
https://github.com/usual2970/certimate.git
synced 2025-06-08 05:29:51 +00:00
37 lines
712 B
Go
37 lines
712 B
Go
package applicant
|
|
|
|
import (
|
|
"encoding/json"
|
|
"fmt"
|
|
"os"
|
|
|
|
"github.com/go-acme/lego/v4/providers/dns/pdns"
|
|
|
|
"github.com/usual2970/certimate/internal/domain"
|
|
)
|
|
|
|
type powerdns struct {
|
|
option *ApplyOption
|
|
}
|
|
|
|
func NewPdns(option *ApplyOption) Applicant {
|
|
return &powerdns{
|
|
option: option,
|
|
}
|
|
}
|
|
|
|
func (a *powerdns) Apply() (*Certificate, error) {
|
|
access := &domain.PdnsAccess{}
|
|
json.Unmarshal([]byte(a.option.Access), access)
|
|
|
|
os.Setenv("PDNS_API_URL", access.ApiUrl)
|
|
os.Setenv("PDNS_API_KEY", access.ApiKey)
|
|
os.Setenv("PDNS_PROPAGATION_TIMEOUT", fmt.Sprintf("%d", a.option.Timeout))
|
|
dnsProvider, err := pdns.NewDNSProvider()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return apply(a.option, dnsProvider)
|
|
}
|