|
|
@ -117,15 +117,44 @@ var invokers = function () {
|
|
|
|
log.debug("Response status : " + xmlHttpRequest.status);
|
|
|
|
log.debug("Response status : " + xmlHttpRequest.status);
|
|
|
|
log.debug("Response payload if any : " + xmlHttpRequest.responseText);
|
|
|
|
log.debug("Response payload if any : " + xmlHttpRequest.responseText);
|
|
|
|
|
|
|
|
|
|
|
|
if (xmlHttpRequest.status == 401 && (xmlHttpRequest.responseText == TOKEN_EXPIRED ||
|
|
|
|
if (xmlHttpRequest.status == 401) {
|
|
|
|
xmlHttpRequest.responseText == TOKEN_INVALID ) && count < 5) {
|
|
|
|
if ((xmlHttpRequest.responseText == TOKEN_EXPIRED ||
|
|
|
|
tokenUtil.refreshTokenPair();
|
|
|
|
xmlHttpRequest.responseText == TOKEN_INVALID ) && count < 5) {
|
|
|
|
return privateMethods.execute(httpMethod, requestPayload, endpoint, responseCallback, ++count, headers);
|
|
|
|
tokenUtil.refreshTokenPair();
|
|
|
|
} else {
|
|
|
|
return privateMethods.execute(httpMethod, requestPayload, endpoint, responseCallback, ++count, headers);
|
|
|
|
|
|
|
|
} else if (privateMethods.isInvalidCredential(xmlHttpRequest.responseText)) {
|
|
|
|
|
|
|
|
tokenUtil.refreshTokenPair();
|
|
|
|
|
|
|
|
return privateMethods.execute(httpMethod, requestPayload, endpoint, responseCallback, ++count, headers);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
} else {
|
|
|
|
return responseCallback(xmlHttpRequest);
|
|
|
|
return responseCallback(xmlHttpRequest);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
|
|
* This method verify whether the access token is expired using response payload.
|
|
|
|
|
|
|
|
* This is required when using API gateway.
|
|
|
|
|
|
|
|
* @param responsePayload response payload.
|
|
|
|
|
|
|
|
* return true if it is invalid otherwise false.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
privateMethods["isInvalidCredential"] =
|
|
|
|
|
|
|
|
function (responsePayload) {
|
|
|
|
|
|
|
|
if (responsePayload) {
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
|
|
|
payload = parse(responsePayload);
|
|
|
|
|
|
|
|
if (payload["fault"]["code"] == 900901) {
|
|
|
|
|
|
|
|
log.debug("Access token is invalid: " + payload["fault"]["code"]);
|
|
|
|
|
|
|
|
log.debug(payload["fault"]["description"]);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
} catch (err) {
|
|
|
|
|
|
|
|
// do nothing
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* This method add Oauth authentication header to outgoing XML-HTTP Requests if Oauth authentication is enabled.
|
|
|
|
* This method add Oauth authentication header to outgoing XML-HTTP Requests if Oauth authentication is enabled.
|
|
|
|
* @param httpMethod HTTP request type.
|
|
|
|
* @param httpMethod HTTP request type.
|
|
|
|