Send an HTTP/440 response instead of an HTTP/502 if an upstream provider rejects a "send verification code" request

This commit is contained in:
Jon Chambers
2023-08-02 14:33:28 -04:00
committed by Jon Chambers
parent 43fd8518c0
commit 5c31ef43c9
2 changed files with 4 additions and 2 deletions

View File

@@ -12,9 +12,11 @@ import org.whispersystems.textsecuregcm.registration.RegistrationServiceSenderEx
public class RegistrationServiceSenderExceptionMapper implements ExceptionMapper<RegistrationServiceSenderException> {
public static int REMOTE_SERVICE_REJECTED_REQUEST_STATUS = 440;
@Override
public Response toResponse(final RegistrationServiceSenderException exception) {
return Response.status(Response.Status.BAD_GATEWAY)
return Response.status(REMOTE_SERVICE_REJECTED_REQUEST_STATUS)
.entity(new SendVerificationCodeFailureResponse(exception.getReason(), exception.isPermanent()))
.build();
}