2020-11-16 16:50:26 -07:00
|
|
|
/*
|
|
|
|
Copyright 2020 Yarmo Mackenbach
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
const mergeOptions = require('merge-options')
|
|
|
|
const validUrl = require('valid-url')
|
|
|
|
const serviceproviders = require('./serviceproviders')
|
2020-11-16 17:18:12 -07:00
|
|
|
const utils = require('./utils')
|
|
|
|
|
2020-11-16 17:20:00 -07:00
|
|
|
const runVerificationJson = (
|
|
|
|
res,
|
|
|
|
proofData,
|
|
|
|
checkPath,
|
|
|
|
checkClaim,
|
|
|
|
checkRelation
|
|
|
|
) => {
|
2020-11-16 17:18:12 -07:00
|
|
|
let re
|
|
|
|
|
|
|
|
if (res.isVerified || !proofData) {
|
|
|
|
return res
|
|
|
|
}
|
|
|
|
|
|
|
|
if (Array.isArray(proofData)) {
|
|
|
|
proofData.forEach((item, i) => {
|
|
|
|
res = runVerificationJson(res, item, checkPath, checkClaim, checkRelation)
|
|
|
|
})
|
|
|
|
return res
|
|
|
|
}
|
|
|
|
|
|
|
|
if (checkPath.length == 0) {
|
|
|
|
switch (checkRelation) {
|
|
|
|
default:
|
|
|
|
case 'contains':
|
|
|
|
re = new RegExp(
|
|
|
|
checkClaim.replace('[', '\\[').replace(']', '\\]'),
|
|
|
|
'gi'
|
|
|
|
)
|
|
|
|
res.isVerified = re.test(proofData.replace(/\r?\n|\r/, ''))
|
|
|
|
break
|
|
|
|
case 'equals':
|
|
|
|
res.isVerified =
|
|
|
|
proofData.replace(/\r?\n|\r/, '').toLowerCase() ==
|
|
|
|
checkClaim.toLowerCase()
|
|
|
|
break
|
|
|
|
case 'oneOf':
|
|
|
|
re = new RegExp(checkClaim, 'gi')
|
|
|
|
res.isVerified = re.test(proofData.join('|'))
|
|
|
|
break
|
|
|
|
}
|
|
|
|
return res
|
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
|
|
|
checkPath[0] in proofData
|
|
|
|
} catch (e) {
|
|
|
|
res.errors.push('err_data_structure_incorrect')
|
|
|
|
return res
|
|
|
|
}
|
|
|
|
|
|
|
|
res = runVerificationJson(
|
|
|
|
res,
|
|
|
|
proofData[checkPath[0]],
|
|
|
|
checkPath.slice(1),
|
|
|
|
checkClaim,
|
|
|
|
checkRelation
|
|
|
|
)
|
|
|
|
return res
|
|
|
|
}
|
|
|
|
|
|
|
|
const runVerification = (proofData, spData) => {
|
|
|
|
let res = {
|
|
|
|
isVerified: false,
|
|
|
|
errors: [],
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (spData.proof.format) {
|
|
|
|
case 'json':
|
|
|
|
res = runVerificationJson(
|
|
|
|
res,
|
|
|
|
proofData,
|
|
|
|
spData.claim.path,
|
|
|
|
utils.generateClaim(spData.claim.fingerprint, spData.claim.format),
|
|
|
|
spData.claim.relation
|
|
|
|
)
|
|
|
|
break
|
|
|
|
case 'text':
|
|
|
|
re = new RegExp(
|
|
|
|
utils.generateClaim(spData.claim.fingerprint, spData.claim.format),
|
|
|
|
'gi'
|
|
|
|
)
|
2020-11-16 18:17:40 -07:00
|
|
|
res.isVerified = re.test(proofData.replace(/\r?\n|\r/, ''))
|
2020-11-16 17:18:12 -07:00
|
|
|
break
|
|
|
|
}
|
|
|
|
|
|
|
|
return res
|
|
|
|
}
|
2020-11-16 16:50:26 -07:00
|
|
|
|
|
|
|
const verify = async (uri, fingerprint, opts) => {
|
|
|
|
if (!fingerprint) {
|
|
|
|
fingerprint = null
|
|
|
|
}
|
|
|
|
if (!opts) {
|
|
|
|
opts = {}
|
|
|
|
}
|
|
|
|
|
|
|
|
const defaultOpts = {
|
|
|
|
returnMatchesOnly: false,
|
|
|
|
proxyPolicy: 'adaptive',
|
|
|
|
doipProxyHostname: 'proxy.keyoxide.org',
|
|
|
|
}
|
|
|
|
opts = mergeOptions(defaultOpts, opts)
|
|
|
|
|
|
|
|
if (!validUrl.isUri(uri)) {
|
|
|
|
throw new Error('Not a valid URI')
|
|
|
|
}
|
|
|
|
|
|
|
|
const spMatches = serviceproviders.match(uri, opts)
|
|
|
|
|
|
|
|
if ('returnMatchesOnly' in opts && opts.returnMatchesOnly) {
|
|
|
|
return spMatches
|
|
|
|
}
|
|
|
|
let claimVerificationDone = false,
|
|
|
|
claimVerificationResult,
|
|
|
|
sp,
|
|
|
|
iSp = 0,
|
|
|
|
res,
|
|
|
|
proofData,
|
|
|
|
spData
|
|
|
|
while (!claimVerificationDone && iSp < spMatches.length) {
|
|
|
|
spData = spMatches[iSp]
|
|
|
|
spData.claim.fingerprint = fingerprint
|
|
|
|
|
|
|
|
res = null
|
|
|
|
|
|
|
|
if (spData.customRequestHandler instanceof Function) {
|
|
|
|
proofData = await spData.customRequestHandler(spData, opts)
|
|
|
|
} else if (
|
|
|
|
!spData.proof.useProxy ||
|
|
|
|
('proxyPolicy' in opts && !opts.useProxyWhenNeeded)
|
|
|
|
) {
|
|
|
|
proofData = await serviceproviders.directRequestHandler(spData, opts)
|
|
|
|
} else {
|
|
|
|
proofData = await serviceproviders.proxyRequestHandler(spData, opts)
|
|
|
|
}
|
|
|
|
|
|
|
|
if (proofData) {
|
2020-11-16 17:18:12 -07:00
|
|
|
claimVerificationResult = runVerification(proofData, spData)
|
2020-11-16 16:50:26 -07:00
|
|
|
|
|
|
|
if (claimVerificationResult.errors.length == 0) {
|
|
|
|
claimVerificationDone = true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
iSp++
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!claimVerificationResult) {
|
|
|
|
claimVerificationResult = {
|
|
|
|
isVerified: false,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return {
|
|
|
|
isVerified: claimVerificationResult.isVerified,
|
|
|
|
serviceproviderData: spData,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
exports.verify = verify
|