@webex/webex-core 3.3.1-next.1 → 3.3.1-next.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -286,7 +286,7 @@ var Batcher = _webexPlugin.default.extend({
286
286
  fingerprintResponse: function fingerprintResponse(item) {
287
287
  throw new Error('fingerprintResponse() must be implemented');
288
288
  },
289
- version: "3.3.1-next.1"
289
+ version: "3.3.1-next.2"
290
290
  });
291
291
  var _default2 = exports.default = Batcher;
292
292
  //# sourceMappingURL=batcher.js.map
@@ -558,7 +558,7 @@ var Credentials = _webexPlugin.default.extend((_dec = (0, _common.oneFlight)({
558
558
  this.refresh();
559
559
  }
560
560
  },
561
- version: "3.3.1-next.1"
561
+ version: "3.3.1-next.2"
562
562
  }, ((0, _applyDecoratedDescriptor2.default)(_obj, "getUserToken", [_dec, _dec2], (0, _getOwnPropertyDescriptor.default)(_obj, "getUserToken"), _obj), (0, _applyDecoratedDescriptor2.default)(_obj, "initialize", [_dec3], (0, _getOwnPropertyDescriptor.default)(_obj, "initialize"), _obj), (0, _applyDecoratedDescriptor2.default)(_obj, "invalidate", [_common.oneFlight, _dec4], (0, _getOwnPropertyDescriptor.default)(_obj, "invalidate"), _obj), (0, _applyDecoratedDescriptor2.default)(_obj, "refresh", [_common.oneFlight, _dec5, _dec6], (0, _getOwnPropertyDescriptor.default)(_obj, "refresh"), _obj)), _obj)));
563
563
  var _default = exports.default = Credentials;
564
564
  //# sourceMappingURL=credentials.js.map
@@ -532,7 +532,7 @@ var Token = _webexPlugin.default.extend((_dec = (0, _common.oneFlight)({
532
532
  return res.body;
533
533
  });
534
534
  },
535
- version: "3.3.1-next.1"
535
+ version: "3.3.1-next.2"
536
536
  }, ((0, _applyDecoratedDescriptor2.default)(_obj, "downscope", [_dec], (0, _getOwnPropertyDescriptor.default)(_obj, "downscope"), _obj), (0, _applyDecoratedDescriptor2.default)(_obj, "refresh", [_common.oneFlight], (0, _getOwnPropertyDescriptor.default)(_obj, "refresh"), _obj), (0, _applyDecoratedDescriptor2.default)(_obj, "revoke", [_common.oneFlight], (0, _getOwnPropertyDescriptor.default)(_obj, "revoke"), _obj)), _obj)));
537
537
  var _default = exports.default = Token;
538
538
  //# sourceMappingURL=token.js.map
@@ -11,13 +11,11 @@ _Object$defineProperty(exports, "__esModule", {
11
11
  value: true
12
12
  });
13
13
  exports.default = exports.DEFAULT_CLUSTER_SERVICE = exports.DEFAULT_CLUSTER = void 0;
14
- var _toConsumableArray2 = _interopRequireDefault(require("@babel/runtime-corejs2/helpers/toConsumableArray"));
15
14
  var _slicedToArray2 = _interopRequireDefault(require("@babel/runtime-corejs2/helpers/slicedToArray"));
16
15
  var _defineProperty2 = _interopRequireDefault(require("@babel/runtime-corejs2/helpers/defineProperty"));
17
16
  var _weakMap = _interopRequireDefault(require("@babel/runtime-corejs2/core-js/weak-map"));
18
17
  var _keys = _interopRequireDefault(require("@babel/runtime-corejs2/core-js/object/keys"));
19
18
  var _promise = _interopRequireDefault(require("@babel/runtime-corejs2/core-js/promise"));
20
- var _url = _interopRequireDefault(require("url"));
21
19
  var _sha = _interopRequireDefault(require("crypto-js/sha256"));
22
20
  var _lodash = require("lodash");
23
21
  var _webexPlugin = _interopRequireDefault(require("../webex-plugin"));
