@sphereon/ssi-sdk.ms-request-api 0.33.0 → 0.33.1-feature.vcdm2.4
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.
- package/dist/IssuerUtil.js +16 -31
- package/dist/IssuerUtil.js.map +1 -1
- package/dist/agent/MsRequestApi.js +55 -72
- package/dist/agent/MsRequestApi.js.map +1 -1
- package/dist/index.js +4 -22
- package/dist/index.js.map +1 -1
- package/dist/types/IMsRequestApi.js +1 -2
- package/package.json +5 -5
package/dist/IssuerUtil.js
CHANGED
|
@@ -1,35 +1,20 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
const
|
|
15
|
-
|
|
16
|
-
return __awaiter(this, void 0, void 0, function* () {
|
|
17
|
-
const requestEndpoint = `${msIdentityHostName}${issuanceInfo.authenticationInfo.azTenantId}/verifiablecredentials/request`;
|
|
18
|
-
const payload = JSON.stringify(issuanceInfo.issuanceConfig);
|
|
19
|
-
const fetchOptions = {
|
|
20
|
-
method: 'POST',
|
|
21
|
-
body: payload,
|
|
22
|
-
headers: {
|
|
23
|
-
'Content-Type': 'application/json',
|
|
24
|
-
'Content-Length': payload.length.toString(),
|
|
25
|
-
Authorization: `Bearer ${accessToken}`,
|
|
26
|
-
},
|
|
27
|
-
};
|
|
28
|
-
const response = yield (0, cross_fetch_1.fetch)(requestEndpoint, fetchOptions);
|
|
29
|
-
return yield response.json();
|
|
30
|
-
});
|
|
1
|
+
import { fetch } from 'cross-fetch';
|
|
2
|
+
export async function fetchIssuanceRequestMs(issuanceInfo, accessToken, msIdentityHostName) {
|
|
3
|
+
const requestEndpoint = `${msIdentityHostName}${issuanceInfo.authenticationInfo.azTenantId}/verifiablecredentials/request`;
|
|
4
|
+
const payload = JSON.stringify(issuanceInfo.issuanceConfig);
|
|
5
|
+
const fetchOptions = {
|
|
6
|
+
method: 'POST',
|
|
7
|
+
body: payload,
|
|
8
|
+
headers: {
|
|
9
|
+
'Content-Type': 'application/json',
|
|
10
|
+
'Content-Length': payload.length.toString(),
|
|
11
|
+
Authorization: `Bearer ${accessToken}`,
|
|
12
|
+
},
|
|
13
|
+
};
|
|
14
|
+
const response = await fetch(requestEndpoint, fetchOptions);
|
|
15
|
+
return await response.json();
|
|
31
16
|
}
|
|
32
|
-
function generatePin(digits) {
|
|
17
|
+
export function generatePin(digits) {
|
|
33
18
|
const add = 1;
|
|
34
19
|
let max = 12 - add;
|
|
35
20
|
max = Math.pow(10, digits + add);
|
package/dist/IssuerUtil.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"IssuerUtil.js","sourceRoot":"","sources":["../src/IssuerUtil.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"IssuerUtil.js","sourceRoot":"","sources":["../src/IssuerUtil.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,KAAK,EAAE,MAAM,aAAa,CAAA;AACnC,MAAM,CAAC,KAAK,UAAU,sBAAsB,CAC1C,YAA2B,EAC3B,WAAmB,EACnB,kBAA0B;IAE1B,MAAM,eAAe,GAAG,GAAG,kBAAkB,GAAG,YAAY,CAAC,kBAAkB,CAAC,UAAU,gCAAgC,CAAA;IAE1H,MAAM,OAAO,GAAG,IAAI,CAAC,SAAS,CAAC,YAAY,CAAC,cAAc,CAAC,CAAA;IAC3D,MAAM,YAAY,GAAG;QACnB,MAAM,EAAE,MAAM;QACd,IAAI,EAAE,OAAO;QACb,OAAO,EAAE;YACP,cAAc,EAAE,kBAAkB;YAClC,gBAAgB,EAAE,OAAO,CAAC,MAAM,CAAC,QAAQ,EAAE;YAC3C,aAAa,EAAE,UAAU,WAAW,EAAE;SACvC;KACF,CAAA;IACD,MAAM,QAAQ,GAAG,MAAM,KAAK,CAAC,eAAe,EAAE,YAAY,CAAC,CAAA;IAC3D,OAAO,MAAM,QAAQ,CAAC,IAAI,EAAE,CAAA;AAC9B,CAAC;AAED,MAAM,UAAU,WAAW,CAAC,MAAc;IACxC,MAAM,GAAG,GAAG,CAAC,CAAA;IACb,IAAI,GAAG,GAAG,EAAE,GAAG,GAAG,CAAA;IAClB,GAAG,GAAG,IAAI,CAAC,GAAG,CAAC,EAAE,EAAE,MAAM,GAAG,GAAG,CAAC,CAAA;IAChC,MAAM,GAAG,GAAG,GAAG,GAAG,EAAE,CAAA,CAAC,4BAA4B;IACjD,MAAM,MAAM,GAAG,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,MAAM,EAAE,GAAG,CAAC,GAAG,GAAG,GAAG,GAAG,CAAC,CAAC,CAAC,GAAG,GAAG,CAAA;IAChE,OAAO,CAAC,EAAE,GAAG,MAAM,CAAC,CAAC,SAAS,CAAC,GAAG,CAAC,CAAA;AACrC,CAAC"}
|
|
@@ -1,80 +1,63 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
4
|
-
return new (P || (P = Promise))(function (resolve, reject) {
|
|
5
|
-
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
6
|
-
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
7
|
-
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
8
|
-
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
9
|
-
});
|
|
10
|
-
};
|
|
11
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
-
exports.MsRequestApi = void 0;
|
|
13
|
-
const ssi_sdk_ms_authenticator_1 = require("@sphereon/ssi-sdk.ms-authenticator");
|
|
14
|
-
const IssuerUtil_1 = require("../IssuerUtil");
|
|
1
|
+
import { assertEntraCredentialManifestUrlInCorrectRegion, determineMSAuthId, getMSClientCredentialAccessToken, newMSClientCredentialAuthenticator, } from '@sphereon/ssi-sdk.ms-authenticator';
|
|
2
|
+
import { fetchIssuanceRequestMs, generatePin } from '../IssuerUtil';
|
|
15
3
|
/**
|
|
16
4
|
* {@inheritDoc IMsRequestApi}
|
|
17
5
|
*/
|
|
18
|
-
class MsRequestApi {
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
this.
|
|
22
|
-
|
|
23
|
-
};
|
|
24
|
-
}
|
|
6
|
+
export class MsRequestApi {
|
|
7
|
+
clients = new Map();
|
|
8
|
+
methods = {
|
|
9
|
+
issuanceRequestMsVc: this.issuanceRequestMsVc.bind(this),
|
|
10
|
+
};
|
|
25
11
|
/** {@inheritDoc IMsRequestApi.issuanceRequestMsVc} */
|
|
26
|
-
issuanceRequestMsVc(clientIssueRequest, context) {
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
confidentialClient: clientInfo.confidentialClient,
|
|
38
|
-
});
|
|
39
|
-
const accessToken = authResult.accessToken;
|
|
40
|
-
const msIdentityHostName = yield (0, ssi_sdk_ms_authenticator_1.assertEntraCredentialManifestUrlInCorrectRegion)(clientIssueRequest.authenticationInfo);
|
|
41
|
-
// Config Request and App Config File should be a parameter to this function
|
|
42
|
-
if (!clientIssueRequest.authenticationInfo.azTenantId) {
|
|
43
|
-
throw new Error('azTenantId is missing.');
|
|
44
|
-
}
|
|
45
|
-
// check if pin is required, if found make sure we set a new random pin
|
|
46
|
-
// pincode is only used when the payload contains claim value pairs which results in an IDTokenhint
|
|
47
|
-
if (clientIssueRequest.clientIssuanceConfig.issuance.pin) {
|
|
48
|
-
clientIssueRequest.clientIssuanceConfig.issuance.pin.value = (0, IssuerUtil_1.generatePin)(clientIssueRequest.clientIssuanceConfig.issuance.pin.length);
|
|
49
|
-
}
|
|
50
|
-
const issuance = {
|
|
51
|
-
type: clientIssueRequest.clientIssuanceConfig.issuance.type,
|
|
52
|
-
manifest: clientIssueRequest.clientIssuanceConfig.issuance.manifest,
|
|
53
|
-
pin: clientIssueRequest.clientIssuanceConfig.issuance.pin,
|
|
54
|
-
claims: clientIssueRequest.claims,
|
|
55
|
-
};
|
|
56
|
-
const issuanceConfig = {
|
|
57
|
-
authority: clientIssueRequest.clientIssuanceConfig.authority,
|
|
58
|
-
includeQRCode: clientIssueRequest.clientIssuanceConfig.includeQRCode,
|
|
59
|
-
registration: clientIssueRequest.clientIssuanceConfig.registration,
|
|
60
|
-
callback: clientIssueRequest.clientIssuanceConfig.callback,
|
|
61
|
-
issuance: issuance,
|
|
62
|
-
};
|
|
63
|
-
const issueRequest = {
|
|
64
|
-
authenticationInfo: clientIssueRequest.authenticationInfo,
|
|
65
|
-
issuanceConfig: issuanceConfig,
|
|
66
|
-
};
|
|
67
|
-
const resp = yield (0, IssuerUtil_1.fetchIssuanceRequestMs)(issueRequest, accessToken, msIdentityHostName);
|
|
68
|
-
// the response from the VC Request API call is returned to the caller (the UI). It contains the URI to the request which Authenticator can download after
|
|
69
|
-
// it has scanned the QR code. If the payload requested the VC Request service to create the QR code that is returned as well
|
|
70
|
-
// the javascript in the UI will use that QR code to display it on the screen to the user.
|
|
71
|
-
resp.id = issueRequest.issuanceConfig.callback.state; // add session id so browser can pull status
|
|
72
|
-
if (issueRequest.issuanceConfig.issuance.pin) {
|
|
73
|
-
resp.pin = issueRequest.issuanceConfig.issuance.pin.value; // add pin code so browser can display it
|
|
74
|
-
}
|
|
75
|
-
return resp;
|
|
12
|
+
async issuanceRequestMsVc(clientIssueRequest, context) {
|
|
13
|
+
const id = determineMSAuthId(clientIssueRequest.authenticationInfo);
|
|
14
|
+
if (!this.clients.has(id)) {
|
|
15
|
+
this.clients.set(id, await newMSClientCredentialAuthenticator(clientIssueRequest.authenticationInfo));
|
|
16
|
+
}
|
|
17
|
+
const clientInfo = this.clients.get(id);
|
|
18
|
+
if (!clientInfo) {
|
|
19
|
+
throw Error(`Could not get client from arguments for id: ${id}`);
|
|
20
|
+
}
|
|
21
|
+
const authResult = await getMSClientCredentialAccessToken(clientIssueRequest.authenticationInfo, {
|
|
22
|
+
confidentialClient: clientInfo.confidentialClient,
|
|
76
23
|
});
|
|
24
|
+
const accessToken = authResult.accessToken;
|
|
25
|
+
const msIdentityHostName = await assertEntraCredentialManifestUrlInCorrectRegion(clientIssueRequest.authenticationInfo);
|
|
26
|
+
// Config Request and App Config File should be a parameter to this function
|
|
27
|
+
if (!clientIssueRequest.authenticationInfo.azTenantId) {
|
|
28
|
+
throw new Error('azTenantId is missing.');
|
|
29
|
+
}
|
|
30
|
+
// check if pin is required, if found make sure we set a new random pin
|
|
31
|
+
// pincode is only used when the payload contains claim value pairs which results in an IDTokenhint
|
|
32
|
+
if (clientIssueRequest.clientIssuanceConfig.issuance.pin) {
|
|
33
|
+
clientIssueRequest.clientIssuanceConfig.issuance.pin.value = generatePin(clientIssueRequest.clientIssuanceConfig.issuance.pin.length);
|
|
34
|
+
}
|
|
35
|
+
const issuance = {
|
|
36
|
+
type: clientIssueRequest.clientIssuanceConfig.issuance.type,
|
|
37
|
+
manifest: clientIssueRequest.clientIssuanceConfig.issuance.manifest,
|
|
38
|
+
pin: clientIssueRequest.clientIssuanceConfig.issuance.pin,
|
|
39
|
+
claims: clientIssueRequest.claims,
|
|
40
|
+
};
|
|
41
|
+
const issuanceConfig = {
|
|
42
|
+
authority: clientIssueRequest.clientIssuanceConfig.authority,
|
|
43
|
+
includeQRCode: clientIssueRequest.clientIssuanceConfig.includeQRCode,
|
|
44
|
+
registration: clientIssueRequest.clientIssuanceConfig.registration,
|
|
45
|
+
callback: clientIssueRequest.clientIssuanceConfig.callback,
|
|
46
|
+
issuance: issuance,
|
|
47
|
+
};
|
|
48
|
+
const issueRequest = {
|
|
49
|
+
authenticationInfo: clientIssueRequest.authenticationInfo,
|
|
50
|
+
issuanceConfig: issuanceConfig,
|
|
51
|
+
};
|
|
52
|
+
const resp = await fetchIssuanceRequestMs(issueRequest, accessToken, msIdentityHostName);
|
|
53
|
+
// the response from the VC Request API call is returned to the caller (the UI). It contains the URI to the request which Authenticator can download after
|
|
54
|
+
// it has scanned the QR code. If the payload requested the VC Request service to create the QR code that is returned as well
|
|
55
|
+
// the javascript in the UI will use that QR code to display it on the screen to the user.
|
|
56
|
+
resp.id = issueRequest.issuanceConfig.callback.state; // add session id so browser can pull status
|
|
57
|
+
if (issueRequest.issuanceConfig.issuance.pin) {
|
|
58
|
+
resp.pin = issueRequest.issuanceConfig.issuance.pin.value; // add pin code so browser can display it
|
|
59
|
+
}
|
|
60
|
+
return resp;
|
|
77
61
|
}
|
|
78
62
|
}
|
|
79
|
-
exports.MsRequestApi = MsRequestApi;
|
|
80
63
|
//# sourceMappingURL=MsRequestApi.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"MsRequestApi.js","sourceRoot":"","sources":["../../src/agent/MsRequestApi.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"MsRequestApi.js","sourceRoot":"","sources":["../../src/agent/MsRequestApi.ts"],"names":[],"mappings":"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"}
|
package/dist/index.js
CHANGED
|
@@ -1,27 +1,9 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
-
if (k2 === undefined) k2 = k;
|
|
4
|
-
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
-
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
-
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
-
}
|
|
8
|
-
Object.defineProperty(o, k2, desc);
|
|
9
|
-
}) : (function(o, m, k, k2) {
|
|
10
|
-
if (k2 === undefined) k2 = k;
|
|
11
|
-
o[k2] = m[k];
|
|
12
|
-
}));
|
|
13
|
-
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
-
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
-
};
|
|
16
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
-
exports.MsRequestApi = exports.schema = void 0;
|
|
18
1
|
/**
|
|
19
2
|
* @public
|
|
20
3
|
*/
|
|
21
4
|
const schema = require('../plugin.schema.json');
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
__exportStar(require("./IssuerUtil"), exports);
|
|
5
|
+
export { schema };
|
|
6
|
+
export { MsRequestApi } from './agent/MsRequestApi';
|
|
7
|
+
export * from './types/IMsRequestApi';
|
|
8
|
+
export * from './IssuerUtil';
|
|
27
9
|
//# sourceMappingURL=index.js.map
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,MAAM,MAAM,GAAG,OAAO,CAAC,uBAAuB,CAAC,CAAA;AAC/C,OAAO,EAAE,MAAM,EAAE,CAAA;AACjB,OAAO,EAAE,YAAY,EAAE,MAAM,sBAAsB,CAAA;AACnD,cAAc,uBAAuB,CAAA;AACrC,cAAc,cAAc,CAAA"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sphereon/ssi-sdk.ms-request-api",
|
|
3
|
-
"version": "0.33.
|
|
3
|
+
"version": "0.33.1-feature.vcdm2.4+9f634bdb",
|
|
4
4
|
"source": "src/index.ts",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -15,13 +15,13 @@
|
|
|
15
15
|
"generate-plugin-schema": "ts-node ../../packages/dev/bin/sphereon.js dev generate-plugin-schema"
|
|
16
16
|
},
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"@sphereon/ssi-sdk.ms-authenticator": "0.33.
|
|
18
|
+
"@sphereon/ssi-sdk.ms-authenticator": "0.33.1-feature.vcdm2.4+9f634bdb",
|
|
19
19
|
"@veramo/core": "4.2.0",
|
|
20
20
|
"cross-fetch": "^3.1.8"
|
|
21
21
|
},
|
|
22
22
|
"devDependencies": {
|
|
23
|
-
"@sphereon/ssi-sdk.agent-config": "0.33.
|
|
24
|
-
"@sphereon/ssi-sdk.credential-store": "0.33.
|
|
23
|
+
"@sphereon/ssi-sdk.agent-config": "0.33.1-feature.vcdm2.4+9f634bdb",
|
|
24
|
+
"@sphereon/ssi-sdk.credential-store": "0.33.1-feature.vcdm2.4+9f634bdb",
|
|
25
25
|
"@types/express": "^4.17.21",
|
|
26
26
|
"@types/express-session": "^1.18.0",
|
|
27
27
|
"@types/jest": "^27.5.2",
|
|
@@ -66,5 +66,5 @@
|
|
|
66
66
|
"Issuer"
|
|
67
67
|
],
|
|
68
68
|
"nx": {},
|
|
69
|
-
"gitHead": "
|
|
69
|
+
"gitHead": "9f634bdb714061141e277508c124b08d626f6036"
|
|
70
70
|
}
|