92 lines
3.4 KiB
Go
92 lines
3.4 KiB
Go
package web
|
|
|
|
import (
|
|
"errors"
|
|
"fmt"
|
|
|
|
berrors "github.com/letsencrypt/boulder/errors"
|
|
"github.com/letsencrypt/boulder/probs"
|
|
)
|
|
|
|
func problemDetailsForBoulderError(err *berrors.BoulderError, msg string) *probs.ProblemDetails {
|
|
var outProb *probs.ProblemDetails
|
|
|
|
switch err.Type {
|
|
case berrors.Malformed:
|
|
outProb = probs.Malformed(fmt.Sprintf("%s :: %s", msg, err))
|
|
case berrors.Unauthorized:
|
|
outProb = probs.Unauthorized(fmt.Sprintf("%s :: %s", msg, err))
|
|
case berrors.NotFound:
|
|
outProb = probs.NotFound(fmt.Sprintf("%s :: %s", msg, err))
|
|
case berrors.RateLimit:
|
|
outProb = probs.RateLimited(fmt.Sprintf("%s :: %s", msg, err))
|
|
case berrors.InternalServer:
|
|
// Internal server error messages may include sensitive data, so we do
|
|
// not include it.
|
|
outProb = probs.ServerInternal(msg)
|
|
case berrors.RejectedIdentifier:
|
|
outProb = probs.RejectedIdentifier(fmt.Sprintf("%s :: %s", msg, err))
|
|
case berrors.InvalidEmail:
|
|
outProb = probs.InvalidContact(fmt.Sprintf("%s :: %s", msg, err))
|
|
case berrors.CAA:
|
|
outProb = probs.CAA(fmt.Sprintf("%s :: %s", msg, err))
|
|
case berrors.MissingSCTs:
|
|
// MissingSCTs are an internal server error, but with a specific error
|
|
// message related to the SCT problem
|
|
outProb = probs.ServerInternal(fmt.Sprintf("%s :: %s", msg, "Unable to meet CA SCT embedding requirements"))
|
|
case berrors.OrderNotReady:
|
|
outProb = probs.OrderNotReady(fmt.Sprintf("%s :: %s", msg, err))
|
|
case berrors.BadPublicKey:
|
|
outProb = probs.BadPublicKey(fmt.Sprintf("%s :: %s", msg, err))
|
|
case berrors.BadCSR:
|
|
outProb = probs.BadCSR(fmt.Sprintf("%s :: %s", msg, err))
|
|
case berrors.AlreadyRevoked:
|
|
outProb = probs.AlreadyRevoked(fmt.Sprintf("%s :: %s", msg, err))
|
|
case berrors.BadRevocationReason:
|
|
outProb = probs.BadRevocationReason(fmt.Sprintf("%s :: %s", msg, err))
|
|
case berrors.UnsupportedContact:
|
|
outProb = probs.UnsupportedContact(fmt.Sprintf("%s :: %s", msg, err))
|
|
default:
|
|
// Internal server error messages may include sensitive data, so we do
|
|
// not include it.
|
|
outProb = probs.ServerInternal(msg)
|
|
}
|
|
|
|
if len(err.SubErrors) > 0 {
|
|
var subProbs []probs.SubProblemDetails
|
|
for _, subErr := range err.SubErrors {
|
|
subProbs = append(subProbs, subProblemDetailsForSubError(subErr, msg))
|
|
}
|
|
return outProb.WithSubProblems(subProbs)
|
|
}
|
|
|
|
return outProb
|
|
}
|
|
|
|
// ProblemDetailsForError turns an error into a ProblemDetails with the special
|
|
// case of returning the same error back if its already a ProblemDetails. If the
|
|
// error is of an type unknown to ProblemDetailsForError, it will return a
|
|
// ServerInternal ProblemDetails.
|
|
func ProblemDetailsForError(err error, msg string) *probs.ProblemDetails {
|
|
var probsProblemDetails *probs.ProblemDetails
|
|
var berrorsBoulderError *berrors.BoulderError
|
|
if errors.As(err, &probsProblemDetails) {
|
|
return probsProblemDetails
|
|
} else if errors.As(err, &berrorsBoulderError) {
|
|
return problemDetailsForBoulderError(berrorsBoulderError, msg)
|
|
} else {
|
|
// Internal server error messages may include sensitive data, so we do
|
|
// not include it.
|
|
return probs.ServerInternal(msg)
|
|
}
|
|
}
|
|
|
|
// subProblemDetailsForSubError converts a SubBoulderError into
|
|
// a SubProblemDetails using problemDetailsForBoulderError.
|
|
func subProblemDetailsForSubError(subErr berrors.SubBoulderError, msg string) probs.SubProblemDetails {
|
|
return probs.SubProblemDetails{
|
|
Identifier: subErr.Identifier,
|
|
ProblemDetails: *problemDetailsForBoulderError(subErr.BoulderError, msg),
|
|
}
|
|
}
|