forked from stateofca/opencred
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaudit.js
259 lines (239 loc) · 7.3 KB
/
audit.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
/*!
* Copyright 2023 - 2024 California Department of Motor Vehicles
* Copyright 2023 - 2024 Digital Bazaar, Inc.
*
* SPDX-License-Identifier: BSD-3-Clause
*/
import {decodeJwtPayload, verifyUtils} from '../common/utils.js';
import {
getDocumentLoader,
getOverrideDidResolver
} from '../common/documentLoader.js';
import {
getFieldMatches,
getIssuerDidDocumentOverrides,
getIssuerDidsForVpToken,
getVcTokensForVpToken
} from '../common/audit.js';
import {config} from '@bedrock/core';
import {extractCertsFromX5C} from '../common/x509.js';
import {httpClient} from '@digitalbazaar/http-client';
import {logger} from './logger.js';
import {SUITES} from '../common/suites.js';
export const auditPresentation = async (req, res) => {
const vpToken = req.body.vpToken;
const fields = req.body.fields;
const reCaptchaToken = req.body.reCaptchaToken;
let errorMessage = 'Error';
const defaultErrorResponse = {
verified: false,
matches: {},
message: 'Error'
};
if(!config.opencred.audit.enable) {
return res.status(501).send({
...defaultErrorResponse,
message: 'Auditing is not enabled for this system.'
});
}
if(!vpToken) {
return res.status(400).send({
...defaultErrorResponse,
message: 'vpToken is required.'}
);
}
if(config.opencred.reCaptcha.enable) {
if(!reCaptchaToken) {
return res.status(400).send({
...defaultErrorResponse,
message: 'A reCAPTCHA token must be provided when reCAPTCHA is enabled.'
});
}
const reCaptchaParams = new URLSearchParams();
reCaptchaParams.append('secret', config.opencred.reCaptcha.secretKey);
reCaptchaParams.append('response', reCaptchaToken);
try {
const reCaptchaResponse = await httpClient.post(
'https://www.google.com/recaptcha/api/siteverify', {
headers: {
'Content-Type': 'application/x-www-form-urlencoded'
},
body: reCaptchaParams
});
if(!reCaptchaResponse.data.success) {
errorMessage =
'There was an error verifying the reCAPTCHA token provided.\n' +
'This may happen if your reCAPTCHA session has expired or\n' +
'reCAPTCHA is improperly configured in your system.';
logger.debug('reCAPTCHA error response:', {
reCaptchaResponse: reCaptchaResponse.data
});
return res.status(400).send({
...defaultErrorResponse,
message: errorMessage
});
}
logger.debug('reCAPTCHA success response:', {
reCaptchaResponse: reCaptchaResponse.data
});
} catch(error) {
if(error) {
logger.error(error.message, {error});
return res.status(400).send({
...defaultErrorResponse,
message: 'There was an error verifying the reCAPTCHA token provided.'
});
}
}
}
let matches = {};
try {
try {
if(fields && Object.entries(fields).length) {
matches = getFieldMatches(vpToken, fields);
}
} catch(error) {
return res.status(400).send({
verified: false,
matches,
message: error.message
});
}
if(typeof vpToken === 'string') {
const issuerDids = getIssuerDidsForVpToken(vpToken);
const vpJwtPayload = decodeJwtPayload(vpToken);
const presentationDate = vpJwtPayload.iat ?
new Date(vpJwtPayload.iat * 1000) :
null;
if(!presentationDate) {
return res.status(400).send({
verified: false,
matches,
message: 'Decoded vp token must contain an issuance date at "$.iat"'
});
}
let didDocumentOverrides;
try {
didDocumentOverrides =
await getIssuerDidDocumentOverrides(issuerDids, presentationDate);
} catch(error) {
return res.status(400).send({
verified: false,
matches,
message: error.message
});
}
const resolver = getOverrideDidResolver(didDocumentOverrides);
const vcTokens = getVcTokensForVpToken(vpToken);
let verificationErrors = [];
for(const vcToken of vcTokens) {
const vcResult = await verifyUtils.verifyCredentialJWT(vcToken, {
resolver,
skewTime: presentationDate.getTime()
});
if(!vcResult.verified) {
verificationErrors = verificationErrors.concat(vcResult.errors);
} else {
const certs = await extractCertsFromX5C(
vcResult.signer.publicKeyJwk
);
if(!certs) {
verificationErrors.push(
'Invalid certificate in x5c claim'
);
} else {
const certResult = await verifyUtils.verifyx509JWT(certs, {
presentationDate,
caSource: 'database'
});
if(!certResult.verified) {
verificationErrors =
verificationErrors.concat(certResult.errors);
}
}
}
}
if(verificationErrors.length !== 0) {
return res.status(400).send({
verified: false,
matches,
message: verificationErrors.join('\n')
});
}
const vpResult = await verifyUtils.verifyPresentationJWT(
vpToken, {
audience: vpJwtPayload.aud,
resolver,
skewTime: presentationDate.getTime()
});
if(!vpResult.verified) {
return res.status(400).send({
verified: false,
matches,
message: vpResult.errors[0]
});
}
} else if(typeof vpToken === 'object') {
const issuerDids = getIssuerDidsForVpToken(vpToken);
const presentationDate = vpToken.proof?.created ?
new Date(vpToken.proof?.created) :
null;
if(!presentationDate) {
return res.status(400).send({
verified: false,
matches,
message: 'vp token must contain an issuance date at "$.proof.created"'
});
}
let didDocumentOverrides;
try {
didDocumentOverrides =
await getIssuerDidDocumentOverrides(issuerDids, presentationDate);
} catch(error) {
return res.status(400).send({
verified: false,
matches,
message: error.message
});
}
let documentLoader = getDocumentLoader();
for(const [did, didDocument] of Object.entries(didDocumentOverrides)) {
documentLoader.addStatic(did, didDocument);
}
documentLoader = documentLoader.build();
const vpResult = await verifyUtils.verifyPresentationDataIntegrity({
presentation: vpToken,
challenge: vpToken.proof?.challenge,
documentLoader,
suite: SUITES,
now: presentationDate
});
if(!vpResult.verified) {
return res.status(400).send({
verified: false,
matches,
message:
verifyUtils.getVerifyPresentationDataIntegrityErrors(vpResult)
});
}
} else {
return res.status(400).send({
verified: false,
matches,
message: 'Invalid format of "vpToken"'
});
}
} catch(error) {
logger.error(error.message, {error});
return res.status(500).send({
verified: false,
matches,
message: error.message
});
}
return res.status(200).send({
verified: true,
matches,
message: 'Success'
});
};