@@ -677,55 +675,64 @@ var Services = _webexPlugin.default.extend({
677
675
  */
678
676
  _formatReceivedHostmap: function _formatReceivedHostmap(serviceHostmap) {
679
677
  this._updateHostCatalog(serviceHostmap.hostCatalog);
680
- // map the host catalog items to a formatted hostmap
681
- var formattedHostmap = (0, _keys.default)(serviceHostmap.hostCatalog).reduce(function (accumulator, key) {
682
- var _serviceItem$hosts;
683
- if (serviceHostmap.hostCatalog[key].length === 0) {
684
- return accumulator;
685
- }
686
- var serviceName = serviceHostmap.hostCatalog[key][0].id.split(':')[3];
687
- var defaultUrl = serviceHostmap.serviceLinks[serviceName];
688
- var serviceItem = accumulator.find(function (item) {
689
- return item.name === serviceName;
690
- });
691
- if (!serviceItem) {
692
- serviceItem = {
693
- name: serviceName,
694
- defaultUrl: defaultUrl,
695
- defaultHost: _url.default.parse(defaultUrl).hostname,
696
- hosts: []
697
- };
698
- accumulator.push(serviceItem);
678
+ var extractId = function extractId(entry) {
679
+ return entry.id.split(':')[3];
680
+ };
681
+ var formattedHostmap = [];
682
+
683
+ // for each of the services in the serviceLinks, find the matching host in the catalog
684
+ (0, _keys.default)(serviceHostmap.serviceLinks).forEach(function (serviceName) {
685
+ var _formattedHost$hosts;
686
+ var serviceUrl = serviceHostmap.serviceLinks[serviceName];
687
+ var host;
688
+ try {
689
+ host = new URL(serviceUrl).host;
690
+ } catch (e) {
691
+ return;
699
692
  }
700
- (_serviceItem$hosts = serviceItem.hosts).push.apply(_serviceItem$hosts, [
701
- // map the default key as a low priority default for cluster matching
702
- {
703
- host: key,
704
- ttl: -1,
705
- priority: 10,
706
- id: serviceHostmap.hostCatalog[key][0].id,
707
- homeCluster: serviceItem.defaultHost === key
708
- }].concat((0, _toConsumableArray2.default)(serviceHostmap.hostCatalog[key].map(function (host) {
709
- return _objectSpread(_objectSpread({}, host), {}, {
710
- homeCluster: serviceItem.defaultHost === key
711
- });
712
- }))));
713
- return accumulator;
714
- }, []);
693
+ var matchingCatalogEntry = serviceHostmap.hostCatalog[host];
694
+ var formattedHost = {
695
+ name: serviceName,
696
+ defaultUrl: serviceUrl,
697
+ defaultHost: host,
698
+ hosts: []
699
+ };
700
+ formattedHostmap.push(formattedHost);
715
701
 
716
- // append service links that do not exist in the host catalog
717
- (0, _keys.default)(serviceHostmap.serviceLinks).forEach(function (key) {
718
- var service = formattedHostmap.find(function (item) {
719
- return item.name === key;
702
+ // If the catalog does not have any hosts we will be unable to find the service ID
703
+ // so can't search for other hosts
704
+ if (!matchingCatalogEntry || !matchingCatalogEntry[0]) {
705
+ return;
706
+ }
707
+ var serviceId = extractId(matchingCatalogEntry[0]);
708
+ (0, _lodash.forEach)(matchingCatalogEntry, function (entry) {
709
+ // The ids for all hosts within a hostCatalog entry should be the same
710
+ // but for safety, only add host entries that have the same id as the first one
711
+ if (extractId(entry) === serviceId) {
712
+ formattedHost.hosts.push(_objectSpread(_objectSpread({}, entry), {}, {
713
+ homeCluster: true
714
+ }));
715
+ }
720
716
  });
721
- if (!service) {
722
- formattedHostmap.push({
723
- name: key,
724
- defaultUrl: serviceHostmap.serviceLinks[key],
725
- defaultHost: _url.default.parse(serviceHostmap.serviceLinks[key]).hostname,
726
- hosts: []
717
+ var otherHosts = [];
718
+
719
+ // find the services in the host catalog that have the same id
720
+ // and add them to the otherHosts
721
+ (0, _lodash.forEach)(serviceHostmap.hostCatalog, function (entry) {
722
+ // exclude the matching catalog entry as we have already added that
723
+ if (entry === matchingCatalogEntry) {
724
+ return;
725
+ }
726
+ (0, _lodash.forEach)(entry, function (entryHost) {
727
+ // only add hosts that have the correct id
728
+ if (extractId(entryHost) === serviceId) {
729
+ otherHosts.push(_objectSpread(_objectSpread({}, entryHost), {}, {
730
+ homeCluster: false
731
+ }));
732
+ }
727
733
  });
728
- }
734
+ });
735
+ (_formattedHost$hosts = formattedHost.hosts).push.apply(_formattedHost$hosts, otherHosts);
729
736
  });
730
737
 
731
738
  // update all the service urls in the host catalog
@@ -1027,7 +1034,7 @@ var Services = _webexPlugin.default.extend({
1027
1034
  }
1028
1035
  });
1029
1036
  },
1030
- version: "3.3.1-next.1"
1037
+ version: "3.3.1-next.2"
1031
1038
  });
1032
1039
  /* eslint-enable no-underscore-dangle */
1033
1040
  var _default = exports.default = Services;
@@ -1 +1 @@
1
- {"version":3,"names":["_url","_interopRequireDefault","require","_sha","_lodash","_webexPlugin","_metrics","_serviceCatalog","_serviceRegistry","_serviceState","_serviceFedRamp","_constants","ownKeys","e","r","t","_Object$keys2","_Object$getOwnPropertySymbols","o","filter","_Object$getOwnPropertyDescriptor","enumerable","push","apply","_objectSpread","arguments","length","Object","forEach","_defineProperty2","default","_Object$getOwnPropertyDescriptors","_Object$defineProperties","_Object$defineProperty","trailingSlashes","DEFAULT_CLUSTER","exports","DEFAULT_CLUSTER_SERVICE","CLUSTER_SERVICE","process","env","WEBEX_CONVERSATION_CLUSTER_SERVICE","DEFAULT_CLUSTER_IDENTIFIER","WEBEX_CONVERSATION_DEFAULT_CLUSTER","concat","Services","WebexPlugin","extend","namespace","registries","_weakMap","states","props","validateDomains","initFailed","_catalogs","_serviceUrls","_hostCatalog","getRegistry","get","webex","getState","_getCatalog","name","priorityHost","serviceGroup","catalog","hasService","serviceName","hasAllowedDomains","getAllowedDomains","list","markFailedUrl","url","noPriorityHosts","_updateServiceUrls","serviceUrls","_updateHostCatalog","hostCatalog","updateServices","_this","_ref","undefined","from","query","token","forceRefresh","formattedQuery","status","collecting","waitForCatalog","queryKey","_keys","includes","_promise","reject","Error","email","emailhash","sha256","toLowerCase","toString","_fetchNewServiceHostmap","then","serviceHostMap","updateServiceUrls","updateCredentialsConfig","catch","error","validateUser","_ref2","_this2","_ref2$reqId","reqId","_ref2$forceRefresh","_ref2$activationOptio","activationOptions","preloginUserId","logger","info","canAuthorize","credentials","getUserToken","sendUserActivation","userObj","activated","exists","details","user","_this$webex$credentia","config","client_id","client_secret","collectPreauthCatalog","idbrokerService","getClientToken","uri","scope","tokenObj","collectSigninCatalog","rto","all","_ref3","_ref4","_slicedToArray2","response","statusCode","responseText","body","message","getMeetingPreferences","_this3","request","method","service","resource","res","err","fetchClientRegionInfo","_this4","addAuthHeader","headers","timeout","_ref5","_this5","countryCode","timezone","clientRegionInfo","accept","authorization","timeZone","shouldRefreshAccessToken","_ref6","mode","_ref7","_this$list","idbroker","identity","_this$webex$config$cr","authorizationString","authorizeUrl","replace","setConfig","supertoken","access_token","postauth","ready","preauth","initServiceCatalogs","waitForService","_ref8","_this6","_ref8$timeout","services","fetchFromServiceUrl","servicesNotNeedValidation","find","resolve","priorityUrl","priorityUrlObj","getServiceFromUrl","isReady","internal","metrics","submitClientMetrics","METRICS","JS_SDK_SERVICE_NOT_FOUND","fields","service_name","groupsToCheck","checkCatalog","catalogGroup","scopedPriorityUrl","scopedPrioriryUrlObj","map","group","_formatReceivedHostmap","serviceHostmap","formattedHostmap","reduce","accumulator","key","_serviceItem$hosts","id","split","defaultUrl","serviceLinks","serviceItem","item","defaultHost","Url","parse","hostname","hosts","host","ttl","priority","homeCluster","_toConsumableArray2","getClusterId","findClusterId","getServiceFromClusterId","params","findServiceFromClusterId","getServiceUrlFromClusterId","_ref9","_ref9$cluster","cluster","clusterId","_ref10","findServiceUrlFromUrl","isServiceUrl","isAllowedDomainUrl","findAllowedDomain","convertUrlToPriorityHostUrl","data","_this7","_ref11","qs","format","timestamp","Date","getTime","requestObject","newMetrics","callDiagnosticLatencies","measureLatency","_ref12","initConfig","_this$webex$config","fedramp","discovery","fedRampServices","formattedDiscoveryServices","override","formattedOverrideServices","allowedDomains","union","COMMERCIAL_ALLOWED_DOMAINS","setAllowedDomains","_this8","getOrgId","orgId","warn","initialize","_this9","ServiceCatalog","registry","ServiceRegistry","state","ServiceState","set","listenToOnce","version","_default"],"sources":["services.js"],"sourcesContent":["import Url from 'url';\n\nimport sha256 from 'crypto-js/sha256';\n\nimport {union} from 'lodash';\nimport WebexPlugin from '../webex-plugin';\n\nimport METRICS from './metrics';\nimport ServiceCatalog from './service-catalog';\nimport ServiceRegistry from './service-registry';\nimport ServiceState from './service-state';\nimport fedRampServices from './service-fed-ramp';\nimport {COMMERCIAL_ALLOWED_DOMAINS} from './constants';\n\nconst trailingSlashes = /(?:^\\/)|(?:\\/$)/;\n\n// The default cluster when one is not provided (usually as 'US' from hydra)\nexport const DEFAULT_CLUSTER = 'urn:TEAM:us-east-2_a';\n// The default service name for convo (currently identityLookup due to some weird CSB issue)\nexport const DEFAULT_CLUSTER_SERVICE = 'identityLookup';\n\nconst CLUSTER_SERVICE = process.env.WEBEX_CONVERSATION_CLUSTER_SERVICE || DEFAULT_CLUSTER_SERVICE;\nconst DEFAULT_CLUSTER_IDENTIFIER =\n process.env.WEBEX_CONVERSATION_DEFAULT_CLUSTER || `${DEFAULT_CLUSTER}:${CLUSTER_SERVICE}`;\n\n/* eslint-disable no-underscore-dangle */\n/**\n * @class\n */\nconst Services = WebexPlugin.extend({\n namespace: 'Services',\n\n /**\n * The {@link WeakMap} of {@link ServiceRegistry} class instances that are\n * keyed with WebexCore instances.\n *\n * @instance\n * @type {WeakMap<WebexCore, ServiceRegistry>}\n * @private\n * @memberof Services\n */\n registries: new WeakMap(),\n\n /**\n * The {@link WeakMap} of {@link ServiceState} class instances that are\n * keyed with WebexCore instances.\n *\n * @instance\n * @type {WeakMap<WebexCore, ServiceState>}\n * @private\n * @memberof Services\n */\n states: new WeakMap(),\n\n props: {\n validateDomains: ['boolean', false, true],\n initFailed: ['boolean', false, false],\n },\n\n _catalogs: new WeakMap(),\n\n _serviceUrls: null,\n\n _hostCatalog: null,\n\n /**\n * Get the registry associated with this webex instance.\n *\n * @private\n * @memberof Services\n * @returns {ServiceRegistry} - The associated {@link ServiceRegistry}.\n */\n getRegistry() {\n return this.registries.get(this.webex);\n },\n\n /**\n * Get the state associated with this webex instance.\n *\n * @private\n * @memberof Services\n * @returns {ServiceState} - The associated {@link ServiceState}.\n */\n getState() {\n return this.states.get(this.webex);\n },\n\n /**\n * @private\n * Get the current catalog based on the assocaited\n * webex instance.\n * @returns {ServiceCatalog}\n */\n _getCatalog() {\n return this._catalogs.get(this.webex);\n },\n\n /**\n * Get a service url from the current services list by name\n * from the associated instance catalog.\n * @param {string} name\n * @param {boolean} [priorityHost]\n * @param {string} [serviceGroup]\n * @returns {string|undefined}\n */\n get(name, priorityHost, serviceGroup) {\n const catalog = this._getCatalog();\n\n return catalog.get(name, priorityHost, serviceGroup);\n },\n\n /**\n * Determine if the catalog contains a specific service\n *\n * @param {string} serviceName - The service name to validate.\n * @returns {boolean} - True if the service exists.\n */\n hasService(serviceName) {\n return !!this.get(serviceName);\n },\n\n /**\n * Determine if a whilelist exists in the service catalog.\n *\n * @returns {boolean} - True if a allowed domains list exists.\n */\n hasAllowedDomains() {\n const catalog = this._getCatalog();\n\n return catalog.getAllowedDomains().length > 0;\n },\n\n /**\n * Generate a service catalog as an object from\n * the associated instance catalog.\n * @param {boolean} [priorityHost] - use highest priority host if set to `true`\n * @param {string} [serviceGroup]\n * @returns {Record<string, string>}\n */\n list(priorityHost, serviceGroup) {\n const catalog = this._getCatalog();\n\n return catalog.list(priorityHost, serviceGroup);\n },\n\n /**\n * Mark a priority host service url as failed.\n * This will mark the host associated with the\n * `ServiceUrl` to be removed from the its\n * respective host array, and then return the next\n * viable host from the `ServiceUrls` host array,\n * or the `ServiceUrls` default url if no other priority\n * hosts are available, or if `noPriorityHosts` is set to\n * `true`.\n * @param {string} url\n * @param {boolean} noPriorityHosts\n * @returns {string}\n */\n markFailedUrl(url, noPriorityHosts) {\n const catalog = this._getCatalog();\n\n return catalog.markFailedUrl(url, noPriorityHosts);\n },\n\n /**\n * saves all the services from the pre and post catalog service\n * @param {Object} serviceUrls\n * @returns {void}\n */\n _updateServiceUrls(serviceUrls) {\n this._serviceUrls = {...this._serviceUrls, ...serviceUrls};\n },\n\n /**\n * saves the hostCatalog object\n * @param {Object} hostCatalog\n * @returns {void}\n */\n _updateHostCatalog(hostCatalog) {\n this._hostCatalog = {...this._hostCatalog, ...hostCatalog};\n },\n\n /**\n * Update a list of `serviceUrls` to the most current\n * catalog via the defined `discoveryUrl` then returns the current\n * list of services.\n * @param {object} [param]\n * @param {string} [param.from] - This accepts `limited` or `signin`\n * @param {object} [param.query] - This accepts `email`, `orgId` or `userId` key values\n * @param {string} [param.query.email] - must be a standard-format email\n * @param {string} [param.query.orgId] - must be an organization id\n * @param {string} [param.query.userId] - must be a user id\n * @param {string} [param.token] - used for signin catalog\n * @returns {Promise<object>}\n */\n updateServices({from, query, token, forceRefresh} = {}) {\n const catalog = this._getCatalog();\n let formattedQuery;\n let serviceGroup;\n\n // map catalog name to service group name.\n switch (from) {\n case 'limited':\n serviceGroup = 'preauth';\n break;\n case 'signin':\n serviceGroup = 'signin';\n break;\n default:\n serviceGroup = 'postauth';\n break;\n }\n\n // confirm catalog update for group is not in progress.\n if (catalog.status[serviceGroup].collecting) {\n return this.waitForCatalog(serviceGroup);\n }\n\n catalog.status[serviceGroup].collecting = true;\n\n if (serviceGroup === 'preauth') {\n const queryKey = query && Object.keys(query)[0];\n\n if (!['email', 'emailhash', 'userId', 'orgId', 'mode'].includes(queryKey)) {\n return Promise.reject(\n new Error('a query param of email, emailhash, userId, orgId, or mode is required')\n );\n }\n }\n // encode email when query key is email\n if (serviceGroup === 'preauth' || serviceGroup === 'signin') {\n const queryKey = Object.keys(query)[0];\n\n formattedQuery = {};\n\n if (queryKey === 'email' && query.email) {\n formattedQuery.emailhash = sha256(query.email.toLowerCase()).toString();\n } else {\n formattedQuery[queryKey] = query[queryKey];\n }\n }\n\n return this._fetchNewServiceHostmap({\n from,\n token,\n query: formattedQuery,\n forceRefresh,\n })\n .then((serviceHostMap) => {\n catalog.updateServiceUrls(serviceGroup, serviceHostMap);\n this.updateCredentialsConfig();\n catalog.status[serviceGroup].collecting = false;\n })\n .catch((error) => {\n catalog.status[serviceGroup].collecting = false;\n\n return Promise.reject(error);\n });\n },\n\n /**\n * User validation parameter transfer object for {@link validateUser}.\n * @param {object} ValidateUserPTO\n * @property {string} ValidateUserPTO.email - The email of the user.\n * @property {string} [ValidateUserPTO.reqId] - The activation requester.\n * @property {object} [ValidateUserPTO.activationOptions] - Extra options to pass when sending the activation\n * @property {object} [ValidateUserPTO.preloginUserId] - The prelogin user id to set when sending the activation.\n */\n\n /**\n * User validation return transfer object for {@link validateUser}.\n * @param {object} ValidateUserRTO\n * @property {boolean} ValidateUserRTO.activated - If the user is activated.\n * @property {boolean} ValidateUserRTO.exists - If the user exists.\n * @property {string} ValidateUserRTO.details - A descriptive status message.\n * @property {object} ValidateUserRTO.user - **License** service user object.\n */\n\n /**\n * Validate if a user is activated and update the service catalogs as needed\n * based on the user's activation status.\n *\n * @param {ValidateUserPTO} - The parameter transfer object.\n * @returns {ValidateUserRTO} - The return transfer object.\n */\n validateUser({\n email,\n reqId = 'WEBCLIENT',\n forceRefresh = false,\n activationOptions = {},\n preloginUserId,\n }) {\n this.logger.info('services: validating a user');\n\n // Validate that an email parameter key was provided.\n if (!email) {\n return Promise.reject(new Error('`email` is required'));\n }\n\n // Destructure the credentials object.\n const {canAuthorize} = this.webex.credentials;\n\n // Validate that the user is already authorized.\n if (canAuthorize) {\n return this.updateServices({forceRefresh})\n .then(() => this.webex.credentials.getUserToken())\n .then((token) =>\n this.sendUserActivation({\n email,\n reqId,\n token: token.toString(),\n activationOptions,\n preloginUserId,\n })\n )\n .then((userObj) => ({\n activated: true,\n exists: true,\n details: 'user is authorized via a user token',\n user: userObj,\n }));\n }\n\n // Destructure the client authorization details.\n /* eslint-disable camelcase */\n const {client_id, client_secret} = this.webex.credentials.config;\n\n // Validate that client authentication details exist.\n if (!client_id || !client_secret) {\n return Promise.reject(new Error('client authentication details are not available'));\n }\n /* eslint-enable camelcase */\n\n // Declare a class-memeber-scoped token for usage within the promise chain.\n let token;\n\n // Begin client authentication user validation.\n return (\n this.collectPreauthCatalog({email})\n .then(() => {\n // Retrieve the service url from the updated catalog. This is required\n // since `WebexCore` is usually not fully initialized at the time this\n // request completes.\n const idbrokerService = this.get('idbroker', true);\n\n // Collect the client auth token.\n return this.webex.credentials.getClientToken({\n uri: `${idbrokerService}idb/oauth2/v1/access_token`,\n scope: 'webexsquare:admin webexsquare:get_conversation Identity:SCIM',\n });\n })\n .then((tokenObj) => {\n // Generate the token string.\n token = tokenObj.toString();\n\n // Collect the signin catalog using the client auth information.\n return this.collectSigninCatalog({email, token, forceRefresh});\n })\n // Validate if collecting the signin catalog failed and populate the RTO\n // with the appropriate content.\n .catch((error) => ({\n exists: error.name !== 'NotFound',\n activated: false,\n details:\n error.name !== 'NotFound'\n ? 'user exists but is not activated'\n : 'user does not exist and is not activated',\n }))\n // Validate if the previous promise resolved with an RTO and populate the\n // new RTO accordingly.\n .then((rto) =>\n Promise.all([\n rto || {\n activated: true,\n exists: true,\n details: 'user exists and is activated',\n },\n this.sendUserActivation({\n email,\n reqId,\n token,\n activationOptions,\n preloginUserId,\n }),\n ])\n )\n .then(([rto, user]) => ({...rto, user}))\n .catch((error) => {\n const response = {\n statusCode: error.statusCode,\n responseText: error.body && error.body.message,\n body: error.body,\n };\n\n return Promise.reject(response);\n })\n );\n },\n\n /**\n * Get user meeting preferences (preferred webex site).\n *\n * @returns {object} - User Information including user preferrences .\n */\n getMeetingPreferences() {\n return this.request({\n method: 'GET',\n service: 'hydra',\n resource: 'meetingPreferences',\n })\n .then((res) => {\n this.logger.info('services: received user region info');\n\n return res.body;\n })\n .catch((err) => {\n this.logger.info('services: was not able to fetch user login information', err);\n // resolve successfully even if request failed\n });\n },\n\n /**\n * Fetches client region info such as countryCode and timezone.\n *\n * @returns {object} - The region info object.\n */\n fetchClientRegionInfo() {\n return this.request({\n uri: 'https://ds.ciscospark.com/v1/region',\n addAuthHeader: false,\n headers: {\n 'spark-user-agent': null,\n },\n timeout: 5000,\n })\n .then((res) => {\n this.logger.info('services: received user region info');\n\n return res.body;\n })\n .catch((err) => {\n this.logger.info('services: was not able to get user region info', err);\n // resolve successfully even if request failed\n });\n },\n\n /**\n * User activation parameter transfer object for {@link sendUserActivation}.\n * @typedef {object} SendUserActivationPTO\n * @property {string} SendUserActivationPTO.email - The email of the user.\n * @property {string} SendUserActivationPTO.reqId - The activation requester.\n * @property {string} SendUserActivationPTO.token - The client auth token.\n * @property {object} SendUserActivationPTO.activationOptions - Extra options to pass when sending the activation.\n * @property {object} SendUserActivationPTO.preloginUserId - The prelogin user id to set when sending the activation.\n */\n\n /**\n * Send a request to activate a user using a client token.\n *\n * @param {SendUserActivationPTO} - The Parameter transfer object.\n * @returns {LicenseDTO} - The DTO returned from the **License** service.\n */\n sendUserActivation({email, reqId, token, activationOptions, preloginUserId}) {\n this.logger.info('services: sending user activation request');\n let countryCode;\n let timezone;\n\n // try to fetch client region info first\n return (\n this.fetchClientRegionInfo()\n .then((clientRegionInfo) => {\n if (clientRegionInfo) {\n ({countryCode, timezone} = clientRegionInfo);\n }\n\n // Send the user activation request to the **License** service.\n return this.request({\n service: 'license',\n resource: 'users/activations',\n method: 'POST',\n headers: {\n accept: 'application/json',\n authorization: token,\n 'x-prelogin-userid': preloginUserId,\n },\n body: {\n email,\n reqId,\n countryCode,\n timeZone: timezone,\n ...activationOptions,\n },\n shouldRefreshAccessToken: false,\n });\n })\n // On success, return the **License** user object.\n .then(({body}) => body)\n // On failure, reject with error from **License**.\n .catch((error) => Promise.reject(error))\n );\n },\n\n /**\n * simplified method to update the preauth catalog via email\n *\n * @param {object} query\n * @param {string} query.email - A standard format email.\n * @param {string} query.orgId - The user's OrgId.\n * @param {boolean} forceRefresh - Boolean to bypass u2c cache control header\n * @returns {Promise<void>}\n */\n collectPreauthCatalog(query, forceRefresh = false) {\n if (!query) {\n return this.updateServices({\n from: 'limited',\n query: {mode: 'DEFAULT_BY_PROXIMITY'},\n forceRefresh,\n });\n }\n\n return this.updateServices({from: 'limited', query, forceRefresh});\n },\n\n /**\n * simplified method to update the signin catalog via email and token\n * @param {object} param\n * @param {string} param.email - must be a standard-format email\n * @param {string} param.token - must be a client token\n * @returns {Promise<void>}\n */\n collectSigninCatalog({email, token, forceRefresh} = {}) {\n if (!email) {\n return Promise.reject(new Error('`email` is required'));\n }\n if (!token) {\n return Promise.reject(new Error('`token` is required'));\n }\n\n return this.updateServices({\n from: 'signin',\n query: {email},\n token,\n forceRefresh,\n });\n },\n\n /**\n * Updates credentials config to utilize u2c catalog\n * urls.\n * @returns {void}\n */\n updateCredentialsConfig() {\n const {idbroker, identity} = this.list(true);\n\n if (idbroker && identity) {\n const {authorizationString, authorizeUrl} = this.webex.config.credentials;\n\n // This must be set outside of the setConfig method used to assign the\n // idbroker and identity url values.\n this.webex.config.credentials.authorizeUrl = authorizationString\n ? authorizeUrl\n : `${idbroker.replace(trailingSlashes, '')}/idb/oauth2/v1/authorize`;\n\n this.webex.setConfig({\n credentials: {\n idbroker: {\n url: idbroker.replace(trailingSlashes, ''), // remove trailing slash\n },\n identity: {\n url: identity.replace(trailingSlashes, ''), // remove trailing slash\n },\n },\n });\n }\n },\n\n /**\n * Wait until the service catalog is available,\n * or reject afte ra timeout of 60 seconds.\n * @param {string} serviceGroup\n * @param {number} [timeout] - in seconds\n * @returns {Promise<void>}\n */\n waitForCatalog(serviceGroup, timeout) {\n const catalog = this._getCatalog();\n const {supertoken} = this.webex.credentials;\n\n if (\n serviceGroup === 'postauth' &&\n supertoken &&\n supertoken.access_token &&\n !catalog.status.postauth.collecting &&\n !catalog.status.postauth.ready\n ) {\n if (!catalog.status.preauth.ready) {\n return this.initServiceCatalogs();\n }\n\n return this.updateServices();\n }\n\n return catalog.waitForCatalog(serviceGroup, timeout);\n },\n\n /**\n * Service waiting parameter transfer object for {@link waitForService}.\n *\n * @typedef {object} WaitForServicePTO\n * @property {string} [WaitForServicePTO.name] - The service name.\n * @property {string} [WaitForServicePTO.url] - The service url.\n * @property {string} [WaitForServicePTO.timeout] - wait duration in seconds.\n */\n\n /**\n * Wait until the service has been ammended to any service catalog. This\n * method prioritizes the service name over the service url when searching.\n *\n * @param {WaitForServicePTO} - The parameter transfer object.\n * @returns {Promise<string>} - Resolves to the priority host of a service.\n */\n waitForService({name, timeout = 5, url}) {\n const {services} = this.webex.config;\n\n // Save memory by grabbing the catalog after there isn't a priortyURL\n const catalog = this._getCatalog();\n\n const fetchFromServiceUrl = services.servicesNotNeedValidation.find(\n (service) => service === name\n );\n\n if (fetchFromServiceUrl) {\n return Promise.resolve(this._serviceUrls[name]);\n }\n\n const priorityUrl = this.get(name, true);\n const priorityUrlObj = this.getServiceFromUrl(url);\n\n if (priorityUrl || priorityUrlObj) {\n return Promise.resolve(priorityUrl || priorityUrlObj.priorityUrl);\n }\n\n if (catalog.isReady) {\n if (url) {\n return Promise.resolve(url);\n }\n\n this.webex.internal.metrics.submitClientMetrics(METRICS.JS_SDK_SERVICE_NOT_FOUND, {\n fields: {service_name: name},\n });\n\n return Promise.reject(\n new Error(`services: service '${name}' was not found in any of the catalogs`)\n );\n }\n\n return new Promise((resolve, reject) => {\n const groupsToCheck = ['preauth', 'signin', 'postauth'];\n const checkCatalog = (catalogGroup) =>\n catalog\n .waitForCatalog(catalogGroup, timeout)\n .then(() => {\n const scopedPriorityUrl = this.get(name, true);\n const scopedPrioriryUrlObj = this.getServiceFromUrl(url);\n\n if (scopedPriorityUrl || scopedPrioriryUrlObj) {\n resolve(scopedPriorityUrl || scopedPrioriryUrlObj.priorityUrl);\n }\n })\n .catch(() => undefined);\n\n Promise.all(groupsToCheck.map((group) => checkCatalog(group))).then(() => {\n this.webex.internal.metrics.submitClientMetrics(METRICS.JS_SDK_SERVICE_NOT_FOUND, {\n fields: {service_name: name},\n });\n reject(new Error(`services: service '${name}' was not found after waiting`));\n });\n });\n },\n\n /**\n * @private\n * Organize a received hostmap from a service\n * catalog endpoint.\n * @param {object} serviceHostmap\n * @returns {object}\n */\n _formatReceivedHostmap(serviceHostmap) {\n this._updateHostCatalog(serviceHostmap.hostCatalog);\n // map the host catalog items to a formatted hostmap\n const formattedHostmap = Object.keys(serviceHostmap.hostCatalog).reduce((accumulator, key) => {\n if (serviceHostmap.hostCatalog[key].length === 0) {\n return accumulator;\n }\n\n const serviceName = serviceHostmap.hostCatalog[key][0].id.split(':')[3];\n const defaultUrl = serviceHostmap.serviceLinks[serviceName];\n\n let serviceItem = accumulator.find((item) => item.name === serviceName);\n\n if (!serviceItem) {\n serviceItem = {\n name: serviceName,\n defaultUrl,\n defaultHost: Url.parse(defaultUrl).hostname,\n hosts: [],\n };\n\n accumulator.push(serviceItem);\n }\n\n serviceItem.hosts.push(\n // map the default key as a low priority default for cluster matching\n {\n host: key,\n ttl: -1,\n priority: 10,\n id: serviceHostmap.hostCatalog[key][0].id,\n homeCluster: serviceItem.defaultHost === key,\n },\n // map the rest of the hosts in their proper locations\n ...serviceHostmap.hostCatalog[key].map((host) => ({\n ...host,\n homeCluster: serviceItem.defaultHost === key,\n }))\n );\n\n return accumulator;\n }, []);\n\n // append service links that do not exist in the host catalog\n Object.keys(serviceHostmap.serviceLinks).forEach((key) => {\n const service = formattedHostmap.find((item) => item.name === key);\n\n if (!service) {\n formattedHostmap.push({\n name: key,\n defaultUrl: serviceHostmap.serviceLinks[key],\n defaultHost: Url.parse(serviceHostmap.serviceLinks[key]).hostname,\n hosts: [],\n });\n }\n });\n\n // update all the service urls in the host catalog\n\n this._updateServiceUrls(serviceHostmap.serviceLinks);\n this._updateHostCatalog(serviceHostmap.hostCatalog);\n\n return formattedHostmap;\n },\n\n /**\n * Get the clusterId associated with a URL string.\n * @param {string} url\n * @returns {string} - Cluster ID of url provided\n */\n getClusterId(url) {\n const catalog = this._getCatalog();\n\n return catalog.findClusterId(url);\n },\n\n /**\n * Get a service value from a provided clusterId. This method will\n * return an object containing both the name and url of a found service.\n * @param {object} params\n * @param {string} params.clusterId - clusterId of found service\n * @param {boolean} [params.priorityHost] - returns priority host url if true\n * @param {string} [params.serviceGroup] - specify service group\n * @returns {object} service\n * @returns {string} service.name\n * @returns {string} service.url\n */\n getServiceFromClusterId(params) {\n const catalog = this._getCatalog();\n\n return catalog.findServiceFromClusterId(params);\n },\n\n /**\n * @param {String} cluster the cluster containing the id\n * @param {UUID} [id] the id of the conversation.\n * If empty, just return the base URL.\n * @returns {String} url of the service\n */\n getServiceUrlFromClusterId({cluster = 'us'} = {}) {\n let clusterId = cluster === 'us' ? DEFAULT_CLUSTER_IDENTIFIER : cluster;\n\n // Determine if cluster has service name (non-US clusters from hydra do not)\n if (clusterId.split(':').length < 4) {\n // Add Service to cluster identifier\n clusterId = `${cluster}:${CLUSTER_SERVICE}`;\n }\n\n const {url} = this.getServiceFromClusterId({clusterId}) || {};\n\n if (!url) {\n throw Error(`Could not find service for cluster [${cluster}]`);\n }\n\n return url;\n },\n\n /**\n * Get a service object from a service url if the service url exists in the\n * catalog.\n *\n * @param {string} url - The url to be validated.\n * @returns {object} - Service object.\n * @returns {object.name} - The name of the service found.\n * @returns {object.priorityUrl} - The priority url of the found service.\n * @returns {object.defaultUrl} - The default url of the found service.\n */\n getServiceFromUrl(url = '') {\n const service = this._getCatalog().findServiceUrlFromUrl(url);\n\n if (!service) {\n return undefined;\n }\n\n return {\n name: service.name,\n priorityUrl: service.get(true),\n defaultUrl: service.get(),\n };\n },\n\n /**\n * Verify that a provided url exists in the service\n * catalog.\n * @param {string} url\n * @returns {boolean} - true if exists, false otherwise\n */\n isServiceUrl(url) {\n const catalog = this._getCatalog();\n\n return !!catalog.findServiceUrlFromUrl(url);\n },\n\n /**\n * Determine if a provided url is in the catalog's allowed domains.\n *\n * @param {string} url - The url to match allowed domains against.\n * @returns {boolean} - True if the url provided is allowed.\n */\n isAllowedDomainUrl(url) {\n const catalog = this._getCatalog();\n\n return !!catalog.findAllowedDomain(url);\n },\n\n /**\n * Converts the host portion of the url from default host\n * to a priority host\n *\n * @param {string} url a service url that contains a default host\n * @returns {string} a service url that contains the top priority host.\n * @throws if url isn't a service url\n */\n convertUrlToPriorityHostUrl(url = '') {\n const data = this.getServiceFromUrl(url);\n\n if (!data) {\n throw Error(`No service associated with url: [${url}]`);\n }\n\n return url.replace(data.defaultUrl, data.priorityUrl);\n },\n\n /**\n * @private\n * Simplified method wrapper for sending a request to get\n * an updated service hostmap.\n * @param {object} [param]\n * @param {string} [param.from] - This accepts `limited` or `signin`\n * @param {object} [param.query] - This accepts `email`, `orgId` or `userId` key values\n * @param {string} [param.query.email] - must be a standard-format email\n * @param {string} [param.query.orgId] - must be an organization id\n * @param {string} [param.query.userId] - must be a user id\n * @param {string} [param.token] - used for signin catalog\n * @returns {Promise<object>}\n */\n _fetchNewServiceHostmap({from, query, token, forceRefresh} = {}) {\n const service = 'u2c';\n const resource = from ? `/${from}/catalog` : '/catalog';\n const qs = {...query, format: 'hostmap'};\n\n if (forceRefresh) {\n qs.timestamp = new Date().getTime();\n }\n\n const requestObject = {\n method: 'GET',\n service,\n resource,\n qs,\n };\n\n if (token) {\n requestObject.headers = {authorization: token};\n }\n\n return this.webex.internal.newMetrics.callDiagnosticLatencies\n .measureLatency(() => this.request(requestObject), 'internal.get.u2c.time')\n .then(({body}) => this._formatReceivedHostmap(body));\n },\n\n /**\n * Initialize the discovery services and the whitelisted services.\n *\n * @returns {void}\n */\n initConfig() {\n // Get the catalog and destructure the services config.\n const catalog = this._getCatalog();\n const {services, fedramp} = this.webex.config;\n\n // Validate that the services configuration exists.\n if (services) {\n if (fedramp) {\n services.discovery = fedRampServices;\n }\n // Check for discovery services.\n if (services.discovery) {\n // Format the discovery configuration into an injectable array.\n const formattedDiscoveryServices = Object.keys(services.discovery).map((key) => ({\n name: key,\n defaultUrl: services.discovery[key],\n }));\n\n // Inject formatted discovery services into services catalog.\n catalog.updateServiceUrls('discovery', formattedDiscoveryServices);\n }\n\n if (services.override) {\n // Format the override configuration into an injectable array.\n const formattedOverrideServices = Object.keys(services.override).map((key) => ({\n name: key,\n defaultUrl: services.override[key],\n }));\n\n // Inject formatted override services into services catalog.\n catalog.updateServiceUrls('override', formattedOverrideServices);\n }\n\n // if not fedramp, append on the commercialAllowedDomains\n if (!fedramp) {\n services.allowedDomains = union(services.allowedDomains, COMMERCIAL_ALLOWED_DOMAINS);\n }\n\n // Check for allowed host domains.\n if (services.allowedDomains) {\n // Store the allowed domains as a property of the catalog.\n catalog.setAllowedDomains(services.allowedDomains);\n }\n\n // Set `validateDomains` property to match configuration\n this.validateDomains = services.validateDomains;\n }\n },\n\n /**\n * Make the initial requests to collect the root catalogs.\n *\n * @returns {Promise<void, Error>} - Errors if the token is unavailable.\n */\n initServiceCatalogs() {\n this.logger.info('services: initializing initial service catalogs');\n\n // Destructure the credentials plugin.\n const {credentials} = this.webex;\n\n // Init a promise chain. Must be done as a Promise.resolve() to allow\n // credentials#getOrgId() to properly throw.\n return (\n Promise.resolve()\n // Get the user's OrgId.\n .then(() => credentials.getOrgId())\n // Begin collecting the preauth/limited catalog.\n .then((orgId) => this.collectPreauthCatalog({orgId}))\n .then(() => {\n // Validate if the token is authorized.\n if (credentials.canAuthorize) {\n // Attempt to collect the postauth catalog.\n return this.updateServices().catch(() =>\n this.logger.warn('services: cannot retrieve postauth catalog')\n );\n }\n\n // Return a resolved promise for consistent return value.\n return Promise.resolve();\n })\n );\n },\n\n /**\n * Initializer\n *\n * @instance\n * @memberof Services\n * @returns {Services}\n */\n initialize() {\n const catalog = new ServiceCatalog();\n const registry = new ServiceRegistry();\n const state = new ServiceState();\n\n this._catalogs.set(this.webex, catalog);\n this.registries.set(this.webex, registry);\n this.states.set(this.webex, state);\n\n // Listen for configuration changes once.\n this.listenToOnce(this.webex, 'change:config', () => {\n this.initConfig();\n });\n\n // wait for webex instance to be ready before attempting\n // to update the service catalogs\n this.listenToOnce(this.webex, 'ready', () => {\n const {supertoken} = this.webex.credentials;\n // Validate if the supertoken exists.\n if (supertoken && supertoken.access_token) {\n this.initServiceCatalogs()\n .then(() => {\n catalog.isReady = true;\n })\n .catch((error) => {\n this.initFailed = true;\n this.logger.error(\n `services: failed to init initial services when credentials available, ${error?.message}`\n );\n });\n } else {\n const {email} = this.webex.config;\n\n this.collectPreauthCatalog(email ? {email} : undefined).catch((error) => {\n this.initFailed = true;\n this.logger.error(\n `services: failed to init initial services when no credentials available, ${error?.message}`\n );\n });\n }\n });\n },\n});\n/* eslint-enable no-underscore-dangle */\n\nexport default Services;\n"],"mappings":"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"}
1
+ {"version":3,"names":["_sha","_interopRequireDefault","require","_lodash","_webexPlugin","_metrics","_serviceCatalog","_serviceRegistry","_serviceState","_serviceFedRamp","_constants","ownKeys","e","r","t","_Object$keys2","_Object$getOwnPropertySymbols","o","filter","_Object$getOwnPropertyDescriptor","enumerable","push","apply","_objectSpread","arguments","length","Object","forEach","_defineProperty2","default","_Object$getOwnPropertyDescriptors","_Object$defineProperties","_Object$defineProperty","trailingSlashes","DEFAULT_CLUSTER","exports","DEFAULT_CLUSTER_SERVICE","CLUSTER_SERVICE","process","env","WEBEX_CONVERSATION_CLUSTER_SERVICE","DEFAULT_CLUSTER_IDENTIFIER","WEBEX_CONVERSATION_DEFAULT_CLUSTER","concat","Services","WebexPlugin","extend","namespace","registries","_weakMap","states","props","validateDomains","initFailed","_catalogs","_serviceUrls","_hostCatalog","getRegistry","get","webex","getState","_getCatalog","name","priorityHost","serviceGroup","catalog","hasService","serviceName","hasAllowedDomains","getAllowedDomains","list","markFailedUrl","url","noPriorityHosts","_updateServiceUrls","serviceUrls","_updateHostCatalog","hostCatalog","updateServices","_this","_ref","undefined","from","query","token","forceRefresh","formattedQuery","status","collecting","waitForCatalog","queryKey","_keys","includes","_promise","reject","Error","email","emailhash","sha256","toLowerCase","toString","_fetchNewServiceHostmap","then","serviceHostMap","updateServiceUrls","updateCredentialsConfig","catch","error","validateUser","_ref2","_this2","_ref2$reqId","reqId","_ref2$forceRefresh","_ref2$activationOptio","activationOptions","preloginUserId","logger","info","canAuthorize","credentials","getUserToken","sendUserActivation","userObj","activated","exists","details","user","_this$webex$credentia","config","client_id","client_secret","collectPreauthCatalog","idbrokerService","getClientToken","uri","scope","tokenObj","collectSigninCatalog","rto","all","_ref3","_ref4","_slicedToArray2","response","statusCode","responseText","body","message","getMeetingPreferences","_this3","request","method","service","resource","res","err","fetchClientRegionInfo","_this4","addAuthHeader","headers","timeout","_ref5","_this5","countryCode","timezone","clientRegionInfo","accept","authorization","timeZone","shouldRefreshAccessToken","_ref6","mode","_ref7","_this$list","idbroker","identity","_this$webex$config$cr","authorizationString","authorizeUrl","replace","setConfig","supertoken","access_token","postauth","ready","preauth","initServiceCatalogs","waitForService","_ref8","_this6","_ref8$timeout","services","fetchFromServiceUrl","servicesNotNeedValidation","find","resolve","priorityUrl","priorityUrlObj","getServiceFromUrl","isReady","internal","metrics","submitClientMetrics","METRICS","JS_SDK_SERVICE_NOT_FOUND","fields","service_name","groupsToCheck","checkCatalog","catalogGroup","scopedPriorityUrl","scopedPrioriryUrlObj","map","group","_formatReceivedHostmap","serviceHostmap","extractId","entry","id","split","formattedHostmap","serviceLinks","_formattedHost$hosts","serviceUrl","host","URL","matchingCatalogEntry","formattedHost","defaultUrl","defaultHost","hosts","serviceId","homeCluster","otherHosts","entryHost","getClusterId","findClusterId","getServiceFromClusterId","params","findServiceFromClusterId","getServiceUrlFromClusterId","_ref9","_ref9$cluster","cluster","clusterId","_ref10","findServiceUrlFromUrl","isServiceUrl","isAllowedDomainUrl","findAllowedDomain","convertUrlToPriorityHostUrl","data","_this7","_ref11","qs","format","timestamp","Date","getTime","requestObject","newMetrics","callDiagnosticLatencies","measureLatency","_ref12","initConfig","_this$webex$config","fedramp","discovery","fedRampServices","formattedDiscoveryServices","key","override","formattedOverrideServices","allowedDomains","union","COMMERCIAL_ALLOWED_DOMAINS","setAllowedDomains","_this8","getOrgId","orgId","warn","initialize","_this9","ServiceCatalog","registry","ServiceRegistry","state","ServiceState","set","listenToOnce","version","_default"],"sources":["services.js"],"sourcesContent":["import sha256 from 'crypto-js/sha256';\n\nimport {union, forEach} from 'lodash';\nimport WebexPlugin from '../webex-plugin';\n\nimport METRICS from './metrics';\nimport ServiceCatalog from './service-catalog';\nimport ServiceRegistry from './service-registry';\nimport ServiceState from './service-state';\nimport fedRampServices from './service-fed-ramp';\nimport {COMMERCIAL_ALLOWED_DOMAINS} from './constants';\n\nconst trailingSlashes = /(?:^\\/)|(?:\\/$)/;\n\n// The default cluster when one is not provided (usually as 'US' from hydra)\nexport const DEFAULT_CLUSTER = 'urn:TEAM:us-east-2_a';\n// The default service name for convo (currently identityLookup due to some weird CSB issue)\nexport const DEFAULT_CLUSTER_SERVICE = 'identityLookup';\n\nconst CLUSTER_SERVICE = process.env.WEBEX_CONVERSATION_CLUSTER_SERVICE || DEFAULT_CLUSTER_SERVICE;\nconst DEFAULT_CLUSTER_IDENTIFIER =\n process.env.WEBEX_CONVERSATION_DEFAULT_CLUSTER || `${DEFAULT_CLUSTER}:${CLUSTER_SERVICE}`;\n\n/* eslint-disable no-underscore-dangle */\n/**\n * @class\n */\nconst Services = WebexPlugin.extend({\n namespace: 'Services',\n\n /**\n * The {@link WeakMap} of {@link ServiceRegistry} class instances that are\n * keyed with WebexCore instances.\n *\n * @instance\n * @type {WeakMap<WebexCore, ServiceRegistry>}\n * @private\n * @memberof Services\n */\n registries: new WeakMap(),\n\n /**\n * The {@link WeakMap} of {@link ServiceState} class instances that are\n * keyed with WebexCore instances.\n *\n * @instance\n * @type {WeakMap<WebexCore, ServiceState>}\n * @private\n * @memberof Services\n */\n states: new WeakMap(),\n\n props: {\n validateDomains: ['boolean', false, true],\n initFailed: ['boolean', false, false],\n },\n\n _catalogs: new WeakMap(),\n\n _serviceUrls: null,\n\n _hostCatalog: null,\n\n /**\n * Get the registry associated with this webex instance.\n *\n * @private\n * @memberof Services\n * @returns {ServiceRegistry} - The associated {@link ServiceRegistry}.\n */\n getRegistry() {\n return this.registries.get(this.webex);\n },\n\n /**\n * Get the state associated with this webex instance.\n *\n * @private\n * @memberof Services\n * @returns {ServiceState} - The associated {@link ServiceState}.\n */\n getState() {\n return this.states.get(this.webex);\n },\n\n /**\n * @private\n * Get the current catalog based on the assocaited\n * webex instance.\n * @returns {ServiceCatalog}\n */\n _getCatalog() {\n return this._catalogs.get(this.webex);\n },\n\n /**\n * Get a service url from the current services list by name\n * from the associated instance catalog.\n * @param {string} name\n * @param {boolean} [priorityHost]\n * @param {string} [serviceGroup]\n * @returns {string|undefined}\n */\n get(name, priorityHost, serviceGroup) {\n const catalog = this._getCatalog();\n\n return catalog.get(name, priorityHost, serviceGroup);\n },\n\n /**\n * Determine if the catalog contains a specific service\n *\n * @param {string} serviceName - The service name to validate.\n * @returns {boolean} - True if the service exists.\n */\n hasService(serviceName) {\n return !!this.get(serviceName);\n },\n\n /**\n * Determine if a whilelist exists in the service catalog.\n *\n * @returns {boolean} - True if a allowed domains list exists.\n */\n hasAllowedDomains() {\n const catalog = this._getCatalog();\n\n return catalog.getAllowedDomains().length > 0;\n },\n\n /**\n * Generate a service catalog as an object from\n * the associated instance catalog.\n * @param {boolean} [priorityHost] - use highest priority host if set to `true`\n * @param {string} [serviceGroup]\n * @returns {Record<string, string>}\n */\n list(priorityHost, serviceGroup) {\n const catalog = this._getCatalog();\n\n return catalog.list(priorityHost, serviceGroup);\n },\n\n /**\n * Mark a priority host service url as failed.\n * This will mark the host associated with the\n * `ServiceUrl` to be removed from the its\n * respective host array, and then return the next\n * viable host from the `ServiceUrls` host array,\n * or the `ServiceUrls` default url if no other priority\n * hosts are available, or if `noPriorityHosts` is set to\n * `true`.\n * @param {string} url\n * @param {boolean} noPriorityHosts\n * @returns {string}\n */\n markFailedUrl(url, noPriorityHosts) {\n const catalog = this._getCatalog();\n\n return catalog.markFailedUrl(url, noPriorityHosts);\n },\n\n /**\n * saves all the services from the pre and post catalog service\n * @param {Object} serviceUrls\n * @returns {void}\n */\n _updateServiceUrls(serviceUrls) {\n this._serviceUrls = {...this._serviceUrls, ...serviceUrls};\n },\n\n /**\n * saves the hostCatalog object\n * @param {Object} hostCatalog\n * @returns {void}\n */\n _updateHostCatalog(hostCatalog) {\n this._hostCatalog = {...this._hostCatalog, ...hostCatalog};\n },\n\n /**\n * Update a list of `serviceUrls` to the most current\n * catalog via the defined `discoveryUrl` then returns the current\n * list of services.\n * @param {object} [param]\n * @param {string} [param.from] - This accepts `limited` or `signin`\n * @param {object} [param.query] - This accepts `email`, `orgId` or `userId` key values\n * @param {string} [param.query.email] - must be a standard-format email\n * @param {string} [param.query.orgId] - must be an organization id\n * @param {string} [param.query.userId] - must be a user id\n * @param {string} [param.token] - used for signin catalog\n * @returns {Promise<object>}\n */\n updateServices({from, query, token, forceRefresh} = {}) {\n const catalog = this._getCatalog();\n let formattedQuery;\n let serviceGroup;\n\n // map catalog name to service group name.\n switch (from) {\n case 'limited':\n serviceGroup = 'preauth';\n break;\n case 'signin':\n serviceGroup = 'signin';\n break;\n default:\n serviceGroup = 'postauth';\n break;\n }\n\n // confirm catalog update for group is not in progress.\n if (catalog.status[serviceGroup].collecting) {\n return this.waitForCatalog(serviceGroup);\n }\n\n catalog.status[serviceGroup].collecting = true;\n\n if (serviceGroup === 'preauth') {\n const queryKey = query && Object.keys(query)[0];\n\n if (!['email', 'emailhash', 'userId', 'orgId', 'mode'].includes(queryKey)) {\n return Promise.reject(\n new Error('a query param of email, emailhash, userId, orgId, or mode is required')\n );\n }\n }\n // encode email when query key is email\n if (serviceGroup === 'preauth' || serviceGroup === 'signin') {\n const queryKey = Object.keys(query)[0];\n\n formattedQuery = {};\n\n if (queryKey === 'email' && query.email) {\n formattedQuery.emailhash = sha256(query.email.toLowerCase()).toString();\n } else {\n formattedQuery[queryKey] = query[queryKey];\n }\n }\n\n return this._fetchNewServiceHostmap({\n from,\n token,\n query: formattedQuery,\n forceRefresh,\n })\n .then((serviceHostMap) => {\n catalog.updateServiceUrls(serviceGroup, serviceHostMap);\n this.updateCredentialsConfig();\n catalog.status[serviceGroup].collecting = false;\n })\n .catch((error) => {\n catalog.status[serviceGroup].collecting = false;\n\n return Promise.reject(error);\n });\n },\n\n /**\n * User validation parameter transfer object for {@link validateUser}.\n * @param {object} ValidateUserPTO\n * @property {string} ValidateUserPTO.email - The email of the user.\n * @property {string} [ValidateUserPTO.reqId] - The activation requester.\n * @property {object} [ValidateUserPTO.activationOptions] - Extra options to pass when sending the activation\n * @property {object} [ValidateUserPTO.preloginUserId] - The prelogin user id to set when sending the activation.\n */\n\n /**\n * User validation return transfer object for {@link validateUser}.\n * @param {object} ValidateUserRTO\n * @property {boolean} ValidateUserRTO.activated - If the user is activated.\n * @property {boolean} ValidateUserRTO.exists - If the user exists.\n * @property {string} ValidateUserRTO.details - A descriptive status message.\n * @property {object} ValidateUserRTO.user - **License** service user object.\n */\n\n /**\n * Validate if a user is activated and update the service catalogs as needed\n * based on the user's activation status.\n *\n * @param {ValidateUserPTO} - The parameter transfer object.\n * @returns {ValidateUserRTO} - The return transfer object.\n */\n validateUser({\n email,\n reqId = 'WEBCLIENT',\n forceRefresh = false,\n activationOptions = {},\n preloginUserId,\n }) {\n this.logger.info('services: validating a user');\n\n // Validate that an email parameter key was provided.\n if (!email) {\n return Promise.reject(new Error('`email` is required'));\n }\n\n // Destructure the credentials object.\n const {canAuthorize} = this.webex.credentials;\n\n // Validate that the user is already authorized.\n if (canAuthorize) {\n return this.updateServices({forceRefresh})\n .then(() => this.webex.credentials.getUserToken())\n .then((token) =>\n this.sendUserActivation({\n email,\n reqId,\n token: token.toString(),\n activationOptions,\n preloginUserId,\n })\n )\n .then((userObj) => ({\n activated: true,\n exists: true,\n details: 'user is authorized via a user token',\n user: userObj,\n }));\n }\n\n // Destructure the client authorization details.\n /* eslint-disable camelcase */\n const {client_id, client_secret} = this.webex.credentials.config;\n\n // Validate that client authentication details exist.\n if (!client_id || !client_secret) {\n return Promise.reject(new Error('client authentication details are not available'));\n }\n /* eslint-enable camelcase */\n\n // Declare a class-memeber-scoped token for usage within the promise chain.\n let token;\n\n // Begin client authentication user validation.\n return (\n this.collectPreauthCatalog({email})\n .then(() => {\n // Retrieve the service url from the updated catalog. This is required\n // since `WebexCore` is usually not fully initialized at the time this\n // request completes.\n const idbrokerService = this.get('idbroker', true);\n\n // Collect the client auth token.\n return this.webex.credentials.getClientToken({\n uri: `${idbrokerService}idb/oauth2/v1/access_token`,\n scope: 'webexsquare:admin webexsquare:get_conversation Identity:SCIM',\n });\n })\n .then((tokenObj) => {\n // Generate the token string.\n token = tokenObj.toString();\n\n // Collect the signin catalog using the client auth information.\n return this.collectSigninCatalog({email, token, forceRefresh});\n })\n // Validate if collecting the signin catalog failed and populate the RTO\n // with the appropriate content.\n .catch((error) => ({\n exists: error.name !== 'NotFound',\n activated: false,\n details:\n error.name !== 'NotFound'\n ? 'user exists but is not activated'\n : 'user does not exist and is not activated',\n }))\n // Validate if the previous promise resolved with an RTO and populate the\n // new RTO accordingly.\n .then((rto) =>\n Promise.all([\n rto || {\n activated: true,\n exists: true,\n details: 'user exists and is activated',\n },\n this.sendUserActivation({\n email,\n reqId,\n token,\n activationOptions,\n preloginUserId,\n }),\n ])\n )\n .then(([rto, user]) => ({...rto, user}))\n .catch((error) => {\n const response = {\n statusCode: error.statusCode,\n responseText: error.body && error.body.message,\n body: error.body,\n };\n\n return Promise.reject(response);\n })\n );\n },\n\n /**\n * Get user meeting preferences (preferred webex site).\n *\n * @returns {object} - User Information including user preferrences .\n */\n getMeetingPreferences() {\n return this.request({\n method: 'GET',\n service: 'hydra',\n resource: 'meetingPreferences',\n })\n .then((res) => {\n this.logger.info('services: received user region info');\n\n return res.body;\n })\n .catch((err) => {\n this.logger.info('services: was not able to fetch user login information', err);\n // resolve successfully even if request failed\n });\n },\n\n /**\n * Fetches client region info such as countryCode and timezone.\n *\n * @returns {object} - The region info object.\n */\n fetchClientRegionInfo() {\n return this.request({\n uri: 'https://ds.ciscospark.com/v1/region',\n addAuthHeader: false,\n headers: {\n 'spark-user-agent': null,\n },\n timeout: 5000,\n })\n .then((res) => {\n this.logger.info('services: received user region info');\n\n return res.body;\n })\n .catch((err) => {\n this.logger.info('services: was not able to get user region info', err);\n // resolve successfully even if request failed\n });\n },\n\n /**\n * User activation parameter transfer object for {@link sendUserActivation}.\n * @typedef {object} SendUserActivationPTO\n * @property {string} SendUserActivationPTO.email - The email of the user.\n * @property {string} SendUserActivationPTO.reqId - The activation requester.\n * @property {string} SendUserActivationPTO.token - The client auth token.\n * @property {object} SendUserActivationPTO.activationOptions - Extra options to pass when sending the activation.\n * @property {object} SendUserActivationPTO.preloginUserId - The prelogin user id to set when sending the activation.\n */\n\n /**\n * Send a request to activate a user using a client token.\n *\n * @param {SendUserActivationPTO} - The Parameter transfer object.\n * @returns {LicenseDTO} - The DTO returned from the **License** service.\n */\n sendUserActivation({email, reqId, token, activationOptions, preloginUserId}) {\n this.logger.info('services: sending user activation request');\n let countryCode;\n let timezone;\n\n // try to fetch client region info first\n return (\n this.fetchClientRegionInfo()\n .then((clientRegionInfo) => {\n if (clientRegionInfo) {\n ({countryCode, timezone} = clientRegionInfo);\n }\n\n // Send the user activation request to the **License** service.\n return this.request({\n service: 'license',\n resource: 'users/activations',\n method: 'POST',\n headers: {\n accept: 'application/json',\n authorization: token,\n 'x-prelogin-userid': preloginUserId,\n },\n body: {\n email,\n reqId,\n countryCode,\n timeZone: timezone,\n ...activationOptions,\n },\n shouldRefreshAccessToken: false,\n });\n })\n // On success, return the **License** user object.\n .then(({body}) => body)\n // On failure, reject with error from **License**.\n .catch((error) => Promise.reject(error))\n );\n },\n\n /**\n * simplified method to update the preauth catalog via email\n *\n * @param {object} query\n * @param {string} query.email - A standard format email.\n * @param {string} query.orgId - The user's OrgId.\n * @param {boolean} forceRefresh - Boolean to bypass u2c cache control header\n * @returns {Promise<void>}\n */\n collectPreauthCatalog(query, forceRefresh = false) {\n if (!query) {\n return this.updateServices({\n from: 'limited',\n query: {mode: 'DEFAULT_BY_PROXIMITY'},\n forceRefresh,\n });\n }\n\n return this.updateServices({from: 'limited', query, forceRefresh});\n },\n\n /**\n * simplified method to update the signin catalog via email and token\n * @param {object} param\n * @param {string} param.email - must be a standard-format email\n * @param {string} param.token - must be a client token\n * @returns {Promise<void>}\n */\n collectSigninCatalog({email, token, forceRefresh} = {}) {\n if (!email) {\n return Promise.reject(new Error('`email` is required'));\n }\n if (!token) {\n return Promise.reject(new Error('`token` is required'));\n }\n\n return this.updateServices({\n from: 'signin',\n query: {email},\n token,\n forceRefresh,\n });\n },\n\n /**\n * Updates credentials config to utilize u2c catalog\n * urls.\n * @returns {void}\n */\n updateCredentialsConfig() {\n const {idbroker, identity} = this.list(true);\n\n if (idbroker && identity) {\n const {authorizationString, authorizeUrl} = this.webex.config.credentials;\n\n // This must be set outside of the setConfig method used to assign the\n // idbroker and identity url values.\n this.webex.config.credentials.authorizeUrl = authorizationString\n ? authorizeUrl\n : `${idbroker.replace(trailingSlashes, '')}/idb/oauth2/v1/authorize`;\n\n this.webex.setConfig({\n credentials: {\n idbroker: {\n url: idbroker.replace(trailingSlashes, ''), // remove trailing slash\n },\n identity: {\n url: identity.replace(trailingSlashes, ''), // remove trailing slash\n },\n },\n });\n }\n },\n\n /**\n * Wait until the service catalog is available,\n * or reject afte ra timeout of 60 seconds.\n * @param {string} serviceGroup\n * @param {number} [timeout] - in seconds\n * @returns {Promise<void>}\n */\n waitForCatalog(serviceGroup, timeout) {\n const catalog = this._getCatalog();\n const {supertoken} = this.webex.credentials;\n\n if (\n serviceGroup === 'postauth' &&\n supertoken &&\n supertoken.access_token &&\n !catalog.status.postauth.collecting &&\n !catalog.status.postauth.ready\n ) {\n if (!catalog.status.preauth.ready) {\n return this.initServiceCatalogs();\n }\n\n return this.updateServices();\n }\n\n return catalog.waitForCatalog(serviceGroup, timeout);\n },\n\n /**\n * Service waiting parameter transfer object for {@link waitForService}.\n *\n * @typedef {object} WaitForServicePTO\n * @property {string} [WaitForServicePTO.name] - The service name.\n * @property {string} [WaitForServicePTO.url] - The service url.\n * @property {string} [WaitForServicePTO.timeout] - wait duration in seconds.\n */\n\n /**\n * Wait until the service has been ammended to any service catalog. This\n * method prioritizes the service name over the service url when searching.\n *\n * @param {WaitForServicePTO} - The parameter transfer object.\n * @returns {Promise<string>} - Resolves to the priority host of a service.\n */\n waitForService({name, timeout = 5, url}) {\n const {services} = this.webex.config;\n\n // Save memory by grabbing the catalog after there isn't a priortyURL\n const catalog = this._getCatalog();\n\n const fetchFromServiceUrl = services.servicesNotNeedValidation.find(\n (service) => service === name\n );\n\n if (fetchFromServiceUrl) {\n return Promise.resolve(this._serviceUrls[name]);\n }\n\n const priorityUrl = this.get(name, true);\n const priorityUrlObj = this.getServiceFromUrl(url);\n\n if (priorityUrl || priorityUrlObj) {\n return Promise.resolve(priorityUrl || priorityUrlObj.priorityUrl);\n }\n\n if (catalog.isReady) {\n if (url) {\n return Promise.resolve(url);\n }\n\n this.webex.internal.metrics.submitClientMetrics(METRICS.JS_SDK_SERVICE_NOT_FOUND, {\n fields: {service_name: name},\n });\n\n return Promise.reject(\n new Error(`services: service '${name}' was not found in any of the catalogs`)\n );\n }\n\n return new Promise((resolve, reject) => {\n const groupsToCheck = ['preauth', 'signin', 'postauth'];\n const checkCatalog = (catalogGroup) =>\n catalog\n .waitForCatalog(catalogGroup, timeout)\n .then(() => {\n const scopedPriorityUrl = this.get(name, true);\n const scopedPrioriryUrlObj = this.getServiceFromUrl(url);\n\n if (scopedPriorityUrl || scopedPrioriryUrlObj) {\n resolve(scopedPriorityUrl || scopedPrioriryUrlObj.priorityUrl);\n }\n })\n .catch(() => undefined);\n\n Promise.all(groupsToCheck.map((group) => checkCatalog(group))).then(() => {\n this.webex.internal.metrics.submitClientMetrics(METRICS.JS_SDK_SERVICE_NOT_FOUND, {\n fields: {service_name: name},\n });\n reject(new Error(`services: service '${name}' was not found after waiting`));\n });\n });\n },\n\n /**\n * @private\n * Organize a received hostmap from a service\n * catalog endpoint.\n * @param {object} serviceHostmap\n * @returns {object}\n */\n _formatReceivedHostmap(serviceHostmap) {\n this._updateHostCatalog(serviceHostmap.hostCatalog);\n\n const extractId = (entry) => entry.id.split(':')[3];\n\n const formattedHostmap = [];\n\n // for each of the services in the serviceLinks, find the matching host in the catalog\n Object.keys(serviceHostmap.serviceLinks).forEach((serviceName) => {\n const serviceUrl = serviceHostmap.serviceLinks[serviceName];\n\n let host;\n try {\n host = new URL(serviceUrl).host;\n } catch (e) {\n return;\n }\n\n const matchingCatalogEntry = serviceHostmap.hostCatalog[host];\n\n const formattedHost = {\n name: serviceName,\n defaultUrl: serviceUrl,\n defaultHost: host,\n hosts: [],\n };\n\n formattedHostmap.push(formattedHost);\n\n // If the catalog does not have any hosts we will be unable to find the service ID\n // so can't search for other hosts\n if (!matchingCatalogEntry || !matchingCatalogEntry[0]) {\n return;\n }\n\n const serviceId = extractId(matchingCatalogEntry[0]);\n\n forEach(matchingCatalogEntry, (entry) => {\n // The ids for all hosts within a hostCatalog entry should be the same\n // but for safety, only add host entries that have the same id as the first one\n if (extractId(entry) === serviceId) {\n formattedHost.hosts.push({\n ...entry,\n homeCluster: true,\n });\n }\n });\n\n const otherHosts = [];\n\n // find the services in the host catalog that have the same id\n // and add them to the otherHosts\n forEach(serviceHostmap.hostCatalog, (entry) => {\n // exclude the matching catalog entry as we have already added that\n if (entry === matchingCatalogEntry) {\n return;\n }\n\n forEach(entry, (entryHost) => {\n // only add hosts that have the correct id\n if (extractId(entryHost) === serviceId) {\n otherHosts.push({\n ...entryHost,\n homeCluster: false,\n });\n }\n });\n });\n\n formattedHost.hosts.push(...otherHosts);\n });\n\n // update all the service urls in the host catalog\n\n this._updateServiceUrls(serviceHostmap.serviceLinks);\n this._updateHostCatalog(serviceHostmap.hostCatalog);\n\n return formattedHostmap;\n },\n\n /**\n * Get the clusterId associated with a URL string.\n * @param {string} url\n * @returns {string} - Cluster ID of url provided\n */\n getClusterId(url) {\n const catalog = this._getCatalog();\n\n return catalog.findClusterId(url);\n },\n\n /**\n * Get a service value from a provided clusterId. This method will\n * return an object containing both the name and url of a found service.\n * @param {object} params\n * @param {string} params.clusterId - clusterId of found service\n * @param {boolean} [params.priorityHost] - returns priority host url if true\n * @param {string} [params.serviceGroup] - specify service group\n * @returns {object} service\n * @returns {string} service.name\n * @returns {string} service.url\n */\n getServiceFromClusterId(params) {\n const catalog = this._getCatalog();\n\n return catalog.findServiceFromClusterId(params);\n },\n\n /**\n * @param {String} cluster the cluster containing the id\n * @param {UUID} [id] the id of the conversation.\n * If empty, just return the base URL.\n * @returns {String} url of the service\n */\n getServiceUrlFromClusterId({cluster = 'us'} = {}) {\n let clusterId = cluster === 'us' ? DEFAULT_CLUSTER_IDENTIFIER : cluster;\n\n // Determine if cluster has service name (non-US clusters from hydra do not)\n if (clusterId.split(':').length < 4) {\n // Add Service to cluster identifier\n clusterId = `${cluster}:${CLUSTER_SERVICE}`;\n }\n\n const {url} = this.getServiceFromClusterId({clusterId}) || {};\n\n if (!url) {\n throw Error(`Could not find service for cluster [${cluster}]`);\n }\n\n return url;\n },\n\n /**\n * Get a service object from a service url if the service url exists in the\n * catalog.\n *\n * @param {string} url - The url to be validated.\n * @returns {object} - Service object.\n * @returns {object.name} - The name of the service found.\n * @returns {object.priorityUrl} - The priority url of the found service.\n * @returns {object.defaultUrl} - The default url of the found service.\n */\n getServiceFromUrl(url = '') {\n const service = this._getCatalog().findServiceUrlFromUrl(url);\n\n if (!service) {\n return undefined;\n }\n\n return {\n name: service.name,\n priorityUrl: service.get(true),\n defaultUrl: service.get(),\n };\n },\n\n /**\n * Verify that a provided url exists in the service\n * catalog.\n * @param {string} url\n * @returns {boolean} - true if exists, false otherwise\n */\n isServiceUrl(url) {\n const catalog = this._getCatalog();\n\n return !!catalog.findServiceUrlFromUrl(url);\n },\n\n /**\n * Determine if a provided url is in the catalog's allowed domains.\n *\n * @param {string} url - The url to match allowed domains against.\n * @returns {boolean} - True if the url provided is allowed.\n */\n isAllowedDomainUrl(url) {\n const catalog = this._getCatalog();\n\n return !!catalog.findAllowedDomain(url);\n },\n\n /**\n * Converts the host portion of the url from default host\n * to a priority host\n *\n * @param {string} url a service url that contains a default host\n * @returns {string} a service url that contains the top priority host.\n * @throws if url isn't a service url\n */\n convertUrlToPriorityHostUrl(url = '') {\n const data = this.getServiceFromUrl(url);\n\n if (!data) {\n throw Error(`No service associated with url: [${url}]`);\n }\n\n return url.replace(data.defaultUrl, data.priorityUrl);\n },\n\n /**\n * @private\n * Simplified method wrapper for sending a request to get\n * an updated service hostmap.\n * @param {object} [param]\n * @param {string} [param.from] - This accepts `limited` or `signin`\n * @param {object} [param.query] - This accepts `email`, `orgId` or `userId` key values\n * @param {string} [param.query.email] - must be a standard-format email\n * @param {string} [param.query.orgId] - must be an organization id\n * @param {string} [param.query.userId] - must be a user id\n * @param {string} [param.token] - used for signin catalog\n * @returns {Promise<object>}\n */\n _fetchNewServiceHostmap({from, query, token, forceRefresh} = {}) {\n const service = 'u2c';\n const resource = from ? `/${from}/catalog` : '/catalog';\n const qs = {...query, format: 'hostmap'};\n\n if (forceRefresh) {\n qs.timestamp = new Date().getTime();\n }\n\n const requestObject = {\n method: 'GET',\n service,\n resource,\n qs,\n };\n\n if (token) {\n requestObject.headers = {authorization: token};\n }\n\n return this.webex.internal.newMetrics.callDiagnosticLatencies\n .measureLatency(() => this.request(requestObject), 'internal.get.u2c.time')\n .then(({body}) => this._formatReceivedHostmap(body));\n },\n\n /**\n * Initialize the discovery services and the whitelisted services.\n *\n * @returns {void}\n */\n initConfig() {\n // Get the catalog and destructure the services config.\n const catalog = this._getCatalog();\n const {services, fedramp} = this.webex.config;\n\n // Validate that the services configuration exists.\n if (services) {\n if (fedramp) {\n services.discovery = fedRampServices;\n }\n // Check for discovery services.\n if (services.discovery) {\n // Format the discovery configuration into an injectable array.\n const formattedDiscoveryServices = Object.keys(services.discovery).map((key) => ({\n name: key,\n defaultUrl: services.discovery[key],\n }));\n\n // Inject formatted discovery services into services catalog.\n catalog.updateServiceUrls('discovery', formattedDiscoveryServices);\n }\n\n if (services.override) {\n // Format the override configuration into an injectable array.\n const formattedOverrideServices = Object.keys(services.override).map((key) => ({\n name: key,\n defaultUrl: services.override[key],\n }));\n\n // Inject formatted override services into services catalog.\n catalog.updateServiceUrls('override', formattedOverrideServices);\n }\n\n // if not fedramp, append on the commercialAllowedDomains\n if (!fedramp) {\n services.allowedDomains = union(services.allowedDomains, COMMERCIAL_ALLOWED_DOMAINS);\n }\n\n // Check for allowed host domains.\n if (services.allowedDomains) {\n // Store the allowed domains as a property of the catalog.\n catalog.setAllowedDomains(services.allowedDomains);\n }\n\n // Set `validateDomains` property to match configuration\n this.validateDomains = services.validateDomains;\n }\n },\n\n /**\n * Make the initial requests to collect the root catalogs.\n *\n * @returns {Promise<void, Error>} - Errors if the token is unavailable.\n */\n initServiceCatalogs() {\n this.logger.info('services: initializing initial service catalogs');\n\n // Destructure the credentials plugin.\n const {credentials} = this.webex;\n\n // Init a promise chain. Must be done as a Promise.resolve() to allow\n // credentials#getOrgId() to properly throw.\n return (\n Promise.resolve()\n // Get the user's OrgId.\n .then(() => credentials.getOrgId())\n // Begin collecting the preauth/limited catalog.\n .then((orgId) => this.collectPreauthCatalog({orgId}))\n .then(() => {\n // Validate if the token is authorized.\n if (credentials.canAuthorize) {\n // Attempt to collect the postauth catalog.\n return this.updateServices().catch(() =>\n this.logger.warn('services: cannot retrieve postauth catalog')\n );\n }\n\n // Return a resolved promise for consistent return value.\n return Promise.resolve();\n })\n );\n },\n\n /**\n * Initializer\n *\n * @instance\n * @memberof Services\n * @returns {Services}\n */\n initialize() {\n const catalog = new ServiceCatalog();\n const registry = new ServiceRegistry();\n const state = new ServiceState();\n\n this._catalogs.set(this.webex, catalog);\n this.registries.set(this.webex, registry);\n this.states.set(this.webex, state);\n\n // Listen for configuration changes once.\n this.listenToOnce(this.webex, 'change:config', () => {\n this.initConfig();\n });\n\n // wait for webex instance to be ready before attempting\n // to update the service catalogs\n this.listenToOnce(this.webex, 'ready', () => {\n const {supertoken} = this.webex.credentials;\n // Validate if the supertoken exists.\n if (supertoken && supertoken.access_token) {\n this.initServiceCatalogs()\n .then(() => {\n catalog.isReady = true;\n })\n .catch((error) => {\n this.initFailed = true;\n this.logger.error(\n `services: failed to init initial services when credentials available, ${error?.message}`\n );\n });\n } else {\n const {email} = this.webex.config;\n\n this.collectPreauthCatalog(email ? {email} : undefined).catch((error) => {\n this.initFailed = true;\n this.logger.error(\n `services: failed to init initial services when no credentials available, ${error?.message}`\n );\n });\n }\n });\n },\n});\n/* eslint-enable no-underscore-dangle */\n\nexport default Services;\n"],"mappings":"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"}
@@ -57,7 +57,7 @@ var Logger = _webexPlugin.default.extend({
57
57
  info: wrapConsoleMethod('info'),
58
58
  debug: wrapConsoleMethod('debug'),
59
59
  trace: wrapConsoleMethod('trace'),
60
- version: "3.3.1-next.1"
60
+ version: "3.3.1-next.2"
61
61
  });
62
62
  (0, _webexCore.registerPlugin)('logger', Logger);
63
63
  var _default = exports.default = Logger;
@@ -94,7 +94,7 @@ var MAX_FILE_SIZE_IN_MB = 2048;
94
94
  * @class
95
95
  */
96
96
  var WebexCore = _ampersandState.default.extend((_obj = {
97
- version: "3.3.1-next.1",
97
+ version: "3.3.1-next.2",
98
98
  children: {
99
99
  internal: _webexInternalCore.default
100
100
  },
@@ -636,7 +636,7 @@ var WebexCore = _ampersandState.default.extend((_obj = {
636
636
  });
637
637
  }
638
638
  }, ((0, _applyDecoratedDescriptor2.default)(_obj, "_uploadPhaseUpload", [_common.retry], (0, _getOwnPropertyDescriptor.default)(_obj, "_uploadPhaseUpload"), _obj)), _obj));
639
- WebexCore.version = "3.3.1-next.1";
639
+ WebexCore.version = "3.3.1-next.2";
640
640
  (0, _webexInternalCorePluginMixin.default)(_webexInternalCore.default, _config.default, interceptors);
641
641
  (0, _webexCorePluginMixin.default)(WebexCore, _config.default, interceptors);
642
642
  var _default = exports.default = WebexCore;
package/package.json CHANGED
@@ -35,12 +35,12 @@
35
35
  "@webex/eslint-config-legacy": "0.0.0",
36
36
  "@webex/jest-config-legacy": "0.0.0",
37
37
  "@webex/legacy-tools": "0.0.0",
38
- "@webex/test-helper-chai": "3.3.1-next.1",
39
- "@webex/test-helper-make-local-url": "3.3.1-next.1",
40
- "@webex/test-helper-mocha": "3.3.1-next.1",
41
- "@webex/test-helper-mock-webex": "3.3.1-next.1",
42
- "@webex/test-helper-refresh-callback": "3.3.1-next.1",
43
- "@webex/test-helper-test-users": "3.3.1-next.1",
38
+ "@webex/test-helper-chai": "3.3.1-next.2",
39
+ "@webex/test-helper-make-local-url": "3.3.1-next.2",
40
+ "@webex/test-helper-mocha": "3.3.1-next.2",
41
+ "@webex/test-helper-mock-webex": "3.3.1-next.2",
42
+ "@webex/test-helper-refresh-callback": "3.3.1-next.2",
43
+ "@webex/test-helper-test-users": "3.3.1-next.2",
44
44
  "chai": "^4.3.4",
45
45
  "chai-as-promised": "^7.1.1",
46
46
  "eslint": "^8.24.0",
@@ -48,12 +48,12 @@
48
48
  "sinon": "^9.2.4"
49
49
  },
50
50
  "dependencies": {
51
- "@webex/common": "3.3.1-next.1",
52
- "@webex/common-timers": "3.3.1-next.1",
53
- "@webex/http-core": "3.3.1-next.1",
54
- "@webex/internal-plugin-device": "3.3.1-next.1",
55
- "@webex/plugin-logger": "3.3.1-next.1",
56
- "@webex/storage-adapter-spec": "3.3.1-next.1",
51
+ "@webex/common": "3.3.1-next.2",
52
+ "@webex/common-timers": "3.3.1-next.2",
53
+ "@webex/http-core": "3.3.1-next.2",
54
+ "@webex/internal-plugin-device": "3.3.1-next.2",
55
+ "@webex/plugin-logger": "3.3.1-next.2",
56
+ "@webex/storage-adapter-spec": "3.3.1-next.2",
57
57
  "ampersand-collection": "^2.0.2",
58
58
  "ampersand-events": "^2.0.2",
59
59
  "ampersand-state": "^5.0.3",
@@ -73,5 +73,5 @@
73
73
  "test:style": "eslint ./src/**/*.*",
74
74
  "test:unit": "webex-legacy-tools test --unit --runner jest"
75
75
  },
76
- "version": "3.3.1-next.1"
76
+ "version": "3.3.1-next.2"
77
77
  }
@@ -1,8 +1,6 @@
1
- import Url from 'url';
2
-
3
1
  import sha256 from 'crypto-js/sha256';
4
2
 
5
- import {union} from 'lodash';
3
+ import {union, forEach} from 'lodash';
6
4
  import WebexPlugin from '../webex-plugin';
7
5
 
8
6
  import METRICS from './metrics';
@@ -686,59 +684,74 @@ const Services = WebexPlugin.extend({
686
684
  */
687
685
  _formatReceivedHostmap(serviceHostmap) {
688
686
  this._updateHostCatalog(serviceHostmap.hostCatalog);
689
- // map the host catalog items to a formatted hostmap
690
- const formattedHostmap = Object.keys(serviceHostmap.hostCatalog).reduce((accumulator, key) => {
691
- if (serviceHostmap.hostCatalog[key].length === 0) {
692
- return accumulator;
693
- }
694
687
 
695
- const serviceName = serviceHostmap.hostCatalog[key][0].id.split(':')[3];
696
- const defaultUrl = serviceHostmap.serviceLinks[serviceName];
688
+ const extractId = (entry) => entry.id.split(':')[3];
697
689
 
698
- let serviceItem = accumulator.find((item) => item.name === serviceName);
690
+ const formattedHostmap = [];
699
691
 
700
- if (!serviceItem) {
701
- serviceItem = {
702
- name: serviceName,
703
- defaultUrl,
704
- defaultHost: Url.parse(defaultUrl).hostname,
705
- hosts: [],
706
- };
692
+ // for each of the services in the serviceLinks, find the matching host in the catalog
693
+ Object.keys(serviceHostmap.serviceLinks).forEach((serviceName) => {
694
+ const serviceUrl = serviceHostmap.serviceLinks[serviceName];
707
695
 
708
- accumulator.push(serviceItem);
696
+ let host;
697
+ try {
698
+ host = new URL(serviceUrl).host;
699
+ } catch (e) {
700
+ return;
709
701
  }
710
702
 
711
- serviceItem.hosts.push(
712
- // map the default key as a low priority default for cluster matching
713
- {
714
- host: key,
715
- ttl: -1,
716
- priority: 10,
717
- id: serviceHostmap.hostCatalog[key][0].id,
718
- homeCluster: serviceItem.defaultHost === key,
719
- },
720
- // map the rest of the hosts in their proper locations
721
- ...serviceHostmap.hostCatalog[key].map((host) => ({
722
- ...host,
723
- homeCluster: serviceItem.defaultHost === key,
724
- }))
725
- );
703
+ const matchingCatalogEntry = serviceHostmap.hostCatalog[host];
726
704
 
727
- return accumulator;
728
- }, []);
705
+ const formattedHost = {
706
+ name: serviceName,
707
+ defaultUrl: serviceUrl,
708
+ defaultHost: host,
709
+ hosts: [],
710
+ };
729
711
 
730
- // append service links that do not exist in the host catalog
731
- Object.keys(serviceHostmap.serviceLinks).forEach((key) => {
732
- const service = formattedHostmap.find((item) => item.name === key);
712
+ formattedHostmap.push(formattedHost);
733
713
 
734
- if (!service) {
735
- formattedHostmap.push({
736
- name: key,
737
- defaultUrl: serviceHostmap.serviceLinks[key],
738
- defaultHost: Url.parse(serviceHostmap.serviceLinks[key]).hostname,
739
- hosts: [],
740
- });
714
+ // If the catalog does not have any hosts we will be unable to find the service ID
715
+ // so can't search for other hosts
716
+ if (!matchingCatalogEntry || !matchingCatalogEntry[0]) {
717
+ return;
741
718
  }
719
+
720
+ const serviceId = extractId(matchingCatalogEntry[0]);
721
+
722
+ forEach(matchingCatalogEntry, (entry) => {
723
+ // The ids for all hosts within a hostCatalog entry should be the same
724
+ // but for safety, only add host entries that have the same id as the first one
725
+ if (extractId(entry) === serviceId) {
726
+ formattedHost.hosts.push({
727
+ ...entry,
728
+ homeCluster: true,
729
+ });
730
+ }
731
+ });
732
+
733
+ const otherHosts = [];
734
+
735
+ // find the services in the host catalog that have the same id
736
+ // and add them to the otherHosts
737
+ forEach(serviceHostmap.hostCatalog, (entry) => {
738
+ // exclude the matching catalog entry as we have already added that
739
+ if (entry === matchingCatalogEntry) {
740
+ return;
741
+ }
742
+
743
+ forEach(entry, (entryHost) => {
744
+ // only add hosts that have the correct id
745
+ if (extractId(entryHost) === serviceId) {
746
+ otherHosts.push({
747
+ ...entryHost,
748
+ homeCluster: false,
749
+ });
750
+ }
751
+ });
752
+ });
753
+
754
+ formattedHost.hosts.push(...otherHosts);
742
755
  });
743
756
 
744
757
  // update all the service urls in the host catalog
@@ -37,11 +37,15 @@ describe('webex-core', () => {
37
37
  orgId: process.env.EU_PRIMARY_ORG_ID,
38
38
  },
39
39
  }),
40
- ]).then(([[user], [userEU]]) => {
41
- webexUser = user;
42
- webexUserEU = userEU;
43
- })
44
- );
40
+ ]).then(([[user], [userEU]]) =>
41
+ new Promise((resolve) => {
42
+ setTimeout(() => {
43
+ webexUser = user;
44
+ webexUserEU = userEU;
45
+ resolve();
46
+ }, 1000)
47
+ })
48
+ ));
45
49
 
46
50
  beforeEach('create webex instance', () => {
47
51
  webex = new WebexCore({credentials: {supertoken: webexUser.token}});
@@ -301,6 +301,9 @@ describe('webex-core', () => {
301
301
  'example-b': 'https://example-b.com/api/v1',
302
302
  'example-c': 'https://example-c.com/api/v1',
303
303
  'example-d': 'https://example-d.com/api/v1',
304
+ 'example-e': 'https://example-e.com/api/v1',
305
+ 'example-f': 'https://example-f.com/api/v1',
306
+ 'example-g': 'https://example-g.com/api/v1',
304
307
  },
305
308
  hostCatalog: {
306
309
  'example-a.com': [
@@ -383,6 +386,48 @@ describe('webex-core', () => {
383
386
  id: '0:0:0:example-d-x',
384
387
  },
385
388
  ],
389
+ 'example-e.com': [
390
+ {
391
+ host: 'example-e-1.com',
392
+ ttl: -1,
393
+ priority: 5,
394
+ id: '0:0:0:different-e',
395
+ },
396
+ {
397
+ host: 'example-e-2.com',
398
+ ttl: -1,
399
+ priority: 3,
400
+ id: '0:0:0:different-e',
401
+ },
402
+ {
403
+ host: 'example-e-3.com',
404
+ ttl: -1,
405
+ priority: 1,
406
+ id: '0:0:0:different-e',
407
+ },
408
+ ],
409
+ 'example-e-1.com': [
410
+ {
411
+ host: 'example-e-4.com',
412
+ ttl: -1,
413
+ priority: 5,
414
+ id: '0:0:0:different-e',
415
+ },
416
+ {
417
+ host: 'example-e-5.com',
418
+ ttl: -1,
419
+ priority: 3,
420
+ id: '0:0:0:different-e',
421
+ },
422
+ {
423
+ host: 'example-e-3.com',
424
+ ttl: -1,
425
+ priority: 1,
426
+ id: '0:0:0:different-e-x',
427
+ },
428
+ ],
429
+ 'example-f.com': [
430
+ ],
386
431
  },
387
432
  format: 'hostmap',
388
433
  };
@@ -440,16 +485,6 @@ describe('webex-core', () => {
440
485
  });
441
486
  });
442
487
 
443
- it('creates a formmated host map containing all received host map host entries', () => {
444
- formattedHM = services._formatReceivedHostmap(serviceHostmap);
445
-
446
- formattedHM.forEach((service) => {
447
- const foundHosts = serviceHostmap.hostCatalog[service.defaultHost];
448
-
449
- assert.isDefined(foundHosts);
450
- });
451
- });
452
-
453
488
  it('creates an array with matching names', () => {
454
489
  formattedHM = services._formatReceivedHostmap(serviceHostmap);
455
490
 
@@ -459,6 +494,151 @@ describe('webex-core', () => {
459
494
  );
460
495
  });
461
496
 
497
+ it('creates the expected formatted host map', () => {
498
+ formattedHM = services._formatReceivedHostmap(serviceHostmap);
499
+
500
+ assert.deepEqual(formattedHM, [
501
+ {
502
+ defaultHost: 'example-a.com',
503
+ defaultUrl: 'https://example-a.com/api/v1',
504
+ hosts: [
505
+ {
506
+ homeCluster: true,
507
+ host: 'example-a-1.com',
508
+ id: '0:0:0:example-a',
509
+ priority: 5,
510
+ ttl: -1,
511
+ },
512
+ {
513
+ homeCluster: true,
514
+ host: 'example-a-2.com',
515
+ id: '0:0:0:example-a',
516
+ priority: 3,
517
+ ttl: -1,
518
+ },
519
+ ],
520
+ name: 'example-a',
521
+ },
522
+ {
523
+ defaultHost: 'example-b.com',
524
+ defaultUrl: 'https://example-b.com/api/v1',
525
+ hosts: [
526
+ {
527
+ homeCluster: true,
528
+ host: 'example-b-1.com',
529
+ id: '0:0:0:example-b',
530
+ priority: 5,
531
+ ttl: -1,
532
+ },
533
+ {
534
+ homeCluster: true,
535
+ host: 'example-b-2.com',
536
+ id: '0:0:0:example-b',
537
+ priority: 3,
538
+ ttl: -1,
539
+ },
540
+ ],
541
+ name: 'example-b',
542
+ },
543
+ {
544
+ defaultHost: 'example-c.com',
545
+ defaultUrl: 'https://example-c.com/api/v1',
546
+ hosts: [
547
+ {
548
+ homeCluster: true,
549
+ host: 'example-c-1.com',
550
+ id: '0:0:0:example-c',
551
+ priority: 5,
552
+ ttl: -1,
553
+ },
554
+ {
555
+ homeCluster: true,
556
+ host: 'example-c-2.com',
557
+ id: '0:0:0:example-c',
558
+ priority: 3,
559
+ ttl: -1,
560
+ },
561
+ ],
562
+ name: 'example-c',
563
+ },
564
+ {
565
+ defaultHost: 'example-d.com',
566
+ defaultUrl: 'https://example-d.com/api/v1',
567
+ hosts: [
568
+ {
569
+ homeCluster: true,
570
+ host: 'example-c-1.com',
571
+ id: '0:0:0:example-d',
572
+ priority: 5,
573
+ ttl: -1,
574
+ },
575
+ {
576
+ homeCluster: true,
577
+ host: 'example-c-2.com',
578
+ id: '0:0:0:example-d',
579
+ priority: 3,
580
+ ttl: -1,
581
+ },
582
+ ],
583
+ name: 'example-d',
584
+ },
585
+ {
586
+ defaultHost: 'example-e.com',
587
+ defaultUrl: 'https://example-e.com/api/v1',
588
+ hosts: [
589
+ {
590
+ homeCluster: true,
591
+ host: 'example-e-1.com',
592
+ id: '0:0:0:different-e',
593
+ priority: 5,
594
+ ttl: -1,
595
+ },
596
+ {
597
+ homeCluster: true,
598
+ host: 'example-e-2.com',
599
+ id: '0:0:0:different-e',
600
+ priority: 3,
601
+ ttl: -1,
602
+ },
603
+ {
604
+ homeCluster: true,
605
+ host: 'example-e-3.com',
606
+ id: '0:0:0:different-e',
607
+ priority: 1,
608
+ ttl: -1,
609
+ },
610
+ {
611
+ homeCluster: false,
612
+ host: 'example-e-4.com',
613
+ id: '0:0:0:different-e',
614
+ priority: 5,
615
+ ttl: -1,
616
+ },
617
+ {
618
+ homeCluster: false,
619
+ host: 'example-e-5.com',
620
+ id: '0:0:0:different-e',
621
+ priority: 3,
622
+ ttl: -1,
623
+ },
624
+ ],
625
+ name: 'example-e',
626
+ },
627
+ {
628
+ defaultHost: 'example-f.com',
629
+ defaultUrl: 'https://example-f.com/api/v1',
630
+ hosts: [],
631
+ name: 'example-f',
632
+ },
633
+ {
634
+ defaultHost: 'example-g.com',
635
+ defaultUrl: 'https://example-g.com/api/v1',
636
+ hosts: [],
637
+ name: 'example-g',
638
+ }
639
+ ]);
640
+ });
641
+
462
642
  it('has hostCatalog updated', () => {
463
643
  services._formatReceivedHostmap(serviceHostmap);
464
644