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 tokenUtil = require("/app/modules/util.js").util;
|
||||
var constants = require("/app/modules/constants.js");
|
||||
var constants = require("/app/modules/constants.js");
|
||||
|
||||
module.refreshToken = function () {
|
||||
var tokenPair = session.get(constants.ACCESS_TOKEN_PAIR_IDENTIFIER);
|
||||
@ -32,10 +33,10 @@ var apiWrapperUtil = function () {
|
||||
var clientData = tokenUtil.getDyanmicCredentials(properties);
|
||||
var encodedClientKeys = tokenUtil.encode(clientData.clientId + ":" + clientData.clientSecret);
|
||||
session.put(constants.ENCODED_CLIENT_KEYS_IDENTIFIER, encodedClientKeys);
|
||||
if (type == "password") {
|
||||
if (type == constants.GRANT_TYPE_PASSWORD) {
|
||||
tokenPair =
|
||||
tokenUtil.getTokenWithPasswordGrantType(properties.username, encodeURIComponent(properties.password), encodedClientKeys);
|
||||
} else if (type == "saml") {
|
||||
} else if (type == constants.GRANT_TYPE_SAML) {
|
||||
tokenPair = tokenUtil.
|
||||
getTokenWithSAMLGrantType(properties.samlToken, encodedClientKeys, "PRODUCTION");
|
||||
}
|
||||
|
||||
@ -49,7 +49,7 @@ var LANGUAGE_US = "en_US";
|
||||
var VENDOR_APPLE = "Apple";
|
||||
var ERRORS = {
|
||||
"USER_NOT_FOUND": "USER_NOT_FOUND"
|
||||
};
|
||||
};
|
||||
|
||||
var USER_STORES_NOISY_CHAR = "\"";
|
||||
var USER_STORES_SPLITTING_CHAR = "\\n";
|
||||
@ -70,6 +70,9 @@ var HTTP_POST = "POST";
|
||||
var HTTP_PUT = "PUT";
|
||||
var HTTP_DELETE = "DELETE";
|
||||
|
||||
var GRANT_TYPE_PASSWORD = "password";
|
||||
var GRANT_TYPE_SAML = "saml";
|
||||
|
||||
var MQTT_QUEUE_CONFIG_NAME = "MQTT";
|
||||
|
||||
var HTTP_CONFLICT = 409;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user