@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,20 @@
|
|
|
1
|
+
const {
|
|
2
|
+
invitationResponseItemBodySchema,
|
|
3
|
+
} = require('./invitation-response-item-body');
|
|
4
|
+
|
|
5
|
+
const getInvitationResponseBodySchema = {
|
|
6
|
+
title: 'get-invitation-response-body',
|
|
7
|
+
$id: 'https://velocitycareerlabs.io/get-invitation-response-body.json',
|
|
8
|
+
type: 'object',
|
|
9
|
+
description: 'payload for get invitation response from registrar',
|
|
10
|
+
properties: {
|
|
11
|
+
invitation: invitationResponseItemBodySchema,
|
|
12
|
+
messageCode: {
|
|
13
|
+
type: 'string',
|
|
14
|
+
description: 'message code',
|
|
15
|
+
},
|
|
16
|
+
},
|
|
17
|
+
required: ['invitation'],
|
|
18
|
+
};
|
|
19
|
+
|
|
20
|
+
module.exports = { getInvitationResponseBodySchema };
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
const { addInvitationBodySchema } = require('./add-invitation-body');
|
|
2
|
+
|
|
3
|
+
const invitationResponseItemBodySchema = {
|
|
4
|
+
$id: 'https://velocitycareerlabs.io/invitation-response-item-body.json',
|
|
5
|
+
title: 'invitation-response-item-body',
|
|
6
|
+
type: 'object',
|
|
7
|
+
description: 'payload for invitation response item from registrar',
|
|
8
|
+
properties: {
|
|
9
|
+
id: {
|
|
10
|
+
type: 'string',
|
|
11
|
+
},
|
|
12
|
+
...addInvitationBodySchema.properties,
|
|
13
|
+
code: {
|
|
14
|
+
type: 'string',
|
|
15
|
+
},
|
|
16
|
+
inviterDid: {
|
|
17
|
+
type: 'string',
|
|
18
|
+
},
|
|
19
|
+
invitationUrl: {
|
|
20
|
+
type: 'string',
|
|
21
|
+
format: 'uri',
|
|
22
|
+
},
|
|
23
|
+
expiresAt: {
|
|
24
|
+
type: 'string',
|
|
25
|
+
format: 'date-time',
|
|
26
|
+
},
|
|
27
|
+
acceptedAt: {
|
|
28
|
+
type: 'string',
|
|
29
|
+
format: 'date-time',
|
|
30
|
+
},
|
|
31
|
+
acceptedBy: {
|
|
32
|
+
type: 'string',
|
|
33
|
+
},
|
|
34
|
+
createdAt: {
|
|
35
|
+
type: 'string',
|
|
36
|
+
format: 'date-time',
|
|
37
|
+
},
|
|
38
|
+
createdBy: {
|
|
39
|
+
type: 'string',
|
|
40
|
+
},
|
|
41
|
+
updatedAt: {
|
|
42
|
+
type: 'string',
|
|
43
|
+
format: 'date-time',
|
|
44
|
+
},
|
|
45
|
+
updatedBy: {
|
|
46
|
+
type: 'string',
|
|
47
|
+
},
|
|
48
|
+
},
|
|
49
|
+
required: [
|
|
50
|
+
'id',
|
|
51
|
+
...addInvitationBodySchema.required,
|
|
52
|
+
'code',
|
|
53
|
+
'invitationUrl',
|
|
54
|
+
'expiresAt',
|
|
55
|
+
'createdAt',
|
|
56
|
+
'createdBy',
|
|
57
|
+
'updatedAt',
|
|
58
|
+
],
|
|
59
|
+
};
|
|
60
|
+
|
|
61
|
+
module.exports = { invitationResponseItemBodySchema };
|
|
@@ -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('./kms-factory') };
|
|
@@ -0,0 +1,31 @@
|
|
|
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 { generateKeyPair } = require('@verii/crypto');
|
|
18
|
+
const { register } = require('@spencejs/spence-factories');
|
|
19
|
+
const { kmsRepo } = require('@verii/db-kms');
|
|
20
|
+
|
|
21
|
+
module.exports = (app) =>
|
|
22
|
+
register('kms', kmsRepo(app)({ config: app.config }), async (overrides) => {
|
|
23
|
+
const keyPair = generateKeyPair({ format: 'jwk' });
|
|
24
|
+
return {
|
|
25
|
+
publicJwk: keyPair.publicKey,
|
|
26
|
+
privateJwk: keyPair.privateKey,
|
|
27
|
+
algorithm: 'ec',
|
|
28
|
+
curve: 'secp256k1',
|
|
29
|
+
...overrides(),
|
|
30
|
+
};
|
|
31
|
+
});
|
|
@@ -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('./orchestrators') };
|
|
@@ -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('./monitors') };
|
|
@@ -0,0 +1,230 @@
|
|
|
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 { map, first, includes, isEmpty, filter } = require('lodash/fp');
|
|
19
|
+
const { ServiceTypes } = require('@verii/organizations-registry');
|
|
20
|
+
|
|
21
|
+
const {
|
|
22
|
+
createMonitor,
|
|
23
|
+
deleteMonitor,
|
|
24
|
+
getAllMonitors,
|
|
25
|
+
addMonitorToStatusPage,
|
|
26
|
+
serviceVersion,
|
|
27
|
+
getAllSections,
|
|
28
|
+
createSection,
|
|
29
|
+
} = require('../../../fetchers');
|
|
30
|
+
|
|
31
|
+
const addMonitor = async ({ orgId, orgName, service }, context) => {
|
|
32
|
+
const monitorParams = await createMonitorParams(
|
|
33
|
+
{ orgId, orgName, service },
|
|
34
|
+
context
|
|
35
|
+
);
|
|
36
|
+
|
|
37
|
+
if (isEmpty(monitorParams)) {
|
|
38
|
+
return undefined;
|
|
39
|
+
}
|
|
40
|
+
const { statusPageId } = first(monitorParams);
|
|
41
|
+
const pageSection = await ensureSectionExists(
|
|
42
|
+
{ orgName, statusPageId },
|
|
43
|
+
context
|
|
44
|
+
);
|
|
45
|
+
|
|
46
|
+
const monitorsAsResourceResponse = await Promise.all(
|
|
47
|
+
map(async (monitor) => createMonitor(monitor, context), monitorParams)
|
|
48
|
+
);
|
|
49
|
+
|
|
50
|
+
return Promise.all(
|
|
51
|
+
map(
|
|
52
|
+
async (monitor) =>
|
|
53
|
+
addMonitorToStatusPage(
|
|
54
|
+
{
|
|
55
|
+
resourceId: monitor.data.id,
|
|
56
|
+
publicName:
|
|
57
|
+
monitor.data.attributes.pronounceable_name.split(' : ')[1],
|
|
58
|
+
statusPageId,
|
|
59
|
+
statusPageSectionId: pageSection.id,
|
|
60
|
+
},
|
|
61
|
+
context
|
|
62
|
+
),
|
|
63
|
+
monitorsAsResourceResponse
|
|
64
|
+
)
|
|
65
|
+
);
|
|
66
|
+
};
|
|
67
|
+
|
|
68
|
+
const createMonitorParams = async ({ orgId, orgName, service }, ctx) => {
|
|
69
|
+
const monitorNameTemplate = `${getMonitorPrefix(
|
|
70
|
+
ctx.config
|
|
71
|
+
)}, ${orgName}, ${orgId} : ${service.id}`;
|
|
72
|
+
const monitorParams = [];
|
|
73
|
+
|
|
74
|
+
if (service.type === ServiceTypes.CredentialAgentOperatorType) {
|
|
75
|
+
const version = await getServiceVersion(service.serviceEndpoint, ctx);
|
|
76
|
+
monitorParams.push({
|
|
77
|
+
url: service.serviceEndpoint,
|
|
78
|
+
pronounceableName: `${monitorNameTemplate}, version-${version}`,
|
|
79
|
+
monitorType: 'status',
|
|
80
|
+
statusPageId: ctx.config.servicesStatusPageId,
|
|
81
|
+
});
|
|
82
|
+
} else if (service.type === ServiceTypes.NodeOperatorType) {
|
|
83
|
+
const paramsTemplate = {
|
|
84
|
+
monitorType: 'keyword',
|
|
85
|
+
requiredKeyword: '"status" : "UP"',
|
|
86
|
+
statusPageId: ctx.config.nodesStatusPageId,
|
|
87
|
+
};
|
|
88
|
+
monitorParams.push({
|
|
89
|
+
...paramsTemplate,
|
|
90
|
+
pronounceableName: `${monitorNameTemplate} - liveness`,
|
|
91
|
+
url: `${service.serviceEndpoint}/liveness`,
|
|
92
|
+
});
|
|
93
|
+
monitorParams.push({
|
|
94
|
+
...paramsTemplate,
|
|
95
|
+
pronounceableName: `${monitorNameTemplate} - readiness`,
|
|
96
|
+
url: `${service.serviceEndpoint}/readiness`,
|
|
97
|
+
});
|
|
98
|
+
}
|
|
99
|
+
return monitorParams;
|
|
100
|
+
};
|
|
101
|
+
|
|
102
|
+
const getServiceVersion = async (url, context) => {
|
|
103
|
+
try {
|
|
104
|
+
const response = await serviceVersion(url, context);
|
|
105
|
+
const contentArray = response.body?.split('\n');
|
|
106
|
+
|
|
107
|
+
const versionMark = 'version:';
|
|
108
|
+
|
|
109
|
+
const result = filter(
|
|
110
|
+
(value) => includes(versionMark, value.toLowerCase()),
|
|
111
|
+
contentArray
|
|
112
|
+
);
|
|
113
|
+
|
|
114
|
+
if (isEmpty(result) || first(result) == null) {
|
|
115
|
+
return undefined;
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
return first(result).toLowerCase().replace(versionMark, '').trim();
|
|
119
|
+
} catch (error) {
|
|
120
|
+
const { log } = context;
|
|
121
|
+
log.error({ err: error }, 'Failed to retrieve service version');
|
|
122
|
+
return undefined;
|
|
123
|
+
}
|
|
124
|
+
};
|
|
125
|
+
|
|
126
|
+
const synchronizeMonitors = async (context) => {
|
|
127
|
+
const { repos } = context;
|
|
128
|
+
const organizations = await repos.organizations.find();
|
|
129
|
+
|
|
130
|
+
const allMonitorsResponse = await getAllMonitors(context);
|
|
131
|
+
|
|
132
|
+
return Promise.all(
|
|
133
|
+
map(
|
|
134
|
+
async (organization) =>
|
|
135
|
+
ensureMonitorsExist(organization, allMonitorsResponse.data, context),
|
|
136
|
+
organizations
|
|
137
|
+
)
|
|
138
|
+
);
|
|
139
|
+
};
|
|
140
|
+
|
|
141
|
+
const findMonitorByPartialMatch = (monitorsArray, { orgId, serviceId }) =>
|
|
142
|
+
filter(
|
|
143
|
+
(monitor) =>
|
|
144
|
+
includes(orgId, monitor.attributes.pronounceable_name) &&
|
|
145
|
+
includes(serviceId, monitor.attributes.pronounceable_name),
|
|
146
|
+
monitorsArray
|
|
147
|
+
);
|
|
148
|
+
|
|
149
|
+
const ensureMonitorExists = async (
|
|
150
|
+
{ orgId, orgName, service },
|
|
151
|
+
monitors,
|
|
152
|
+
context
|
|
153
|
+
) => {
|
|
154
|
+
const monitorExist = findMonitorByPartialMatch(monitors, {
|
|
155
|
+
orgId,
|
|
156
|
+
serviceId: service.id,
|
|
157
|
+
});
|
|
158
|
+
if (isEmpty(monitorExist)) {
|
|
159
|
+
return addMonitor({ orgId, orgName, service }, context);
|
|
160
|
+
}
|
|
161
|
+
return undefined;
|
|
162
|
+
};
|
|
163
|
+
|
|
164
|
+
const ensureSectionExists = async ({ orgName, statusPageId }, ctx) => {
|
|
165
|
+
const pageSections = await getAllSections(statusPageId, ctx);
|
|
166
|
+
|
|
167
|
+
let pageSection = first(
|
|
168
|
+
filter(
|
|
169
|
+
(section) => includes(orgName, section.attributes.name),
|
|
170
|
+
pageSections.data
|
|
171
|
+
)
|
|
172
|
+
);
|
|
173
|
+
|
|
174
|
+
if (isEmpty(pageSection)) {
|
|
175
|
+
pageSection = (await createSection({ orgName, statusPageId }, ctx)).data;
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
return pageSection;
|
|
179
|
+
};
|
|
180
|
+
|
|
181
|
+
const ensureMonitorsExist = async (organisation, monitors, context) => {
|
|
182
|
+
const { services, didDoc } = organisation;
|
|
183
|
+
|
|
184
|
+
return Promise.all(
|
|
185
|
+
map(
|
|
186
|
+
async (service) =>
|
|
187
|
+
ensureMonitorExists(
|
|
188
|
+
{ orgId: didDoc.id, orgName: organisation.profile.name, service },
|
|
189
|
+
monitors,
|
|
190
|
+
context
|
|
191
|
+
),
|
|
192
|
+
services
|
|
193
|
+
)
|
|
194
|
+
);
|
|
195
|
+
};
|
|
196
|
+
|
|
197
|
+
const addMonitors = async ({ orgId, orgName, orgServices }, context) => {
|
|
198
|
+
return Promise.all(
|
|
199
|
+
map(
|
|
200
|
+
(service) => addMonitor({ orgId, orgName, service }, context),
|
|
201
|
+
orgServices
|
|
202
|
+
)
|
|
203
|
+
);
|
|
204
|
+
};
|
|
205
|
+
const removeMonitor = async ({ orgId, serviceId }, context) => {
|
|
206
|
+
// TODO: Currently account plan is limited by 50 monitors, once plan will be upgraded, pagination will be needed to be implemented
|
|
207
|
+
const allMonitorsResponse = await getAllMonitors(context);
|
|
208
|
+
|
|
209
|
+
const monitorsToRemove = findMonitorByPartialMatch(
|
|
210
|
+
allMonitorsResponse?.data,
|
|
211
|
+
{ orgId, serviceId }
|
|
212
|
+
);
|
|
213
|
+
|
|
214
|
+
return Promise.all(
|
|
215
|
+
map(
|
|
216
|
+
async (monitor) => deleteMonitor({ monitorId: monitor.id }, context),
|
|
217
|
+
monitorsToRemove
|
|
218
|
+
)
|
|
219
|
+
);
|
|
220
|
+
};
|
|
221
|
+
|
|
222
|
+
const getMonitorPrefix = ({ nodeEnv }) => {
|
|
223
|
+
return nodeEnv.toUpperCase();
|
|
224
|
+
};
|
|
225
|
+
|
|
226
|
+
module.exports = {
|
|
227
|
+
addMonitors,
|
|
228
|
+
removeMonitor,
|
|
229
|
+
synchronizeMonitors,
|
|
230
|
+
};
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
const VNF_GROUP_ID_CLAIM = 'http://velocitynetwork.foundation/groupId';
|
|
2
|
+
|
|
3
|
+
const AuthClientTypes = {
|
|
4
|
+
CAO_NODE_CLIENT: 'agent',
|
|
5
|
+
REGISTRAR: 'registrar',
|
|
6
|
+
NODE_OPERATOR: 'node',
|
|
7
|
+
};
|
|
8
|
+
|
|
9
|
+
const RoleNames = {
|
|
10
|
+
Superuser: 'superuser',
|
|
11
|
+
RegistrarClientAdmin: 'clientadmin',
|
|
12
|
+
TokenWalletClientFinanceAdmin: 'clientfinanceadmin',
|
|
13
|
+
TokenWalletClientSystemUser: 'clientsystemuser',
|
|
14
|
+
FineractOperationsUser: 'operations',
|
|
15
|
+
FineractBrokerUser: 'broker',
|
|
16
|
+
FineractRegistrarUser: 'registrar',
|
|
17
|
+
};
|
|
18
|
+
|
|
19
|
+
module.exports = {
|
|
20
|
+
VNF_GROUP_ID_CLAIM,
|
|
21
|
+
AuthClientTypes,
|
|
22
|
+
RoleNames,
|
|
23
|
+
};
|
|
@@ -0,0 +1,92 @@
|
|
|
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 { reduce, flow, map } = require('lodash/fp');
|
|
19
|
+
const { RoleNames } = require('./constants');
|
|
20
|
+
|
|
21
|
+
const initRoleIdToRoleName = ({
|
|
22
|
+
auth0SuperuserRoleId,
|
|
23
|
+
auth0ClientAdminRoleId,
|
|
24
|
+
auth0ClientFinanceAdminRoleId,
|
|
25
|
+
auth0ClientSystemUserRoleId,
|
|
26
|
+
}) => {
|
|
27
|
+
return (roleId) => {
|
|
28
|
+
switch (roleId) {
|
|
29
|
+
case auth0SuperuserRoleId:
|
|
30
|
+
return RoleNames.Superuser;
|
|
31
|
+
case auth0ClientFinanceAdminRoleId:
|
|
32
|
+
return RoleNames.TokenWalletClientFinanceAdmin;
|
|
33
|
+
case auth0ClientSystemUserRoleId:
|
|
34
|
+
return RoleNames.TokenWalletClientSystemUser;
|
|
35
|
+
case auth0ClientAdminRoleId:
|
|
36
|
+
default:
|
|
37
|
+
return RoleNames.RegistrarClientAdmin;
|
|
38
|
+
}
|
|
39
|
+
};
|
|
40
|
+
};
|
|
41
|
+
|
|
42
|
+
const roleObjMapping = {
|
|
43
|
+
registrarRole: {
|
|
44
|
+
[RoleNames.RegistrarClientAdmin]: true,
|
|
45
|
+
[RoleNames.Superuser]: true,
|
|
46
|
+
},
|
|
47
|
+
tokenWalletRole: {
|
|
48
|
+
[RoleNames.TokenWalletClientFinanceAdmin]: true,
|
|
49
|
+
[RoleNames.TokenWalletClientSystemUser]: true,
|
|
50
|
+
},
|
|
51
|
+
};
|
|
52
|
+
|
|
53
|
+
const roleNamesToRoleObj = (roleNames) => {
|
|
54
|
+
return reduce(
|
|
55
|
+
(roleObj, currentRoleName) => {
|
|
56
|
+
return {
|
|
57
|
+
registrarRole: roleObjMapping.registrarRole[currentRoleName]
|
|
58
|
+
? currentRoleName
|
|
59
|
+
: roleObj.registrarRole,
|
|
60
|
+
tokenWalletRole: roleObjMapping.tokenWalletRole[currentRoleName]
|
|
61
|
+
? currentRoleName
|
|
62
|
+
: roleObj.tokenWalletRole,
|
|
63
|
+
};
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
registrarRole: undefined,
|
|
67
|
+
tokenWalletRole: undefined,
|
|
68
|
+
},
|
|
69
|
+
roleNames
|
|
70
|
+
);
|
|
71
|
+
};
|
|
72
|
+
|
|
73
|
+
const initAuth0RoleArrToRolesObj = ({
|
|
74
|
+
auth0SuperuserRoleId,
|
|
75
|
+
auth0ClientAdminRoleId,
|
|
76
|
+
auth0ClientFinanceAdminRoleId,
|
|
77
|
+
auth0ClientSystemUserRoleId,
|
|
78
|
+
}) => {
|
|
79
|
+
const roleIdToRoleName = initRoleIdToRoleName({
|
|
80
|
+
auth0SuperuserRoleId,
|
|
81
|
+
auth0ClientAdminRoleId,
|
|
82
|
+
auth0ClientFinanceAdminRoleId,
|
|
83
|
+
auth0ClientSystemUserRoleId,
|
|
84
|
+
});
|
|
85
|
+
return flow(map('id'), map(roleIdToRoleName), roleNamesToRoleObj);
|
|
86
|
+
};
|
|
87
|
+
|
|
88
|
+
module.exports = {
|
|
89
|
+
initRoleIdToRoleName,
|
|
90
|
+
roleNamesToRoleObj,
|
|
91
|
+
initAuth0RoleArrToRolesObj,
|
|
92
|
+
};
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
const { initHasMatchingScope } = require('@verii/auth');
|
|
2
|
+
|
|
3
|
+
const RegistrarScopes = {
|
|
4
|
+
AdminOrganizations: 'admin:organizations',
|
|
5
|
+
WriteOrganizations: 'write:organizations',
|
|
6
|
+
ReadOrganizations: 'read:organizations',
|
|
7
|
+
AdminUsers: 'admin:users',
|
|
8
|
+
WriteUsers: 'write:users',
|
|
9
|
+
ReadUsers: 'read:users',
|
|
10
|
+
EventsTrigger: 'events:trigger',
|
|
11
|
+
};
|
|
12
|
+
|
|
13
|
+
const hasAdminOrganizationScope = initHasMatchingScope([
|
|
14
|
+
RegistrarScopes.AdminOrganizations,
|
|
15
|
+
]);
|
|
16
|
+
const hasReadOrganizationScope = initHasMatchingScope([
|
|
17
|
+
RegistrarScopes.ReadOrganizations,
|
|
18
|
+
]);
|
|
19
|
+
const hasWriteOrganizationScope = initHasMatchingScope([
|
|
20
|
+
RegistrarScopes.WriteOrganizations,
|
|
21
|
+
]);
|
|
22
|
+
|
|
23
|
+
const hasWriteUsersScope = initHasMatchingScope([RegistrarScopes.WriteUsers]);
|
|
24
|
+
const hasReadUsersScope = initHasMatchingScope([RegistrarScopes.ReadUsers]);
|
|
25
|
+
const hasAdminUsersScope = initHasMatchingScope([RegistrarScopes.AdminUsers]);
|
|
26
|
+
|
|
27
|
+
module.exports = {
|
|
28
|
+
RegistrarScopes,
|
|
29
|
+
hasAdminOrganizationScope,
|
|
30
|
+
hasWriteOrganizationScope,
|
|
31
|
+
hasReadOrganizationScope,
|
|
32
|
+
hasAdminUsersScope,
|
|
33
|
+
hasWriteUsersScope,
|
|
34
|
+
hasReadUsersScope,
|
|
35
|
+
};
|