@webex/plugin-authorization-node 3.0.0-beta.15 → 3.0.0-beta.17

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.
@@ -1,27 +1,17 @@
1
1
  "use strict";
2
2
 
3
3
  var _Object$defineProperty = require("@babel/runtime-corejs2/core-js/object/define-property");
4
-
5
4
  var _interopRequireDefault = require("@babel/runtime-corejs2/helpers/interopRequireDefault");
6
-
7
5
  _Object$defineProperty(exports, "__esModule", {
8
6
  value: true
9
7
  });
10
-
11
8
  exports.default = void 0;
12
-
13
9
  var _promise = _interopRequireDefault(require("@babel/runtime-corejs2/core-js/promise"));
14
-
15
10
  var _getOwnPropertyDescriptor = _interopRequireDefault(require("@babel/runtime-corejs2/core-js/object/get-own-property-descriptor"));
16
-
17
11
  var _applyDecoratedDescriptor2 = _interopRequireDefault(require("@babel/runtime-corejs2/helpers/applyDecoratedDescriptor"));
18
-
19
12
  var _common = require("@webex/common");
20
-
21
13
  var _webexCore = require("@webex/webex-core");
22
-
23
14
  var _dec, _obj;
24
-
25
15
  /**
26
16
  * NodeJS support for OAuth2
27
17
  * @class
@@ -66,7 +56,6 @@ var Authorization = _webexCore.WebexPlugin.extend((_dec = (0, _common.whileInFli
66
56
  }
67
57
  });
68
58
  },
69
-
70
59
  /**
71
60
  * Exchanges an authorization code for an access token
72
61
  * @instance
@@ -77,14 +66,11 @@ var Authorization = _webexCore.WebexPlugin.extend((_dec = (0, _common.whileInFli
77
66
  */
