2016-03-14 12:49:02 +02:00
|
|
|
// Package webroot implements a HTTP provider for solving the HTTP-01 challenge using web server's root path.
|
2019-03-11 18:56:48 +02:00
|
|
|
package webroot
|
2016-02-10 13:19:29 +02:00
|
|
|
|
|
|
|
import (
|
2020-02-27 20:14:46 +02:00
|
|
|
"errors"
|
2016-02-10 13:19:29 +02:00
|
|
|
"fmt"
|
|
|
|
"io/ioutil"
|
|
|
|
"os"
|
2018-09-12 00:41:30 +02:00
|
|
|
"path/filepath"
|
2016-03-14 12:49:02 +02:00
|
|
|
|
2019-07-30 21:19:32 +02:00
|
|
|
"github.com/go-acme/lego/v3/challenge/http01"
|
2016-02-10 13:19:29 +02:00
|
|
|
)
|
|
|
|
|
2016-03-16 12:32:09 +02:00
|
|
|
// HTTPProvider implements ChallengeProvider for `http-01` challenge
|
|
|
|
type HTTPProvider struct {
|
2016-02-10 13:19:29 +02:00
|
|
|
path string
|
|
|
|
}
|
|
|
|
|
2016-03-16 12:32:09 +02:00
|
|
|
// NewHTTPProvider returns a HTTPProvider instance with a configured webroot path
|
|
|
|
func NewHTTPProvider(path string) (*HTTPProvider, error) {
|
2016-02-10 17:55:10 +02:00
|
|
|
if _, err := os.Stat(path); os.IsNotExist(err) {
|
2020-02-27 20:14:46 +02:00
|
|
|
return nil, errors.New("webroot path does not exist")
|
2016-02-10 17:55:10 +02:00
|
|
|
}
|
|
|
|
|
2018-09-24 21:07:20 +02:00
|
|
|
return &HTTPProvider{path: path}, nil
|
2016-02-10 17:55:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Present makes the token available at `HTTP01ChallengePath(token)` by creating a file in the given webroot path
|
2016-03-16 12:32:09 +02:00
|
|
|
func (w *HTTPProvider) Present(domain, token, keyAuth string) error {
|
2016-02-10 13:19:29 +02:00
|
|
|
var err error
|
2016-02-10 17:55:10 +02:00
|
|
|
|
2018-12-06 23:50:17 +02:00
|
|
|
challengeFilePath := filepath.Join(w.path, http01.ChallengePath(token))
|
2018-09-12 00:41:30 +02:00
|
|
|
err = os.MkdirAll(filepath.Dir(challengeFilePath), 0755)
|
2016-02-10 17:55:10 +02:00
|
|
|
if err != nil {
|
2020-03-20 23:53:09 +02:00
|
|
|
return fmt.Errorf("could not create required directories in webroot for HTTP challenge: %w", err)
|
2016-02-10 17:55:10 +02:00
|
|
|
}
|
|
|
|
|
2016-09-04 10:06:18 +02:00
|
|
|
err = ioutil.WriteFile(challengeFilePath, []byte(keyAuth), 0644)
|
2016-02-10 13:19:29 +02:00
|
|
|
if err != nil {
|
2020-03-20 23:53:09 +02:00
|
|
|
return fmt.Errorf("could not write file in webroot for HTTP challenge: %w", err)
|
2016-02-10 13:19:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2016-02-10 17:55:10 +02:00
|
|
|
// CleanUp removes the file created for the challenge
|
2016-03-16 12:32:09 +02:00
|
|
|
func (w *HTTPProvider) CleanUp(domain, token, keyAuth string) error {
|
2018-12-06 23:50:17 +02:00
|
|
|
err := os.Remove(filepath.Join(w.path, http01.ChallengePath(token)))
|
2016-02-10 13:19:29 +02:00
|
|
|
if err != nil {
|
2020-03-20 23:53:09 +02:00
|
|
|
return fmt.Errorf("could not remove file in webroot after HTTP challenge: %w", err)
|
2016-02-10 13:19:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|