mirror of
https://repository.entgra.net/community/device-mgt-core.git
synced 2025-10-06 02:01:45 +00:00
added constants for authentications types
This commit is contained in:
parent
55a95cca86
commit
84492d70ac
@ -20,6 +20,7 @@ var apiWrapperUtil = function () {
|
|||||||
var module = {};
|
var module = {};
|
||||||
var tokenUtil = require("/app/modules/util.js").util;
|
var tokenUtil = require("/app/modules/util.js").util;
|
||||||
var constants = require("/app/modules/constants.js");
|
var constants = require("/app/modules/constants.js");
|
||||||
|
var constants = require("/app/modules/constants.js");
|
||||||
|
|
||||||
module.refreshToken = function () {
|
module.refreshToken = function () {
|
||||||
var tokenPair = session.get(constants.ACCESS_TOKEN_PAIR_IDENTIFIER);
|
var tokenPair = session.get(constants.ACCESS_TOKEN_PAIR_IDENTIFIER);
|
||||||
@ -32,10 +33,10 @@ var apiWrapperUtil = function () {
|
|||||||
var clientData = tokenUtil.getDyanmicCredentials(properties);
|
var clientData = tokenUtil.getDyanmicCredentials(properties);
|
||||||
var encodedClientKeys = tokenUtil.encode(clientData.clientId + ":" + clientData.clientSecret);
|
var encodedClientKeys = tokenUtil.encode(clientData.clientId + ":" + clientData.clientSecret);
|
||||||
session.put(constants.ENCODED_CLIENT_KEYS_IDENTIFIER, encodedClientKeys);
|
session.put(constants.ENCODED_CLIENT_KEYS_IDENTIFIER, encodedClientKeys);
|
||||||
if (type == "password") {
|
if (type == constants.GRANT_TYPE_PASSWORD) {
|
||||||
tokenPair =
|
tokenPair =
|
||||||
tokenUtil.getTokenWithPasswordGrantType(properties.username, encodeURIComponent(properties.password), encodedClientKeys);
|
tokenUtil.getTokenWithPasswordGrantType(properties.username, encodeURIComponent(properties.password), encodedClientKeys);
|
||||||
} else if (type == "saml") {
|
} else if (type == constants.GRANT_TYPE_SAML) {
|
||||||
tokenPair = tokenUtil.
|
tokenPair = tokenUtil.
|
||||||
getTokenWithSAMLGrantType(properties.samlToken, encodedClientKeys, "PRODUCTION");
|
getTokenWithSAMLGrantType(properties.samlToken, encodedClientKeys, "PRODUCTION");
|
||||||
}
|
}
|
||||||
|
|||||||
@ -70,6 +70,9 @@ var HTTP_POST = "POST";
|
|||||||
var HTTP_PUT = "PUT";
|
var HTTP_PUT = "PUT";
|
||||||
var HTTP_DELETE = "DELETE";
|
var HTTP_DELETE = "DELETE";
|
||||||
|
|
||||||
|
var GRANT_TYPE_PASSWORD = "password";
|
||||||
|
var GRANT_TYPE_SAML = "saml";
|
||||||
|
|
||||||
var MQTT_QUEUE_CONFIG_NAME = "MQTT";
|
var MQTT_QUEUE_CONFIG_NAME = "MQTT";
|
||||||
|
|
||||||
var HTTP_CONFLICT = 409;
|
var HTTP_CONFLICT = 409;
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user