mirror of
https://github.com/smallstep/certificates.git
synced 2024-10-31 03:20:16 +00:00
42 lines
1.3 KiB
Go
42 lines
1.3 KiB
Go
|
package api
|
||
|
|
||
|
import (
|
||
|
"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 {
|
||
|
db admin.DB
|
||
|
auth *authority.Authority
|
||
|
}
|
||
|
|
||
|
// NewHandler returns a new Authority Config Handler.
|
||
|
func NewHandler(auth *authority.Authority) api.RouterHandler {
|
||
|
h := &Handler{db: auth.GetAdminDatabase(), auth: auth}
|
||
|
|
||
|
return h
|
||
|
}
|
||
|
|
||
|
// 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))
|
||
|
}
|