forked from TrueCloudLab/certificates
166 lines
4.4 KiB
Go
166 lines
4.4 KiB
Go
package nosql
|
|
|
|
import (
|
|
"context"
|
|
"encoding/json"
|
|
"time"
|
|
|
|
"github.com/pkg/errors"
|
|
"github.com/smallstep/certificates/authority/mgmt"
|
|
"github.com/smallstep/certificates/linkedca"
|
|
"github.com/smallstep/nosql"
|
|
)
|
|
|
|
// dbAdmin is the database representation of the Admin type.
|
|
type dbAdmin struct {
|
|
ID string `json:"id"`
|
|
AuthorityID string `json:"authorityID"`
|
|
ProvisionerID string `json:"provisionerID"`
|
|
Subject string `json:"subject"`
|
|
Type linkedca.Admin_Type `json:"type"`
|
|
CreatedAt time.Time `json:"createdAt"`
|
|
DeletedAt time.Time `json:"deletedAt"`
|
|
}
|
|
|
|
func (dbp *dbAdmin) clone() *dbAdmin {
|
|
u := *dbp
|
|
return &u
|
|
}
|
|
|
|
func (db *DB) getDBAdminBytes(ctx context.Context, id string) ([]byte, error) {
|
|
data, err := db.db.Get(authorityAdminsTable, []byte(id))
|
|
if nosql.IsErrNotFound(err) {
|
|
return nil, mgmt.NewError(mgmt.ErrorNotFoundType, "admin %s not found", id)
|
|
} else if err != nil {
|
|
return nil, errors.Wrapf(err, "error loading admin %s", id)
|
|
}
|
|
return data, nil
|
|
}
|
|
|
|
func (db *DB) getDBAdmin(ctx context.Context, id string) (*dbAdmin, error) {
|
|
data, err := db.getDBAdminBytes(ctx, id)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
dba, err := unmarshalDBAdmin(data, id)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
if dba.AuthorityID != db.authorityID {
|
|
return nil, mgmt.NewError(mgmt.ErrorAuthorityMismatchType,
|
|
"admin %s is not owned by authority %s", dba.ID, db.authorityID)
|
|
}
|
|
return dba, nil
|
|
}
|
|
|
|
func unmarshalDBAdmin(data []byte, id string) (*dbAdmin, error) {
|
|
var dba = new(dbAdmin)
|
|
if err := json.Unmarshal(data, dba); err != nil {
|
|
return nil, errors.Wrapf(err, "error unmarshaling admin %s into dbAdmin", id)
|
|
}
|
|
if !dba.DeletedAt.IsZero() {
|
|
return nil, mgmt.NewError(mgmt.ErrorDeletedType, "admin %s is deleted", id)
|
|
}
|
|
return dba, nil
|
|
}
|
|
|
|
func unmarshalAdmin(data []byte, id string) (*linkedca.Admin, error) {
|
|
dba, err := unmarshalDBAdmin(data, id)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return &linkedca.Admin{
|
|
Id: dba.ID,
|
|
AuthorityId: dba.AuthorityID,
|
|
ProvisionerId: dba.ProvisionerID,
|
|
Subject: dba.Subject,
|
|
Type: dba.Type,
|
|
}, nil
|
|
}
|
|
|
|
// GetAdmin retrieves and unmarshals a admin from the database.
|
|
func (db *DB) GetAdmin(ctx context.Context, id string) (*linkedca.Admin, error) {
|
|
data, err := db.getDBAdminBytes(ctx, id)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
adm, err := unmarshalAdmin(data, id)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
if adm.AuthorityId != db.authorityID {
|
|
return nil, mgmt.NewError(mgmt.ErrorAuthorityMismatchType,
|
|
"admin %s is not owned by authority %s", adm.Id, db.authorityID)
|
|
}
|
|
|
|
return adm, nil
|
|
}
|
|
|
|
// GetAdmins retrieves and unmarshals all active (not deleted) admins
|
|
// from the database.
|
|
// TODO should we be paginating?
|
|
func (db *DB) GetAdmins(ctx context.Context) ([]*linkedca.Admin, error) {
|
|
dbEntries, err := db.db.List(authorityAdminsTable)
|
|
if err != nil {
|
|
return nil, errors.Wrap(err, "error loading admins")
|
|
}
|
|
var admins = []*linkedca.Admin{}
|
|
for _, entry := range dbEntries {
|
|
adm, err := unmarshalAdmin(entry.Value, string(entry.Key))
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
if adm.AuthorityId != db.authorityID {
|
|
continue
|
|
}
|
|
admins = append(admins, adm)
|
|
}
|
|
return admins, nil
|
|
}
|
|
|
|
// CreateAdmin stores a new admin to the database.
|
|
func (db *DB) CreateAdmin(ctx context.Context, adm *linkedca.Admin) error {
|
|
var err error
|
|
adm.Id, err = randID()
|
|
if err != nil {
|
|
return mgmt.WrapErrorISE(err, "error generating random id for admin")
|
|
}
|
|
adm.AuthorityId = db.authorityID
|
|
|
|
dba := &dbAdmin{
|
|
ID: adm.Id,
|
|
AuthorityID: db.authorityID,
|
|
ProvisionerID: adm.ProvisionerId,
|
|
Subject: adm.Subject,
|
|
Type: adm.Type,
|
|
CreatedAt: clock.Now(),
|
|
}
|
|
|
|
return db.save(ctx, dba.ID, dba, nil, "admin", authorityAdminsTable)
|
|
}
|
|
|
|
// UpdateAdmin saves an updated admin to the database.
|
|
func (db *DB) UpdateAdmin(ctx context.Context, adm *linkedca.Admin) error {
|
|
old, err := db.getDBAdmin(ctx, adm.Id)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
nu := old.clone()
|
|
nu.Type = adm.Type
|
|
|
|
return db.save(ctx, old.ID, nu, old, "admin", authorityAdminsTable)
|
|
}
|
|
|
|
// DeleteAdmin saves an updated admin to the database.
|
|
func (db *DB) DeleteAdmin(ctx context.Context, id string) error {
|
|
old, err := db.getDBAdmin(ctx, id)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
nu := old.clone()
|
|
nu.DeletedAt = clock.Now()
|
|
|
|
return db.save(ctx, old.ID, nu, old, "admin", authorityAdminsTable)
|
|
}
|