Metadata-Version: 2.4
Name: invenio-records-marc21
Version: 0.29.0
Summary: "Invenio Marc21 datamodel."
Home-page: https://github.com/tu-graz-library/invenio-records-marc21
Author: "Graz University of Technology"
Author-email: info@tugraz.at
License: MIT
Keywords: invenio Marc21 record
Platform: any
Classifier: Programming Language :: Python :: 3.14
Classifier: Development Status :: 5 - Production/Stable
Requires-Python: >=3.14
License-File: LICENSE
License-File: AUTHORS.rst
Requires-Dist: arrow>=1.0.0
Requires-Dist: invenio-rdm-records>=24.0.0
Requires-Dist: invenio-stats>=6.0.0
Requires-Dist: fastjsonschema>=2.16.0
Requires-Dist: lxml>=4.6.2
Provides-Extra: tests
Requires-Dist: invenio-app<4.0.0,>=3.0.0; extra == "tests"
Requires-Dist: invenio-cache>=v3.0.0; extra == "tests"
Requires-Dist: invenio-db<3.0.0,>=2.2.0; extra == "tests"
Requires-Dist: invenio-i18n<4.0.0,>=3.0.0; extra == "tests"
Requires-Dist: invenio-previewer<5.0.0,>=4.0.0; extra == "tests"
Requires-Dist: invenio-search[opensearch2]<4.0.0,>=3.0.0; extra == "tests"
Requires-Dist: pytest-black>=0.6.0; extra == "tests"
Requires-Dist: pytest-invenio<5.0.0,>=4.0.0; extra == "tests"
Requires-Dist: pytest-mock>=1.6.0; extra == "tests"
Requires-Dist: Sphinx>=4; extra == "tests"
Requires-Dist: sphinx-autodoc-typehints>=1.10.3; extra == "tests"
Dynamic: license-file

..
    Copyright (C) 2021-2025 Graz University of Technology.

    Invenio-Records-Marc21 is free software; you can redistribute it and/or modify it
    under the terms of the MIT License; see LICENSE file for more details.

========================
 Invenio-Records-Marc21
========================

.. image:: https://img.shields.io/github/license/tu-graz-library/invenio-records-marc21.svg
        :target: https://github.com/tu-graz-library/invenio-records-marc21/blob/master/LICENSE

.. image:: https://github.com/tu-graz-library/invenio-records-marc21/workflows/CI/badge.svg
        :target: https://github.com/tu-graz-library/invenio-records-marc21/actions

.. image:: https://img.shields.io/coveralls/tu-graz-library/invenio-records-marc21.svg
        :target: https://coveralls.io/r/tu-graz-library/invenio-records-marc21

.. image:: https://img.shields.io/pypi/v/invenio-records-marc21.svg
        :target: https://pypi.org/pypi/invenio-records-marc21

Marc21 datamodel

Further documentation is available on
https://invenio-records-marc21.readthedocs.io/


Development
===========

Install
-------

Choose a version of elasticsearch and a DB, then run:

.. code-block:: console

    pipenv run pip install -e .[all]
    pipenv run pip install invenio-search[elasticsearch7]
    pipenv run pip install invenio-db[postgresql,versioning]


Setting Up Statistics
=====================

To enable and configure the statistics feature using MARC21 records in Invenio, you need to update your `invenio.cfg` file with specific configurations that integrate MARC21 statistics with Invenio's standard statistics modules.

### Configuration Steps

1. **Import Required Configurations:**

   Before updating the configuration values, ensure that you import the necessary settings from both the `invenio_records_marc21` module and the `invenio_app_rdm` module. Add the following lines to your `invenio.cfg`:

.. code-block:: console

    from invenio_records_marc21.config import MARC21_STATS_CELERY_TASKS, MARC21_STATS_EVENTS, MARC21_STATS_AGGREGATIONS, MARC21_STATS_QUERIES
    from invenio_app_rdm.config import CELERY_BEAT_SCHEDULE, STATS_EVENTS, STATS_AGGREGATIONS, STATS_QUERIES

Update Celery Beat Schedule:

Integrate MARC21-specific scheduled tasks with Invenio's scheduler:

.. code-block:: console

    CELERY_BEAT_SCHEDULE.update(MARC21_STATS_CELERY_TASKS)


