mirror of
https://repository.entgra.net/community/device-mgt-core.git
synced 2025-10-06 02:01:45 +00:00
Refactoring oauth token handling functions and dependants
This commit is contained in:
parent
34edbce1a0
commit
d2ec81b12b
@ -31,7 +31,7 @@ var apiWrapperUtil = function () {
|
||||
log.error("Could not set up encoded tenant based client credentials " +
|
||||
"to session context. No username is found as input.");
|
||||
} else {
|
||||
var dynamicClientCredentials = tokenUtil.getDyanmicClientCredentials();
|
||||
var dynamicClientCredentials = tokenUtil.getDynamicClientCredentials();
|
||||
if (!dynamicClientCredentials) {
|
||||
log.error("Could not set up encoded tenant based client credentials " +
|
||||
"to session context as the server is unable to obtain dynamic client credentials.");
|
||||
|
||||
@ -43,7 +43,7 @@ var backendServiceInvoker = function () {
|
||||
privateMethods.getAccessToken = function () {
|
||||
var tokenPair = parse(session.get(constants["ACCESS_TOKEN_PAIR_IDENTIFIER"]));
|
||||
if (tokenPair) {
|
||||
return tokenPair.accessToken;
|
||||
return tokenPair["accessToken"];
|
||||
} else {
|
||||
return null;
|
||||
}
|
||||
@ -78,7 +78,7 @@ var backendServiceInvoker = function () {
|
||||
});
|
||||
} else {
|
||||
xmlHttpRequest.
|
||||
setRequestHeader(constants["AUTHORIZATION_HEADER"], constants["BEARER_PREFIX"] + accessToken);
|
||||
setRequestHeader(constants["AUTHORIZATION_HEADER"], constants["BEARER_PREFIX"] + accessToken);
|
||||
}
|
||||
}
|
||||
|
||||
@ -307,7 +307,7 @@ var backendServiceInvoker = function () {
|
||||
publicHTTPClientInvokers.get = function (url, successCallback, errorCallback) {
|
||||
var requestPayload = null;
|
||||
return privateMethods.
|
||||
initiateHTTPClientRequest(constants["HTTP_GET"], url, successCallback, errorCallback, requestPayload);
|
||||
initiateHTTPClientRequest(constants["HTTP_GET"], url, successCallback, errorCallback, requestPayload);
|
||||
};
|
||||
|
||||
/**
|
||||
@ -319,7 +319,7 @@ var backendServiceInvoker = function () {
|
||||
*/
|
||||
publicHTTPClientInvokers.post = function (url, payload, successCallback, errorCallback) {
|
||||
return privateMethods.
|
||||
initiateHTTPClientRequest(constants["HTTP_POST"], url, successCallback, errorCallback, payload);
|
||||
initiateHTTPClientRequest(constants["HTTP_POST"], url, successCallback, errorCallback, payload);
|
||||
};
|
||||
|
||||
/**
|
||||
@ -331,7 +331,7 @@ var backendServiceInvoker = function () {
|
||||
*/
|
||||
publicHTTPClientInvokers.put = function (url, payload, successCallback, errorCallback) {
|
||||
return privateMethods.
|
||||
initiateHTTPClientRequest(constants["HTTP_PUT"], url, successCallback, errorCallback, payload);
|
||||
initiateHTTPClientRequest(constants["HTTP_PUT"], url, successCallback, errorCallback, payload);
|
||||
};
|
||||
|
||||
/**
|
||||
@ -343,7 +343,7 @@ var backendServiceInvoker = function () {
|
||||
publicHTTPClientInvokers.delete = function (url, successCallback, errorCallback) {
|
||||
var requestPayload = null;
|
||||
return privateMethods.
|
||||
initiateHTTPClientRequest(constants["HTTP_DELETE"], url, successCallback, errorCallback, requestPayload);
|
||||
initiateHTTPClientRequest(constants["HTTP_DELETE"], url, successCallback, errorCallback, requestPayload);
|
||||
};
|
||||
|
||||
var publicMethods = {};
|
||||
|
||||
@ -27,7 +27,7 @@ var util = function () {
|
||||
var adminUser = devicemgtProps["adminUser"];
|
||||
var clientName = devicemgtProps["clientName"];
|
||||
|
||||
module.getDyanmicCredentials = function (owner) {
|
||||
module.getDynamicClientCredentials = function () {
|
||||
var payload = {
|
||||
"callbackUrl": devicemgtProps.callBackUrl,
|
||||
"clientName": clientName,
|
||||
|
||||
Loading…
Reference in New Issue
Block a user