-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.go
135 lines (115 loc) · 4.32 KB
/
main.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
package main
import (
"encoding/json"
"fmt"
"github.com/GlobalArtInc/cert-manager-webhook-ispmanager/ispmanager"
"os"
extapi "k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1"
"k8s.io/client-go/kubernetes"
"k8s.io/client-go/rest"
"k8s.io/klog/v2"
"github.com/cert-manager/cert-manager/pkg/acme/webhook/apis/acme/v1alpha1"
"github.com/cert-manager/cert-manager/pkg/acme/webhook/cmd"
log "github.com/sirupsen/logrus"
)
var (
ProviderName = "ispmanager-provider"
GroupName = os.Getenv("GROUP_NAME")
)
func main() {
if GroupName == "" {
panic("GROUP_NAME must be specified")
}
cmd.RunWebhookServer(GroupName,
&ispmanagerDNSProviderSolver{},
)
}
type ispmanagerDNSProviderSolver struct {
client *kubernetes.Clientset
}
type ispmanagerDNSProviderConfig struct {
PanelUrl string `json:"panelUrl"`
User string `json:"user"`
Password string `json:"password"`
}
// Name is used as the name for this DNS solver when referencing it on the ACME
// Issuer resource.
// This should be unique **within the group name**, i.e. you can have two
// solvers configured with the same Name() **so long as they do not co-exist
// within a single webhook deployment**.
// For example, `cloudflare` may be used as the name of a solver.
func (c *ispmanagerDNSProviderSolver) Name() string {
return ProviderName
}
// Present is responsible for actually presenting the DNS record with the
// DNS provider.
// This method should tolerate being called multiple times with the same value.
// cert-manager itself will later perform a self check to ensure that the
// solver has correctly configured the DNS provider.
func (c *ispmanagerDNSProviderSolver) Present(challengeRequest *v1alpha1.ChallengeRequest) error {
cfg, err := loadConfig(challengeRequest.Config)
if err != nil {
return err
}
provider, err := c.provider(&cfg)
if err != nil {
return err
}
return provider.Present(getDomainFromZone(challengeRequest.ResolvedZone), challengeRequest.ResolvedFQDN, challengeRequest.Key)
}
// CleanUp should delete the relevant TXT record from the DNS provider console.
// If multiple TXT records exist with the same record name (e.g.
// _acme-challenge.example.com) then **only** the record with the same `key`
// value provided on the ChallengeRequest should be cleaned up.
// This is in order to facilitate multiple DNS validations for the same domain
// concurrently.
func (c *ispmanagerDNSProviderSolver) CleanUp(challengeRequest *v1alpha1.ChallengeRequest) error {
cfg, err := loadConfig(challengeRequest.Config)
if err != nil {
return err
}
provider, err := c.provider(&cfg)
if err != nil {
return err
}
return provider.CleanUp(getDomainFromZone(challengeRequest.ResolvedZone), challengeRequest.ResolvedFQDN, challengeRequest.Key)
}
// Initialize will be called when the webhook first starts.
// This method can be used to instantiate the webhook, i.e. initialising
// connections or warming up caches.
// Typically, the kubeClientConfig parameter is used to build a Kubernetes
// client that can be used to fetch resources from the Kubernetes API, e.g.
// Secret resources containing credentials used to authenticate with DNS
// provider accounts.
// The stopCh can be used to handle early termination of the webhook, in cases
// where a SIGTERM or similar signal is sent to the webhook process.
func (c *ispmanagerDNSProviderSolver) Initialize(kubeClientConfig *rest.Config, _ <-chan struct{}) error {
klog.Infof("call function Initialize")
cl, err := kubernetes.NewForConfig(kubeClientConfig)
if err != nil {
return err
}
c.client = cl
log.SetFormatter(&log.JSONFormatter{})
return nil
}
func (c *ispmanagerDNSProviderSolver) provider(cfg *ispmanagerDNSProviderConfig) (*ispmanager.IspClient, error) {
IspClient := ispmanager.NewIspClient(cfg.PanelUrl, cfg.User, cfg.Password)
return IspClient, nil
}
// loadConfig is a small helper function that decodes JSON configuration into
// the typed config struct.
func loadConfig(cfgJSON *extapi.JSON) (ispmanagerDNSProviderConfig, error) {
cfg := ispmanagerDNSProviderConfig{}
// handle the 'base case' where no configuration has been provided
if cfgJSON == nil {
return cfg, nil
}
if err := json.Unmarshal(cfgJSON.Raw, &cfg); err != nil {
return cfg, fmt.Errorf("error decoding solver config: %v", err)
}
return cfg, nil
}
func getDomainFromZone(zone string) string {
return zone[0 : len(zone)-1]
}