Update Events, Aggregations, and Queries:

Merge MARC21 statistics configurations with the global statistics settings:

.. code-block:: console

    STATS_EVENTS.update(MARC21_STATS_EVENTS)
    STATS_AGGREGATIONS.update(MARC21_STATS_AGGREGATIONS)
    STATS_QUERIES.update(MARC21_STATS_QUERIES)

Features
========

### custom doi over 024 field in metadata

add the field 024 like `024.7.. $$2 doi $$a 10.0356/894-849-056 $$q tugraz-publisher`. the important part is the `$$q tugraz-publisher` which indicates that there is a special doi which overrides the normal DOI.

the doi will be created on the publish, so the 856 field will show up after publishing the record.


Tests
=========

.. code-block:: console

    pipenv run ./run-tests.sh

..
    Copyright (C) 2021-2026 Graz University of Technology.

    Invenio-Records-Marc21 is free software; you can redistribute it and/or
    modify it under the terms of the MIT License; see LICENSE file for more
    details.

Changes
=======

Version v0.29.0 (released 2026-05-11)

- alembic: prevent dropping of already dropped index
- feat(oai-pmh): enable oai-pmh for publications
- feat(identifier): add publ(isher) custom doi
- chore(type): add ignores to simplify typing
- chore(compat): add quota, see rdm-records
- fix(tests): app context needed
- fix(docs): add to nitpick_ignore

Version v0.28.0 (released 2026-02-08)

- chore(black): update formatting to >= 26.0
- fix: links deprecation warning
- chore(setup): bump dependencies
- chore(setup): add ruff ignore rules
- fix(versioning): missing records metadata version
- chore: add alembic script to change column type
- fix(ui): changed api
- fix(tests): mock datetime.now
- fix(tests): schema changes not applied
- chore: remove unused linter
- fix(tests): pid creation changed, tests removed
- fix(tests): add parent.pids
- chore: add nitpick_ignore
- setup: move to python3.14
- fix(alembic): add missing version table for files
- chore(typing): add type hints
- chore: replace deprecated RecordLink
- refactor(template): improve template system
- chore(typing): add type hints
- feat: custom doi in 024
- chore(typing): add type hints
- feat(serializer): add isbn
- fix(chore): indentation
- fix: utcnow + refactor
- feat(ui): use generated link not hardcoded

Version v0.27.1 (release 2025-07-25)

- fix(ui): display license with link


Version v0.27.0 (release 2025-07-21)

- ui: make edit link configurable
- wip: iiif


Version v0.26.1 (release 2025-06-17)

- fix: record vs record_ui


Version v0.26.0 (release 2025-06-14)

- fix(tests): remove redundant files
- setup: upgrade invenio-rdm-records


Version v0.25.4 (release 2025-06-03)

- revert: some details are wrong


Version v0.25.3 (release 2025-06-02)

- feat(ui): show doi to publisher
- fix: manager should see results


Version v0.25.2 (release 2025-05-22)

- refactor(config): config variables init
- fix(deserializer): AVE is allowed


Version v0.25.1 (release 2025-05-19)

- feat: imp file access permissions for MARC21 records


Version v0.25.0 (release 2025-05-14)

- wip: move documentation to README
- ui: add new upload button
- chore: fix indentation


Version v0.24.1 (release 2025-04-30)

- fix: jsonschema user


Version v0.24.0 (release 2025-04-29)

- fix(tests): add configuration
- setup: add python3.13 support
- revert: remove of convert_marc21xml_to_json
- fix(links): for doi only doi
- rdm: compatibility
- metadata: add new method
- feat: make links configurable


Version v0.23.0 (release 2025-01-24)

- cli: password is per default hided
- setup: only for dev tags, will be removed
- refactor: cli demo,templates -> fixtures
- fix: LegacyAPIWarning
- tests: remove invenio-admin usage
- fix: datacite serialization
- refactor: change internal representation to json


Version v0.22.2 (release 2024-10-31)

- fix: fields could be missing
- ui: add elements to details
- fix(deposit): page render and save a empty record


Version v0.22.1 (release 2024-10-26)

- fix: creator only allowed to interact with owned records


Version v0.22.0 (release 2024-10-26)

