@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,43 @@
|
|
|
1
|
+
const {
|
|
2
|
+
RegistrarScopes,
|
|
3
|
+
sendReminders,
|
|
4
|
+
initSendEmailNotifications,
|
|
5
|
+
} = require('../../entities');
|
|
6
|
+
|
|
7
|
+
const signatoriesController = async (fastify) => {
|
|
8
|
+
const { sendEmailToSignatoryForOrganizationApproval } =
|
|
9
|
+
initSendEmailNotifications(fastify);
|
|
10
|
+
|
|
11
|
+
fastify.post(
|
|
12
|
+
'/send-reminder',
|
|
13
|
+
{
|
|
14
|
+
onRequest: [fastify.verifyAccessToken([RegistrarScopes.EventsTrigger])],
|
|
15
|
+
schema: fastify.autoSchema({
|
|
16
|
+
tags: ['signatory-management-event-processing'],
|
|
17
|
+
security: [
|
|
18
|
+
{
|
|
19
|
+
RegistrarOAuth2: [RegistrarScopes.EventsTrigger],
|
|
20
|
+
},
|
|
21
|
+
],
|
|
22
|
+
response: {
|
|
23
|
+
200: {
|
|
24
|
+
type: 'object',
|
|
25
|
+
additionalProperties: false,
|
|
26
|
+
},
|
|
27
|
+
},
|
|
28
|
+
}),
|
|
29
|
+
},
|
|
30
|
+
async (req) => {
|
|
31
|
+
setTimeout(async () => {
|
|
32
|
+
try {
|
|
33
|
+
await sendReminders(sendEmailToSignatoryForOrganizationApproval, req);
|
|
34
|
+
} catch (e) {
|
|
35
|
+
req.log.warn(e);
|
|
36
|
+
}
|
|
37
|
+
}, 0);
|
|
38
|
+
return {};
|
|
39
|
+
}
|
|
40
|
+
);
|
|
41
|
+
};
|
|
42
|
+
|
|
43
|
+
module.exports = signatoriesController;
|
|
@@ -0,0 +1,221 @@
|
|
|
1
|
+
const newError = require('http-errors');
|
|
2
|
+
const {
|
|
3
|
+
verifyAuthorizedWriteUsers,
|
|
4
|
+
verifyAuthorizedReadUsers,
|
|
5
|
+
} = require('../../plugins/authorization');
|
|
6
|
+
const {
|
|
7
|
+
RegistrarScopes,
|
|
8
|
+
UserErrorMessages,
|
|
9
|
+
initCreateAuth0User,
|
|
10
|
+
initUserManagement,
|
|
11
|
+
initUserRegistrarEmails,
|
|
12
|
+
} = require('../../entities');
|
|
13
|
+
|
|
14
|
+
const userController = async (fastify) => {
|
|
15
|
+
const createAuth0User = initCreateAuth0User(fastify);
|
|
16
|
+
const { getUserWithRoles, softDeleteUser } = initUserManagement(
|
|
17
|
+
fastify.config
|
|
18
|
+
);
|
|
19
|
+
|
|
20
|
+
const { emailToUserForUserInvite } = initUserRegistrarEmails(fastify.config);
|
|
21
|
+
|
|
22
|
+
fastify.post(
|
|
23
|
+
'/',
|
|
24
|
+
{
|
|
25
|
+
onRequest: fastify.verifyAccessToken([
|
|
26
|
+
RegistrarScopes.AdminUsers,
|
|
27
|
+
RegistrarScopes.WriteUsers,
|
|
28
|
+
]),
|
|
29
|
+
preHandler: verifyAuthorizedWriteUsers,
|
|
30
|
+
schema: fastify.autoSchema({
|
|
31
|
+
security: [
|
|
32
|
+
{
|
|
33
|
+
RegistrarOAuth2: [
|
|
34
|
+
RegistrarScopes.AdminUsers,
|
|
35
|
+
RegistrarScopes.WriteUsers,
|
|
36
|
+
],
|
|
37
|
+
},
|
|
38
|
+
],
|
|
39
|
+
body: {
|
|
40
|
+
$ref: 'https://velocitycareerlabs.io/modify-user.schema.json#',
|
|
41
|
+
},
|
|
42
|
+
response: {
|
|
43
|
+
201: {
|
|
44
|
+
$ref: 'https://velocitycareerlabs.io/user.schema.json#',
|
|
45
|
+
},
|
|
46
|
+
...fastify.NotFoundResponse,
|
|
47
|
+
},
|
|
48
|
+
}),
|
|
49
|
+
},
|
|
50
|
+
async (req, reply) => {
|
|
51
|
+
const { body, log, user: creatingUser, sendError } = req;
|
|
52
|
+
const { registrarRole, tokenWalletRole, groupId: bodyGroupId } = body;
|
|
53
|
+
|
|
54
|
+
const groupId = await computeGroupId(creatingUser, bodyGroupId, req);
|
|
55
|
+
|
|
56
|
+
const createUserPayload = {
|
|
57
|
+
...body,
|
|
58
|
+
groupId,
|
|
59
|
+
};
|
|
60
|
+
const { user, ticket } = await createAuth0User(
|
|
61
|
+
{
|
|
62
|
+
userPayload: createUserPayload,
|
|
63
|
+
registrarRole,
|
|
64
|
+
tokenWalletRole,
|
|
65
|
+
groupId,
|
|
66
|
+
},
|
|
67
|
+
req
|
|
68
|
+
);
|
|
69
|
+
|
|
70
|
+
const organizations = await getOrganizationsByGroupId(
|
|
71
|
+
{ groupId, tokenWalletRole },
|
|
72
|
+
req
|
|
73
|
+
);
|
|
74
|
+
|
|
75
|
+
try {
|
|
76
|
+
await sendInvitationEmailToUser({
|
|
77
|
+
user,
|
|
78
|
+
ticket,
|
|
79
|
+
organizations,
|
|
80
|
+
registrarRole,
|
|
81
|
+
tokenWalletRole,
|
|
82
|
+
});
|
|
83
|
+
} catch (error) {
|
|
84
|
+
const message = 'Unable to send invitation email to user';
|
|
85
|
+
const messageContext = { err: error, user };
|
|
86
|
+
log.error(messageContext, message);
|
|
87
|
+
sendError(error, { ...messageContext, message });
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
reply.code(201);
|
|
91
|
+
return { ...user, registrarRole, tokenWalletRole, groupId };
|
|
92
|
+
}
|
|
93
|
+
);
|
|
94
|
+
|
|
95
|
+
fastify.get(
|
|
96
|
+
'/:id',
|
|
97
|
+
{
|
|
98
|
+
onRequest: fastify.verifyAccessToken([
|
|
99
|
+
RegistrarScopes.AdminUsers,
|
|
100
|
+
RegistrarScopes.ReadUsers,
|
|
101
|
+
]),
|
|
102
|
+
preHandler: verifyAuthorizedReadUsers,
|
|
103
|
+
schema: fastify.autoSchema({
|
|
104
|
+
security: [
|
|
105
|
+
{
|
|
106
|
+
RegistrarOAuth2: [
|
|
107
|
+
RegistrarScopes.AdminUsers,
|
|
108
|
+
RegistrarScopes.ReadUsers,
|
|
109
|
+
],
|
|
110
|
+
},
|
|
111
|
+
],
|
|
112
|
+
params: {
|
|
113
|
+
type: 'object',
|
|
114
|
+
properties: { id: { type: 'string', description: 'the user id' } },
|
|
115
|
+
},
|
|
116
|
+
response: {
|
|
117
|
+
200: {
|
|
118
|
+
$ref: 'https://velocitycareerlabs.io/user.schema.json#',
|
|
119
|
+
},
|
|
120
|
+
},
|
|
121
|
+
}),
|
|
122
|
+
},
|
|
123
|
+
async (req) => {
|
|
124
|
+
const { log, params, scope, user: agent } = req;
|
|
125
|
+
const user = await getUserWithRoles({ id: params.id }, req);
|
|
126
|
+
if (scope?.groupId != null && user.groupId !== scope.groupId) {
|
|
127
|
+
log.warn(
|
|
128
|
+
`${agent.sub} (group ${scope.groupId} does not have access to user ${user.id} with group ${user.groupId}`
|
|
129
|
+
);
|
|
130
|
+
throw newError.NotFound('User Not Found');
|
|
131
|
+
}
|
|
132
|
+
return user;
|
|
133
|
+
}
|
|
134
|
+
);
|
|
135
|
+
|
|
136
|
+
fastify.delete(
|
|
137
|
+
'/:id',
|
|
138
|
+
{
|
|
139
|
+
onRequest: fastify.verifyAccessToken([
|
|
140
|
+
RegistrarScopes.AdminUsers,
|
|
141
|
+
RegistrarScopes.WriteUsers,
|
|
142
|
+
]),
|
|
143
|
+
preHandler: verifyAuthorizedWriteUsers,
|
|
144
|
+
schema: fastify.autoSchema({
|
|
145
|
+
security: [
|
|
146
|
+
{
|
|
147
|
+
RegistrarOAuth2: [
|
|
148
|
+
RegistrarScopes.AdminUsers,
|
|
149
|
+
RegistrarScopes.WriteUsers,
|
|
150
|
+
],
|
|
151
|
+
},
|
|
152
|
+
],
|
|
153
|
+
params: {
|
|
154
|
+
type: 'object',
|
|
155
|
+
properties: { id: { type: 'string', description: 'the user id' } },
|
|
156
|
+
},
|
|
157
|
+
response: {
|
|
158
|
+
204: {
|
|
159
|
+
type: 'null',
|
|
160
|
+
},
|
|
161
|
+
},
|
|
162
|
+
}),
|
|
163
|
+
},
|
|
164
|
+
async (req, reply) => {
|
|
165
|
+
await softDeleteUser({ id: req.params.id }, req);
|
|
166
|
+
return reply.status(204).send();
|
|
167
|
+
}
|
|
168
|
+
);
|
|
169
|
+
|
|
170
|
+
const computeGroupId = async (user, bodyGroupId, { scope, log, repos }) => {
|
|
171
|
+
if (scope?.groupId != null) {
|
|
172
|
+
if (bodyGroupId !== scope.groupId) {
|
|
173
|
+
log.error(
|
|
174
|
+
`User scope.groupId is "${scope.groupId}" doesnt matching requested groupId "${bodyGroupId}"`
|
|
175
|
+
);
|
|
176
|
+
throw newError.Forbidden(
|
|
177
|
+
bodyGroupId === 'new'
|
|
178
|
+
? UserErrorMessages.USER_MUST_SPECIFY_GROUP_ID
|
|
179
|
+
: UserErrorMessages.USER_CANNOT_SPECIFY_GROUP_ID
|
|
180
|
+
);
|
|
181
|
+
}
|
|
182
|
+
} else if (bodyGroupId !== 'new') {
|
|
183
|
+
// when no authenticated scope, then validate that the requested group exists
|
|
184
|
+
await repos.groups.findGroupByGroupId(bodyGroupId);
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
return bodyGroupId === 'new' ? undefined : bodyGroupId;
|
|
188
|
+
};
|
|
189
|
+
|
|
190
|
+
const sendInvitationEmailToUser = async ({
|
|
191
|
+
user,
|
|
192
|
+
ticket,
|
|
193
|
+
organizations,
|
|
194
|
+
registrarRole,
|
|
195
|
+
tokenWalletRole,
|
|
196
|
+
}) => {
|
|
197
|
+
await fastify.sendEmail(
|
|
198
|
+
emailToUserForUserInvite({
|
|
199
|
+
user,
|
|
200
|
+
ticket,
|
|
201
|
+
organizations,
|
|
202
|
+
registrarRole,
|
|
203
|
+
tokenWalletRole,
|
|
204
|
+
})
|
|
205
|
+
);
|
|
206
|
+
};
|
|
207
|
+
const getOrganizationsByGroupId = async (
|
|
208
|
+
{ groupId, tokenWalletRole },
|
|
209
|
+
context
|
|
210
|
+
) => {
|
|
211
|
+
if (!groupId || !tokenWalletRole) return [];
|
|
212
|
+
|
|
213
|
+
const { repos } = context;
|
|
214
|
+
const group = await repos.groups.findGroupByGroupId(groupId);
|
|
215
|
+
return repos.organizations.find({
|
|
216
|
+
filter: { 'didDoc.id': { $in: group.dids } },
|
|
217
|
+
});
|
|
218
|
+
};
|
|
219
|
+
};
|
|
220
|
+
|
|
221
|
+
module.exports = userController;
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
{
|
|
2
|
+
"title": "base-user",
|
|
3
|
+
"$id": "https://velocitycareerlabs.io/base-user.schema.json",
|
|
4
|
+
"type": "object",
|
|
5
|
+
"description": "base user schema",
|
|
6
|
+
"properties": {
|
|
7
|
+
"email": {
|
|
8
|
+
"type": "string",
|
|
9
|
+
"pattern": "^[a-zA-Z0-9.!#$%&’*+/=?^_`{|}~-]+@[a-zA-Z0-9-]+(?:\\.[a-zA-Z0-9-]+)*$"
|
|
10
|
+
},
|
|
11
|
+
"givenName": {
|
|
12
|
+
"type": "string"
|
|
13
|
+
},
|
|
14
|
+
"familyName": {
|
|
15
|
+
"type": "string"
|
|
16
|
+
},
|
|
17
|
+
"groupId": {
|
|
18
|
+
"type": ["string", "null"]
|
|
19
|
+
},
|
|
20
|
+
"registrarRole": {
|
|
21
|
+
"type": ["string", "null"],
|
|
22
|
+
"enum": [
|
|
23
|
+
"clientadmin",
|
|
24
|
+
null
|
|
25
|
+
]
|
|
26
|
+
},
|
|
27
|
+
"tokenWalletRole": {
|
|
28
|
+
"type": ["string", "null"],
|
|
29
|
+
"enum": [
|
|
30
|
+
"clientfinanceadmin",
|
|
31
|
+
"clientsystemuser",
|
|
32
|
+
null
|
|
33
|
+
]
|
|
34
|
+
}
|
|
35
|
+
},
|
|
36
|
+
"anyOf": [
|
|
37
|
+
{
|
|
38
|
+
"type": "object",
|
|
39
|
+
"required": [
|
|
40
|
+
"registrarRole"
|
|
41
|
+
]
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
"type": "object",
|
|
45
|
+
"required": [
|
|
46
|
+
"tokenWalletRole"
|
|
47
|
+
]
|
|
48
|
+
}
|
|
49
|
+
],
|
|
50
|
+
"required": [
|
|
51
|
+
"email",
|
|
52
|
+
"givenName",
|
|
53
|
+
"familyName"
|
|
54
|
+
]
|
|
55
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
const userBaseSchema = require('./base-user.schema.json');
|
|
2
|
+
|
|
3
|
+
const modifyUserSchema = {
|
|
4
|
+
title: 'modify-user',
|
|
5
|
+
$id: 'https://velocitycareerlabs.io/modify-user.schema.json',
|
|
6
|
+
type: 'object',
|
|
7
|
+
description: 'modify user schema',
|
|
8
|
+
properties: {
|
|
9
|
+
...userBaseSchema.properties,
|
|
10
|
+
},
|
|
11
|
+
required: [...userBaseSchema.required, 'groupId'],
|
|
12
|
+
additionalProperties: false,
|
|
13
|
+
};
|
|
14
|
+
|
|
15
|
+
module.exports = {
|
|
16
|
+
modifyUserSchema,
|
|
17
|
+
};
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
const userBaseSchema = require('./base-user.schema.json');
|
|
2
|
+
|
|
3
|
+
const userSchema = {
|
|
4
|
+
title: 'user',
|
|
5
|
+
$id: 'https://velocitycareerlabs.io/user.schema.json',
|
|
6
|
+
type: 'object',
|
|
7
|
+
description: 'user schema',
|
|
8
|
+
properties: {
|
|
9
|
+
...userBaseSchema.properties,
|
|
10
|
+
id: {
|
|
11
|
+
type: 'string',
|
|
12
|
+
},
|
|
13
|
+
},
|
|
14
|
+
required: [...userBaseSchema.required, 'id'],
|
|
15
|
+
additionalProperties: false,
|
|
16
|
+
};
|
|
17
|
+
|
|
18
|
+
module.exports = {
|
|
19
|
+
userSchema,
|
|
20
|
+
};
|
|
@@ -0,0 +1,21 @@
|
|
|
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 GroupErrorMessages = {
|
|
18
|
+
ORGANIZATION_GROUP_NOT_FOUND: ({ did }) => `Organization ${did} has no group`,
|
|
19
|
+
};
|
|
20
|
+
|
|
21
|
+
module.exports = { GroupErrorMessages };
|
|
@@ -0,0 +1,19 @@
|
|
|
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 = {
|
|
18
|
+
...require('./constants'),
|
|
19
|
+
};
|
|
@@ -0,0 +1,48 @@
|
|
|
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
|
+
|
|
18
|
+
const { register } = require('@spencejs/spence-factories');
|
|
19
|
+
|
|
20
|
+
const { compact, uniq } = require('lodash/fp');
|
|
21
|
+
const { DEFAULT_GROUP_ID } = require('@verii/tests-helpers');
|
|
22
|
+
const initOrganizationFactory = require('../../organizations/factories/organizations-factory');
|
|
23
|
+
const groupsRepoPlugin = require('../repo');
|
|
24
|
+
|
|
25
|
+
module.exports = (app) =>
|
|
26
|
+
register(
|
|
27
|
+
'group',
|
|
28
|
+
groupsRepoPlugin(app)({ config: app.config }),
|
|
29
|
+
async (overrides, { getOrBuild }) => {
|
|
30
|
+
const resolvedOverrides = overrides();
|
|
31
|
+
let organization;
|
|
32
|
+
if (!resolvedOverrides.skipOrganization) {
|
|
33
|
+
organization = await getOrBuild(
|
|
34
|
+
'organization',
|
|
35
|
+
initOrganizationFactory(app)
|
|
36
|
+
);
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
const groupId = await getOrBuild('groupId', () => DEFAULT_GROUP_ID);
|
|
40
|
+
|
|
41
|
+
return {
|
|
42
|
+
groupId,
|
|
43
|
+
dids: uniq(compact([groupId, organization?.didDoc?.id])),
|
|
44
|
+
clientAdminIds: [],
|
|
45
|
+
...resolvedOverrides,
|
|
46
|
+
};
|
|
47
|
+
}
|
|
48
|
+
);
|
|
@@ -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('./groups-factory') };
|
|
@@ -0,0 +1,19 @@
|
|
|
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 = {
|
|
18
|
+
...require('./domain'),
|
|
19
|
+
};
|
|
@@ -0,0 +1,122 @@
|
|
|
1
|
+
const {
|
|
2
|
+
repoFactory,
|
|
3
|
+
autoboxIdsExtension,
|
|
4
|
+
} = require('@spencejs/spence-mongo-repos');
|
|
5
|
+
const newError = require('http-errors');
|
|
6
|
+
|
|
7
|
+
module.exports = (app, options, next = () => {}) => {
|
|
8
|
+
next();
|
|
9
|
+
return repoFactory(
|
|
10
|
+
{
|
|
11
|
+
name: 'groups',
|
|
12
|
+
entityName: 'group',
|
|
13
|
+
defaultProjection: {
|
|
14
|
+
_id: 1,
|
|
15
|
+
groupId: 1,
|
|
16
|
+
dids: 1,
|
|
17
|
+
clientAdminIds: 1,
|
|
18
|
+
createdAt: 1,
|
|
19
|
+
updatedAt: 1,
|
|
20
|
+
},
|
|
21
|
+
extensions: [autoboxIdsExtension, findersExtension, modifiersExtensions],
|
|
22
|
+
},
|
|
23
|
+
app
|
|
24
|
+
);
|
|
25
|
+
};
|
|
26
|
+
|
|
27
|
+
const findersExtension = (parent) => ({
|
|
28
|
+
findGroupByDid: async (did) => {
|
|
29
|
+
return parent.findOne({
|
|
30
|
+
filter: {
|
|
31
|
+
dids: did,
|
|
32
|
+
},
|
|
33
|
+
});
|
|
34
|
+
},
|
|
35
|
+
findGroupByGroupId: async (groupId) => {
|
|
36
|
+
const group = await parent.findOne({
|
|
37
|
+
filter: {
|
|
38
|
+
groupId,
|
|
39
|
+
},
|
|
40
|
+
});
|
|
41
|
+
if (group == null) {
|
|
42
|
+
throw newError.NotFound(`Group ${groupId} not found`);
|
|
43
|
+
}
|
|
44
|
+
return group;
|
|
45
|
+
},
|
|
46
|
+
findGroupByUserIdAndDid: async (userId, did) => {
|
|
47
|
+
return parent.findOne({
|
|
48
|
+
filter: {
|
|
49
|
+
clientAdminIds: userId,
|
|
50
|
+
dids: did,
|
|
51
|
+
},
|
|
52
|
+
});
|
|
53
|
+
},
|
|
54
|
+
findGroupByUserId: async (userId) => {
|
|
55
|
+
return parent.findOne({
|
|
56
|
+
filter: {
|
|
57
|
+
clientAdminIds: userId,
|
|
58
|
+
},
|
|
59
|
+
});
|
|
60
|
+
},
|
|
61
|
+
extensions: parent.extensions.concat(['findersExtension']),
|
|
62
|
+
});
|
|
63
|
+
|
|
64
|
+
const modifiersExtensions = (parent) => {
|
|
65
|
+
const createGroup = async (groupId, userId) => {
|
|
66
|
+
const group = { groupId, dids: [groupId] };
|
|
67
|
+
if (userId != null) {
|
|
68
|
+
group.clientAdminIds = [userId];
|
|
69
|
+
}
|
|
70
|
+
return parent.insert(group);
|
|
71
|
+
};
|
|
72
|
+
const addDidToGroupOfUser = async (userId, did) => {
|
|
73
|
+
return parent.collection().updateOne(
|
|
74
|
+
{
|
|
75
|
+
clientAdminIds: userId,
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
$push: {
|
|
79
|
+
dids: did,
|
|
80
|
+
},
|
|
81
|
+
$set: {
|
|
82
|
+
updatedAt: new Date(),
|
|
83
|
+
},
|
|
84
|
+
}
|
|
85
|
+
);
|
|
86
|
+
};
|
|
87
|
+
const addUserToGroupClientAdmins = async (groupId, userId) => {
|
|
88
|
+
const { clientAdminIds } = await parent.findGroupByGroupId(groupId);
|
|
89
|
+
if (clientAdminIds.includes(userId)) {
|
|
90
|
+
return undefined;
|
|
91
|
+
}
|
|
92
|
+
return parent.collection().updateOne(
|
|
93
|
+
{
|
|
94
|
+
groupId,
|
|
95
|
+
},
|
|
96
|
+
{
|
|
97
|
+
$push: {
|
|
98
|
+
clientAdminIds: userId,
|
|
99
|
+
},
|
|
100
|
+
$set: {
|
|
101
|
+
updatedAt: new Date(),
|
|
102
|
+
},
|
|
103
|
+
}
|
|
104
|
+
);
|
|
105
|
+
};
|
|
106
|
+
|
|
107
|
+
const addNewDidOfUser = async (did, userId) => {
|
|
108
|
+
const existingGroup = await parent.findGroupByUserId(userId);
|
|
109
|
+
if (existingGroup) {
|
|
110
|
+
return addDidToGroupOfUser(userId, did);
|
|
111
|
+
}
|
|
112
|
+
return createGroup(did, userId);
|
|
113
|
+
};
|
|
114
|
+
|
|
115
|
+
return {
|
|
116
|
+
createGroup,
|
|
117
|
+
addNewDidOfUser,
|
|
118
|
+
addUserToGroupClientAdmins,
|
|
119
|
+
addDidToGroupOfUser,
|
|
120
|
+
extensions: parent.extensions.concat(['modifiersExtensions']),
|
|
121
|
+
};
|
|
122
|
+
};
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
const newError = require('http-errors');
|
|
2
|
+
const { isEmpty } = require('lodash/fp');
|
|
3
|
+
const { ImageState } = require('../domain');
|
|
4
|
+
|
|
5
|
+
const activateExtension = (parent) => ({
|
|
6
|
+
activate: async (url) => {
|
|
7
|
+
const image = await parent.findOne({
|
|
8
|
+
filter: {
|
|
9
|
+
url,
|
|
10
|
+
},
|
|
11
|
+
});
|
|
12
|
+
if (isEmpty(image)) {
|
|
13
|
+
return;
|
|
14
|
+
}
|
|
15
|
+
if (image.state === ImageState.ACTIVE) {
|
|
16
|
+
throw newError(400, 'Image already active', {
|
|
17
|
+
errorCode: 'image_already_active',
|
|
18
|
+
});
|
|
19
|
+
}
|
|
20
|
+
const current = new Date();
|
|
21
|
+
await parent.collection().updateOne(
|
|
22
|
+
{ url },
|
|
23
|
+
{
|
|
24
|
+
$set: {
|
|
25
|
+
activatedAt: current,
|
|
26
|
+
updatedAt: current,
|
|
27
|
+
state: ImageState.ACTIVE,
|
|
28
|
+
},
|
|
29
|
+
}
|
|
30
|
+
);
|
|
31
|
+
},
|
|
32
|
+
extensions: parent.extensions.concat(['activate']),
|
|
33
|
+
});
|
|
34
|
+
|
|
35
|
+
module.exports = { activateExtension };
|