78
67
  requestAuthorizationCodeGrant: function requestAuthorizationCodeGrant() {
79
68
  var _this = this;
80
-
81
69
  var options = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
82
70
  this.logger.info('credentials: requesting authorization code grant');
83
-
84
71
  if (!options.code) {
85
72
  return _promise.default.reject(new Error('`options.code` is required'));
86
73
  }
87
-
88
74
  return this.webex.request({
89
75
  method: 'POST',
90
76
  uri: this.config.tokenUrl,
@@ -108,13 +94,10 @@ var Authorization = _webexCore.WebexPlugin.extend((_dec = (0, _common.whileInFli
108
94
  if (res.statusCode !== 400) {
109
95
  return _promise.default.reject(res);
110
96
  }
111
-
112
97
  var ErrorConstructor = _webexCore.grantErrors.select(res.body.error);
113
-
114
98
  return _promise.default.reject(new ErrorConstructor(res._res || res));
115
99
  });
116
100
  },
117
-
118
101
  /**
119
102
  * Requests a Webex access token for a user already authenticated into
120
103
  * your product.
@@ -132,16 +115,13 @@ var Authorization = _webexCore.WebexPlugin.extend((_dec = (0, _common.whileInFli
132
115
  */
133
116
  requestAccessTokenFromJwt: function requestAccessTokenFromJwt(_ref) {
134
117
  var _this2 = this;
135
-
136
118
  var jwt = _ref.jwt;
137
119
  var hydraUri = this.webex.internal.services.get('hydra', true);
138
-
139
120
  if (hydraUri && hydraUri.slice(-1) !== '/') {
140
121
  // add a `/` to hydra's uri from the services catalog so that
141
122
  // it matches the current env service format.
142
123
  hydraUri += '/';
143
124
  }
144
-
145
125
  hydraUri = hydraUri || process.env.HYDRA_SERVICE_URL || 'https://api.ciscospark.com/v1/';
146
126
  return this.webex.request({
147
127
  method: 'POST',
@@ -164,9 +144,8 @@ var Authorization = _webexCore.WebexPlugin.extend((_dec = (0, _common.whileInFli
164
144
  return _this2.webex.internal.services.initServiceCatalogs();
165
145
  });
166
146
  },
167
- version: "3.0.0-beta.15"
147
+ version: "3.0.0-beta.17"
168
148
  }, ((0, _applyDecoratedDescriptor2.default)(_obj, "requestAuthorizationCodeGrant", [_dec, _common.oneFlight], (0, _getOwnPropertyDescriptor.default)(_obj, "requestAuthorizationCodeGrant"), _obj), (0, _applyDecoratedDescriptor2.default)(_obj, "requestAccessTokenFromJwt", [_common.oneFlight], (0, _getOwnPropertyDescriptor.default)(_obj, "requestAccessTokenFromJwt"), _obj)), _obj)));
169
-
170
149
  var _default = Authorization;
171
150
  exports.default = _default;
172
151
  //# sourceMappingURL=authorization.js.map
@@ -1 +1 @@
1
- {"version":3,"names":["Authorization","WebexPlugin","extend","whileInFlight","derived","isAuthenticating","deps","fn","isAuthorizing","session","default","type","namespace","logout","options","webex","request","method","uri","config","logoutUrl","body","token","cisService","service","requestAuthorizationCodeGrant","logger","info","code","reject","Error","tokenUrl","form","grant_type","redirect_uri","self_contained_token","auth","user","client_id","pass","client_secret","sendImmediately","shouldRefreshAccessToken","then","res","credentials","set","supertoken","catch","statusCode","ErrorConstructor","grantErrors","select","error","_res","requestAccessTokenFromJwt","jwt","hydraUri","internal","services","get","slice","process","env","HYDRA_SERVICE_URL","headers","authorization","access_token","token_type","expires_in","expiresIn","initServiceCatalogs","oneFlight"],"sources":["authorization.js"],"sourcesContent":["/*!\n * Copyright (c) 2015-2020 Cisco Systems, Inc. See LICENSE file.\n */\n\n/* eslint camelcase: [0] */\n\nimport {oneFlight, whileInFlight} from '@webex/common';\nimport {grantErrors, WebexPlugin} from '@webex/webex-core';\n\n/**\n * NodeJS support for OAuth2\n * @class\n * @name AuthorizationNode\n */\nconst Authorization = WebexPlugin.extend({\n derived: {\n /**\n * Alias of {@link AuthorizationNode#isAuthorizing}\n * @instance\n * @memberof AuthorizationNode\n * @type {boolean}\n */\n isAuthenticating: {\n deps: ['isAuthorizing'],\n fn() {\n return this.isAuthorizing;\n },\n },\n },\n\n session: {\n /**\n * Indicates if an Authorization Code exchange is inflight\n * @instance\n * @memberof AuthorizationNode\n * @type {boolean}\n */\n isAuthorizing: {\n default: false,\n type: 'boolean',\n },\n },\n\n namespace: 'Credentials',\n\n logout(options = {}) {\n this.webex.request({\n method: 'POST',\n uri: this.config.logoutUrl,\n body: {\n token: options.token,\n cisService: this.config.service,\n },\n });\n },\n\n @whileInFlight('isAuthorizing')\n @oneFlight\n /**\n * Exchanges an authorization code for an access token\n * @instance\n * @memberof AuthorizationNode\n * @param {Object} options\n * @param {Object} options.code\n * @returns {Promise}\n */\n requestAuthorizationCodeGrant(options = {}) {\n this.logger.info('credentials: requesting authorization code grant');\n\n if (!options.code) {\n return Promise.reject(new Error('`options.code` is required'));\n }\n\n return this.webex\n .request({\n method: 'POST',\n uri: this.config.tokenUrl,\n form: {\n grant_type: 'authorization_code',\n redirect_uri: this.config.redirect_uri,\n code: options.code,\n self_contained_token: true,\n },\n auth: {\n user: this.config.client_id,\n pass: this.config.client_secret,\n sendImmediately: true,\n },\n shouldRefreshAccessToken: false,\n })\n .then((res) => {\n this.webex.credentials.set({supertoken: res.body});\n })\n .catch((res) => {\n if (res.statusCode !== 400) {\n return Promise.reject(res);\n }\n\n const ErrorConstructor = grantErrors.select(res.body.error);\n\n return Promise.reject(new ErrorConstructor(res._res || res));\n });\n },\n\n @oneFlight\n /**\n * Requests a Webex access token for a user already authenticated into\n * your product.\n *\n * Note: You'll need to supply a jwtRefreshCallback of the form\n * `Promise<jwt> = jwtRefreshCallback(webex)` for automatic token refresh to\n * work.\n *\n * @instance\n * @memberof AuthorizationNode\n * @param {Object} options\n * @param {Object} options.jwt This is a jwt generated by your backend that\n * identifies a user in your system\n * @returns {Promise}\n */\n requestAccessTokenFromJwt({jwt}) {\n let hydraUri = this.webex.internal.services.get('hydra', true);\n\n if (hydraUri && hydraUri.slice(-1) !== '/') {\n // add a `/` to hydra's uri from the services catalog so that\n // it matches the current env service format.\n hydraUri += '/';\n }\n\n hydraUri = hydraUri || process.env.HYDRA_SERVICE_URL || 'https://api.ciscospark.com/v1/';\n\n return this.webex\n .request({\n method: 'POST',\n uri: `${hydraUri}jwt/login`,\n headers: {\n authorization: jwt,\n },\n })\n .then(({body}) => ({\n access_token: body.token,\n token_type: 'Bearer',\n expires_in: body.expiresIn,\n }))\n .then((token) => {\n this.webex.credentials.set({\n supertoken: token,\n });\n })\n .then(() => this.webex.internal.services.initServiceCatalogs());\n },\n});\n\nexport default Authorization;\n"],"mappings":"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"}
1
+ {"version":3,"names":["Authorization","WebexPlugin","extend","whileInFlight","derived","isAuthenticating","deps","fn","isAuthorizing","session","default","type","namespace","logout","options","webex","request","method","uri","config","logoutUrl","body","token","cisService","service","requestAuthorizationCodeGrant","logger","info","code","reject","Error","tokenUrl","form","grant_type","redirect_uri","self_contained_token","auth","user","client_id","pass","client_secret","sendImmediately","shouldRefreshAccessToken","then","res","credentials","set","supertoken","catch","statusCode","ErrorConstructor","grantErrors","select","error","_res","requestAccessTokenFromJwt","jwt","hydraUri","internal","services","get","slice","process","env","HYDRA_SERVICE_URL","headers","authorization","access_token","token_type","expires_in","expiresIn","initServiceCatalogs","oneFlight"],"sources":["authorization.js"],"sourcesContent":["/*!\n * Copyright (c) 2015-2020 Cisco Systems, Inc. See LICENSE file.\n */\n\n/* eslint camelcase: [0] */\n\nimport {oneFlight, whileInFlight} from '@webex/common';\nimport {grantErrors, WebexPlugin} from '@webex/webex-core';\n\n/**\n * NodeJS support for OAuth2\n * @class\n * @name AuthorizationNode\n */\nconst Authorization = WebexPlugin.extend({\n derived: {\n /**\n * Alias of {@link AuthorizationNode#isAuthorizing}\n * @instance\n * @memberof AuthorizationNode\n * @type {boolean}\n */\n isAuthenticating: {\n deps: ['isAuthorizing'],\n fn() {\n return this.isAuthorizing;\n },\n },\n },\n\n session: {\n /**\n * Indicates if an Authorization Code exchange is inflight\n * @instance\n * @memberof AuthorizationNode\n * @type {boolean}\n */\n isAuthorizing: {\n default: false,\n type: 'boolean',\n },\n },\n\n namespace: 'Credentials',\n\n logout(options = {}) {\n this.webex.request({\n method: 'POST',\n uri: this.config.logoutUrl,\n body: {\n token: options.token,\n cisService: this.config.service,\n },\n });\n },\n\n @whileInFlight('isAuthorizing')\n @oneFlight\n /**\n * Exchanges an authorization code for an access token\n * @instance\n * @memberof AuthorizationNode\n * @param {Object} options\n * @param {Object} options.code\n * @returns {Promise}\n */\n requestAuthorizationCodeGrant(options = {}) {\n this.logger.info('credentials: requesting authorization code grant');\n\n if (!options.code) {\n return Promise.reject(new Error('`options.code` is required'));\n }\n\n return this.webex\n .request({\n method: 'POST',\n uri: this.config.tokenUrl,\n form: {\n grant_type: 'authorization_code',\n redirect_uri: this.config.redirect_uri,\n code: options.code,\n self_contained_token: true,\n },\n auth: {\n user: this.config.client_id,\n pass: this.config.client_secret,\n sendImmediately: true,\n },\n shouldRefreshAccessToken: false,\n })\n .then((res) => {\n this.webex.credentials.set({supertoken: res.body});\n })\n .catch((res) => {\n if (res.statusCode !== 400) {\n return Promise.reject(res);\n }\n\n const ErrorConstructor = grantErrors.select(res.body.error);\n\n return Promise.reject(new ErrorConstructor(res._res || res));\n });\n },\n\n @oneFlight\n /**\n * Requests a Webex access token for a user already authenticated into\n * your product.\n *\n * Note: You'll need to supply a jwtRefreshCallback of the form\n * `Promise<jwt> = jwtRefreshCallback(webex)` for automatic token refresh to\n * work.\n *\n * @instance\n * @memberof AuthorizationNode\n * @param {Object} options\n * @param {Object} options.jwt This is a jwt generated by your backend that\n * identifies a user in your system\n * @returns {Promise}\n */\n requestAccessTokenFromJwt({jwt}) {\n let hydraUri = this.webex.internal.services.get('hydra', true);\n\n if (hydraUri && hydraUri.slice(-1) !== '/') {\n // add a `/` to hydra's uri from the services catalog so that\n // it matches the current env service format.\n hydraUri += '/';\n }\n\n hydraUri = hydraUri || process.env.HYDRA_SERVICE_URL || 'https://api.ciscospark.com/v1/';\n\n return this.webex\n .request({\n method: 'POST',\n uri: `${hydraUri}jwt/login`,\n headers: {\n authorization: jwt,\n },\n })\n .then(({body}) => ({\n access_token: body.token,\n token_type: 'Bearer',\n expires_in: body.expiresIn,\n }))\n .then((token) => {\n this.webex.credentials.set({\n supertoken: token,\n });\n })\n .then(() => this.webex.internal.services.initServiceCatalogs());\n },\n});\n\nexport default Authorization;\n"],"mappings":"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"}
package/dist/config.js CHANGED
@@ -1,13 +1,10 @@
1
1
  "use strict";
2
2
 
3
3
  var _Object$defineProperty = require("@babel/runtime-corejs2/core-js/object/define-property");
4
-
5
4
  _Object$defineProperty(exports, "__esModule", {
6
5
  value: true
7
6
  });
8
-
9
7
  exports.default = void 0;
10
-
11
8
  /*!
12
9
  * Copyright (c) 2015-2020 Cisco Systems, Inc. See LICENSE file.
13
10
  */
@@ -1 +1 @@
1
- {"version":3,"names":["credentials"],"sources":["config.js"],"sourcesContent":["/*!\n * Copyright (c) 2015-2020 Cisco Systems, Inc. See LICENSE file.\n */\n\nexport default {\n credentials: {},\n};\n"],"mappings":";;;;;;;;;;AAAA;AACA;AACA;eAEe;EACbA,WAAW,EAAE;AADA,C"}
1
+ {"version":3,"names":["credentials"],"sources":["config.js"],"sourcesContent":["/*!\n * Copyright (c) 2015-2020 Cisco Systems, Inc. See LICENSE file.\n */\n\nexport default {\n credentials: {},\n};\n"],"mappings":";;;;;;;AAAA;AACA;AACA;AAFA,eAIe;EACbA,WAAW,EAAE,CAAC;AAChB,CAAC;AAAA"}
package/dist/index.js CHANGED
@@ -1,38 +1,30 @@
1
1
  "use strict";
2
2
 
3
3
  var _Object$defineProperty = require("@babel/runtime-corejs2/core-js/object/define-property");
4
-
5
4
  var _interopRequireDefault = require("@babel/runtime-corejs2/helpers/interopRequireDefault");
6
-
7
5
  _Object$defineProperty(exports, "__esModule", {
8
6
  value: true
9
7
  });
10
-
11
8
  _Object$defineProperty(exports, "config", {
12
9
  enumerable: true,
13
10
  get: function get() {
14
11
  return _config.default;
15
12
  }
16
13
  });
17
-
18
14
  _Object$defineProperty(exports, "default", {
19
15
  enumerable: true,
20
16
  get: function get() {
21
17
  return _authorization.default;
22
18
  }
23
19
  });
24
-
25
20
  require("@webex/internal-plugin-device");
26
-
27
21
  var _webexCore = require("@webex/webex-core");
28
-
29
22
  var _authorization = _interopRequireDefault(require("./authorization"));
30
-
31
23
  var _config = _interopRequireDefault(require("./config"));
32
-
33
24
  /*!
34
25
  * Copyright (c) 2015-2020 Cisco Systems, Inc. See LICENSE file.
35
26
  */
27
+
36
28
  var proxies = ['isAuthorizing', 'isAuthenticating'];
37
29
  (0, _webexCore.registerPlugin)('authorization', _authorization.default, {
38
30
  config: _config.default,
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"names":["proxies","registerPlugin","Authorization","config"],"sources":["index.js"],"sourcesContent":["/*!\n * Copyright (c) 2015-2020 Cisco Systems, Inc. See LICENSE file.\n */\n\nimport '@webex/internal-plugin-device';\nimport {registerPlugin} from '@webex/webex-core';\n\nimport Authorization from './authorization';\nimport config from './config';\n\nconst proxies = ['isAuthorizing', 'isAuthenticating'];\n\nregisterPlugin('authorization', Authorization, {\n config,\n proxies,\n});\n\nexport {default} from './authorization';\nexport {default as config} from './config';\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;AAIA;;AACA;;AAEA;;AACA;;AARA;AACA;AACA;AAQA,IAAMA,OAAO,GAAG,CAAC,eAAD,EAAkB,kBAAlB,CAAhB;AAEA,IAAAC,yBAAA,EAAe,eAAf,EAAgCC,sBAAhC,EAA+C;EAC7CC,MAAM,EAANA,eAD6C;EAE7CH,OAAO,EAAPA;AAF6C,CAA/C"}
1
+ {"version":3,"names":["proxies","registerPlugin","Authorization","config"],"sources":["index.js"],"sourcesContent":["/*!\n * Copyright (c) 2015-2020 Cisco Systems, Inc. See LICENSE file.\n */\n\nimport '@webex/internal-plugin-device';\nimport {registerPlugin} from '@webex/webex-core';\n\nimport Authorization from './authorization';\nimport config from './config';\n\nconst proxies = ['isAuthorizing', 'isAuthenticating'];\n\nregisterPlugin('authorization', Authorization, {\n config,\n proxies,\n});\n\nexport {default} from './authorization';\nexport {default as config} from './config';\n"],"mappings":";;;;;;;;;;;;;;;;;;;AAIA;AACA;AAEA;AACA;AARA;AACA;AACA;;AAQA,IAAMA,OAAO,GAAG,CAAC,eAAe,EAAE,kBAAkB,CAAC;AAErD,IAAAC,yBAAc,EAAC,eAAe,EAAEC,sBAAa,EAAE;EAC7CC,MAAM,EAANA,eAAM;EACNH,OAAO,EAAPA;AACF,CAAC,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@webex/plugin-authorization-node",
3
- "version": "3.0.0-beta.15",
3
+ "version": "3.0.0-beta.17",
4
4
  "description": "",
5
5
  "license": "MIT",
6
6
  "main": "dist/index.js",
@@ -21,18 +21,18 @@
21
21
  ]
22
22
  },
23
23
  "devDependencies": {
24
- "@webex/test-helper-appid": "3.0.0-beta.15",
25
- "@webex/test-helper-chai": "3.0.0-beta.15",
26
- "@webex/test-helper-mocha": "3.0.0-beta.15",
27
- "@webex/test-helper-mock-webex": "3.0.0-beta.15",
28
- "@webex/test-helper-test-users": "3.0.0-beta.15",
24
+ "@webex/test-helper-appid": "3.0.0-beta.17",
25
+ "@webex/test-helper-chai": "3.0.0-beta.17",
26
+ "@webex/test-helper-mocha": "3.0.0-beta.17",
27
+ "@webex/test-helper-mock-webex": "3.0.0-beta.17",
28
+ "@webex/test-helper-test-users": "3.0.0-beta.17",
29
29
  "sinon": "^9.2.4"
30
30
  },
31
31
  "dependencies": {
32
- "@webex/common": "3.0.0-beta.15",
33
- "@webex/internal-plugin-device": "3.0.0-beta.15",
34
- "@webex/plugin-authorization-node": "3.0.0-beta.15",
35
- "@webex/webex-core": "3.0.0-beta.15",
32
+ "@webex/common": "3.0.0-beta.17",
33
+ "@webex/internal-plugin-device": "3.0.0-beta.17",
34
+ "@webex/plugin-authorization-node": "3.0.0-beta.17",
35
+ "@webex/webex-core": "3.0.0-beta.17",
36
36
  "uuid": "^3.3.2"
37
37
  }
38
38
  }