Auth error handling for non-json responses

This commit is contained in:
Mo Bitar
2017-12-21 12:49:28 -06:00
parent 5714a63a78
commit 8b7dd918a8

View File

@@ -101,7 +101,10 @@ angular.module('app.frontend')
callback(response);
}, function(response){
console.error("Error getting auth params", response);
callback(null);
if(typeof response !== 'object') {
response = {error: {message: "A server error occurred while trying to sign in. Please try again."}};
}
callback(response);
})
}
@@ -120,6 +123,11 @@ angular.module('app.frontend')
this.login = function(url, email, password, ephemeral, callback) {
this.getAuthParamsForEmail(url, email, function(authParams){
if(authParams.error) {
callback(authParams);
return;
}
if(!authParams || !authParams.pw_cost) {
callback({error : {message: "Invalid email or password."}});
return;
@@ -158,6 +166,9 @@ angular.module('app.frontend')
callback(response);
}.bind(this), function(response){
console.error("Error logging in", response);
if(typeof response !== 'object') {
response = {error: {message: "A server error occurred while trying to sign in. Please try again."}};
}
callback(response);
})
@@ -199,10 +210,12 @@ angular.module('app.frontend')
httpManager.postAbsolute(requestUrl, params, function(response){
this.setEphemeral(ephemeral);
this.handleAuthResponse(response, email, url, authParams, keys);
callback(response);
}.bind(this), function(response){
console.error("Registration error", response);
if(typeof response !== 'object') {
response = {error: {message: "A server error occurred while trying to register. Please try again."}};
}
callback(response);
}.bind(this))
}.bind(this));