- ui: add separator ti author detail
- setup: move to python 3.12
- fix: empty values shouldn't be displayed
- ui: published could be in 260 too
- permission: add role creator
- change: allow ' ' as not set indicator
- remove marcxml transport layer
- ui: add affiliation
- fix: multiple 700 not send to client
- fix: apply header change from rdm-records
- fix: the following / prevents rspack from building
- setup: migrate to finalize_app
- upgrade: add script to upgrade parent
- feat: files serializer use marc21 accept header
- style: improve codequality
- feat: resource type to search facets
- feat: index static metadata fields


Version v0.21.2 (release 2024-06-13)

- feat: active dashoard menu item
- fix: typo on attribute name


Version v0.21.1 (release 2024-05-19)

- translations: update wording
- bugfix: search records user dashboard


Version v0.21.0 (release 2024-05-06)

- modification: change permission for managing record access
- modifciation: documentation for statistic
- modification: landing page record title
- modification: init statistic for a record


Version v0.20.0 (release 2024-03-08)

- deps: remove upper limit of rdm-records
- modification: pretty export records
- fix(deposit): react remove deprecated dependency


Version v0.19.1 (release 2024-02-19)

- fix: embargo date could contain strings


Version v0.19.0 (release 2024-02-19)

- landingpage: embargo date from marc21 metadata


Version v0.18.0 (release 2024-02-14)

- fix: dashboard-visibility not working
- modification(search): : Apply Same Style to Publication Search Bar
- setup: increase upper limits
- black: fix v24.2.0
- fix: frontent serializer following whitespace


Version v0.17.3 (release 2024-01-11)

- fix: indexer needs queue name


Version v0.17.2 (release 2024-01-07)

- setup: add support for python3.10 and 3.11
- fix: controlfield not correct build for marcxml
- fix: ind1 could be undefined
- ui: move react-records-marc21 code here
- fix: rebuild-index not working
- fix: missing special for AVE
- bugfix: add schema to record


Version v0.17.1 (release 2023-12-01)

- alembic: add missing deletion_status


Version v0.17.0 (release 2023-11-09)

- ui: change dependency to invenio_rdm_records
- bugfix: files links list
- bugfix: add missing permissions
- CI: disable python 3.10
- tests: remove sqlalchemy NoResultFound
- tests: modification to testset and codestyle
- modification: permission policy records and files
- modification: create marc21 v2 schema and mappings
- global: change path to publications
- tests: add parameters to run-tests
- ui: redesign edit button
- records: add deletion_status
- services: make components customizable
- cli: change parameters
- resources: add dublin core serializer
- build:  limit draft resource version
- testset: modification files in record
- modification: import structure
- modification: unit of work
- modification: parent schema
- tests: fix test
- modification: records service config
- modifcation: use invenio-i18n translations module
- modification: create demo records
- modification: serializer structure
- build: bump version
- modification: marc21 v1 mapping
- modification: result item on dashboard
- modification: search mapping
- modification: user dashboard translations
- modification: translations in config module
- modification: empty search result
- translations: resource type translations
- modification: resource type translate
- modification: code style
- modification: gitignore
- translations: i18next update
- modification: result item translations
- modification: dashboard layout
- modification: user dashboard search
- fix: subfield may not exist
- landing-page: add additional titles
- translations: update
- modification: user dashboard search application
- modification: search components
- modification: configuration search application
- modification: api search options
- modification: clean code


Version v0.16.1 (release 2023-09-14)

- fix: doi modal


Version v0.16.0 (release 2023-09-14)

- landing_page: conditional wrap show doi
- modification: translations
- translation: update
- refactoring: variable naming
- landing_page: increase space above title
- landing-page: change created at to published
- landing_page: use improved export
- bugfix: import landing page


Version v0.15.0 (release 2023-09-12)

- fix: create_record dangling draft
- modification: gitignore
- modification: translations update
- modification: templates structured
- modification: add comments
- modifications: marc21 service permissions


Version v0.14.2 (release 2023-06-16)

- fix: namespace handling was wrong


Version v0.14.1 (release 2023-06-07)

- fix: remove whitespace and close div tag


Version v0.14.0 (release 2023-06-07)

- modification: alembic scripts
- modification: remove prefix in configuration variables


Version v0.13.2 (release 2023-06-05)

- bugfix: draft get file content


