-
-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add DNS provider for Porkbun (#1396)
- Loading branch information
Showing
10 changed files
with
459 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
--- | ||
title: "Porkbun" | ||
date: 2019-03-03T16:39:46+01:00 | ||
draft: false | ||
slug: porkbun | ||
--- | ||
|
||
<!-- THIS DOCUMENTATION IS AUTO-GENERATED. PLEASE DO NOT EDIT. --> | ||
<!-- providers/dns/porkbun/porkbun.toml --> | ||
<!-- THIS DOCUMENTATION IS AUTO-GENERATED. PLEASE DO NOT EDIT. --> | ||
|
||
Since: v4.4.0 | ||
|
||
Configuration for [Porkbun](https://porkbun.com/). | ||
|
||
|
||
<!--more--> | ||
|
||
- Code: `porkbun` | ||
|
||
Here is an example bash command using the Porkbun provider: | ||
|
||
```bash | ||
PORKBUN_SECRET_API_KEY=xxxxxx \ | ||
PORKBUN_PAPI_KEY=yyyyyy \ | ||
lego --email myemail@example.com --dns porkbun --domains my.example.org run | ||
``` | ||
|
||
|
||
|
||
|
||
## Credentials | ||
|
||
| Environment Variable Name | Description | | ||
|-----------------------|-------------| | ||
| `PORKBUN_API_KEY` | API key | | ||
| `PORKBUN_SECRET_API_KEY` | secret API key | | ||
|
||
The environment variable names can be suffixed by `_FILE` to reference a file instead of a value. | ||
More information [here](/lego/dns/#configuration-and-credentials). | ||
|
||
|
||
## Additional Configuration | ||
|
||
| Environment Variable Name | Description | | ||
|--------------------------------|-------------| | ||
| `PORKBUN_HTTP_TIMEOUT` | API request timeout | | ||
| `PORKBUN_POLLING_INTERVAL` | Time between DNS propagation check | | ||
| `PORKBUN_PROPAGATION_TIMEOUT` | Maximum waiting time for DNS propagation | | ||
| `PORKBUN_TTL` | The TTL of the TXT record used for the DNS challenge | | ||
|
||
The environment variable names can be suffixed by `_FILE` to reference a file instead of a value. | ||
More information [here](/lego/dns/#configuration-and-credentials). | ||
|
||
|
||
|
||
|
||
## More information | ||
|
||
- [API documentation](https://porkbun.com/api/json/v3/documentation) | ||
|
||
<!-- THIS DOCUMENTATION IS AUTO-GENERATED. PLEASE DO NOT EDIT. --> | ||
<!-- providers/dns/porkbun/porkbun.toml --> | ||
<!-- THIS DOCUMENTATION IS AUTO-GENERATED. PLEASE DO NOT EDIT. --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,181 @@ | ||
// Package porkbun implements a DNS provider for solving the DNS-01 challenge using Porkbun. | ||
package porkbun | ||
|
||
import ( | ||
"context" | ||
"errors" | ||
"fmt" | ||
"net/http" | ||
"strconv" | ||
"strings" | ||
"sync" | ||
"time" | ||
|
||
"github.com/go-acme/lego/v4/challenge/dns01" | ||
"github.com/go-acme/lego/v4/platform/config/env" | ||
"github.com/nrdcg/porkbun" | ||
) | ||
|
||
// Environment variables names. | ||
const ( | ||
envNamespace = "PORKBUN_" | ||
|
||
EnvSecretAPIKey = envNamespace + "SECRET_API_KEY" | ||
EnvAPIKey = envNamespace + "API_KEY" | ||
|
||
EnvTTL = envNamespace + "TTL" | ||
EnvPropagationTimeout = envNamespace + "PROPAGATION_TIMEOUT" | ||
EnvPollingInterval = envNamespace + "POLLING_INTERVAL" | ||
EnvHTTPTimeout = envNamespace + "HTTP_TIMEOUT" | ||
) | ||
|
||
const minTTL = 300 | ||
|
||
// Config is used to configure the creation of the DNSProvider. | ||
type Config struct { | ||
APIKey string | ||
SecretAPIKey string | ||
PropagationTimeout time.Duration | ||
PollingInterval time.Duration | ||
TTL int | ||
HTTPClient *http.Client | ||
} | ||
|
||
// NewDefaultConfig returns a default configuration for the DNSProvider. | ||
func NewDefaultConfig() *Config { | ||
return &Config{ | ||
PropagationTimeout: env.GetOrDefaultSecond(EnvPropagationTimeout, 10*time.Minute), | ||
PollingInterval: env.GetOrDefaultSecond(EnvPollingInterval, 10*time.Second), | ||
TTL: env.GetOrDefaultInt(EnvTTL, minTTL), | ||
HTTPClient: &http.Client{ | ||
Timeout: env.GetOrDefaultSecond(EnvHTTPTimeout, 30*time.Second), | ||
}, | ||
} | ||
} | ||
|
||
// DNSProvider implements the challenge.Provider interface. | ||
type DNSProvider struct { | ||
config *Config | ||
client *porkbun.Client | ||
|
||
recordIDs map[string]int | ||
recordIDsMu sync.Mutex | ||
} | ||
|
||
// NewDNSProvider returns a DNSProvider instance configured for Porkbun. | ||
// Credentials must be passed in the environment variables: | ||
// PORKBUN_SECRET_API_KEY, PORKBUN_PAPI_KEY. | ||
func NewDNSProvider() (*DNSProvider, error) { | ||
values, err := env.Get(EnvSecretAPIKey, EnvAPIKey) | ||
if err != nil { | ||
return nil, fmt.Errorf("porkbun: %w", err) | ||
} | ||
|
||
config := NewDefaultConfig() | ||
config.SecretAPIKey = values[EnvSecretAPIKey] | ||
config.APIKey = values[EnvAPIKey] | ||
|
||
return NewDNSProviderConfig(config) | ||
} | ||
|
||
// NewDNSProviderConfig return a DNSProvider instance configured for Porkbun. | ||
func NewDNSProviderConfig(config *Config) (*DNSProvider, error) { | ||
if config == nil { | ||
return nil, errors.New("porkbun: the configuration of the DNS provider is nil") | ||
} | ||
|
||
if config.SecretAPIKey == "" || config.APIKey == "" { | ||
return nil, errors.New("porkbun: some credentials information are missing") | ||
} | ||
|
||
if config.TTL < minTTL { | ||
return nil, fmt.Errorf("porkbun: invalid TTL, TTL (%d) must be greater than %d", config.TTL, minTTL) | ||
} | ||
|
||
client := porkbun.New(config.SecretAPIKey, config.APIKey) | ||
|
||
if config.HTTPClient != nil { | ||
client.HTTPClient = config.HTTPClient | ||
} | ||
|
||
return &DNSProvider{ | ||
config: config, | ||
client: client, | ||
recordIDs: make(map[string]int), | ||
}, nil | ||
} | ||
|
||
// Timeout returns the timeout and interval to use when checking for DNS propagation. | ||
// Adjusting here to cope with spikes in propagation times. | ||
func (d *DNSProvider) Timeout() (timeout, interval time.Duration) { | ||
return d.config.PropagationTimeout, d.config.PollingInterval | ||
} | ||
|
||
// Present creates a TXT record to fulfill the dns-01 challenge. | ||
func (d *DNSProvider) Present(domain, token, keyAuth string) error { | ||
fqdn, value := dns01.GetRecord(domain, keyAuth) | ||
|
||
zoneName, hostName, err := splitDomain(fqdn) | ||
if err != nil { | ||
return fmt.Errorf("porkbun: %w", err) | ||
} | ||
|
||
record := porkbun.Record{ | ||
Name: hostName, | ||
Type: "TXT", | ||
Content: value, | ||
TTL: strconv.Itoa(d.config.TTL), | ||
} | ||
|
||
ctx := context.Background() | ||
|
||
recordID, err := d.client.CreateRecord(ctx, dns01.UnFqdn(zoneName), record) | ||
if err != nil { | ||
return fmt.Errorf("porkbun: failed to create record: %w", err) | ||
} | ||
|
||
d.recordIDsMu.Lock() | ||
d.recordIDs[token] = recordID | ||
d.recordIDsMu.Unlock() | ||
|
||
return nil | ||
} | ||
|
||
// CleanUp removes the TXT record matching the specified parameters. | ||
func (d *DNSProvider) CleanUp(domain, token, keyAuth string) error { | ||
fqdn, _ := dns01.GetRecord(domain, keyAuth) | ||
|
||
// gets the record's unique ID from when we created it | ||
d.recordIDsMu.Lock() | ||
recordID, ok := d.recordIDs[token] | ||
d.recordIDsMu.Unlock() | ||
if !ok { | ||
return fmt.Errorf("porkbun: unknown record ID for '%s' '%s'", fqdn, token) | ||
} | ||
|
||
zoneName, _, err := splitDomain(fqdn) | ||
if err != nil { | ||
return fmt.Errorf("porkbun: %w", err) | ||
} | ||
|
||
ctx := context.Background() | ||
|
||
err = d.client.DeleteRecord(ctx, dns01.UnFqdn(zoneName), recordID) | ||
if err != nil { | ||
return fmt.Errorf("porkbun: failed to delete record: %w", err) | ||
} | ||
|
||
return nil | ||
} | ||
|
||
// splitDomain splits the hostname from the authoritative zone, and returns both parts. | ||
func splitDomain(fqdn string) (string, string, error) { | ||
zone, err := dns01.FindZoneByFqdn(fqdn) | ||
if err != nil { | ||
return "", "", err | ||
} | ||
|
||
host := dns01.UnFqdn(strings.TrimSuffix(fqdn, zone)) | ||
|
||
return zone, host, nil | ||
} |
Oops, something went wrong.