2021-02-25 18:24:24 +00:00
|
|
|
package nosql
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"encoding/json"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/pkg/errors"
|
|
|
|
nosqlDB "github.com/smallstep/nosql"
|
|
|
|
"go.step.sm/crypto/jose"
|
|
|
|
)
|
|
|
|
|
|
|
|
// dbAccount represents an ACME account.
|
|
|
|
type dbAccount struct {
|
|
|
|
ID string `json:"id"`
|
|
|
|
Created time.Time `json:"created"`
|
|
|
|
Deactivated time.Time `json:"deactivated"`
|
|
|
|
Key *jose.JSONWebKey `json:"key"`
|
|
|
|
Contact []string `json:"contact,omitempty"`
|
|
|
|
Status string `json:"status"`
|
|
|
|
}
|
|
|
|
|
2021-02-26 18:12:30 +00:00
|
|
|
func (dba *dbAccount) clone() *dbAccount {
|
|
|
|
nu := *dba
|
|
|
|
return &nu
|
|
|
|
}
|
|
|
|
|
2021-02-25 18:24:24 +00:00
|
|
|
// CreateAccount imlements the AcmeDB.CreateAccount interface.
|
2021-02-26 18:12:30 +00:00
|
|
|
func (db *DB) CreateAccount(ctx context.Context, acc *types.Account) error {
|
2021-02-28 01:05:37 +00:00
|
|
|
acc.ID, err = randID()
|
2021-02-25 18:24:24 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
dba := &dbAccount{
|
2021-02-28 01:05:37 +00:00
|
|
|
ID: acc.ID,
|
2021-02-25 18:24:24 +00:00
|
|
|
Key: acc.Key,
|
|
|
|
Contact: acc.Contact,
|
|
|
|
Status: acc.Valid,
|
|
|
|
Created: clock.Now(),
|
|
|
|
}
|
|
|
|
|
|
|
|
kid, err := keyToID(dba.Key)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
kidB := []byte(kid)
|
|
|
|
|
|
|
|
// Set the jwkID -> acme account ID index
|
|
|
|
_, swapped, err := db.db.CmpAndSwap(accountByKeyIDTable, kidB, nil, []byte(a.ID))
|
|
|
|
switch {
|
|
|
|
case err != nil:
|
|
|
|
return ServerInternalErr(errors.Wrap(err, "error setting key-id to account-id index"))
|
|
|
|
case !swapped:
|
|
|
|
return ServerInternalErr(errors.Errorf("key-id to account-id index already exists"))
|
|
|
|
default:
|
2021-02-28 01:05:37 +00:00
|
|
|
if err = db.save(ctx, acc.ID, dba, nil, "account", accountTable); err != nil {
|
2021-02-25 18:24:24 +00:00
|
|
|
db.db.Del(accountByKeyIDTable, kidB)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-26 18:12:30 +00:00
|
|
|
// GetAccount retrieves an ACME account by ID.
|
|
|
|
func (db *DB) GetAccount(ctx context.Context, id string) (*types.Account, error) {
|
|
|
|
|
|
|
|
return &types.Account{
|
|
|
|
Status: dbacc.Status,
|
|
|
|
Contact: dbacc.Contact,
|
|
|
|
Orders: dir.getLink(ctx, OrdersByAccountLink, true, a.ID),
|
|
|
|
Key: dbacc.Key,
|
|
|
|
ID: dbacc.ID,
|
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetAccountByKeyID retrieves an ACME account by KeyID (thumbprint of the Account Key -- JWK).
|
|
|
|
func (db *DB) GetAccountByKeyID(ctx context.Context, kid string) (*types.Account, error) {
|
|
|
|
id, err := db.getAccountIDByKeyID(kid)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return db.GetAccount(ctx, id)
|
|
|
|
}
|
|
|
|
|
2021-02-25 18:24:24 +00:00
|
|
|
// UpdateAccount imlements the AcmeDB.UpdateAccount interface.
|
2021-02-26 18:12:30 +00:00
|
|
|
func (db *DB) UpdateAccount(ctx context.Context, acc *types.Account) error {
|
2021-02-28 01:05:37 +00:00
|
|
|
if len(acc.ID) == 0 {
|
|
|
|
return ServerInternalErr(errors.New("id cannot be empty"))
|
|
|
|
}
|
2021-02-26 18:12:30 +00:00
|
|
|
|
2021-02-28 01:05:37 +00:00
|
|
|
old, err := db.getDBAccount(ctx, acc.ID)
|
2021-02-25 18:24:24 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2021-02-26 18:12:30 +00:00
|
|
|
nu := old.clone()
|
|
|
|
nu.Contact = acc.contact
|
|
|
|
nu.Status = acc.Status
|
2021-02-25 18:24:24 +00:00
|
|
|
|
|
|
|
// If the status has changed to 'deactivated', then set deactivatedAt timestamp.
|
2021-02-26 18:12:30 +00:00
|
|
|
if acc.Status == types.StatusDeactivated && old.Status != types.Status.Deactivated {
|
|
|
|
nu.Deactivated = clock.Now()
|
2021-02-25 18:24:24 +00:00
|
|
|
}
|
|
|
|
|
2021-02-28 01:05:37 +00:00
|
|
|
return db.save(ctx, old.ID, newdba, dba, "account", accountTable)
|
2021-02-25 18:24:24 +00:00
|
|
|
}
|
|
|
|
|
2021-02-26 18:12:30 +00:00
|
|
|
func (db *DB) getAccountIDByKeyID(ctx context.Context, kid string) (string, error) {
|
|
|
|
id, err := db.db.Get(accountByKeyIDTable, []byte(kid))
|
2021-02-25 18:24:24 +00:00
|
|
|
if err != nil {
|
|
|
|
if nosqlDB.IsErrNotFound(err) {
|
2021-02-26 18:12:30 +00:00
|
|
|
return nil, MalformedErr(errors.Wrapf(err, "account with key id %s not found", kid))
|
2021-02-25 18:24:24 +00:00
|
|
|
}
|
2021-02-26 18:12:30 +00:00
|
|
|
return nil, ServerInternalErr(errors.Wrapf(err, "error loading key-account index"))
|
2021-02-25 18:24:24 +00:00
|
|
|
}
|
2021-02-26 18:12:30 +00:00
|
|
|
return string(id), nil
|
2021-02-25 18:24:24 +00:00
|
|
|
}
|
|
|
|
|
2021-02-28 01:05:37 +00:00
|
|
|
// getDBAccount retrieves and unmarshals dbAccount.
|
|
|
|
func (db *DB) getDBAccount(ctx context.Context, id string) (*dbAccount, error) {
|
2021-02-26 18:12:30 +00:00
|
|
|
data, err := db.db.Get(accountTable, []byte(id))
|
2021-02-25 18:24:24 +00:00
|
|
|
if err != nil {
|
|
|
|
if nosqlDB.IsErrNotFound(err) {
|
2021-02-26 18:12:30 +00:00
|
|
|
return nil, MalformedErr(errors.Wrapf(err, "account %s not found", id))
|
2021-02-25 18:24:24 +00:00
|
|
|
}
|
2021-02-26 18:12:30 +00:00
|
|
|
return nil, ServerInternalErr(errors.Wrapf(err, "error loading account %s", id))
|
|
|
|
}
|
|
|
|
|
|
|
|
dbacc := new(account)
|
|
|
|
if err = json.Unmarshal(data, dbacc); err != nil {
|
|
|
|
return nil, ServerInternalErr(errors.Wrap(err, "error unmarshaling account"))
|
2021-02-25 18:24:24 +00:00
|
|
|
}
|
2021-02-26 18:12:30 +00:00
|
|
|
return dbacc, nil
|
2021-02-25 18:24:24 +00:00
|
|
|
}
|