@verii/endpoints-organizations-registrar 1.0.0-pre.1752076816
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/LICENSE +202 -0
- package/NOTICE +1 -0
- package/README.md +3 -0
- package/package.json +86 -0
- package/src/config/abi.json +1 -0
- package/src/config/config.js +261 -0
- package/src/controllers/consents/autohooks.js +6 -0
- package/src/controllers/consents/controller.js +106 -0
- package/src/controllers/consents/schemas/consent-response.schema.js +45 -0
- package/src/controllers/did-web-host/controller.js +64 -0
- package/src/controllers/groups/autohooks.js +10 -0
- package/src/controllers/groups/controller.js +172 -0
- package/src/controllers/groups/schemas/group.schema.json +22 -0
- package/src/controllers/groups/schemas/index.js +7 -0
- package/src/controllers/groups/schemas/modify-group.schema.json +25 -0
- package/src/controllers/image_upload/controller.js +48 -0
- package/src/controllers/invitations/controller.js +79 -0
- package/src/controllers/organizations/_did/autohooks.js +16 -0
- package/src/controllers/organizations/_did/controller.js +617 -0
- package/src/controllers/organizations/_did/invitations/_invitationId/autohooks.js +16 -0
- package/src/controllers/organizations/_did/invitations/_invitationId/controller.js +217 -0
- package/src/controllers/organizations/_did/invitations/controller.js +197 -0
- package/src/controllers/organizations/_did/keys/controller.js +141 -0
- package/src/controllers/organizations/_did/services/controller.js +195 -0
- package/src/controllers/organizations/_did/signatories/controller.js +63 -0
- package/src/controllers/organizations/autohooks.js +65 -0
- package/src/controllers/organizations/controller.js +322 -0
- package/src/controllers/organizations/full/controller.js +285 -0
- package/src/controllers/organizations/plugins.js +21 -0
- package/src/controllers/organizations/schemas/add-key-body.schema.json +35 -0
- package/src/controllers/organizations/schemas/create-did-service.schema.json +70 -0
- package/src/controllers/organizations/schemas/did-key.schema.json +178 -0
- package/src/controllers/organizations/schemas/full-organization.schema.json +35 -0
- package/src/controllers/organizations/schemas/index.js +33 -0
- package/src/controllers/organizations/schemas/invitationCodeProperty.schema.json +3 -0
- package/src/controllers/organizations/schemas/organization-ids.schema.json +34 -0
- package/src/controllers/organizations/schemas/organization-kyb-profile-creation.schema.json +26 -0
- package/src/controllers/organizations/schemas/organization-profile-creation.schema.json +20 -0
- package/src/controllers/organizations/schemas/organization-profile-update.schema.json +19 -0
- package/src/controllers/organizations/schemas/organization-profile-verifiable-credential.schema.json +25 -0
- package/src/controllers/organizations/schemas/organization-registry-service-response.schema.json +26 -0
- package/src/controllers/organizations/schemas/organization-service.schema.json +34 -0
- package/src/controllers/organizations/schemas/organization-verified-profile.schema.json +123 -0
- package/src/controllers/organizations/schemas/organization.search-profile.query-params.schema.json +50 -0
- package/src/controllers/organizations/schemas/organization.search.query-params.schema.json +42 -0
- package/src/controllers/reference/controller.js +103 -0
- package/src/controllers/resolve-did/controller.js +45 -0
- package/src/controllers/resolve-did/resolve-did.js +30 -0
- package/src/controllers/resolve-did/schemas/did-doc.schema.json +155 -0
- package/src/controllers/resolve-did/schemas/did-proof.schema.json +44 -0
- package/src/controllers/resolve-did/schemas/index.js +26 -0
- package/src/controllers/resolve-did/schemas/public-key.schema.json +173 -0
- package/src/controllers/resolve-kid/controller.js +76 -0
- package/src/controllers/resolve-kid/public-key-formats.js +8 -0
- package/src/controllers/service-types/controller.js +81 -0
- package/src/controllers/setup_image_upload/controller.js +99 -0
- package/src/controllers/signatories/controller.js +43 -0
- package/src/controllers/users/autohooks.js +10 -0
- package/src/controllers/users/controller.js +221 -0
- package/src/controllers/users/schemas/base-user.schema.json +55 -0
- package/src/controllers/users/schemas/index.js +4 -0
- package/src/controllers/users/schemas/modify-user.schema.js +17 -0
- package/src/controllers/users/schemas/user.schema.js +20 -0
- package/src/entities/groups/domain/constants.js +21 -0
- package/src/entities/groups/domain/index.js +19 -0
- package/src/entities/groups/factories/groups-factory.js +48 -0
- package/src/entities/groups/factories/index.js +17 -0
- package/src/entities/groups/index.js +19 -0
- package/src/entities/groups/repo.js +122 -0
- package/src/entities/images/domain/constant.js +11 -0
- package/src/entities/images/domain/index.js +3 -0
- package/src/entities/images/extension/activate.extension.js +35 -0
- package/src/entities/images/extension/deactivate.extension.js +27 -0
- package/src/entities/images/extension/find-by-url.extension.js +24 -0
- package/src/entities/images/extension/index.js +5 -0
- package/src/entities/images/factories/images-factory.js +43 -0
- package/src/entities/images/factories/index.js +17 -0
- package/src/entities/images/index.js +5 -0
- package/src/entities/images/repo.js +43 -0
- package/src/entities/images/schema/image-metadata.schema.js +58 -0
- package/src/entities/images/schema/index.js +3 -0
- package/src/entities/index.js +31 -0
- package/src/entities/invitations/domains/build-invitation-url.js +14 -0
- package/src/entities/invitations/domains/get-given-family-name-from-name.js +20 -0
- package/src/entities/invitations/domains/index.js +7 -0
- package/src/entities/invitations/domains/init-invitation-emails.js +17 -0
- package/src/entities/invitations/domains/is-invitation-expired.js +5 -0
- package/src/entities/invitations/domains/validate-invitee-email.js +18 -0
- package/src/entities/invitations/factories/index.js +17 -0
- package/src/entities/invitations/factories/invitations-factory.js +51 -0
- package/src/entities/invitations/index.js +6 -0
- package/src/entities/invitations/orchestrators/accept-invitation.js +24 -0
- package/src/entities/invitations/orchestrators/index.js +4 -0
- package/src/entities/invitations/orchestrators/send-email-invitee.js +36 -0
- package/src/entities/invitations/repo.js +37 -0
- package/src/entities/invitations/schemas/add-invitation-body.js +122 -0
- package/src/entities/invitations/schemas/get-invitation-response-body.js +20 -0
- package/src/entities/invitations/schemas/index.js +5 -0
- package/src/entities/invitations/schemas/invitation-response-item-body.js +61 -0
- package/src/entities/kms/factories/index.js +17 -0
- package/src/entities/kms/factories/kms-factory.js +31 -0
- package/src/entities/monitors/index.js +17 -0
- package/src/entities/monitors/orchestrators/index.js +17 -0
- package/src/entities/monitors/orchestrators/monitors.js +230 -0
- package/src/entities/oauth/domain/constants.js +23 -0
- package/src/entities/oauth/domain/index.js +5 -0
- package/src/entities/oauth/domain/roles.js +92 -0
- package/src/entities/oauth/domain/scopes.js +35 -0
- package/src/entities/oauth/index.js +4 -0
- package/src/entities/oauth/orchestrators/auth0-provisioner.js +293 -0
- package/src/entities/oauth/orchestrators/index.js +3 -0
- package/src/entities/organization-keys/domains/build-organization-key.js +50 -0
- package/src/entities/organization-keys/domains/constants.js +30 -0
- package/src/entities/organization-keys/domains/extract-verification-method-from-byo-did-document.js +38 -0
- package/src/entities/organization-keys/domains/find-key-by-purpose.js +6 -0
- package/src/entities/organization-keys/domains/index.js +10 -0
- package/src/entities/organization-keys/domains/jwk-to-hex-key-transformer.js +13 -0
- package/src/entities/organization-keys/domains/map-key-response.js +29 -0
- package/src/entities/organization-keys/domains/validate-non-custodial-key.js +11 -0
- package/src/entities/organization-keys/domains/validate-organization-key.js +42 -0
- package/src/entities/organization-keys/factories/index.js +17 -0
- package/src/entities/organization-keys/factories/organization-keys-factory.js +55 -0
- package/src/entities/organization-keys/index.js +5 -0
- package/src/entities/organization-keys/orchestrators/add-key-to-did-doc.js +19 -0
- package/src/entities/organization-keys/orchestrators/add-key.js +155 -0
- package/src/entities/organization-keys/orchestrators/add-operator-keys.js +46 -0
- package/src/entities/organization-keys/orchestrators/delete-key.js +93 -0
- package/src/entities/organization-keys/orchestrators/get-key.js +39 -0
- package/src/entities/organization-keys/orchestrators/index.js +24 -0
- package/src/entities/organization-keys/orchestrators/resolve-verification-method-byo-did.js +28 -0
- package/src/entities/organization-keys/repos/repo.js +48 -0
- package/src/entities/organization-services/adapters/index.js +21 -0
- package/src/entities/organization-services/adapters/init-provision-auth0-client-grants.js +44 -0
- package/src/entities/organization-services/adapters/init-provision-auth0-clients.js +56 -0
- package/src/entities/organization-services/adapters/update-blockchain-permissions-from-permitted-services.js +118 -0
- package/src/entities/organization-services/domains/activate-services.js +12 -0
- package/src/entities/organization-services/domains/build-organizations-services.js +38 -0
- package/src/entities/organization-services/domains/build-public-services.js +19 -0
- package/src/entities/organization-services/domains/constants.js +32 -0
- package/src/entities/organization-services/domains/extract-cao-service-refs.js +10 -0
- package/src/entities/organization-services/domains/extract-service-endpoint-did.js +10 -0
- package/src/entities/organization-services/domains/get-service-consent-type.js +16 -0
- package/src/entities/organization-services/domains/get-service-types-from-categories.js +18 -0
- package/src/entities/organization-services/domains/index.js +17 -0
- package/src/entities/organization-services/domains/is-new-node-operator-service.js +25 -0
- package/src/entities/organization-services/domains/is-service-category.js +31 -0
- package/src/entities/organization-services/domains/normalize-service-endpoint.js +6 -0
- package/src/entities/organization-services/domains/select-activated-services.js +8 -0
- package/src/entities/organization-services/domains/transform-profile-service.js +88 -0
- package/src/entities/organization-services/domains/validate-cao-service-refs.js +25 -0
- package/src/entities/organization-services/domains/validate-service-credential-type.js +47 -0
- package/src/entities/organization-services/domains/validate-service-endpoint.js +35 -0
- package/src/entities/organization-services/domains/validate-service-fields-by-service-type.js +37 -0
- package/src/entities/organization-services/domains/validate-service-id-uniqueness.js +19 -0
- package/src/entities/organization-services/domains/validate-service-key-purposes.js +56 -0
- package/src/entities/organization-services/domains/validate-service-type.js +12 -0
- package/src/entities/organization-services/domains/validate-service.js +80 -0
- package/src/entities/organization-services/domains/validate-services-for-delete.js +32 -0
- package/src/entities/organization-services/index.js +5 -0
- package/src/entities/organization-services/orchestrators/add-service.js +106 -0
- package/src/entities/organization-services/orchestrators/delete-service.js +142 -0
- package/src/entities/organization-services/orchestrators/get-service.js +36 -0
- package/src/entities/organization-services/orchestrators/index.js +8 -0
- package/src/entities/organization-services/orchestrators/init-add-service-to-organization.js +141 -0
- package/src/entities/organization-services/orchestrators/load-cao-service-refs.js +56 -0
- package/src/entities/organization-services/orchestrators/update-service.js +103 -0
- package/src/entities/organizations/adapters/index.js +6 -0
- package/src/entities/organizations/adapters/init-organization-registrar-emails.js +215 -0
- package/src/entities/organizations/adapters/init-send-activation-emails-to-caos.js +89 -0
- package/src/entities/organizations/adapters/send-email-invitation-accepted-to-inviter.js +70 -0
- package/src/entities/organizations/adapters/send-email-notifications.js +212 -0
- package/src/entities/organizations/domains/build-custodied-did-web.js +12 -0
- package/src/entities/organizations/domains/build-full-organization-response.js +40 -0
- package/src/entities/organizations/domains/build-organization-modifications-on-service-change.js +82 -0
- package/src/entities/organizations/domains/build-profile-vc-url.js +8 -0
- package/src/entities/organizations/domains/build-profile-verifiable-credential.js +36 -0
- package/src/entities/organizations/domains/build-public-profile.js +9 -0
- package/src/entities/organizations/domains/constants.js +54 -0
- package/src/entities/organizations/domains/index.js +17 -0
- package/src/entities/organizations/domains/organization-vc-checks.js +49 -0
- package/src/entities/organizations/domains/parse-profile-to-csv.js +41 -0
- package/src/entities/organizations/domains/prepare-profile-vc.js +28 -0
- package/src/entities/organizations/domains/profile-name-normalization.js +5 -0
- package/src/entities/organizations/domains/validate-byo-did-keys.js +28 -0
- package/src/entities/organizations/domains/validate-profile-name.js +48 -0
- package/src/entities/organizations/domains/validate-profile-website.js +17 -0
- package/src/entities/organizations/domains/validate-update-profile.js +11 -0
- package/src/entities/organizations/factories/index.js +17 -0
- package/src/entities/organizations/factories/organizations-factory.js +180 -0
- package/src/entities/organizations/index.js +6 -0
- package/src/entities/organizations/orchestrators/add-primary-permissions.js +28 -0
- package/src/entities/organizations/orchestrators/build-custodied-organization.js +92 -0
- package/src/entities/organizations/orchestrators/build-non-custodied-organization.js +83 -0
- package/src/entities/organizations/orchestrators/index.js +6 -0
- package/src/entities/organizations/orchestrators/init-create-organization.js +221 -0
- package/src/entities/organizations/orchestrators/init-provision-group.js +48 -0
- package/src/entities/organizations/orchestrators/verify-profile-website-unique.js +15 -0
- package/src/entities/organizations/repos/find-caos-extension.js +49 -0
- package/src/entities/organizations/repos/index.js +17 -0
- package/src/entities/organizations/repos/repo.js +156 -0
- package/src/entities/organizations/repos/search-by-aggregation-extension.js +128 -0
- package/src/entities/organizations/repos/transform-did-filter.js +13 -0
- package/src/entities/organizations/repos/transform-organization-filter.js +106 -0
- package/src/entities/registrar-consents/constants.js +10 -0
- package/src/entities/registrar-consents/factories/index.js +17 -0
- package/src/entities/registrar-consents/factories/registrar-consents-factory.js +38 -0
- package/src/entities/registrar-consents/index.js +3 -0
- package/src/entities/registrar-consents/repos/registrar-consent-repo-extension.js +55 -0
- package/src/entities/registrar-consents/repos/repo.js +31 -0
- package/src/entities/signatories/domain/constants.js +12 -0
- package/src/entities/signatories/domain/index.js +4 -0
- package/src/entities/signatories/domain/organization-emails.js +29 -0
- package/src/entities/signatories/factories/index.js +17 -0
- package/src/entities/signatories/factories/signatory-status-factory.js +53 -0
- package/src/entities/signatories/index.js +5 -0
- package/src/entities/signatories/orchestrators/approve-reminder.js +24 -0
- package/src/entities/signatories/orchestrators/index.js +6 -0
- package/src/entities/signatories/orchestrators/reject-reminder.js +17 -0
- package/src/entities/signatories/orchestrators/send-reminders.js +102 -0
- package/src/entities/signatories/orchestrators/validate-auth-code.js +56 -0
- package/src/entities/signatories/repos/index.js +3 -0
- package/src/entities/signatories/repos/repo.js +35 -0
- package/src/entities/signatories/repos/signatory-status-state-repo-extension.js +124 -0
- package/src/entities/users/domains/constants.js +40 -0
- package/src/entities/users/domains/index.js +4 -0
- package/src/entities/users/domains/user-registrar-emails.js +52 -0
- package/src/entities/users/index.js +4 -0
- package/src/entities/users/orchestrators/create-auth0-user.js +60 -0
- package/src/entities/users/orchestrators/get-or-create-auth0-user.js +63 -0
- package/src/entities/users/orchestrators/index.js +22 -0
- package/src/entities/users/orchestrators/user-management.js +157 -0
- package/src/fetchers/index.js +19 -0
- package/src/fetchers/monitoring/index.js +9 -0
- package/src/fetchers/monitoring/monitor-add-to-page-fetcher.js +18 -0
- package/src/fetchers/monitoring/monitor-create-fetcher.js +23 -0
- package/src/fetchers/monitoring/monitor-delete-fetcher.js +6 -0
- package/src/fetchers/monitoring/monitor-get-all-fetcher.js +6 -0
- package/src/fetchers/monitoring/section-create-fetcher.js +16 -0
- package/src/fetchers/monitoring/section-get-all-fetcher.js +6 -0
- package/src/fetchers/monitoring/service-version-fetcher.js +6 -0
- package/src/helpers/init-permissions-contract.js +48 -0
- package/src/index.js +23 -0
- package/src/init-server.js +91 -0
- package/src/organizations-registrar-endpoints.js +68 -0
- package/src/plugins/authorization.js +233 -0
- package/src/plugins/index.js +4 -0
- package/src/plugins/pubsub-plugin.js +82 -0
- package/src/subscribers/notify-caos.js +63 -0
- package/src/subscribers/notify-inviters.js +42 -0
- package/src/subscribers/notify-monitoring.js +40 -0
- package/src/subscribers/notify-signatory.js +51 -0
- package/src/subscribers/notify-support-and-groups.js +95 -0
- package/src/templates/invitee-invitation-email-body.hbs +13 -0
- package/src/templates/invitee-invitation-email-subject.hbs +1 -0
- package/src/templates/signatory-approval-email-body.hbs +92 -0
- package/src/templates/support-organization-created-body.hbs +17 -0
- package/src/templates/support-organization-created-subject.hbs +1 -0
- package/src/templates/support-signatory-max-reminders-reached-email-body.hbs +6 -0
- package/src/templates/support-signatory-max-reminders-reached-email-subject.hbs +1 -0
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
const { map } = require('lodash/fp');
|
|
2
|
+
const {
|
|
3
|
+
generateKeyPair,
|
|
4
|
+
KeyPurposes,
|
|
5
|
+
KeyAlgorithms,
|
|
6
|
+
} = require('@verii/crypto');
|
|
7
|
+
const { createDidDoc } = require('@verii/did-doc');
|
|
8
|
+
const { mapWithIndex } = require('@verii/common-functions');
|
|
9
|
+
const { normalizeProfileName, buildCustodiedDidWeb } = require('../domains');
|
|
10
|
+
const {
|
|
11
|
+
buildOrganizationServices,
|
|
12
|
+
loadCaoServiceRefs,
|
|
13
|
+
validateServices,
|
|
14
|
+
} = require('../../organization-services');
|
|
15
|
+
|
|
16
|
+
const buildCustodiedOrganization = async (
|
|
17
|
+
{ profile, serviceEndpoints, invitation },
|
|
18
|
+
context
|
|
19
|
+
) => {
|
|
20
|
+
const newServices = buildOrganizationServices(serviceEndpoints, invitation);
|
|
21
|
+
|
|
22
|
+
const caoServiceRefs = await loadCaoServiceRefs(serviceEndpoints, context);
|
|
23
|
+
validateServices(newServices, caoServiceRefs, context);
|
|
24
|
+
const newKeyPairs = map(() => generateKeyPair({ format: 'jwk' }), keySpecs);
|
|
25
|
+
|
|
26
|
+
const kmsKeyEntries = await Promise.all(
|
|
27
|
+
map(
|
|
28
|
+
(newKeyPair) =>
|
|
29
|
+
context.kms.importKey({
|
|
30
|
+
...newKeyPair,
|
|
31
|
+
algorithm: 'ec',
|
|
32
|
+
curve: 'secp256k1',
|
|
33
|
+
}),
|
|
34
|
+
newKeyPairs
|
|
35
|
+
)
|
|
36
|
+
);
|
|
37
|
+
|
|
38
|
+
const newKeys = mapWithIndex(
|
|
39
|
+
(keySpec, i) => ({
|
|
40
|
+
...keySpec,
|
|
41
|
+
kmsKeyId: kmsKeyEntries[i].id,
|
|
42
|
+
algorithm: KeyAlgorithms.SECP256K1,
|
|
43
|
+
custodied: true,
|
|
44
|
+
publicKey: newKeyPairs[i].publicKey,
|
|
45
|
+
}),
|
|
46
|
+
keySpecs
|
|
47
|
+
);
|
|
48
|
+
|
|
49
|
+
const did = buildCustodiedDidWeb(profile, context);
|
|
50
|
+
|
|
51
|
+
const { didDoc } = createDidDoc({
|
|
52
|
+
did,
|
|
53
|
+
services: newServices,
|
|
54
|
+
keys: newKeys,
|
|
55
|
+
});
|
|
56
|
+
|
|
57
|
+
return {
|
|
58
|
+
newOrganization: {
|
|
59
|
+
didDoc,
|
|
60
|
+
profile,
|
|
61
|
+
normalizedProfileName: normalizeProfileName(profile.name),
|
|
62
|
+
didNotCustodied: false,
|
|
63
|
+
services: newServices,
|
|
64
|
+
invitationId: invitation?._id,
|
|
65
|
+
},
|
|
66
|
+
newKeys,
|
|
67
|
+
newKeyPairs,
|
|
68
|
+
caoServiceRefs,
|
|
69
|
+
};
|
|
70
|
+
};
|
|
71
|
+
|
|
72
|
+
const keySpecs = [
|
|
73
|
+
{
|
|
74
|
+
id: '#vc-signing-key-1',
|
|
75
|
+
type: 'EcdsaSecp256k1VerificationKey2019',
|
|
76
|
+
purposes: [KeyPurposes.ISSUING_METADATA],
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
id: '#eth-account-key-1',
|
|
80
|
+
type: 'EcdsaSecp256k1VerificationKey2019',
|
|
81
|
+
purposes: [KeyPurposes.DLT_TRANSACTIONS],
|
|
82
|
+
},
|
|
83
|
+
{
|
|
84
|
+
id: '#exchange-key-1',
|
|
85
|
+
type: 'EcdsaSecp256k1VerificationKey2019',
|
|
86
|
+
purposes: [KeyPurposes.EXCHANGES],
|
|
87
|
+
},
|
|
88
|
+
];
|
|
89
|
+
|
|
90
|
+
module.exports = {
|
|
91
|
+
buildCustodiedOrganization,
|
|
92
|
+
};
|
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
const newError = require('http-errors');
|
|
2
|
+
const { map, omit } = require('lodash/fp');
|
|
3
|
+
const { resolveDidWeb } = require('@verii/did-web');
|
|
4
|
+
const {
|
|
5
|
+
buildOrganizationServices,
|
|
6
|
+
loadCaoServiceRefs,
|
|
7
|
+
validateByoDidDocService,
|
|
8
|
+
validateServices,
|
|
9
|
+
} = require('../../organization-services');
|
|
10
|
+
const {
|
|
11
|
+
extractVerificationMethodFromByoDID,
|
|
12
|
+
} = require('../../organization-keys');
|
|
13
|
+
const { validateByoDidKeys, normalizeProfileName } = require('../domains');
|
|
14
|
+
|
|
15
|
+
const buildNonCustodiedOrganization = async (
|
|
16
|
+
{ byoDid, byoKeys, serviceEndpoints, profile, invitation },
|
|
17
|
+
context
|
|
18
|
+
) => {
|
|
19
|
+
const { repos } = context;
|
|
20
|
+
|
|
21
|
+
// ensure did isn't already locally registered
|
|
22
|
+
const orgDb = await repos.organizations.findOne({
|
|
23
|
+
filter: { 'didDoc.id': byoDid },
|
|
24
|
+
});
|
|
25
|
+
if (orgDb) {
|
|
26
|
+
throw newError(400, 'Organization already exists', {
|
|
27
|
+
errorCode: 'organization_already_exists',
|
|
28
|
+
});
|
|
29
|
+
}
|
|
30
|
+
const didDocument = await resolveDidWeb(byoDid);
|
|
31
|
+
|
|
32
|
+
// load keys from remote did document
|
|
33
|
+
validateByoDidKeys(byoKeys);
|
|
34
|
+
const newKeys = await Promise.all(
|
|
35
|
+
map(
|
|
36
|
+
(byoKey) => ({
|
|
37
|
+
...byoKey,
|
|
38
|
+
verificationMethod: extractVerificationMethodFromByoDID({
|
|
39
|
+
didDocument,
|
|
40
|
+
kidFragment: byoKey.kidFragment,
|
|
41
|
+
}),
|
|
42
|
+
}),
|
|
43
|
+
byoKeys
|
|
44
|
+
)
|
|
45
|
+
);
|
|
46
|
+
|
|
47
|
+
const preparedServices = map((serviceEndpoint) => {
|
|
48
|
+
const byoDidDocService = validateByoDidDocService(
|
|
49
|
+
didDocument,
|
|
50
|
+
serviceEndpoint.id,
|
|
51
|
+
newKeys
|
|
52
|
+
);
|
|
53
|
+
return {
|
|
54
|
+
...omit(['id'], serviceEndpoint),
|
|
55
|
+
...byoDidDocService,
|
|
56
|
+
};
|
|
57
|
+
}, serviceEndpoints);
|
|
58
|
+
|
|
59
|
+
const newServices = buildOrganizationServices(preparedServices, invitation);
|
|
60
|
+
|
|
61
|
+
const caoServiceRefs = await loadCaoServiceRefs(preparedServices, context);
|
|
62
|
+
validateServices(newServices, caoServiceRefs, context);
|
|
63
|
+
|
|
64
|
+
return {
|
|
65
|
+
newOrganization: {
|
|
66
|
+
didDoc: {
|
|
67
|
+
id: byoDid,
|
|
68
|
+
},
|
|
69
|
+
profile,
|
|
70
|
+
normalizedProfileName: normalizeProfileName(profile.name),
|
|
71
|
+
didNotCustodied: true,
|
|
72
|
+
services: newServices,
|
|
73
|
+
invitationId: invitation?._id,
|
|
74
|
+
},
|
|
75
|
+
newKeys,
|
|
76
|
+
newKeyPairs: map(() => null, newKeys),
|
|
77
|
+
caoServiceRefs,
|
|
78
|
+
};
|
|
79
|
+
};
|
|
80
|
+
|
|
81
|
+
module.exports = {
|
|
82
|
+
buildNonCustodiedOrganization,
|
|
83
|
+
};
|
|
@@ -0,0 +1,221 @@
|
|
|
1
|
+
const { createFineractClient } = require('@verii/fineract-client');
|
|
2
|
+
const { map, some, filter, includes, isEmpty } = require('lodash/fp');
|
|
3
|
+
const {
|
|
4
|
+
KeyPurposes,
|
|
5
|
+
generateKeyPair,
|
|
6
|
+
KeyAlgorithms,
|
|
7
|
+
} = require('@verii/crypto');
|
|
8
|
+
const { toRelativeKeyId } = require('@verii/did-doc');
|
|
9
|
+
const { toEthereumAddress } = require('@verii/blockchain-functions');
|
|
10
|
+
const { ObjectId } = require('mongodb');
|
|
11
|
+
const { publish } = require('@spencejs/spence-events');
|
|
12
|
+
const { acceptInvitation } = require('../../invitations');
|
|
13
|
+
const {
|
|
14
|
+
buildOrganizationKey,
|
|
15
|
+
addOperatorKeys,
|
|
16
|
+
} = require('../../organization-keys');
|
|
17
|
+
const {
|
|
18
|
+
activateServices,
|
|
19
|
+
isNodeOperator,
|
|
20
|
+
initProvisionAuth0Clients,
|
|
21
|
+
updateBlockchainPermissionsFromPermittedServices,
|
|
22
|
+
} = require('../../organization-services');
|
|
23
|
+
const { initAuth0Provisioner } = require('../../oauth');
|
|
24
|
+
const {
|
|
25
|
+
initBuildOrganizationModificationsOnServiceChange,
|
|
26
|
+
} = require('../domains');
|
|
27
|
+
const {
|
|
28
|
+
buildCustodiedOrganization,
|
|
29
|
+
} = require('./build-custodied-organization');
|
|
30
|
+
const {
|
|
31
|
+
buildNonCustodiedOrganization,
|
|
32
|
+
} = require('./build-non-custodied-organization');
|
|
33
|
+
const { initProvisionGroup } = require('./init-provision-group');
|
|
34
|
+
const { addPrimaryPermissions } = require('./add-primary-permissions');
|
|
35
|
+
const {
|
|
36
|
+
getServiceConsentType,
|
|
37
|
+
} = require('../../organization-services/domains/get-service-consent-type');
|
|
38
|
+
|
|
39
|
+
const initCreateOrganization = (fastify) => {
|
|
40
|
+
const buildOrganizationModificationsOnServiceChange =
|
|
41
|
+
initBuildOrganizationModificationsOnServiceChange(fastify);
|
|
42
|
+
|
|
43
|
+
const provisionGroup = initProvisionGroup(fastify);
|
|
44
|
+
const auth0Provisioner = initAuth0Provisioner(fastify.config);
|
|
45
|
+
const provisionAuth0Clients = initProvisionAuth0Clients(auth0Provisioner);
|
|
46
|
+
|
|
47
|
+
return async (
|
|
48
|
+
{ byoDid, byoKeys, serviceEndpoints, profile, invitationCode },
|
|
49
|
+
context
|
|
50
|
+
) => {
|
|
51
|
+
const { repos, kms, user } = context;
|
|
52
|
+
|
|
53
|
+
const invitation = await acceptInvitation(invitationCode, context);
|
|
54
|
+
const buildOrganization =
|
|
55
|
+
byoDid == null
|
|
56
|
+
? buildCustodiedOrganization
|
|
57
|
+
: buildNonCustodiedOrganization;
|
|
58
|
+
const { newOrganization, newKeys, newKeyPairs, caoServiceRefs } =
|
|
59
|
+
await buildOrganization(
|
|
60
|
+
{
|
|
61
|
+
byoDid,
|
|
62
|
+
byoKeys,
|
|
63
|
+
serviceEndpoints,
|
|
64
|
+
profile,
|
|
65
|
+
invitation,
|
|
66
|
+
},
|
|
67
|
+
context
|
|
68
|
+
);
|
|
69
|
+
|
|
70
|
+
const organization = await repos.organizations.insert(newOrganization);
|
|
71
|
+
await provisionGroup(organization, context);
|
|
72
|
+
|
|
73
|
+
const activatedServiceIds = activateServices(
|
|
74
|
+
organization,
|
|
75
|
+
organization.services,
|
|
76
|
+
context
|
|
77
|
+
);
|
|
78
|
+
|
|
79
|
+
if (!isEmpty(organization.services)) {
|
|
80
|
+
const consents = map((service) => {
|
|
81
|
+
return {
|
|
82
|
+
userId: user.sub,
|
|
83
|
+
organizationId: organization._id,
|
|
84
|
+
type: getServiceConsentType(service),
|
|
85
|
+
version: 1,
|
|
86
|
+
serviceId: service.id,
|
|
87
|
+
};
|
|
88
|
+
}, organization.services);
|
|
89
|
+
await repos.registrarConsents.registerConsents(consents);
|
|
90
|
+
}
|
|
91
|
+
const authClients = await provisionAuth0Clients(
|
|
92
|
+
organization,
|
|
93
|
+
organization.services,
|
|
94
|
+
activatedServiceIds,
|
|
95
|
+
context
|
|
96
|
+
);
|
|
97
|
+
|
|
98
|
+
const primaryKeyPair = generateKeyPair({ format: 'jwk' });
|
|
99
|
+
const primaryAccount = toEthereumAddress(primaryKeyPair.publicKey);
|
|
100
|
+
const fineractIds = await createFineractClient(
|
|
101
|
+
organization,
|
|
102
|
+
some(isNodeOperator, organization.services),
|
|
103
|
+
context
|
|
104
|
+
);
|
|
105
|
+
|
|
106
|
+
const organizationModifications =
|
|
107
|
+
await buildOrganizationModificationsOnServiceChange({
|
|
108
|
+
organization,
|
|
109
|
+
activatedServiceIds,
|
|
110
|
+
newOrganizationIds: {
|
|
111
|
+
did: organization.didDoc.id,
|
|
112
|
+
mongoId: organization._id,
|
|
113
|
+
ethereumAccount: primaryAccount,
|
|
114
|
+
brokerClientId: new ObjectId(),
|
|
115
|
+
...fineractIds,
|
|
116
|
+
},
|
|
117
|
+
authClients,
|
|
118
|
+
});
|
|
119
|
+
const finalOrganization = await repos.organizations.update(
|
|
120
|
+
organization._id,
|
|
121
|
+
organizationModifications
|
|
122
|
+
);
|
|
123
|
+
|
|
124
|
+
const permissioningKeyPair = generateKeyPair({ format: 'jwk' });
|
|
125
|
+
const permissioningKeyEntry = await kms.importKey({
|
|
126
|
+
...permissioningKeyPair,
|
|
127
|
+
algorithm: 'ec',
|
|
128
|
+
curve: 'secp256k1',
|
|
129
|
+
});
|
|
130
|
+
const rotationKeyPair = generateKeyPair({ format: 'jwk' });
|
|
131
|
+
const rotationKeyEntry = await kms.importKey({
|
|
132
|
+
...rotationKeyPair,
|
|
133
|
+
algorithm: 'ec',
|
|
134
|
+
curve: 'secp256k1',
|
|
135
|
+
});
|
|
136
|
+
await addPrimaryPermissions(
|
|
137
|
+
{
|
|
138
|
+
primaryAccount,
|
|
139
|
+
rotationKeyPair,
|
|
140
|
+
permissioningKeyPair,
|
|
141
|
+
newKeys,
|
|
142
|
+
},
|
|
143
|
+
context
|
|
144
|
+
);
|
|
145
|
+
|
|
146
|
+
const keySpecs = [
|
|
147
|
+
...newKeys,
|
|
148
|
+
{
|
|
149
|
+
id: toRelativeKeyId(`#vnf-permissioning-${Date.now()}`),
|
|
150
|
+
kmsKeyId: permissioningKeyEntry.id,
|
|
151
|
+
publicKey: permissioningKeyPair.publicKey,
|
|
152
|
+
custodied: true,
|
|
153
|
+
purposes: [KeyPurposes.PERMISSIONING],
|
|
154
|
+
algorithm: KeyAlgorithms.SECP256K1,
|
|
155
|
+
},
|
|
156
|
+
{
|
|
157
|
+
id: toRelativeKeyId(`#vnf-rotation-${Date.now()}`),
|
|
158
|
+
kmsKeyId: rotationKeyEntry.id,
|
|
159
|
+
publicKey: rotationKeyPair.publicKey,
|
|
160
|
+
custodied: true,
|
|
161
|
+
purposes: [KeyPurposes.ROTATION],
|
|
162
|
+
algorithm: KeyAlgorithms.SECP256K1,
|
|
163
|
+
},
|
|
164
|
+
];
|
|
165
|
+
|
|
166
|
+
const keys = map(
|
|
167
|
+
(spec) =>
|
|
168
|
+
buildOrganizationKey(
|
|
169
|
+
finalOrganization._id,
|
|
170
|
+
finalOrganization.didDoc.id,
|
|
171
|
+
spec
|
|
172
|
+
),
|
|
173
|
+
keySpecs
|
|
174
|
+
);
|
|
175
|
+
|
|
176
|
+
await repos.organizationKeys.insertMany(keys);
|
|
177
|
+
|
|
178
|
+
const dltKeys = filter(
|
|
179
|
+
({ purposes }) => includes(KeyPurposes.DLT_TRANSACTIONS, purposes),
|
|
180
|
+
keys
|
|
181
|
+
);
|
|
182
|
+
await addOperatorKeys(
|
|
183
|
+
{
|
|
184
|
+
organization,
|
|
185
|
+
primaryAccount,
|
|
186
|
+
permissioningKeyId: permissioningKeyEntry._id,
|
|
187
|
+
dltKeys,
|
|
188
|
+
},
|
|
189
|
+
context
|
|
190
|
+
);
|
|
191
|
+
|
|
192
|
+
await updateBlockchainPermissionsFromPermittedServices(
|
|
193
|
+
{ organization: finalOrganization },
|
|
194
|
+
context
|
|
195
|
+
);
|
|
196
|
+
|
|
197
|
+
await repos.images.activate(finalOrganization.profile.logo);
|
|
198
|
+
|
|
199
|
+
await publish(
|
|
200
|
+
'organizations',
|
|
201
|
+
'created',
|
|
202
|
+
{
|
|
203
|
+
organization: finalOrganization,
|
|
204
|
+
invitation,
|
|
205
|
+
addedServices: finalOrganization.services,
|
|
206
|
+
activatedServiceIds,
|
|
207
|
+
caoServiceRefs,
|
|
208
|
+
},
|
|
209
|
+
context
|
|
210
|
+
);
|
|
211
|
+
|
|
212
|
+
return {
|
|
213
|
+
organization: finalOrganization,
|
|
214
|
+
keys,
|
|
215
|
+
keyPairs: [...newKeyPairs, permissioningKeyPair, rotationKeyPair],
|
|
216
|
+
authClients,
|
|
217
|
+
};
|
|
218
|
+
};
|
|
219
|
+
};
|
|
220
|
+
|
|
221
|
+
module.exports = { initCreateOrganization };
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
const {
|
|
2
|
+
VNF_GROUP_ID_CLAIM,
|
|
3
|
+
initAuth0Provisioner,
|
|
4
|
+
hasAdminOrganizationScope,
|
|
5
|
+
} = require('../../oauth');
|
|
6
|
+
|
|
7
|
+
const initProvisionGroup = (fastify) => {
|
|
8
|
+
const auth0Provisioner = initAuth0Provisioner(fastify.config);
|
|
9
|
+
|
|
10
|
+
return async (organization, context) => {
|
|
11
|
+
const { sendError } = fastify;
|
|
12
|
+
const { repos, user, log } = context;
|
|
13
|
+
const { didDoc, profile } = organization;
|
|
14
|
+
|
|
15
|
+
try {
|
|
16
|
+
if (
|
|
17
|
+
isUserGroupIdClaimSet(user) ||
|
|
18
|
+
(await isUserHasGroup(user, context))
|
|
19
|
+
) {
|
|
20
|
+
await repos.groups.addDidToGroupOfUser(
|
|
21
|
+
user.sub,
|
|
22
|
+
organization.didDoc.id
|
|
23
|
+
);
|
|
24
|
+
} else if (hasAdminOrganizationScope(user)) {
|
|
25
|
+
await repos.groups.createGroup(organization.didDoc.id);
|
|
26
|
+
} else {
|
|
27
|
+
await Promise.all([
|
|
28
|
+
repos.groups.createGroup(organization.didDoc.id, user.sub),
|
|
29
|
+
auth0Provisioner.setAuth0UserGroupId(organization.didDoc.id, context),
|
|
30
|
+
]);
|
|
31
|
+
}
|
|
32
|
+
} catch (error) {
|
|
33
|
+
const message = 'Error Provisioning Auth0 Apps';
|
|
34
|
+
log.error({ err: error, didDoc, profile }, message);
|
|
35
|
+
sendError(error, { message, didDoc, profile });
|
|
36
|
+
}
|
|
37
|
+
};
|
|
38
|
+
};
|
|
39
|
+
|
|
40
|
+
const isUserGroupIdClaimSet = (user) => user[VNF_GROUP_ID_CLAIM] != null;
|
|
41
|
+
|
|
42
|
+
const isUserHasGroup = async (user, context) => {
|
|
43
|
+
const { repos } = context;
|
|
44
|
+
const groupByProfile = await repos.groups.findGroupByUserId(user.sub);
|
|
45
|
+
return !!groupByProfile;
|
|
46
|
+
};
|
|
47
|
+
|
|
48
|
+
module.exports = { initProvisionGroup };
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
const newError = require('http-errors');
|
|
2
|
+
|
|
3
|
+
const verifyProfileWebsiteUnique = async ({ profile }, context) => {
|
|
4
|
+
const count = await context.repos.organizations.count({
|
|
5
|
+
filter: { 'profile.website': profile.website },
|
|
6
|
+
});
|
|
7
|
+
|
|
8
|
+
if (count > 0) {
|
|
9
|
+
throw newError(400, 'Website already exists', {
|
|
10
|
+
errorCode: 'website_already_exists',
|
|
11
|
+
});
|
|
12
|
+
}
|
|
13
|
+
};
|
|
14
|
+
|
|
15
|
+
module.exports = { verifyProfileWebsiteUnique };
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Copyright 2025 Velocity Team
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*
|
|
16
|
+
*/
|
|
17
|
+
const { isEmpty, flow, map, uniq } = require('lodash/fp');
|
|
18
|
+
const { stripFragmentFromDidUrl } = require('@verii/did-doc');
|
|
19
|
+
|
|
20
|
+
const findCaosExtension = (parent) => ({
|
|
21
|
+
findCaos: (caoServiceIds, projection) => {
|
|
22
|
+
if (isEmpty(caoServiceIds)) {
|
|
23
|
+
return [];
|
|
24
|
+
}
|
|
25
|
+
const caoDids = flow(map(stripFragmentFromDidUrl), uniq)(caoServiceIds);
|
|
26
|
+
return parent.find({
|
|
27
|
+
filter: {
|
|
28
|
+
$or: [
|
|
29
|
+
{
|
|
30
|
+
'didDoc.id': {
|
|
31
|
+
$in: caoDids,
|
|
32
|
+
},
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
'didDoc.alsoKnownAs': {
|
|
36
|
+
$elemMatch: {
|
|
37
|
+
$in: caoDids,
|
|
38
|
+
},
|
|
39
|
+
},
|
|
40
|
+
},
|
|
41
|
+
],
|
|
42
|
+
'@ignoreScope': true,
|
|
43
|
+
},
|
|
44
|
+
projection,
|
|
45
|
+
});
|
|
46
|
+
},
|
|
47
|
+
});
|
|
48
|
+
|
|
49
|
+
module.exports = { findCaosExtension };
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Copyright 2025 Velocity Team
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*
|
|
16
|
+
*/
|
|
17
|
+
module.exports = { ...require('./transform-organization-filter') };
|
|
@@ -0,0 +1,156 @@
|
|
|
1
|
+
const { isEmpty, map, omit } = require('lodash/fp');
|
|
2
|
+
const newError = require('http-errors');
|
|
3
|
+
const {
|
|
4
|
+
repoFactory,
|
|
5
|
+
autoboxIdsExtension,
|
|
6
|
+
} = require('@spencejs/spence-mongo-repos');
|
|
7
|
+
const { deletedExtension } = require('@verii/spencer-mongo-extensions');
|
|
8
|
+
const {
|
|
9
|
+
searchByAggregationExtension,
|
|
10
|
+
} = require('./search-by-aggregation-extension');
|
|
11
|
+
const { OrganizationErrorMessages } = require('../domains');
|
|
12
|
+
const { transformDidFilter } = require('./transform-did-filter');
|
|
13
|
+
const { findCaosExtension } = require('./find-caos-extension');
|
|
14
|
+
|
|
15
|
+
const defaultProjection = {
|
|
16
|
+
_id: 1,
|
|
17
|
+
didDoc: 1,
|
|
18
|
+
profile: 1,
|
|
19
|
+
services: 1,
|
|
20
|
+
activatedServiceIds: 1,
|
|
21
|
+
verifiableCredentialJwt: 1,
|
|
22
|
+
adminEmail: 1,
|
|
23
|
+
normalizedProfileName: 1,
|
|
24
|
+
didNotCustodied: 1,
|
|
25
|
+
invitationId: 1,
|
|
26
|
+
ids: 1,
|
|
27
|
+
updatedAt: 1,
|
|
28
|
+
createdAt: 1,
|
|
29
|
+
};
|
|
30
|
+
|
|
31
|
+
module.exports = (app, options, next = () => {}) => {
|
|
32
|
+
next();
|
|
33
|
+
return repoFactory(
|
|
34
|
+
{
|
|
35
|
+
name: 'organizations',
|
|
36
|
+
entityName: 'organization',
|
|
37
|
+
defaultProjection,
|
|
38
|
+
extensions: [
|
|
39
|
+
autoboxIdsExtension,
|
|
40
|
+
scopeFilterExtension,
|
|
41
|
+
findersExtension,
|
|
42
|
+
servicesExtensions,
|
|
43
|
+
deletedExtension(),
|
|
44
|
+
searchByAggregationExtension,
|
|
45
|
+
findCaosExtension,
|
|
46
|
+
],
|
|
47
|
+
},
|
|
48
|
+
app
|
|
49
|
+
);
|
|
50
|
+
};
|
|
51
|
+
const servicesExtensions = (parent) => ({
|
|
52
|
+
prepModification: (organization, kind) => {
|
|
53
|
+
if (kind !== 'insert') {
|
|
54
|
+
return parent.prepModification(organization, kind);
|
|
55
|
+
}
|
|
56
|
+
const now = new Date();
|
|
57
|
+
const services = map((service) => {
|
|
58
|
+
return {
|
|
59
|
+
...service,
|
|
60
|
+
createdAt: now,
|
|
61
|
+
updatedAt: now,
|
|
62
|
+
};
|
|
63
|
+
}, organization.services);
|
|
64
|
+
|
|
65
|
+
return parent.prepModification({ ...organization, services }, kind);
|
|
66
|
+
},
|
|
67
|
+
addService: async (organizationId, service) => {
|
|
68
|
+
const addedService = {
|
|
69
|
+
...service,
|
|
70
|
+
createdAt: new Date(),
|
|
71
|
+
updatedAt: new Date(),
|
|
72
|
+
};
|
|
73
|
+
await parent.collection().updateOne(
|
|
74
|
+
{ _id: organizationId },
|
|
75
|
+
{
|
|
76
|
+
$push: {
|
|
77
|
+
services: addedService,
|
|
78
|
+
},
|
|
79
|
+
}
|
|
80
|
+
);
|
|
81
|
+
return addedService;
|
|
82
|
+
},
|
|
83
|
+
updateService: async (organizationId, service) => {
|
|
84
|
+
const updatedService = {
|
|
85
|
+
...service,
|
|
86
|
+
updatedAt: new Date(),
|
|
87
|
+
};
|
|
88
|
+
await parent.collection().updateOne(
|
|
89
|
+
{ _id: organizationId, 'services.id': service.id },
|
|
90
|
+
{
|
|
91
|
+
$set: {
|
|
92
|
+
'services.$': updatedService,
|
|
93
|
+
updatedAt: updatedService.updatedAt, // bubble up the updatedAt timestamp to the root object
|
|
94
|
+
},
|
|
95
|
+
}
|
|
96
|
+
);
|
|
97
|
+
|
|
98
|
+
return updatedService;
|
|
99
|
+
},
|
|
100
|
+
});
|
|
101
|
+
|
|
102
|
+
const findersExtension = (parent) => ({
|
|
103
|
+
findByDids: async (dids, ...options) =>
|
|
104
|
+
parent.find(
|
|
105
|
+
{
|
|
106
|
+
filter: transformDidFilter({
|
|
107
|
+
'didDoc.id': {
|
|
108
|
+
$in: dids,
|
|
109
|
+
},
|
|
110
|
+
}),
|
|
111
|
+
},
|
|
112
|
+
...options
|
|
113
|
+
),
|
|
114
|
+
findOneByDid: async (did, ...options) => {
|
|
115
|
+
const organization = await parent.findOne(
|
|
116
|
+
{
|
|
117
|
+
filter: transformDidFilter({
|
|
118
|
+
'didDoc.id': did,
|
|
119
|
+
}),
|
|
120
|
+
},
|
|
121
|
+
...options
|
|
122
|
+
);
|
|
123
|
+
if (isEmpty(organization)) {
|
|
124
|
+
throw newError(404, OrganizationErrorMessages.ORGANIZATION_NOT_FOUND, {
|
|
125
|
+
errorCode: 'organization_not_found',
|
|
126
|
+
});
|
|
127
|
+
}
|
|
128
|
+
return organization;
|
|
129
|
+
},
|
|
130
|
+
extensions: parent.extensions.concat(['findersExtension']),
|
|
131
|
+
});
|
|
132
|
+
|
|
133
|
+
const scopeFilterExtension = (parent, context) => {
|
|
134
|
+
return {
|
|
135
|
+
prepFilter: (filter) => {
|
|
136
|
+
if (filter['@ignoreScope']) {
|
|
137
|
+
return parent.prepFilter(omit(['@ignoreScope'], filter));
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
if (
|
|
141
|
+
context.scope?.dids == null ||
|
|
142
|
+
(context.scope.dids.length === 1 && context.scope.dids[0] === 'new')
|
|
143
|
+
) {
|
|
144
|
+
return parent.prepFilter(filter);
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
return parent.prepFilter(
|
|
148
|
+
transformDidFilter({
|
|
149
|
+
...filter,
|
|
150
|
+
'didDoc.id': { $in: context.scope.dids },
|
|
151
|
+
})
|
|
152
|
+
);
|
|
153
|
+
},
|
|
154
|
+
extensions: parent.extensions.concat(['scopeFilterExtension']),
|
|
155
|
+
};
|
|
156
|
+
};
|