1
0
mirror of https://github.com/go-acme/lego.git synced 2024-12-03 19:16:42 +02:00
lego/acme/api/account.go

86 lines
2.1 KiB
Go
Raw Normal View History

2019-03-11 18:56:48 +02:00
package api
import (
"encoding/base64"
"errors"
"fmt"
2020-09-02 03:20:01 +02:00
"github.com/go-acme/lego/v4/acme"
)
type AccountService service
// New Creates a new account.
func (a *AccountService) New(req acme.Account) (acme.ExtendedAccount, error) {
var account acme.Account
resp, err := a.core.post(a.core.GetDirectory().NewAccountURL, req, &account)
location := getLocation(resp)
if len(location) > 0 {
a.core.jws.SetKid(location)
}
if err != nil {
return acme.ExtendedAccount{Location: location}, err
}
return acme.ExtendedAccount{Account: account, Location: location}, nil
}
// NewEAB Creates a new account with an External Account Binding.
2020-07-10 01:48:18 +02:00
func (a *AccountService) NewEAB(accMsg acme.Account, kid, hmacEncoded string) (acme.ExtendedAccount, error) {
hmac, err := base64.RawURLEncoding.DecodeString(hmacEncoded)
if err != nil {
2020-02-27 20:14:46 +02:00
return acme.ExtendedAccount{}, fmt.Errorf("acme: could not decode hmac key: %w", err)
}
eabJWS, err := a.core.signEABContent(a.core.GetDirectory().NewAccountURL, kid, hmac)
if err != nil {
2020-02-27 20:14:46 +02:00
return acme.ExtendedAccount{}, fmt.Errorf("acme: error signing eab content: %w", err)
}
2020-10-27 13:01:05 +02:00
accMsg.ExternalAccountBinding = eabJWS
return a.New(accMsg)
}
// Get Retrieves an account.
func (a *AccountService) Get(accountURL string) (acme.Account, error) {
2021-03-04 21:16:59 +02:00
if accountURL == "" {
return acme.Account{}, errors.New("account[get]: empty URL")
}
var account acme.Account
_, err := a.core.postAsGet(accountURL, &account)
if err != nil {
return acme.Account{}, err
}
return account, nil
}
2019-11-19 02:07:46 +02:00
// Update Updates an account.
func (a *AccountService) Update(accountURL string, req acme.Account) (acme.Account, error) {
2021-03-04 21:16:59 +02:00
if accountURL == "" {
return acme.Account{}, errors.New("account[update]: empty URL")
2019-11-19 02:07:46 +02:00
}
var account acme.Account
2019-11-19 02:07:46 +02:00
_, err := a.core.post(accountURL, req, &account)
if err != nil {
return acme.Account{}, err
2019-11-19 02:07:46 +02:00
}
2019-11-19 02:07:46 +02:00
return account, nil
}
// Deactivate Deactivates an account.
func (a *AccountService) Deactivate(accountURL string) error {
2021-03-04 21:16:59 +02:00
if accountURL == "" {
return errors.New("account[deactivate]: empty URL")
}
req := acme.Account{Status: acme.StatusDeactivated}
_, err := a.core.post(accountURL, req, nil)
return err
}