@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,26 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
3
|
+
"$id": "organization-kyb-profile-creation",
|
|
4
|
+
"type": "object",
|
|
5
|
+
"title": "An organization in persistent storage",
|
|
6
|
+
"description": "Profile info for an organization",
|
|
7
|
+
"allOf": [
|
|
8
|
+
{
|
|
9
|
+
"$ref": "organization-profile-base#"
|
|
10
|
+
}
|
|
11
|
+
],
|
|
12
|
+
"required": [
|
|
13
|
+
"website",
|
|
14
|
+
"adminGivenName",
|
|
15
|
+
"adminFamilyName",
|
|
16
|
+
"adminTitle",
|
|
17
|
+
"adminEmail",
|
|
18
|
+
"signatoryGivenName",
|
|
19
|
+
"signatoryFamilyName",
|
|
20
|
+
"signatoryTitle",
|
|
21
|
+
"signatoryEmail",
|
|
22
|
+
"physicalAddress",
|
|
23
|
+
"linkedInProfile",
|
|
24
|
+
"registrationNumbers"
|
|
25
|
+
]
|
|
26
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
3
|
+
"$id": "organization-profile-creation",
|
|
4
|
+
"title": "Editable Organization Profile Information",
|
|
5
|
+
"type": "object",
|
|
6
|
+
"description": "Profile info for an org that can be set in a \"form\"",
|
|
7
|
+
"allOf": [{
|
|
8
|
+
"$ref": "organization-profile-base#"
|
|
9
|
+
}],
|
|
10
|
+
"required": [
|
|
11
|
+
"type",
|
|
12
|
+
"name",
|
|
13
|
+
"website",
|
|
14
|
+
"description",
|
|
15
|
+
"location",
|
|
16
|
+
"logo",
|
|
17
|
+
"contactEmail",
|
|
18
|
+
"technicalEmail"
|
|
19
|
+
]
|
|
20
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
3
|
+
"$id": "organization-profile-update",
|
|
4
|
+
"title": "Editable Organization Profile Information",
|
|
5
|
+
"type": "object",
|
|
6
|
+
"description": "Profile info for an org that can be set in a \"form\"",
|
|
7
|
+
"allOf": [{
|
|
8
|
+
"$ref": "organization-profile-base#"
|
|
9
|
+
}],
|
|
10
|
+
"required": [
|
|
11
|
+
"type",
|
|
12
|
+
"name",
|
|
13
|
+
"description",
|
|
14
|
+
"location",
|
|
15
|
+
"logo",
|
|
16
|
+
"contactEmail",
|
|
17
|
+
"technicalEmail"
|
|
18
|
+
]
|
|
19
|
+
}
|
package/src/controllers/organizations/schemas/organization-profile-verifiable-credential.schema.json
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
3
|
+
"$id": "organization-profile-verifiable-credential",
|
|
4
|
+
"type": "object",
|
|
5
|
+
"title": "Organization Profile Verifiable Credential",
|
|
6
|
+
"description": "An organization's profile as a verifiable credential",
|
|
7
|
+
"properties": {
|
|
8
|
+
"format": {
|
|
9
|
+
"type": "string",
|
|
10
|
+
"enum": [
|
|
11
|
+
"jwt_vc"
|
|
12
|
+
],
|
|
13
|
+
"description": "the format of the verifiable credential"
|
|
14
|
+
},
|
|
15
|
+
"vc": {
|
|
16
|
+
"type": "string",
|
|
17
|
+
"description": "the verifiable credential containing the organization's profile"
|
|
18
|
+
}
|
|
19
|
+
},
|
|
20
|
+
"required": [
|
|
21
|
+
"format",
|
|
22
|
+
"vc"
|
|
23
|
+
]
|
|
24
|
+
|
|
25
|
+
}
|
package/src/controllers/organizations/schemas/organization-registry-service-response.schema.json
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
{
|
|
2
|
+
"title": "organization-registry-service-response",
|
|
3
|
+
"$id": "https://velocitycareerlabs.io/organization-registry-service-response.schema.json",
|
|
4
|
+
"additionalProperties": false,
|
|
5
|
+
"allOf": [
|
|
6
|
+
{
|
|
7
|
+
"type": "object",
|
|
8
|
+
"properties": {
|
|
9
|
+
"credentialTypes": {
|
|
10
|
+
"type": "array",
|
|
11
|
+
"items": {
|
|
12
|
+
"type": "string"
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
"$ref": "did-service#"
|
|
19
|
+
}
|
|
20
|
+
],
|
|
21
|
+
"required": [
|
|
22
|
+
"id",
|
|
23
|
+
"type",
|
|
24
|
+
"serviceEndpoint"
|
|
25
|
+
]
|
|
26
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
3
|
+
"$id": "organization-service",
|
|
4
|
+
"title": "organization-service",
|
|
5
|
+
"type": "object",
|
|
6
|
+
"additionalProperties": true,
|
|
7
|
+
"allOf": [
|
|
8
|
+
{
|
|
9
|
+
"type": "object",
|
|
10
|
+
"properties": {
|
|
11
|
+
"credentialTypes": {
|
|
12
|
+
"type": "array",
|
|
13
|
+
"items": {
|
|
14
|
+
"type": "string"
|
|
15
|
+
}
|
|
16
|
+
},
|
|
17
|
+
"supportedExchangeProtocols": {
|
|
18
|
+
"type": "array",
|
|
19
|
+
"items": {
|
|
20
|
+
"type": "string",
|
|
21
|
+
"enum": [
|
|
22
|
+
"VN_API",
|
|
23
|
+
"OPENID4VC"
|
|
24
|
+
]
|
|
25
|
+
},
|
|
26
|
+
"minItems": 1
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"$ref": "did-service#"
|
|
32
|
+
}
|
|
33
|
+
]
|
|
34
|
+
}
|
|
@@ -0,0 +1,123 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
3
|
+
"$id": "organization-verified-profile",
|
|
4
|
+
"type": "object",
|
|
5
|
+
"title": "An organization verified profile",
|
|
6
|
+
"description": "Verified profile information for an organization",
|
|
7
|
+
"allOf": [
|
|
8
|
+
{
|
|
9
|
+
"type": "object",
|
|
10
|
+
"properties": {
|
|
11
|
+
"id": {
|
|
12
|
+
"type": "string",
|
|
13
|
+
"description": "A unique id for the credential that was disclosed at this time."
|
|
14
|
+
},
|
|
15
|
+
"type": {
|
|
16
|
+
"type": "array",
|
|
17
|
+
"description": "type is identical to the standard based type found on verifiable credentials but does not accept a string, it only accepts an array to indicate an unordered set of type URIs",
|
|
18
|
+
"items": {
|
|
19
|
+
"type": "string"
|
|
20
|
+
}
|
|
21
|
+
},
|
|
22
|
+
"issuer": {
|
|
23
|
+
"type": "object",
|
|
24
|
+
"description": "DID of the issuer",
|
|
25
|
+
"properties": {
|
|
26
|
+
"id": {
|
|
27
|
+
"type": "string"
|
|
28
|
+
},
|
|
29
|
+
"alsoKnownAs": {
|
|
30
|
+
"title": "Also Known As",
|
|
31
|
+
"description": "https://www.w3.org/TR/did-core/#also-known-as",
|
|
32
|
+
"type": "array",
|
|
33
|
+
"items": {
|
|
34
|
+
"type": "string",
|
|
35
|
+
"format": "uri"
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
},
|
|
40
|
+
"credentialSubject": {
|
|
41
|
+
"$ref": "organization-profile#"
|
|
42
|
+
},
|
|
43
|
+
"credentialSchema": {
|
|
44
|
+
"type": "object",
|
|
45
|
+
"properties": {
|
|
46
|
+
"id": {
|
|
47
|
+
"type": "string"
|
|
48
|
+
},
|
|
49
|
+
"type": {
|
|
50
|
+
"type": "string"
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
},
|
|
54
|
+
"validFrom": {
|
|
55
|
+
"type": "string",
|
|
56
|
+
"format": "date-time",
|
|
57
|
+
"description": "when the credential will start being valid"
|
|
58
|
+
},
|
|
59
|
+
"validUntil": {
|
|
60
|
+
"type": "string",
|
|
61
|
+
"format": "date-time",
|
|
62
|
+
"description": "when the credential will expire"
|
|
63
|
+
},
|
|
64
|
+
"issuanceDate": {
|
|
65
|
+
"type": "string",
|
|
66
|
+
"format": "date-time",
|
|
67
|
+
"description": "when did the issuer actually issue the verified credential"
|
|
68
|
+
},
|
|
69
|
+
"credentialChecks": {
|
|
70
|
+
"type": "object",
|
|
71
|
+
"properties": {
|
|
72
|
+
"checked": {
|
|
73
|
+
"type": "string",
|
|
74
|
+
"format": "date-time",
|
|
75
|
+
"description": "when did the system last run checks on the profile VC"
|
|
76
|
+
},
|
|
77
|
+
"TRUSTED_ISSUER": {
|
|
78
|
+
"type": "string",
|
|
79
|
+
"enum": [
|
|
80
|
+
"PASS",
|
|
81
|
+
"FAIL",
|
|
82
|
+
"NOT_CHECKED",
|
|
83
|
+
"SELF_SIGNED"
|
|
84
|
+
]
|
|
85
|
+
},
|
|
86
|
+
"UNREVOKED": {
|
|
87
|
+
"type": "string",
|
|
88
|
+
"enum": [
|
|
89
|
+
"PASS",
|
|
90
|
+
"FAIL",
|
|
91
|
+
"NOT_CHECKED"
|
|
92
|
+
]
|
|
93
|
+
},
|
|
94
|
+
"UNEXPIRED": {
|
|
95
|
+
"type": "string",
|
|
96
|
+
"enum": [
|
|
97
|
+
"PASS",
|
|
98
|
+
"FAIL",
|
|
99
|
+
"NOT_CHECKED",
|
|
100
|
+
"NOT_APPLICABLE"
|
|
101
|
+
]
|
|
102
|
+
},
|
|
103
|
+
"UNTAMPERED": {
|
|
104
|
+
"type": "string",
|
|
105
|
+
"enum": [
|
|
106
|
+
"PASS",
|
|
107
|
+
"FAIL",
|
|
108
|
+
"NOT_CHECKED"
|
|
109
|
+
]
|
|
110
|
+
}
|
|
111
|
+
}
|
|
112
|
+
}
|
|
113
|
+
},
|
|
114
|
+
"required": [
|
|
115
|
+
"type",
|
|
116
|
+
"issuer",
|
|
117
|
+
"credentialSubject",
|
|
118
|
+
"issuanceDate",
|
|
119
|
+
"credentialChecks"
|
|
120
|
+
]
|
|
121
|
+
}
|
|
122
|
+
]
|
|
123
|
+
}
|
package/src/controllers/organizations/schemas/organization.search-profile.query-params.schema.json
ADDED
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
{
|
|
2
|
+
"title": "organization-search-query-params",
|
|
3
|
+
"type": "object",
|
|
4
|
+
"$id": "organization-search-profile-query-params",
|
|
5
|
+
"description": "Query parameters used for searching organizations",
|
|
6
|
+
"properties": {
|
|
7
|
+
"filter": {
|
|
8
|
+
"type": "object",
|
|
9
|
+
"properties": {
|
|
10
|
+
"serviceTypes": {
|
|
11
|
+
"type": "array",
|
|
12
|
+
"items": {"type": "string"}
|
|
13
|
+
},
|
|
14
|
+
"did": {
|
|
15
|
+
"type": "array",
|
|
16
|
+
"items": {"type": "string"}
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
},
|
|
20
|
+
"page": {
|
|
21
|
+
"type": "object",
|
|
22
|
+
"properties": {
|
|
23
|
+
"size": {
|
|
24
|
+
"type": "integer",
|
|
25
|
+
"minimum": 1
|
|
26
|
+
},
|
|
27
|
+
"skip": {
|
|
28
|
+
"type": "integer",
|
|
29
|
+
"minimum": 0
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
},
|
|
33
|
+
"q": {
|
|
34
|
+
"type": "string"
|
|
35
|
+
},
|
|
36
|
+
"sort": {
|
|
37
|
+
"type": "array",
|
|
38
|
+
"items": {
|
|
39
|
+
"type": "array",
|
|
40
|
+
"minItems": 2,
|
|
41
|
+
"maxItems": 2
|
|
42
|
+
}
|
|
43
|
+
},
|
|
44
|
+
"no-service-endpoint-transform": {
|
|
45
|
+
"type": "string",
|
|
46
|
+
"enum": ["1", "true"]
|
|
47
|
+
}
|
|
48
|
+
},
|
|
49
|
+
"additionalProperties": false
|
|
50
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
{
|
|
2
|
+
"title": "organization-search-query-params",
|
|
3
|
+
"type": "object",
|
|
4
|
+
"$id": "organization-search-query-params",
|
|
5
|
+
"description": "Query parameters used for searching organizations",
|
|
6
|
+
"allOf": [
|
|
7
|
+
{
|
|
8
|
+
"$ref": "https://velocitynetwork.foundation/schemas/page-query.schema.json#"
|
|
9
|
+
},
|
|
10
|
+
{
|
|
11
|
+
"type": "object",
|
|
12
|
+
"properties": {
|
|
13
|
+
"filter": {
|
|
14
|
+
"type": "object",
|
|
15
|
+
"properties": {
|
|
16
|
+
"serviceTypes": {
|
|
17
|
+
"type": "array",
|
|
18
|
+
"items": {
|
|
19
|
+
"type": "string"
|
|
20
|
+
}
|
|
21
|
+
},
|
|
22
|
+
"credentialTypes": {
|
|
23
|
+
"type": "array",
|
|
24
|
+
"items": {
|
|
25
|
+
"type": "string"
|
|
26
|
+
}
|
|
27
|
+
},
|
|
28
|
+
"did": {
|
|
29
|
+
"type": "array",
|
|
30
|
+
"items": {
|
|
31
|
+
"type": "string"
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
},
|
|
36
|
+
"q": {
|
|
37
|
+
"type": "string"
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
]
|
|
42
|
+
}
|
|
@@ -0,0 +1,103 @@
|
|
|
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 createError = require('http-errors');
|
|
19
|
+
const {
|
|
20
|
+
getCountries,
|
|
21
|
+
isLanguageCodeValid,
|
|
22
|
+
isLanguageSupported,
|
|
23
|
+
} = require('@verii/country-data');
|
|
24
|
+
const {
|
|
25
|
+
CachingConstants,
|
|
26
|
+
} = require('@verii/endpoints-credential-types-registrar');
|
|
27
|
+
|
|
28
|
+
const DEFAULT_LANGUAGE_CODE_FALLBACK = 'en';
|
|
29
|
+
|
|
30
|
+
const countriesController = async (fastify) => {
|
|
31
|
+
fastify.get(
|
|
32
|
+
'/countries',
|
|
33
|
+
{
|
|
34
|
+
schema: fastify.autoSchema({
|
|
35
|
+
querystring: {
|
|
36
|
+
type: 'object',
|
|
37
|
+
properties: {
|
|
38
|
+
lge: { type: 'string', description: 'Language' },
|
|
39
|
+
},
|
|
40
|
+
},
|
|
41
|
+
response: {
|
|
42
|
+
200: {
|
|
43
|
+
type: 'array',
|
|
44
|
+
items: {
|
|
45
|
+
type: 'object',
|
|
46
|
+
properties: {
|
|
47
|
+
name: {
|
|
48
|
+
type: 'string',
|
|
49
|
+
description:
|
|
50
|
+
'The name of the country in the language of the "lge" query parameter',
|
|
51
|
+
},
|
|
52
|
+
code: {
|
|
53
|
+
type: 'string',
|
|
54
|
+
description: 'The ISO 3166-1 country code',
|
|
55
|
+
},
|
|
56
|
+
regions: {
|
|
57
|
+
type: 'array',
|
|
58
|
+
items: {
|
|
59
|
+
type: 'object',
|
|
60
|
+
properties: {
|
|
61
|
+
name: {
|
|
62
|
+
type: 'string',
|
|
63
|
+
description:
|
|
64
|
+
'The name of the subdivision in the language of the "lge" query parameter',
|
|
65
|
+
},
|
|
66
|
+
code: {
|
|
67
|
+
type: 'string',
|
|
68
|
+
description: 'The ISO 3166-2 subdivision code',
|
|
69
|
+
},
|
|
70
|
+
},
|
|
71
|
+
required: ['name', 'code'],
|
|
72
|
+
},
|
|
73
|
+
},
|
|
74
|
+
},
|
|
75
|
+
required: ['name', 'code', 'regions'],
|
|
76
|
+
},
|
|
77
|
+
},
|
|
78
|
+
},
|
|
79
|
+
}),
|
|
80
|
+
},
|
|
81
|
+
async ({ query: { lge } }, reply) => {
|
|
82
|
+
if (lge != null && !isLanguageCodeValid(lge)) {
|
|
83
|
+
throw createError(400, '"lge" query parameter is malformed');
|
|
84
|
+
}
|
|
85
|
+
const selectedLge =
|
|
86
|
+
lge != null && isLanguageSupported(lge)
|
|
87
|
+
? lge
|
|
88
|
+
: DEFAULT_LANGUAGE_CODE_FALLBACK;
|
|
89
|
+
const countries = await getCountries(selectedLge);
|
|
90
|
+
return reply
|
|
91
|
+
.header(
|
|
92
|
+
CachingConstants.CACHE_CONTROL_HEADER,
|
|
93
|
+
CachingConstants.MAX_AGE_CACHE_CONTROL
|
|
94
|
+
)
|
|
95
|
+
.send(countries);
|
|
96
|
+
}
|
|
97
|
+
);
|
|
98
|
+
};
|
|
99
|
+
|
|
100
|
+
// eslint-disable-next-line better-mutation/no-mutation
|
|
101
|
+
countriesController.prefixOverride = '/reference';
|
|
102
|
+
|
|
103
|
+
module.exports = countriesController;
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
const {
|
|
2
|
+
didServiceSchema,
|
|
3
|
+
modifyDidServiceSchema,
|
|
4
|
+
} = require('@verii/common-schemas');
|
|
5
|
+
const { resolveDid } = require('./resolve-did');
|
|
6
|
+
const { didDocSchema, didProofSchema, publicKeySchema } = require('./schemas');
|
|
7
|
+
|
|
8
|
+
const resolveDidController = async (fastify) => {
|
|
9
|
+
fastify
|
|
10
|
+
.addSchema(modifyDidServiceSchema)
|
|
11
|
+
.addSchema(didServiceSchema)
|
|
12
|
+
.addSchema(publicKeySchema)
|
|
13
|
+
.addSchema(didProofSchema)
|
|
14
|
+
.addSchema(didDocSchema);
|
|
15
|
+
|
|
16
|
+
fastify.get(
|
|
17
|
+
'/:did',
|
|
18
|
+
{
|
|
19
|
+
schema: fastify.autoSchema({
|
|
20
|
+
tags: ['registrar_organizations'],
|
|
21
|
+
params: {
|
|
22
|
+
type: 'object',
|
|
23
|
+
properties: {
|
|
24
|
+
did: {
|
|
25
|
+
type: 'string',
|
|
26
|
+
description: 'the did document',
|
|
27
|
+
pattern: '^did:[a-z0-9]+:[A-Za-z0-9._:?=&%;-]+$',
|
|
28
|
+
},
|
|
29
|
+
},
|
|
30
|
+
},
|
|
31
|
+
response: {
|
|
32
|
+
200: { $ref: 'did-doc#' },
|
|
33
|
+
},
|
|
34
|
+
}),
|
|
35
|
+
},
|
|
36
|
+
async (req) => {
|
|
37
|
+
const {
|
|
38
|
+
params: { did },
|
|
39
|
+
} = req;
|
|
40
|
+
return resolveDid(did, req);
|
|
41
|
+
}
|
|
42
|
+
);
|
|
43
|
+
};
|
|
44
|
+
|
|
45
|
+
module.exports = resolveDidController;
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
const newError = require('http-errors');
|
|
2
|
+
const { resolveDidWeb, isWebDid } = require('@verii/did-web');
|
|
3
|
+
const { buildDidDocWithAlternativeId } = require('@verii/did-doc');
|
|
4
|
+
const { isEmpty } = require('lodash/fp');
|
|
5
|
+
|
|
6
|
+
const resolveDid = async (did, context) => {
|
|
7
|
+
if (isWebDid(did)) {
|
|
8
|
+
return resolveDidWeb(did).catch((error) => {
|
|
9
|
+
if (error.errorCode === 'did_resolution_failed') {
|
|
10
|
+
throw newError(404, error.message, { errorCode: error.errorCode });
|
|
11
|
+
}
|
|
12
|
+
throw error;
|
|
13
|
+
});
|
|
14
|
+
}
|
|
15
|
+
return resolveLocalDid(did, context);
|
|
16
|
+
};
|
|
17
|
+
|
|
18
|
+
const resolveLocalDid = async (did, { repos }) => {
|
|
19
|
+
const organization = await repos.organizations.findOneByDid(did);
|
|
20
|
+
const didDoc = organization?.didDoc;
|
|
21
|
+
|
|
22
|
+
if (isEmpty(didDoc)) {
|
|
23
|
+
throw newError(404, `Could not resolve ${did}`, {
|
|
24
|
+
errorCode: 'did_resolution_failed',
|
|
25
|
+
});
|
|
26
|
+
}
|
|
27
|
+
return buildDidDocWithAlternativeId(did, didDoc);
|
|
28
|
+
};
|
|
29
|
+
|
|
30
|
+
module.exports = { resolveDid };
|