forked from TrueCloudLab/lego
61 lines
1.5 KiB
Go
61 lines
1.5 KiB
Go
// Package memcached implements a HTTP provider for solving the HTTP-01 challenge using memcached
|
|
// in combination with a webserver.
|
|
package memcached
|
|
|
|
import (
|
|
"errors"
|
|
"fmt"
|
|
"path"
|
|
|
|
"github.com/go-acme/lego/v4/challenge/http01"
|
|
"github.com/rainycape/memcache"
|
|
)
|
|
|
|
// HTTPProvider implements HTTPProvider for `http-01` challenge.
|
|
type HTTPProvider struct {
|
|
hosts []string
|
|
}
|
|
|
|
// NewMemcachedProvider returns a HTTPProvider instance with a configured webroot path.
|
|
func NewMemcachedProvider(hosts []string) (*HTTPProvider, error) {
|
|
if len(hosts) == 0 {
|
|
return nil, errors.New("no memcached hosts provided")
|
|
}
|
|
|
|
c := &HTTPProvider{
|
|
hosts: hosts,
|
|
}
|
|
|
|
return c, nil
|
|
}
|
|
|
|
// Present makes the token available at `HTTP01ChallengePath(token)` by creating a file in the given webroot path.
|
|
func (w *HTTPProvider) Present(domain, token, keyAuth string) error {
|
|
var errs []error
|
|
|
|
challengePath := path.Join("/", http01.ChallengePath(token))
|
|
for _, host := range w.hosts {
|
|
mc, err := memcache.New(host)
|
|
if err != nil {
|
|
errs = append(errs, err)
|
|
continue
|
|
}
|
|
_ = mc.Add(&memcache.Item{
|
|
Key: challengePath,
|
|
Value: []byte(keyAuth),
|
|
Expiration: 60,
|
|
})
|
|
}
|
|
|
|
if len(errs) == len(w.hosts) {
|
|
return fmt.Errorf("unable to store key in any of the memcache hosts: %v", errs)
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// CleanUp removes the file created for the challenge.
|
|
func (w *HTTPProvider) CleanUp(domain, token, keyAuth string) error {
|
|
// Memcached will clean up itself, that's what expiration is for.
|
|
return nil
|
|
}
|