Version v0.13.1 (release 2023-06-01)

- bugfix: load default roles needed


Version v0.13.0 (release 2023-05-25)

- setup: remove compatibility check with python3.8
- metadata: add methods to get fields and values


Version v0.12.7 (release 2023-05-12)

- metadata: subfs, character before numbers


Version v0.12.6 (release 2023-05-11)

- pids: remove 2 subfields


Version v0.12.5 (release 2023-05-11)

- fix: metadata export needs a space


Version v0.12.4 (release 2023-05-10)

- doi: apply marc21 request changes
- tests: cleaned tests, remove unused statements
- metadata: add 856 field after doi creation
- modification: templates load from roles


Version v0.12.3 (release 2023-04-28)

- fix: distinguish between str and list


Version v0.12.2 (release 2023-04-25)

- bugfix: previewer allow to access files


Version v0.12.1 (release 2023-04-20)




Version v0.11.0 (release 2023-03-06)

- permissions: re-add SystemProcess to can_manage
- fix: to keep flask-babelex
- permissions: enlarge permission system
- modification: update marc21 record permissions
- modification: remove duplicate code
- modification: add pids to new version
- bugfix: create new version
- modification: dashboard records edit


Version v0.10.0 (release 2023-02-13)

- fix: category could be AVA
- modification: add fix me in the future
- modification: create dashboard entry for marc21


Version v0.9.2 (release 2023-02-09)

- fix: sort xml subfields generation
- fix: the value in subfs is a list
- fix: unify order of et.Element attributes


Version v0.9.1 (release 2023-01-23)

- fix: wrong alias for drafts and records
- modification: record status in deposit


Version v0.9.0 (release 2023-01-11)

- metadata: use id property instead
- fixes:
- global: pass through exports
- modification: add multiple files to record
- metadata: add param do_publish
- metadata: add exists method
- ui: update react-records-marc21
- services: add exception for common search
- services: add types
- codestyle: deposit form
- modification: deposit form style
- tests: testset update
- modification: put doi into the metadata
- modification: create identifier with draft
- bugfix: files enabled
- fix: correct CHANGES.rst


Version v0.8.4 (release 2022-11-17)

- fix:
- api: add duplicate check function
- fix
- metadata: implement convert_json_to_marc21xml
- metadata: add default values to selector
- api: add two functions moved from invenio-alma
- improve: add subfs parameter to emplace_datafield
- modification: add access_status field
- modification: use jast jsonschema
- codestyle: variable on top of the function definition.
- modification: service file config
- modification: api register services
- modification: create draft with errors
- modification: deposit structure
- modification: deposit application


Version v0.8.3 (release 2022-11-02)

- fix
- metadata: implement convert_json_to_marc21xml
- metadata: add default values to selector
- api: add two functions moved from invenio-alma
- improve: add subfs parameter to emplace_datafield
- fix: remove import of semantic css


Version v0.8.2 (release 2022-10-14)

- fix: pypi-publish inherit secrets


Version v0.8.1 (release 2022-10-14)

- global: migrate publish to reusable workflows
- setup: fix classifier


Version v0.8.0 (release 2022-10-14)

- tests: move to resuable workflows
- tests: remove CACHE and MQ
- setup: sort imports, remove doublets
- global: migrate to opensearch2


Version v0.7.5 (release 2022-09-27)

- fix: javascript dependencies


Version v0.7.4 (release 2022-09-27)

- fix: ConfigurationMixin changed location
- global: increase version of invenio-search


Version v0.7.3 (release 2022-08-10)

- fix use 009[7:11] for publication year


Version v0.7.2 (release 2022-08-10)

- modification: datacite schema\n\n changing the field numbers
- tests: modification datacite testset
- bugfix: pids components from rdm records


Version v0.7.1 (release 2022-08-09)

- fix: the missing mappings causes an error with the empty search feature


Version v0.7.0 (release 2022-08-04)

- improve (WIP) landing page and search results


Version v0.6.0 (release 2022-08-01)

- make the jsonschema less restrictive


Version v0.5.2 (release 2022-07-29)

- use search react components provided by invenio-app-rdm
- update the search initial query state


Version v0.5.1 (release 2022-07-07)




Version 0.0.1 (released TBD)

- Initial public release.
