certificates/api/crl.go

53 lines
1.2 KiB
Go
Raw Normal View History

2021-10-30 07:52:50 +00:00
package api
import (
"encoding/pem"
2021-11-04 06:05:07 +00:00
"fmt"
"github.com/pkg/errors"
"net/http"
)
2021-10-30 07:52:50 +00:00
2021-11-04 06:05:07 +00:00
// CRL is an HTTP handler that returns the current CRL in DER or PEM format
2021-10-30 07:52:50 +00:00
func (h *caHandler) CRL(w http.ResponseWriter, r *http.Request) {
2021-11-04 06:05:07 +00:00
crlBytes, err := h.Authority.GetCertificateRevocationList()
_, formatAsPEM := r.URL.Query()["pem"]
2021-10-30 07:52:50 +00:00
if err != nil {
w.WriteHeader(500)
2021-11-04 06:05:07 +00:00
_, err = fmt.Fprintf(w, "%v\n", err)
if err != nil {
panic(errors.Wrap(err, "error writing http response"))
}
2021-10-30 07:52:50 +00:00
return
}
2021-11-04 06:05:07 +00:00
if crlBytes == nil {
w.WriteHeader(404)
_, err = fmt.Fprintln(w, "No CRL available")
if err != nil {
panic(errors.Wrap(err, "error writing http response"))
}
return
}
if formatAsPEM {
pemBytes := pem.EncodeToMemory(&pem.Block{
Type: "X509 CRL",
Bytes: crlBytes,
})
w.Header().Add("Content-Type", "application/x-pem-file")
w.Header().Add("Content-Disposition", "attachment; filename=\"crl.pem\"")
_, err = w.Write(pemBytes)
} else {
w.Header().Add("Content-Type", "application/pkix-crl")
w.Header().Add("Content-Disposition", "attachment; filename=\"crl.der\"")
_, err = w.Write(crlBytes)
}
2021-11-04 06:05:07 +00:00
if err != nil {
panic(errors.Wrap(err, "error writing http response"))
}
2021-10-30 07:52:50 +00:00
}