File size: 2,904 Bytes
d6f631f | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 | package httpdriver
import (
"context"
"net/http"
"github.com/openmeterio/openmeter/openmeter/entitlement"
"github.com/openmeterio/openmeter/openmeter/productcatalog/feature"
"github.com/openmeterio/openmeter/openmeter/subscription"
subscriptionentitlement "github.com/openmeterio/openmeter/openmeter/subscription/entitlement"
"github.com/openmeterio/openmeter/pkg/framework/commonhttp"
"github.com/openmeterio/openmeter/pkg/framework/transport/httptransport/encoder"
"github.com/openmeterio/openmeter/pkg/models"
"github.com/openmeterio/openmeter/pkg/pagination"
)
func errorEncoder() encoder.ErrorEncoder {
return func(ctx context.Context, err error, w http.ResponseWriter, r *http.Request) bool {
issues, issueErr := models.AsValidationIssues(err)
if issueErr == nil && len(issues) > 0 {
mappedIssues, err := mapValidationIssueForAPI(issues)
if err != nil {
return false // Server dies if mapping fails
}
if commonhttp.HandleIssueIfHTTPStatusKnown(ctx, mappedIssues.AsError(), w) {
return true
}
}
// Generic errors
return commonhttp.HandleErrorIfTypeMatches[*pagination.InvalidError](ctx, http.StatusBadRequest, err, w) ||
// Subscription errors
commonhttp.HandleErrorIfTypeMatches[*subscription.PatchConflictError](ctx, http.StatusConflict, err, w) ||
commonhttp.HandleErrorIfTypeMatches[*subscription.PatchForbiddenError](ctx, http.StatusForbidden, err, w) ||
commonhttp.HandleErrorIfTypeMatches[*subscription.PatchValidationError](ctx, http.StatusBadRequest, err, w) ||
commonhttp.HandleErrorIfTypeMatches[*subscriptionentitlement.NotFoundError](ctx, http.StatusNotFound, err, w) ||
// dependency: entitlement
commonhttp.HandleErrorIfTypeMatches[*entitlement.NotFoundError](ctx, http.StatusNotFound, err, w) ||
commonhttp.HandleErrorIfTypeMatches[*entitlement.AlreadyExistsError](
ctx, http.StatusConflict, err, w,
func(specificErr *entitlement.AlreadyExistsError) map[string]interface{} {
return map[string]interface{}{
"conflictingEntityId": specificErr.EntitlementID,
}
}) ||
commonhttp.HandleErrorIfTypeMatches[*entitlement.InvalidValueError](ctx, http.StatusBadRequest, err, w) ||
commonhttp.HandleErrorIfTypeMatches[*entitlement.InvalidFeatureError](ctx, http.StatusBadRequest, err, w) ||
commonhttp.HandleErrorIfTypeMatches[*entitlement.WrongTypeError](ctx, http.StatusBadRequest, err, w) ||
// dependency: plan
commonhttp.HandleErrorIfTypeMatches[*feature.FeatureNotFoundError](ctx, http.StatusBadRequest, err, w)
}
}
func mapValidationIssueForAPI(issues models.ValidationIssues) (models.ValidationIssues, error) {
res := make(models.ValidationIssues, 0, len(issues))
for _, issue := range issues {
mapped, err := subscription.MapSubscriptionSpecValidationIssueField(issue)
if err != nil {
return res, err
}
res = append(res, mapped)
}
return res, nil
}
|