lego/registration/registar.go
2026-03-04 21:07:08 +01:00

207 lines
5.9 KiB
Go

package registration
import (
"context"
"crypto"
"errors"
"fmt"
"log/slog"
"net/http"
"os"
"github.com/go-acme/lego/v5/acme"
"github.com/go-acme/lego/v5/acme/api"
"github.com/go-acme/lego/v5/log"
"github.com/go-acme/lego/v5/registration/zerossl"
)
const mailTo = "mailto:"
type RegisterOptions struct {
TermsOfServiceAgreed bool
}
type RegisterEABOptions struct {
TermsOfServiceAgreed bool
Kid string
HmacEncoded string
}
type Registrar struct {
core *api.Core
user User
}
func NewRegistrar(core *api.Core, user User) *Registrar {
return &Registrar{
core: core,
user: user,
}
}
// Register the current account to the ACME server.
func (r *Registrar) Register(ctx context.Context, options RegisterOptions) (*acme.ExtendedAccount, error) {
if r == nil || r.user == nil {
return nil, errors.New("acme: cannot register a nil client or user")
}
accMsg := acme.Account{
TermsOfServiceAgreed: options.TermsOfServiceAgreed,
Contact: []string{},
}
if r.user.GetEmail() != "" {
log.Info("acme: Registering the account.", slog.String("email", r.user.GetEmail()))
accMsg.Contact = []string{mailTo + r.user.GetEmail()}
}
account, err := r.core.Accounts.New(ctx, accMsg)
if err != nil {
// seems impossible
errorDetails := &acme.ProblemDetails{}
if !errors.As(err, &errorDetails) || errorDetails.HTTPStatus != http.StatusConflict {
return nil, err
}
}
return &account, nil
}
// RegisterWithExternalAccountBinding Register the current account to the ACME server.
func (r *Registrar) RegisterWithExternalAccountBinding(ctx context.Context, options RegisterEABOptions) (*acme.ExtendedAccount, error) {
accMsg := acme.Account{
TermsOfServiceAgreed: options.TermsOfServiceAgreed,
Contact: []string{},
}
if r.user.GetEmail() != "" {
log.Info("acme: Registering the account.", slog.String("email", r.user.GetEmail()))
accMsg.Contact = []string{mailTo + r.user.GetEmail()}
}
account, err := r.core.Accounts.NewEAB(ctx, accMsg, options.Kid, options.HmacEncoded)
if err != nil {
// seems impossible
errorDetails := &acme.ProblemDetails{}
if !errors.As(err, &errorDetails) || errorDetails.HTTPStatus != http.StatusConflict {
return nil, err
}
}
return &account, nil
}
// QueryRegistration runs a POST request on the client's registration and returns the result.
//
// This is similar to the Register function,
// but acting on an existing registration link and resource.
func (r *Registrar) QueryRegistration(ctx context.Context) (*acme.ExtendedAccount, error) {
if r == nil || r.user == nil || r.user.GetRegistration() == nil {
return nil, errors.New("acme: cannot query the registration of a nil client or user")
}
// Log the URL here instead of the email as the email may not be set
log.Info("acme: Querying the account.", slog.String("registrationURI", r.user.GetRegistration().Location))
account, err := r.core.Accounts.Get(ctx, r.user.GetRegistration().Location)
if err != nil {
return nil, err
}
return &acme.ExtendedAccount{
Account: account,
// Location: header is not returned, so this needs to be populated off of the existing URI
Location: r.user.GetRegistration().Location,
}, nil
}
// UpdateRegistration update the user registration on the ACME server.
func (r *Registrar) UpdateRegistration(ctx context.Context, options RegisterOptions) (*acme.ExtendedAccount, error) {
if r == nil || r.user == nil {
return nil, errors.New("acme: cannot update a nil client or user")
}
accMsg := acme.Account{
TermsOfServiceAgreed: options.TermsOfServiceAgreed,
Contact: []string{},
}
if r.user.GetEmail() != "" {
log.Info("acme: Registering the account.", slog.String("email", r.user.GetEmail()))
accMsg.Contact = []string{mailTo + r.user.GetEmail()}
}
accountURL := r.user.GetRegistration().Location
account, err := r.core.Accounts.Update(ctx, accountURL, accMsg)
if err != nil {
return nil, err
}
return &acme.ExtendedAccount{Account: account, Location: accountURL}, nil
}
// DeleteRegistration deletes the client's user registration from the ACME server.
func (r *Registrar) DeleteRegistration(ctx context.Context) error {
if r == nil || r.user == nil {
return errors.New("acme: cannot unregister a nil client or user")
}
log.Info("acme: Deleting the account.", slog.String("email", r.user.GetEmail()))
return r.core.Accounts.Deactivate(ctx, r.user.GetRegistration().Location)
}
// ResolveAccountByKey will attempt to look up an account using the given account key
// and return its registration resource.
func (r *Registrar) ResolveAccountByKey(ctx context.Context) (*acme.ExtendedAccount, error) {
log.Info("acme: Trying to resolve the account by key")
accMsg := acme.Account{OnlyReturnExisting: true}
account, err := r.core.Accounts.New(ctx, accMsg)
if err != nil {
return nil, err
}
return &account, nil
}
// KeyRollover will attempt to change the account key.
func (r *Registrar) KeyRollover(ctx context.Context, newKey crypto.PrivateKey) error {
return r.core.Accounts.KeyChange(ctx, newKey)
}
// RegisterWithZeroSSL registers the current account to the ZeroSSL.
// It uses either an access key or an email to generate an EAB.
func RegisterWithZeroSSL(ctx context.Context, r *Registrar, email string) (*acme.ExtendedAccount, error) {
zc := zerossl.NewClient()
value, find := os.LookupEnv(zerossl.EnvZeroSSLAccessKey)
if find {
eab, err := zc.GenerateEAB(ctx, value)
if err != nil {
return nil, fmt.Errorf("zerossl: generate EAB: %w", err)
}
return r.RegisterWithExternalAccountBinding(ctx, RegisterEABOptions{
TermsOfServiceAgreed: true,
Kid: eab.Kid,
HmacEncoded: eab.HmacKey,
})
}
eab, err := zc.GenerateEABFromEmail(ctx, email)
if err != nil {
return nil, fmt.Errorf("zerossl: generate EAB from email: %w", err)
}
return r.RegisterWithExternalAccountBinding(ctx, RegisterEABOptions{
TermsOfServiceAgreed: true,
Kid: eab.Kid,
HmacEncoded: eab.HmacKey,
})
}