invenio-vocabularies 9.1.2__py2.py3-none-any.whl
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.
- invenio_vocabularies/__init__.py +16 -0
- invenio_vocabularies/administration/__init__.py +10 -0
- invenio_vocabularies/administration/views/__init__.py +10 -0
- invenio_vocabularies/administration/views/vocabularies.py +43 -0
- invenio_vocabularies/alembic/17c703ce1eb7_create_names_table.py +54 -0
- invenio_vocabularies/alembic/3ba812d80559_add_internal_name_id.py +36 -0
- invenio_vocabularies/alembic/4a9a4fd235f8_create_vocabulary_schemes.py +37 -0
- invenio_vocabularies/alembic/4f365fced43f_create_vocabularies_tables.py +92 -0
- invenio_vocabularies/alembic/55a700f897b6_add_names_and_afiliations_pid_column.py +96 -0
- invenio_vocabularies/alembic/6312f33645c1_create_affiliations_table.py +54 -0
- invenio_vocabularies/alembic/676dd587542d_create_funders_vocabulary_table.py +58 -0
- invenio_vocabularies/alembic/8ff82dfb0be8_create_vocabularies_branch.py +28 -0
- invenio_vocabularies/alembic/__init__.py +9 -0
- invenio_vocabularies/alembic/af2457652217_drop_unique_constraint_from_internal_id.py +37 -0
- invenio_vocabularies/alembic/e1146238edd3_create_awards_table.py +56 -0
- invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/.eslintrc.yml +11 -0
- invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/.prettierrc +1 -0
- invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/index.js +7 -0
- invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/package.json +25 -0
- invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/AwardResults.js +95 -0
- invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/CustomAwardForm.js +139 -0
- invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/FunderDropdown.js +87 -0
- invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/FundingField.js +244 -0
- invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/FundingField.test.js +1 -0
- invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/FundingFieldItem.js +152 -0
- invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/FundingModal.js +246 -0
- invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/NoAwardResults.js +37 -0
- invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/index.js +8 -0
- invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/index.js +7 -0
- invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/index.js +7 -0
- invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/index.js +7 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/i18next.js +36 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/_generatedTranslations.js +66 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/ar/messages.po +96 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/ar/translations.json +28 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/bg/messages.po +94 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/bg/translations.json +28 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/ca/messages.po +94 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/ca/translations.json +28 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/cs/messages.po +97 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/cs/translations.json +28 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/da/messages.po +94 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/da/translations.json +28 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/de/messages.po +98 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/de/translations.json +28 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/el/messages.po +94 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/el/translations.json +28 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/en/messages.po +88 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/en/translations.json +28 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/es/messages.po +96 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/es/translations.json +28 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/et/messages.po +95 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/et/translations.json +28 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/fa/messages.po +94 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/fa/translations.json +28 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/fr/messages.po +96 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/fr/translations.json +28 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/hr/messages.po +94 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/hr/translations.json +28 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/hu/messages.po +96 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/hu/translations.json +28 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/index.js +24 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/it/messages.po +96 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/it/translations.json +28 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/ja/messages.po +94 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/ja/translations.json +28 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/ka/messages.po +94 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/ka/translations.json +28 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/ko/messages.po +90 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/ko/translations.json +28 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/lt/messages.po +94 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/lt/translations.json +28 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/no/messages.po +94 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/no/translations.json +28 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/pl/messages.po +94 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/pl/translations.json +28 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/pt/messages.po +94 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/pt/translations.json +28 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/ro/messages.po +95 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/ro/translations.json +28 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/ru/messages.po +95 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/ru/translations.json +28 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/sk/messages.po +94 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/sk/translations.json +28 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/sv/messages.po +98 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/sv/translations.json +28 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/tr/messages.po +96 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/tr/translations.json +28 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/uk/messages.po +94 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/uk/translations.json +28 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/zh_CN/messages.po +96 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/zh_CN/translations.json +28 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/zh_TW/messages.po +94 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/zh_TW/translations.json +28 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/package.json +19 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/translations.pot +88 -0
- invenio_vocabularies/cli.py +175 -0
- invenio_vocabularies/config.py +231 -0
- invenio_vocabularies/contrib/__init__.py +9 -0
- invenio_vocabularies/contrib/affiliations/__init__.py +20 -0
- invenio_vocabularies/contrib/affiliations/affiliations.py +61 -0
- invenio_vocabularies/contrib/affiliations/api.py +13 -0
- invenio_vocabularies/contrib/affiliations/config.py +79 -0
- invenio_vocabularies/contrib/affiliations/datastreams.py +301 -0
- invenio_vocabularies/contrib/affiliations/facets.py +36 -0
- invenio_vocabularies/contrib/affiliations/jsonschemas/__init__.py +9 -0
- invenio_vocabularies/contrib/affiliations/jsonschemas/affiliations/affiliation-v1.0.0.json +63 -0
- invenio_vocabularies/contrib/affiliations/mappings/__init__.py +10 -0
- invenio_vocabularies/contrib/affiliations/mappings/os-v1/__init__.py +9 -0
- invenio_vocabularies/contrib/affiliations/mappings/os-v1/affiliations/affiliation-v1.0.0.json +112 -0
- invenio_vocabularies/contrib/affiliations/mappings/os-v1/affiliations/affiliation-v2.0.0.json +171 -0
- invenio_vocabularies/contrib/affiliations/mappings/os-v2/__init__.py +9 -0
- invenio_vocabularies/contrib/affiliations/mappings/os-v2/affiliations/affiliation-v1.0.0.json +112 -0
- invenio_vocabularies/contrib/affiliations/mappings/os-v2/affiliations/affiliation-v2.0.0.json +171 -0
- invenio_vocabularies/contrib/affiliations/mappings/v7/__init__.py +9 -0
- invenio_vocabularies/contrib/affiliations/mappings/v7/affiliations/affiliation-v1.0.0.json +112 -0
- invenio_vocabularies/contrib/affiliations/models.py +13 -0
- invenio_vocabularies/contrib/affiliations/resources.py +16 -0
- invenio_vocabularies/contrib/affiliations/schema.py +71 -0
- invenio_vocabularies/contrib/affiliations/services.py +15 -0
- invenio_vocabularies/contrib/awards/__init__.py +19 -0
- invenio_vocabularies/contrib/awards/api.py +13 -0
- invenio_vocabularies/contrib/awards/awards.py +96 -0
- invenio_vocabularies/contrib/awards/config.py +59 -0
- invenio_vocabularies/contrib/awards/datastreams.py +372 -0
- invenio_vocabularies/contrib/awards/jsonschemas/__init__.py +9 -0
- invenio_vocabularies/contrib/awards/jsonschemas/awards/award-v1.0.0.json +91 -0
- invenio_vocabularies/contrib/awards/mappings/__init__.py +9 -0
- invenio_vocabularies/contrib/awards/mappings/os-v1/__init__.py +9 -0
- invenio_vocabularies/contrib/awards/mappings/os-v1/awards/award-v1.0.0.json +147 -0
- invenio_vocabularies/contrib/awards/mappings/os-v2/__init__.py +9 -0
- invenio_vocabularies/contrib/awards/mappings/os-v2/awards/award-v1.0.0.json +147 -0
- invenio_vocabularies/contrib/awards/mappings/v7/__init__.py +9 -0
- invenio_vocabularies/contrib/awards/mappings/v7/awards/award-v1.0.0.json +147 -0
- invenio_vocabularies/contrib/awards/models.py +13 -0
- invenio_vocabularies/contrib/awards/resources.py +16 -0
- invenio_vocabularies/contrib/awards/schema.py +119 -0
- invenio_vocabularies/contrib/awards/serializer.py +47 -0
- invenio_vocabularies/contrib/awards/services.py +15 -0
- invenio_vocabularies/contrib/common/__init__.py +9 -0
- invenio_vocabularies/contrib/common/openaire/__init__.py +9 -0
- invenio_vocabularies/contrib/common/openaire/datastreams.py +84 -0
- invenio_vocabularies/contrib/common/ror/__init__.py +9 -0
- invenio_vocabularies/contrib/common/ror/datastreams.py +230 -0
- invenio_vocabularies/contrib/funders/__init__.py +19 -0
- invenio_vocabularies/contrib/funders/api.py +13 -0
- invenio_vocabularies/contrib/funders/config.py +78 -0
- invenio_vocabularies/contrib/funders/datastreams.py +97 -0
- invenio_vocabularies/contrib/funders/facets.py +36 -0
- invenio_vocabularies/contrib/funders/funders.py +72 -0
- invenio_vocabularies/contrib/funders/jsonschemas/__init__.py +9 -0
- invenio_vocabularies/contrib/funders/jsonschemas/funders/funder-v1.0.0.json +65 -0
- invenio_vocabularies/contrib/funders/mappings/__init__.py +9 -0
- invenio_vocabularies/contrib/funders/mappings/os-v1/__init__.py +9 -0
- invenio_vocabularies/contrib/funders/mappings/os-v1/funders/funder-v1.0.0.json +90 -0
- invenio_vocabularies/contrib/funders/mappings/os-v1/funders/funder-v2.0.0.json +156 -0
- invenio_vocabularies/contrib/funders/mappings/os-v2/__init__.py +9 -0
- invenio_vocabularies/contrib/funders/mappings/os-v2/funders/funder-v1.0.0.json +90 -0
- invenio_vocabularies/contrib/funders/mappings/os-v2/funders/funder-v2.0.0.json +156 -0
- invenio_vocabularies/contrib/funders/mappings/v7/__init__.py +9 -0
- invenio_vocabularies/contrib/funders/mappings/v7/funders/funder-v1.0.0.json +90 -0
- invenio_vocabularies/contrib/funders/models.py +13 -0
- invenio_vocabularies/contrib/funders/resources.py +16 -0
- invenio_vocabularies/contrib/funders/schema.py +88 -0
- invenio_vocabularies/contrib/funders/serializer.py +33 -0
- invenio_vocabularies/contrib/funders/services.py +15 -0
- invenio_vocabularies/contrib/names/__init__.py +19 -0
- invenio_vocabularies/contrib/names/api.py +13 -0
- invenio_vocabularies/contrib/names/components.py +24 -0
- invenio_vocabularies/contrib/names/config.py +75 -0
- invenio_vocabularies/contrib/names/datastreams.py +483 -0
- invenio_vocabularies/contrib/names/jsonschemas/__init__.py +9 -0
- invenio_vocabularies/contrib/names/jsonschemas/names/name-v1.0.0.json +68 -0
- invenio_vocabularies/contrib/names/mappings/__init__.py +9 -0
- invenio_vocabularies/contrib/names/mappings/os-v1/__init__.py +9 -0
- invenio_vocabularies/contrib/names/mappings/os-v1/names/name-v1.0.0.json +101 -0
- invenio_vocabularies/contrib/names/mappings/os-v1/names/name-v2.0.0.json +165 -0
- invenio_vocabularies/contrib/names/mappings/os-v2/__init__.py +9 -0
- invenio_vocabularies/contrib/names/mappings/os-v2/names/name-v1.0.0.json +101 -0
- invenio_vocabularies/contrib/names/mappings/os-v2/names/name-v2.0.0.json +165 -0
- invenio_vocabularies/contrib/names/mappings/v7/__init__.py +9 -0
- invenio_vocabularies/contrib/names/mappings/v7/names/name-v1.0.0.json +101 -0
- invenio_vocabularies/contrib/names/models.py +13 -0
- invenio_vocabularies/contrib/names/names.py +80 -0
- invenio_vocabularies/contrib/names/permissions.py +30 -0
- invenio_vocabularies/contrib/names/resources.py +54 -0
- invenio_vocabularies/contrib/names/s3client.py +50 -0
- invenio_vocabularies/contrib/names/schema.py +121 -0
- invenio_vocabularies/contrib/names/services.py +64 -0
- invenio_vocabularies/contrib/subjects/__init__.py +22 -0
- invenio_vocabularies/contrib/subjects/api.py +14 -0
- invenio_vocabularies/contrib/subjects/config.py +90 -0
- invenio_vocabularies/contrib/subjects/datastreams.py +63 -0
- invenio_vocabularies/contrib/subjects/euroscivoc/__init__.py +9 -0
- invenio_vocabularies/contrib/subjects/euroscivoc/datastreams.py +101 -0
- invenio_vocabularies/contrib/subjects/facets.py +23 -0
- invenio_vocabularies/contrib/subjects/gemet/__init__.py +9 -0
- invenio_vocabularies/contrib/subjects/gemet/datastreams.py +140 -0
- invenio_vocabularies/contrib/subjects/jsonschemas/__init__.py +10 -0
- invenio_vocabularies/contrib/subjects/jsonschemas/subjects/subject-v1.0.0.json +69 -0
- invenio_vocabularies/contrib/subjects/mappings/__init__.py +9 -0
- invenio_vocabularies/contrib/subjects/mappings/os-v1/__init__.py +9 -0
- invenio_vocabularies/contrib/subjects/mappings/os-v1/subjects/subject-v1.0.0.json +96 -0
- invenio_vocabularies/contrib/subjects/mappings/os-v2/__init__.py +9 -0
- invenio_vocabularies/contrib/subjects/mappings/os-v2/subjects/subject-v1.0.0.json +96 -0
- invenio_vocabularies/contrib/subjects/mappings/v7/__init__.py +9 -0
- invenio_vocabularies/contrib/subjects/mappings/v7/subjects/subject-v1.0.0.json +96 -0
- invenio_vocabularies/contrib/subjects/mesh/__init__.py +9 -0
- invenio_vocabularies/contrib/subjects/mesh/datastreams.py +48 -0
- invenio_vocabularies/contrib/subjects/models.py +14 -0
- invenio_vocabularies/contrib/subjects/nvs/__init__.py +9 -0
- invenio_vocabularies/contrib/subjects/nvs/datastreams.py +114 -0
- invenio_vocabularies/contrib/subjects/resources.py +17 -0
- invenio_vocabularies/contrib/subjects/schema.py +101 -0
- invenio_vocabularies/contrib/subjects/services.py +30 -0
- invenio_vocabularies/contrib/subjects/subjects.py +55 -0
- invenio_vocabularies/datastreams/__init__.py +18 -0
- invenio_vocabularies/datastreams/datastreams.py +239 -0
- invenio_vocabularies/datastreams/errors.py +29 -0
- invenio_vocabularies/datastreams/factories.py +86 -0
- invenio_vocabularies/datastreams/readers.py +448 -0
- invenio_vocabularies/datastreams/tasks.py +115 -0
- invenio_vocabularies/datastreams/transformers.py +130 -0
- invenio_vocabularies/datastreams/writers.py +222 -0
- invenio_vocabularies/datastreams/xml.py +34 -0
- invenio_vocabularies/ext.py +179 -0
- invenio_vocabularies/factories.py +193 -0
- invenio_vocabularies/fixtures.py +52 -0
- invenio_vocabularies/jobs.py +207 -0
- invenio_vocabularies/proxies.py +27 -0
- invenio_vocabularies/records/__init__.py +9 -0
- invenio_vocabularies/records/api.py +53 -0
- invenio_vocabularies/records/jsonschemas/__init__.py +9 -0
- invenio_vocabularies/records/jsonschemas/vocabularies/definitions-v1.0.0.json +30 -0
- invenio_vocabularies/records/jsonschemas/vocabularies/vocabulary-v1.0.0.json +55 -0
- invenio_vocabularies/records/mappings/__init__.py +9 -0
- invenio_vocabularies/records/mappings/os-v1/__init__.py +9 -0
- invenio_vocabularies/records/mappings/os-v1/vocabularies/vocabulary-v1.0.0.json +109 -0
- invenio_vocabularies/records/mappings/os-v2/__init__.py +9 -0
- invenio_vocabularies/records/mappings/os-v2/vocabularies/vocabulary-v1.0.0.json +109 -0
- invenio_vocabularies/records/mappings/v7/__init__.py +9 -0
- invenio_vocabularies/records/mappings/v7/vocabularies/vocabulary-v1.0.0.json +109 -0
- invenio_vocabularies/records/models.py +90 -0
- invenio_vocabularies/records/pidprovider.py +118 -0
- invenio_vocabularies/records/systemfields/__init__.py +16 -0
- invenio_vocabularies/records/systemfields/pid.py +125 -0
- invenio_vocabularies/records/systemfields/relations.py +51 -0
- invenio_vocabularies/resources/__init__.py +23 -0
- invenio_vocabularies/resources/config.py +105 -0
- invenio_vocabularies/resources/resource.py +156 -0
- invenio_vocabularies/resources/schema.py +21 -0
- invenio_vocabularies/resources/serializer.py +39 -0
- invenio_vocabularies/services/__init__.py +19 -0
- invenio_vocabularies/services/components.py +58 -0
- invenio_vocabularies/services/config.py +173 -0
- invenio_vocabularies/services/custom_fields/__init__.py +17 -0
- invenio_vocabularies/services/custom_fields/subject.py +82 -0
- invenio_vocabularies/services/custom_fields/vocabulary.py +96 -0
- invenio_vocabularies/services/facets.py +114 -0
- invenio_vocabularies/services/generators.py +38 -0
- invenio_vocabularies/services/permissions.py +30 -0
- invenio_vocabularies/services/querystr.py +57 -0
- invenio_vocabularies/services/results.py +110 -0
- invenio_vocabularies/services/schema.py +163 -0
- invenio_vocabularies/services/service.py +189 -0
- invenio_vocabularies/services/tasks.py +38 -0
- invenio_vocabularies/templates/semantic-ui/invenio_vocabularies/subjects.html +23 -0
- invenio_vocabularies/templates/semantic-ui/invenio_vocabularies/vocabularies-list.html +12 -0
- invenio_vocabularies/templates/semantic-ui/invenio_vocabularies/vocabulary-details.html +71 -0
- invenio_vocabularies/translations/ar/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/ar/LC_MESSAGES/messages.po +277 -0
- invenio_vocabularies/translations/bg/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/bg/LC_MESSAGES/messages.po +275 -0
- invenio_vocabularies/translations/ca/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/ca/LC_MESSAGES/messages.po +276 -0
- invenio_vocabularies/translations/cs/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/cs/LC_MESSAGES/messages.po +281 -0
- invenio_vocabularies/translations/da/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/da/LC_MESSAGES/messages.po +271 -0
- invenio_vocabularies/translations/de/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/de/LC_MESSAGES/messages.po +293 -0
- invenio_vocabularies/translations/el/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/el/LC_MESSAGES/messages.po +275 -0
- invenio_vocabularies/translations/es/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/es/LC_MESSAGES/messages.po +281 -0
- invenio_vocabularies/translations/et/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/et/LC_MESSAGES/messages.po +276 -0
- invenio_vocabularies/translations/fa/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/fa/LC_MESSAGES/messages.po +275 -0
- invenio_vocabularies/translations/fr/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/fr/LC_MESSAGES/messages.po +279 -0
- invenio_vocabularies/translations/hr/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/hr/LC_MESSAGES/messages.po +275 -0
- invenio_vocabularies/translations/hu/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/hu/LC_MESSAGES/messages.po +280 -0
- invenio_vocabularies/translations/it/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/it/LC_MESSAGES/messages.po +277 -0
- invenio_vocabularies/translations/ja/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/ja/LC_MESSAGES/messages.po +275 -0
- invenio_vocabularies/translations/ka/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/ka/LC_MESSAGES/messages.po +275 -0
- invenio_vocabularies/translations/ko/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/ko/LC_MESSAGES/messages.po +275 -0
- invenio_vocabularies/translations/lt/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/lt/LC_MESSAGES/messages.po +275 -0
- invenio_vocabularies/translations/messages.pot +270 -0
- invenio_vocabularies/translations/no/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/no/LC_MESSAGES/messages.po +275 -0
- invenio_vocabularies/translations/pl/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/pl/LC_MESSAGES/messages.po +275 -0
- invenio_vocabularies/translations/pt/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/pt/LC_MESSAGES/messages.po +275 -0
- invenio_vocabularies/translations/ro/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/ro/LC_MESSAGES/messages.po +280 -0
- invenio_vocabularies/translations/ru/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/ru/LC_MESSAGES/messages.po +276 -0
- invenio_vocabularies/translations/sk/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/sk/LC_MESSAGES/messages.po +276 -0
- invenio_vocabularies/translations/sv/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/sv/LC_MESSAGES/messages.po +280 -0
- invenio_vocabularies/translations/tr/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/tr/LC_MESSAGES/messages.po +277 -0
- invenio_vocabularies/translations/uk/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/uk/LC_MESSAGES/messages.po +275 -0
- invenio_vocabularies/translations/zh_CN/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/zh_CN/LC_MESSAGES/messages.po +276 -0
- invenio_vocabularies/translations/zh_TW/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/zh_TW/LC_MESSAGES/messages.po +275 -0
- invenio_vocabularies/views.py +53 -0
- invenio_vocabularies/webpack.py +51 -0
- invenio_vocabularies-9.1.2.dist-info/METADATA +517 -0
- invenio_vocabularies-9.1.2.dist-info/RECORD +337 -0
- invenio_vocabularies-9.1.2.dist-info/WHEEL +6 -0
- invenio_vocabularies-9.1.2.dist-info/entry_points.txt +73 -0
- invenio_vocabularies-9.1.2.dist-info/licenses/AUTHORS.rst +13 -0
- invenio_vocabularies-9.1.2.dist-info/licenses/LICENSE +21 -0
- invenio_vocabularies-9.1.2.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,147 @@
|
|
|
1
|
+
{
|
|
2
|
+
"mappings": {
|
|
3
|
+
"dynamic_templates": [
|
|
4
|
+
{
|
|
5
|
+
"i18n_title": {
|
|
6
|
+
"path_match": "title.*",
|
|
7
|
+
"match_mapping_type": "string",
|
|
8
|
+
"mapping": {
|
|
9
|
+
"type": "search_as_you_type"
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
},
|
|
13
|
+
{
|
|
14
|
+
"i18n_description": {
|
|
15
|
+
"path_match": "description.*",
|
|
16
|
+
"match_mapping_type": "string",
|
|
17
|
+
"mapping": {
|
|
18
|
+
"type": "text"
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
],
|
|
23
|
+
"dynamic": "strict",
|
|
24
|
+
"properties": {
|
|
25
|
+
"$schema": {
|
|
26
|
+
"type": "keyword",
|
|
27
|
+
"index": "false"
|
|
28
|
+
},
|
|
29
|
+
"created": {
|
|
30
|
+
"type": "date"
|
|
31
|
+
},
|
|
32
|
+
"updated": {
|
|
33
|
+
"type": "date"
|
|
34
|
+
},
|
|
35
|
+
"indexed_at": {
|
|
36
|
+
"type": "date"
|
|
37
|
+
},
|
|
38
|
+
"uuid": {
|
|
39
|
+
"type": "keyword"
|
|
40
|
+
},
|
|
41
|
+
"version_id": {
|
|
42
|
+
"type": "integer"
|
|
43
|
+
},
|
|
44
|
+
"identifiers": {
|
|
45
|
+
"properties": {
|
|
46
|
+
"identifier": {
|
|
47
|
+
"type": "keyword"
|
|
48
|
+
},
|
|
49
|
+
"scheme": {
|
|
50
|
+
"type": "keyword"
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
},
|
|
54
|
+
"id": {
|
|
55
|
+
"type": "keyword"
|
|
56
|
+
},
|
|
57
|
+
"title": {
|
|
58
|
+
"type": "object",
|
|
59
|
+
"dynamic": "true"
|
|
60
|
+
},
|
|
61
|
+
"tags": {
|
|
62
|
+
"type": "keyword"
|
|
63
|
+
},
|
|
64
|
+
"number": {
|
|
65
|
+
"type": "keyword"
|
|
66
|
+
},
|
|
67
|
+
"acronym": {
|
|
68
|
+
"type": "keyword",
|
|
69
|
+
"fields": {
|
|
70
|
+
"text": {
|
|
71
|
+
"type": "text"
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
},
|
|
75
|
+
"start_date": {
|
|
76
|
+
"type": "date"
|
|
77
|
+
},
|
|
78
|
+
"end_date": {
|
|
79
|
+
"type": "date"
|
|
80
|
+
},
|
|
81
|
+
"description": {
|
|
82
|
+
"type": "object",
|
|
83
|
+
"dynamic": "true"
|
|
84
|
+
},
|
|
85
|
+
"program": {
|
|
86
|
+
"type": "keyword"
|
|
87
|
+
},
|
|
88
|
+
"subjects": {
|
|
89
|
+
"properties": {
|
|
90
|
+
"@v": {
|
|
91
|
+
"type": "keyword"
|
|
92
|
+
},
|
|
93
|
+
"id": {
|
|
94
|
+
"type": "keyword"
|
|
95
|
+
},
|
|
96
|
+
"props": {
|
|
97
|
+
"type": "object",
|
|
98
|
+
"dynamic": "true"
|
|
99
|
+
},
|
|
100
|
+
"subject": {
|
|
101
|
+
"type": "keyword"
|
|
102
|
+
},
|
|
103
|
+
"scheme": {
|
|
104
|
+
"type": "keyword"
|
|
105
|
+
},
|
|
106
|
+
"identifiers": {
|
|
107
|
+
"properties": {
|
|
108
|
+
"identifier": {
|
|
109
|
+
"type": "keyword"
|
|
110
|
+
},
|
|
111
|
+
"scheme": {
|
|
112
|
+
"type": "keyword"
|
|
113
|
+
}
|
|
114
|
+
}
|
|
115
|
+
}
|
|
116
|
+
}
|
|
117
|
+
},
|
|
118
|
+
"organizations": {
|
|
119
|
+
"properties": {
|
|
120
|
+
"scheme": {
|
|
121
|
+
"type": "keyword"
|
|
122
|
+
},
|
|
123
|
+
"id": {
|
|
124
|
+
"type": "keyword"
|
|
125
|
+
},
|
|
126
|
+
"organization": {
|
|
127
|
+
"type": "keyword"
|
|
128
|
+
}
|
|
129
|
+
}
|
|
130
|
+
},
|
|
131
|
+
"funder": {
|
|
132
|
+
"type": "object",
|
|
133
|
+
"properties": {
|
|
134
|
+
"@v": {
|
|
135
|
+
"type": "keyword"
|
|
136
|
+
},
|
|
137
|
+
"id": {
|
|
138
|
+
"type": "keyword"
|
|
139
|
+
},
|
|
140
|
+
"name": {
|
|
141
|
+
"type": "text"
|
|
142
|
+
}
|
|
143
|
+
}
|
|
144
|
+
}
|
|
145
|
+
}
|
|
146
|
+
}
|
|
147
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
#
|
|
3
|
+
# Copyright (C) 2022 CERN.
|
|
4
|
+
#
|
|
5
|
+
# Invenio-Vocabularies is free software; you can redistribute it and/or
|
|
6
|
+
# modify it under the terms of the MIT License; see LICENSE file for more
|
|
7
|
+
# details.
|
|
8
|
+
|
|
9
|
+
"""Awards OpenSearch v2 mappings."""
|
|
@@ -0,0 +1,147 @@
|
|
|
1
|
+
{
|
|
2
|
+
"mappings": {
|
|
3
|
+
"dynamic_templates": [
|
|
4
|
+
{
|
|
5
|
+
"i18n_title": {
|
|
6
|
+
"path_match": "title.*",
|
|
7
|
+
"match_mapping_type": "string",
|
|
8
|
+
"mapping": {
|
|
9
|
+
"type": "search_as_you_type"
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
},
|
|
13
|
+
{
|
|
14
|
+
"i18n_description": {
|
|
15
|
+
"path_match": "description.*",
|
|
16
|
+
"match_mapping_type": "string",
|
|
17
|
+
"mapping": {
|
|
18
|
+
"type": "text"
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
],
|
|
23
|
+
"dynamic": "strict",
|
|
24
|
+
"properties": {
|
|
25
|
+
"$schema": {
|
|
26
|
+
"type": "keyword",
|
|
27
|
+
"index": "false"
|
|
28
|
+
},
|
|
29
|
+
"created": {
|
|
30
|
+
"type": "date"
|
|
31
|
+
},
|
|
32
|
+
"updated": {
|
|
33
|
+
"type": "date"
|
|
34
|
+
},
|
|
35
|
+
"indexed_at": {
|
|
36
|
+
"type": "date"
|
|
37
|
+
},
|
|
38
|
+
"uuid": {
|
|
39
|
+
"type": "keyword"
|
|
40
|
+
},
|
|
41
|
+
"version_id": {
|
|
42
|
+
"type": "integer"
|
|
43
|
+
},
|
|
44
|
+
"identifiers": {
|
|
45
|
+
"properties": {
|
|
46
|
+
"identifier": {
|
|
47
|
+
"type": "keyword"
|
|
48
|
+
},
|
|
49
|
+
"scheme": {
|
|
50
|
+
"type": "keyword"
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
},
|
|
54
|
+
"id": {
|
|
55
|
+
"type": "keyword"
|
|
56
|
+
},
|
|
57
|
+
"title": {
|
|
58
|
+
"type": "object",
|
|
59
|
+
"dynamic": "true"
|
|
60
|
+
},
|
|
61
|
+
"tags": {
|
|
62
|
+
"type": "keyword"
|
|
63
|
+
},
|
|
64
|
+
"number": {
|
|
65
|
+
"type": "keyword"
|
|
66
|
+
},
|
|
67
|
+
"acronym": {
|
|
68
|
+
"type": "keyword",
|
|
69
|
+
"fields": {
|
|
70
|
+
"text": {
|
|
71
|
+
"type": "text"
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
},
|
|
75
|
+
"start_date": {
|
|
76
|
+
"type": "date"
|
|
77
|
+
},
|
|
78
|
+
"end_date": {
|
|
79
|
+
"type": "date"
|
|
80
|
+
},
|
|
81
|
+
"description": {
|
|
82
|
+
"type": "object",
|
|
83
|
+
"dynamic": "true"
|
|
84
|
+
},
|
|
85
|
+
"program": {
|
|
86
|
+
"type": "keyword"
|
|
87
|
+
},
|
|
88
|
+
"subjects": {
|
|
89
|
+
"properties": {
|
|
90
|
+
"@v": {
|
|
91
|
+
"type": "keyword"
|
|
92
|
+
},
|
|
93
|
+
"id": {
|
|
94
|
+
"type": "keyword"
|
|
95
|
+
},
|
|
96
|
+
"props": {
|
|
97
|
+
"type": "object",
|
|
98
|
+
"dynamic": "true"
|
|
99
|
+
},
|
|
100
|
+
"subject": {
|
|
101
|
+
"type": "keyword"
|
|
102
|
+
},
|
|
103
|
+
"scheme": {
|
|
104
|
+
"type": "keyword"
|
|
105
|
+
},
|
|
106
|
+
"identifiers": {
|
|
107
|
+
"properties": {
|
|
108
|
+
"identifier": {
|
|
109
|
+
"type": "keyword"
|
|
110
|
+
},
|
|
111
|
+
"scheme": {
|
|
112
|
+
"type": "keyword"
|
|
113
|
+
}
|
|
114
|
+
}
|
|
115
|
+
}
|
|
116
|
+
}
|
|
117
|
+
},
|
|
118
|
+
"organizations": {
|
|
119
|
+
"properties": {
|
|
120
|
+
"scheme": {
|
|
121
|
+
"type": "keyword"
|
|
122
|
+
},
|
|
123
|
+
"id": {
|
|
124
|
+
"type": "keyword"
|
|
125
|
+
},
|
|
126
|
+
"organization": {
|
|
127
|
+
"type": "keyword"
|
|
128
|
+
}
|
|
129
|
+
}
|
|
130
|
+
},
|
|
131
|
+
"funder": {
|
|
132
|
+
"type": "object",
|
|
133
|
+
"properties": {
|
|
134
|
+
"@v": {
|
|
135
|
+
"type": "keyword"
|
|
136
|
+
},
|
|
137
|
+
"id": {
|
|
138
|
+
"type": "keyword"
|
|
139
|
+
},
|
|
140
|
+
"name": {
|
|
141
|
+
"type": "text"
|
|
142
|
+
}
|
|
143
|
+
}
|
|
144
|
+
}
|
|
145
|
+
}
|
|
146
|
+
}
|
|
147
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
#
|
|
3
|
+
# Copyright (C) 2022 CERN.
|
|
4
|
+
#
|
|
5
|
+
# Invenio-Vocabularies is free software; you can redistribute it and/or
|
|
6
|
+
# modify it under the terms of the MIT License; see LICENSE file for more
|
|
7
|
+
# details.
|
|
8
|
+
|
|
9
|
+
"""Awards Elasticsearch v7 mappings."""
|
|
@@ -0,0 +1,147 @@
|
|
|
1
|
+
{
|
|
2
|
+
"mappings": {
|
|
3
|
+
"dynamic_templates": [
|
|
4
|
+
{
|
|
5
|
+
"i18n_title": {
|
|
6
|
+
"path_match": "title.*",
|
|
7
|
+
"match_mapping_type": "string",
|
|
8
|
+
"mapping": {
|
|
9
|
+
"type": "search_as_you_type"
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
},
|
|
13
|
+
{
|
|
14
|
+
"i18n_description": {
|
|
15
|
+
"path_match": "description.*",
|
|
16
|
+
"match_mapping_type": "string",
|
|
17
|
+
"mapping": {
|
|
18
|
+
"type": "text"
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
],
|
|
23
|
+
"dynamic": "strict",
|
|
24
|
+
"properties": {
|
|
25
|
+
"$schema": {
|
|
26
|
+
"type": "keyword",
|
|
27
|
+
"index": "false"
|
|
28
|
+
},
|
|
29
|
+
"created": {
|
|
30
|
+
"type": "date"
|
|
31
|
+
},
|
|
32
|
+
"updated": {
|
|
33
|
+
"type": "date"
|
|
34
|
+
},
|
|
35
|
+
"indexed_at": {
|
|
36
|
+
"type": "date"
|
|
37
|
+
},
|
|
38
|
+
"uuid": {
|
|
39
|
+
"type": "keyword"
|
|
40
|
+
},
|
|
41
|
+
"version_id": {
|
|
42
|
+
"type": "integer"
|
|
43
|
+
},
|
|
44
|
+
"identifiers": {
|
|
45
|
+
"properties": {
|
|
46
|
+
"identifier": {
|
|
47
|
+
"type": "keyword"
|
|
48
|
+
},
|
|
49
|
+
"scheme": {
|
|
50
|
+
"type": "keyword"
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
},
|
|
54
|
+
"id": {
|
|
55
|
+
"type": "keyword"
|
|
56
|
+
},
|
|
57
|
+
"title": {
|
|
58
|
+
"type": "object",
|
|
59
|
+
"dynamic": "true"
|
|
60
|
+
},
|
|
61
|
+
"tags": {
|
|
62
|
+
"type": "keyword"
|
|
63
|
+
},
|
|
64
|
+
"number": {
|
|
65
|
+
"type": "keyword"
|
|
66
|
+
},
|
|
67
|
+
"acronym": {
|
|
68
|
+
"type": "keyword",
|
|
69
|
+
"fields": {
|
|
70
|
+
"text": {
|
|
71
|
+
"type": "text"
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
},
|
|
75
|
+
"start_date": {
|
|
76
|
+
"type": "date"
|
|
77
|
+
},
|
|
78
|
+
"end_date": {
|
|
79
|
+
"type": "date"
|
|
80
|
+
},
|
|
81
|
+
"description": {
|
|
82
|
+
"type": "object",
|
|
83
|
+
"dynamic": "true"
|
|
84
|
+
},
|
|
85
|
+
"program": {
|
|
86
|
+
"type": "keyword"
|
|
87
|
+
},
|
|
88
|
+
"subjects": {
|
|
89
|
+
"properties": {
|
|
90
|
+
"@v": {
|
|
91
|
+
"type": "keyword"
|
|
92
|
+
},
|
|
93
|
+
"id": {
|
|
94
|
+
"type": "keyword"
|
|
95
|
+
},
|
|
96
|
+
"props": {
|
|
97
|
+
"type": "object",
|
|
98
|
+
"dynamic": "true"
|
|
99
|
+
},
|
|
100
|
+
"subject": {
|
|
101
|
+
"type": "keyword"
|
|
102
|
+
},
|
|
103
|
+
"scheme": {
|
|
104
|
+
"type": "keyword"
|
|
105
|
+
},
|
|
106
|
+
"identifiers": {
|
|
107
|
+
"properties": {
|
|
108
|
+
"identifier": {
|
|
109
|
+
"type": "keyword"
|
|
110
|
+
},
|
|
111
|
+
"scheme": {
|
|
112
|
+
"type": "keyword"
|
|
113
|
+
}
|
|
114
|
+
}
|
|
115
|
+
}
|
|
116
|
+
}
|
|
117
|
+
},
|
|
118
|
+
"organizations": {
|
|
119
|
+
"properties": {
|
|
120
|
+
"scheme": {
|
|
121
|
+
"type": "keyword"
|
|
122
|
+
},
|
|
123
|
+
"id": {
|
|
124
|
+
"type": "keyword"
|
|
125
|
+
},
|
|
126
|
+
"organization": {
|
|
127
|
+
"type": "keyword"
|
|
128
|
+
}
|
|
129
|
+
}
|
|
130
|
+
},
|
|
131
|
+
"funder": {
|
|
132
|
+
"type": "object",
|
|
133
|
+
"properties": {
|
|
134
|
+
"@v": {
|
|
135
|
+
"type": "keyword"
|
|
136
|
+
},
|
|
137
|
+
"id": {
|
|
138
|
+
"type": "keyword"
|
|
139
|
+
},
|
|
140
|
+
"name": {
|
|
141
|
+
"type": "text"
|
|
142
|
+
}
|
|
143
|
+
}
|
|
144
|
+
}
|
|
145
|
+
}
|
|
146
|
+
}
|
|
147
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
#
|
|
3
|
+
# Copyright (C) 2022 CERN.
|
|
4
|
+
#
|
|
5
|
+
# Invenio-Vocabularies is free software; you can redistribute it and/or
|
|
6
|
+
# modify it under the terms of the MIT License; see LICENSE file for more
|
|
7
|
+
# details.
|
|
8
|
+
|
|
9
|
+
"""Awards vocabulary models."""
|
|
10
|
+
|
|
11
|
+
from .awards import record_type
|
|
12
|
+
|
|
13
|
+
AwardsMetadata = record_type.model_cls
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
#
|
|
3
|
+
# This file is part of Invenio.
|
|
4
|
+
# Copyright (C) 2022 CERN.
|
|
5
|
+
#
|
|
6
|
+
# Invenio-Vocabularies is free software; you can redistribute it and/or
|
|
7
|
+
# modify it under the terms of the MIT License; see LICENSE file for more
|
|
8
|
+
# details.
|
|
9
|
+
|
|
10
|
+
"""Award vocabulary resources."""
|
|
11
|
+
|
|
12
|
+
from .awards import record_type
|
|
13
|
+
|
|
14
|
+
AwardsResourceConfig = record_type.resource_config_cls
|
|
15
|
+
|
|
16
|
+
AwardsResource = record_type.resource_cls
|
|
@@ -0,0 +1,119 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
#
|
|
3
|
+
# Copyright (C) 2021-2024 CERN.
|
|
4
|
+
#
|
|
5
|
+
# Invenio-Vocabularies is free software; you can redistribute it and/or
|
|
6
|
+
# modify it under the terms of the MIT License; see LICENSE file for more
|
|
7
|
+
# details.
|
|
8
|
+
|
|
9
|
+
"""Awards schema."""
|
|
10
|
+
|
|
11
|
+
from functools import partial
|
|
12
|
+
|
|
13
|
+
from invenio_i18n import lazy_gettext as _
|
|
14
|
+
from marshmallow import Schema, ValidationError, fields, validate, validates_schema
|
|
15
|
+
from marshmallow_utils.fields import IdentifierSet, ISODateString, SanitizedUnicode
|
|
16
|
+
from marshmallow_utils.schemas import IdentifierSchema
|
|
17
|
+
|
|
18
|
+
from ...services.schema import (
|
|
19
|
+
BaseVocabularySchema,
|
|
20
|
+
ContribVocabularyRelationSchema,
|
|
21
|
+
ModePIDFieldVocabularyMixin,
|
|
22
|
+
i18n_strings,
|
|
23
|
+
)
|
|
24
|
+
from ..funders.schema import FunderRelationSchema
|
|
25
|
+
from ..subjects.schema import SubjectRelationSchema
|
|
26
|
+
from .config import award_schemes
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
class AwardOrganizationRelationSchema(ContribVocabularyRelationSchema):
|
|
30
|
+
"""Schema to define an organization relation in an award."""
|
|
31
|
+
|
|
32
|
+
ftf_name = "organization"
|
|
33
|
+
parent_field_name = "organizations"
|
|
34
|
+
organization = SanitizedUnicode()
|
|
35
|
+
scheme = SanitizedUnicode()
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
class AwardSchema(BaseVocabularySchema, ModePIDFieldVocabularyMixin):
|
|
39
|
+
"""Award schema."""
|
|
40
|
+
|
|
41
|
+
identifiers = IdentifierSet(
|
|
42
|
+
fields.Nested(
|
|
43
|
+
partial(
|
|
44
|
+
IdentifierSchema,
|
|
45
|
+
allowed_schemes=award_schemes,
|
|
46
|
+
identifier_required=False,
|
|
47
|
+
)
|
|
48
|
+
)
|
|
49
|
+
)
|
|
50
|
+
number = SanitizedUnicode(
|
|
51
|
+
required=True,
|
|
52
|
+
validate=validate.Length(min=1, error=_("Number cannot be blank.")),
|
|
53
|
+
)
|
|
54
|
+
funder = fields.Nested(FunderRelationSchema)
|
|
55
|
+
|
|
56
|
+
acronym = SanitizedUnicode()
|
|
57
|
+
|
|
58
|
+
program = SanitizedUnicode()
|
|
59
|
+
|
|
60
|
+
subjects = fields.List(fields.Nested(SubjectRelationSchema))
|
|
61
|
+
|
|
62
|
+
organizations = fields.List(fields.Nested(AwardOrganizationRelationSchema))
|
|
63
|
+
|
|
64
|
+
start_date = ISODateString()
|
|
65
|
+
|
|
66
|
+
end_date = ISODateString()
|
|
67
|
+
|
|
68
|
+
id = SanitizedUnicode(
|
|
69
|
+
validate=validate.Length(min=1, error=_("PID cannot be blank."))
|
|
70
|
+
)
|
|
71
|
+
|
|
72
|
+
|
|
73
|
+
class AwardRelationSchema(Schema):
|
|
74
|
+
"""Award relation schema."""
|
|
75
|
+
|
|
76
|
+
id = SanitizedUnicode()
|
|
77
|
+
number = SanitizedUnicode()
|
|
78
|
+
title = i18n_strings
|
|
79
|
+
identifiers = IdentifierSet(
|
|
80
|
+
fields.Nested(
|
|
81
|
+
partial(
|
|
82
|
+
IdentifierSchema,
|
|
83
|
+
allowed_schemes=award_schemes,
|
|
84
|
+
identifier_required=False,
|
|
85
|
+
)
|
|
86
|
+
)
|
|
87
|
+
)
|
|
88
|
+
acronym = SanitizedUnicode()
|
|
89
|
+
program = SanitizedUnicode()
|
|
90
|
+
|
|
91
|
+
@validates_schema
|
|
92
|
+
def validate_data(self, data, **kwargs):
|
|
93
|
+
"""Validate either id or number/title are present."""
|
|
94
|
+
id_ = data.get("id")
|
|
95
|
+
number = data.get("number")
|
|
96
|
+
title = data.get("title")
|
|
97
|
+
|
|
98
|
+
if not id_ and not (number or title):
|
|
99
|
+
raise ValidationError(
|
|
100
|
+
_("An existing id or either number or title must be present."),
|
|
101
|
+
"award",
|
|
102
|
+
)
|
|
103
|
+
|
|
104
|
+
|
|
105
|
+
class FundingRelationSchema(Schema):
|
|
106
|
+
"""Funding schema."""
|
|
107
|
+
|
|
108
|
+
funder = fields.Nested(FunderRelationSchema)
|
|
109
|
+
award = fields.Nested(AwardRelationSchema)
|
|
110
|
+
|
|
111
|
+
@validates_schema
|
|
112
|
+
def validate_data(self, data, **kwargs):
|
|
113
|
+
"""Validate either funder or award is present."""
|
|
114
|
+
funder = data.get("funder")
|
|
115
|
+
award = data.get("award")
|
|
116
|
+
if not funder and not award:
|
|
117
|
+
raise ValidationError(
|
|
118
|
+
{"funding": _("At least award or funder should be present.")}
|
|
119
|
+
)
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
#
|
|
3
|
+
# Copyright (C) 2022-2024 CERN.
|
|
4
|
+
#
|
|
5
|
+
# Invenio-Vocabularies is free software; you can redistribute it and/or
|
|
6
|
+
# modify it under the terms of the MIT License; see LICENSE file for more
|
|
7
|
+
# details.
|
|
8
|
+
|
|
9
|
+
"""Localization serializer for Awards."""
|
|
10
|
+
|
|
11
|
+
from marshmallow import Schema, fields
|
|
12
|
+
|
|
13
|
+
from invenio_vocabularies.resources import L10NString
|
|
14
|
+
|
|
15
|
+
from ..subjects.schema import SubjectRelationSchema
|
|
16
|
+
from .schema import AwardOrganizationRelationSchema
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
class IdentifierSchema(Schema):
|
|
20
|
+
"""Identifier scheme."""
|
|
21
|
+
|
|
22
|
+
identifier = fields.String(dump_only=True)
|
|
23
|
+
scheme = fields.String(dump_only=True)
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
class FunderRelationSchema(Schema):
|
|
27
|
+
"""Funder schema."""
|
|
28
|
+
|
|
29
|
+
name = fields.String(dump_only=True)
|
|
30
|
+
id = fields.String(dump_only=True)
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
class AwardL10NItemSchema(Schema):
|
|
34
|
+
"""Award serializer schema."""
|
|
35
|
+
|
|
36
|
+
id = fields.String(dump_only=True)
|
|
37
|
+
title = L10NString(data_key="title_l10n")
|
|
38
|
+
description = L10NString(data_key="description_l10n")
|
|
39
|
+
number = fields.String(dump_only=True)
|
|
40
|
+
acronym = fields.String(dump_only=True)
|
|
41
|
+
program = fields.String(dump_only=True)
|
|
42
|
+
funder = fields.Nested(FunderRelationSchema, dump_only=True)
|
|
43
|
+
subjects = fields.List(fields.Nested(SubjectRelationSchema), dump_only=True)
|
|
44
|
+
identifiers = fields.List(fields.Nested(IdentifierSchema), dump_only=True)
|
|
45
|
+
organizations = fields.List(
|
|
46
|
+
fields.Nested(AwardOrganizationRelationSchema), dump_only=True
|
|
47
|
+
)
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
#
|
|
3
|
+
# Copyright (C) 2022-2024 CERN.
|
|
4
|
+
#
|
|
5
|
+
# Invenio-Vocabularies is free software; you can redistribute it and/or
|
|
6
|
+
# modify it under the terms of the MIT License; see LICENSE file for more
|
|
7
|
+
# details.
|
|
8
|
+
|
|
9
|
+
"""Vocabulary awards."""
|
|
10
|
+
|
|
11
|
+
from .awards import record_type
|
|
12
|
+
|
|
13
|
+
AwardsServiceConfig = record_type.service_config_cls
|
|
14
|
+
|
|
15
|
+
AwardsService = record_type.service_cls
|