mirror of
https://repository.entgra.net/community/device-mgt-core.git
synced 2025-10-06 02:01:45 +00:00
remove tennent related token handlers
This commit is contained in:
parent
0da8847787
commit
4a5c99af78
@ -40,7 +40,7 @@ var handlers = function () {
|
|||||||
"as input - setupTokenPairByPasswordGrantType(x, y)");
|
"as input - setupTokenPairByPasswordGrantType(x, y)");
|
||||||
} else {
|
} else {
|
||||||
privateMethods.setUpEncodedTenantBasedClientAppCredentials(username);
|
privateMethods.setUpEncodedTenantBasedClientAppCredentials(username);
|
||||||
privateMethods.setUpEncodedTenantBasedWebSocketClientAppCredentials(username);
|
//privateMethods.setUpEncodedTenantBasedWebSocketClientAppCredentials(username);
|
||||||
var encodedClientAppCredentials = session.get(constants["ENCODED_TENANT_BASED_CLIENT_APP_CREDENTIALS"]);
|
var encodedClientAppCredentials = session.get(constants["ENCODED_TENANT_BASED_CLIENT_APP_CREDENTIALS"]);
|
||||||
if (!encodedClientAppCredentials) {
|
if (!encodedClientAppCredentials) {
|
||||||
throw new Error("{/app/modules/oauth/token-handlers.js} Could not set up access token pair by " +
|
throw new Error("{/app/modules/oauth/token-handlers.js} Could not set up access token pair by " +
|
||||||
@ -84,7 +84,7 @@ var handlers = function () {
|
|||||||
"as input - setupTokenPairBySamlGrantType(x, y)");
|
"as input - setupTokenPairBySamlGrantType(x, y)");
|
||||||
} else {
|
} else {
|
||||||
privateMethods.setUpEncodedTenantBasedClientAppCredentials(username);
|
privateMethods.setUpEncodedTenantBasedClientAppCredentials(username);
|
||||||
privateMethods.setUpEncodedTenantBasedWebSocketClientAppCredentials(username);
|
//privateMethods.setUpEncodedTenantBasedWebSocketClientAppCredentials(username);
|
||||||
var encodedClientAppCredentials = session.get(constants["ENCODED_TENANT_BASED_CLIENT_APP_CREDENTIALS"]);
|
var encodedClientAppCredentials = session.get(constants["ENCODED_TENANT_BASED_CLIENT_APP_CREDENTIALS"]);
|
||||||
if (!encodedClientAppCredentials) {
|
if (!encodedClientAppCredentials) {
|
||||||
throw new Error("{/app/modules/oauth/token-handlers.js} Could not set up access token pair " +
|
throw new Error("{/app/modules/oauth/token-handlers.js} Could not set up access token pair " +
|
||||||
@ -129,7 +129,7 @@ var handlers = function () {
|
|||||||
"as input - setupTokenPairBySamlGrantType(x, y)");
|
"as input - setupTokenPairBySamlGrantType(x, y)");
|
||||||
} else {
|
} else {
|
||||||
privateMethods.setUpEncodedTenantBasedClientAppCredentials(username);
|
privateMethods.setUpEncodedTenantBasedClientAppCredentials(username);
|
||||||
privateMethods.setUpEncodedTenantBasedWebSocketClientAppCredentials(username);
|
//privateMethods.setUpEncodedTenantBasedWebSocketClientAppCredentials(username);
|
||||||
var encodedClientAppCredentials = session.get(constants["ENCODED_TENANT_BASED_CLIENT_APP_CREDENTIALS"]);
|
var encodedClientAppCredentials = session.get(constants["ENCODED_TENANT_BASED_CLIENT_APP_CREDENTIALS"]);
|
||||||
if (!encodedClientAppCredentials) {
|
if (!encodedClientAppCredentials) {
|
||||||
throw new Error("{/app/modules/oauth/token-handlers.js} Could not set up access token pair " +
|
throw new Error("{/app/modules/oauth/token-handlers.js} Could not set up access token pair " +
|
||||||
@ -224,44 +224,44 @@ var handlers = function () {
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
privateMethods["setUpEncodedTenantBasedWebSocketClientAppCredentials"] = function (username) {
|
// privateMethods["setUpEncodedTenantBasedWebSocketClientAppCredentials"] = function (username) {
|
||||||
if (!username) {
|
// if (!username) {
|
||||||
throw new Error("{/app/modules/oauth/token-handlers.js} Could not set up encoded tenant based " +
|
// throw new Error("{/app/modules/oauth/token-handlers.js} Could not set up encoded tenant based " +
|
||||||
"client credentials to session context. No username of logged in user is found as " +
|
// "client credentials to session context. No username of logged in user is found as " +
|
||||||
"input - setUpEncodedTenantBasedWebSocketClientAppCredentials(x)");
|
// "input - setUpEncodedTenantBasedWebSocketClientAppCredentials(x)");
|
||||||
} else {
|
// } else {
|
||||||
if (devicemgtProps["gatewayEnabled"]) {
|
// if (devicemgtProps["gatewayEnabled"]) {
|
||||||
var tenantBasedWebSocketClientAppCredentials
|
// var tenantBasedWebSocketClientAppCredentials
|
||||||
= tokenUtil.getTenantBasedWebSocketClientAppCredentials(username);
|
// = tokenUtil.getTenantBasedWebSocketClientAppCredentials(username);
|
||||||
if (!tenantBasedWebSocketClientAppCredentials) {
|
// if (!tenantBasedWebSocketClientAppCredentials) {
|
||||||
throw new Error("{/app/modules/oauth/token-handlers.js} Could not set up encoded tenant " +
|
// throw new Error("{/app/modules/oauth/token-handlers.js} Could not set up encoded tenant " +
|
||||||
"based client credentials to session context as the server is unable " +
|
// "based client credentials to session context as the server is unable " +
|
||||||
"to obtain such credentials - setUpEncodedTenantBasedWebSocketClientAppCredentials(x)");
|
// "to obtain such credentials - setUpEncodedTenantBasedWebSocketClientAppCredentials(x)");
|
||||||
} else {
|
// } else {
|
||||||
var encodedTenantBasedWebSocketClientAppCredentials =
|
// var encodedTenantBasedWebSocketClientAppCredentials =
|
||||||
tokenUtil.encode(tenantBasedWebSocketClientAppCredentials["clientId"] + ":" +
|
// tokenUtil.encode(tenantBasedWebSocketClientAppCredentials["clientId"] + ":" +
|
||||||
tenantBasedWebSocketClientAppCredentials["clientSecret"]);
|
// tenantBasedWebSocketClientAppCredentials["clientSecret"]);
|
||||||
// setting up encoded tenant based client credentials to session context.
|
// // setting up encoded tenant based client credentials to session context.
|
||||||
session.put(constants["ENCODED_TENANT_BASED_WEB_SOCKET_CLIENT_CREDENTIALS"],
|
// session.put(constants["ENCODED_TENANT_BASED_WEB_SOCKET_CLIENT_CREDENTIALS"],
|
||||||
encodedTenantBasedWebSocketClientAppCredentials);
|
// encodedTenantBasedWebSocketClientAppCredentials);
|
||||||
}
|
// }
|
||||||
} else {
|
// } else {
|
||||||
var dynamicClientAppCredentials = tokenUtil.getDynamicClientAppCredentials();
|
// var dynamicClientAppCredentials = tokenUtil.getDynamicClientAppCredentials();
|
||||||
if (!dynamicClientAppCredentials) {
|
// if (!dynamicClientAppCredentials) {
|
||||||
throw new Error("{/app/modules/oauth/token-handlers.js} Could not set up encoded tenant based " +
|
// throw new Error("{/app/modules/oauth/token-handlers.js} Could not set up encoded tenant based " +
|
||||||
"client credentials to session context as the server is unable to obtain " +
|
// "client credentials to session context as the server is unable to obtain " +
|
||||||
"dynamic client credentials - setUpEncodedTenantBasedWebSocketClientAppCredentials(x)");
|
// "dynamic client credentials - setUpEncodedTenantBasedWebSocketClientAppCredentials(x)");
|
||||||
}
|
// }
|
||||||
var encodedTenantBasedWebSocketClientAppCredentials =
|
// var encodedTenantBasedWebSocketClientAppCredentials =
|
||||||
tokenUtil.encode(dynamicClientAppCredentials["clientId"] + ":" +
|
// tokenUtil.encode(dynamicClientAppCredentials["clientId"] + ":" +
|
||||||
dynamicClientAppCredentials["clientSecret"]);
|
// dynamicClientAppCredentials["clientSecret"]);
|
||||||
// setting up encoded tenant based client credentials to session context.
|
// // setting up encoded tenant based client credentials to session context.
|
||||||
session.put(constants["ENCODED_TENANT_BASED_WEB_SOCKET_CLIENT_CREDENTIALS"],
|
// session.put(constants["ENCODED_TENANT_BASED_WEB_SOCKET_CLIENT_CREDENTIALS"],
|
||||||
encodedTenantBasedWebSocketClientAppCredentials);
|
// encodedTenantBasedWebSocketClientAppCredentials);
|
||||||
}
|
// }
|
||||||
|
|
||||||
}
|
// }
|
||||||
};
|
// };
|
||||||
|
|
||||||
return publicMethods;
|
return publicMethods;
|
||||||
}();
|
}();
|
||||||
Loading…
Reference in New Issue
Block a user