2021-05-03 19:48:20 +00:00
|
|
|
package api
|
|
|
|
|
|
|
|
import (
|
2021-07-22 21:48:41 +00:00
|
|
|
"github.com/smallstep/certificates/acme"
|
2021-05-03 19:48:20 +00:00
|
|
|
"github.com/smallstep/certificates/api"
|
|
|
|
"github.com/smallstep/certificates/authority"
|
|
|
|
"github.com/smallstep/certificates/authority/admin"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Handler is the ACME API request handler.
|
|
|
|
type Handler struct {
|
2021-07-22 21:48:41 +00:00
|
|
|
db admin.DB
|
|
|
|
auth *authority.Authority
|
|
|
|
acmeDB acme.DB
|
2021-05-03 19:48:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// NewHandler returns a new Authority Config Handler.
|
2021-07-22 21:48:41 +00:00
|
|
|
func NewHandler(auth *authority.Authority, adminDB admin.DB, acmeDB acme.DB) api.RouterHandler {
|
|
|
|
return &Handler{
|
|
|
|
db: adminDB,
|
|
|
|
auth: auth,
|
|
|
|
acmeDB: acmeDB,
|
|
|
|
}
|
2021-05-03 19:48:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Route traffic and implement the Router interface.
|
|
|
|
func (h *Handler) Route(r api.Router) {
|
|
|
|
authnz := func(next nextHTTP) nextHTTP {
|
|
|
|
return h.extractAuthorizeTokenAdmin(h.requireAPIEnabled(next))
|
|
|
|
}
|
|
|
|
|
|
|
|
// Provisioners
|
|
|
|
r.MethodFunc("GET", "/provisioners/{name}", authnz(h.GetProvisioner))
|
|
|
|
r.MethodFunc("GET", "/provisioners", authnz(h.GetProvisioners))
|
|
|
|
r.MethodFunc("POST", "/provisioners", authnz(h.CreateProvisioner))
|
|
|
|
r.MethodFunc("PUT", "/provisioners/{name}", authnz(h.UpdateProvisioner))
|
|
|
|
r.MethodFunc("DELETE", "/provisioners/{name}", authnz(h.DeleteProvisioner))
|
|
|
|
|
|
|
|
// Admins
|
|
|
|
r.MethodFunc("GET", "/admins/{id}", authnz(h.GetAdmin))
|
|
|
|
r.MethodFunc("GET", "/admins", authnz(h.GetAdmins))
|
|
|
|
r.MethodFunc("POST", "/admins", authnz(h.CreateAdmin))
|
|
|
|
r.MethodFunc("PATCH", "/admins/{id}", authnz(h.UpdateAdmin))
|
|
|
|
r.MethodFunc("DELETE", "/admins/{id}", authnz(h.DeleteAdmin))
|
2021-07-17 15:35:44 +00:00
|
|
|
|
|
|
|
// External Account Binding Keys
|
2021-07-22 20:43:21 +00:00
|
|
|
r.MethodFunc("POST", "/eak", authnz(h.CreateExternalAccountKey))
|
2021-05-03 19:48:20 +00:00
|
|
|
}
|