Skip to content

The OpenMRS Initializer module is an API-only module that processes the content of the configuration folder when it is found inside OpenMRS' application data directory.

License

Notifications You must be signed in to change notification settings

IPLit/openmrs-module-initializer

 
 

Repository files navigation

OpenMRS Initializer module

Introduction

The Initializer module is an API-only module that processes the content of the configuration folder when it is found inside OpenMRS' application data directory:

.
├── modules/
├── openmrs.war
├── openmrs-runtime.properties
├── ...
└── configuration/

The configuration folder is subdivided into domain subfolders:

configuration/
  ├── addresshierarchy/
  ├── appointmentsspecialities/
  ├── appointmentsservicesdefinitions/
  ├── attributetypes/
  ├── autogenerationoptions/
  ├── bahmniforms/
  ├── conceptclasses/
  ├── concepts/
  ├── datafiltermappings/
  ├── drugs/
  ├── encountertypes/
  ├── globalproperties/
  ├── htmlforms/
  ├── idgen/
  ├── jsonkeyvalues/
  ├── locations/
  ├── locationtags/
  ├── messageproperties/
  ├── metadatasetmembers/ 
  ├── metadatasets/ 
  ├── metadatasharing/ 
  ├── metadatatermmappings/ 
  ├── patientidentifiertypes/ 
  ├── personattributetypes/ 
  ├── privileges/ 
  ├── programs/ 
  ├── programworkflows/
  ├── programworkflowstates/
  └── roles/
   

Each domain-specific subfolder contains the metadata and configuration information that is relevant to the subfolder's domain. Although several file types are supported for providing metadata, CSV files are the preferred format and all domain should aim at being covered through parsing CSV files.

Objectives

  • This module loads an OpenMRS configuration consisting of OpenMRS metadata.
  • CSV files are the preferred format, however a number of metadata domains rely on other file formats. See the list below for details.
  • Initializer processes all configuration files upon starting up.
  • Initializer produces a checksum file for each processed file. A file will never be processed again until its checksum has changed.
    • See more info here about checksums.
  • Each line of those CSV files represents an OpenMRS object to be created, edited or retired.
  • Each line of those CSV files follows the WYSIWYG principle.

Supported domains and default loading order

We suggest to go through the following before looking at specific import domains:

This is the list of currently supported domains in respect to their loading order:

  1. Message properties key-values (.properties files)
  2. Generic JSON key-values (JSON files)
  3. Metadata Sharing packages (ZIP files)
  4. Visit Types (CSV files)
  5. Patient identifier types (CSV files)
  6. Privileges (CSV files)
  7. Encounter Types (CSV files)
  8. Roles (CSV files)
  9. Global Properties (XML files)
  10. Attribute Types (CSV files)
  11. Locations (CSV files)
  12. Location Tags (CSV files)
  13. Bahmni Forms (JSON Files)
  14. Concept Classes (CSV files)
  15. Concepts (CSV files)
  16. Programs (CSV files)
  17. Program Worklows (CSV files)
  18. Program Worklow States (CSV files)
  19. Person Attribute Types (CSV files)
  20. Identifier Sources (CSV files)
  21. Autogeneration Options (CSV files)
  22. Drugs (CSV files)
  23. Order Frequencies (CSV files)
  24. Order Types (CSV files)
  25. Bahmni Appointments Specialities (CSV files)
  26. Bahmni Appointments Service Definitions (CSV files)
  27. Data Filter Entity-Basis Mappings (CSV files)
  28. Metadata Sets (CSV files)
  29. Metadata Set Members (CSV files)
  30. Metadata Term Mappings (CSV files)
  31. HTML Forms (XML files)

How to try it out?

Build the master branch and install the built OMOD to your OpenMRS instance:

git clone https://github.com/mekomsolutions/openmrs-module-initializer/tree/master
cd openmrs-module-initializer
mvn clean package
Runtime requirements & compatibility
  • OpenMRS Core 2.1.1 (required)
  • HTML Form Entry (compatible)
  • ID Gen 4.3 (compatible)
  • Metadata Sharing 1.2.2 (compatible)
  • Metadata Mapping 1.3.4 (compatible)
  • Bahmni Appointments 1.2-beta (compatible)
  • Data Filter 1.0.0 (compatible)
  • Bahmni I.e Apps 1.0.0 (compatible)

How to test out your OpenMRS configs?

See the Initializer Validator README page.

Finer control of domains loading at app runtime

See the documentation on Initializer's runtime properties.

Quick facts

Initializer enables to achieve the OpenMRS backend equivalent of Bahmni Config for Bahmni Apps. It facilitates the deployment of implementation-specific configurations without writing any code, by just filling the configuration folder with the needed metadata and in accordance to Initializer's available implementations.

Get in touch

Report an issue

https://github.com/mekomsolutions/openmrs-module-initializer/issues


Releases notes

Version 2.1.0

  • Introduced safe and unsafe API modes to suit either app runtime loading or early failure loading for CI.
  • (For devs.) Introduced BaseFileLoader and BaseInputStreamLoader as part of a better streamlined loading framework.
  • Initialize Validator a standalone fatjar to make dry runs of OpenMRS configs.
  • Nested structures of configuration files are supported.
  • Added a runtime property to define an inclusion or exclusion list of domains.
  • Added a runtime property to specify wildcard patterns filters for each domain.
  • Added a runtime property to toggle off the generation of the checksums.
  • Improved logging output with ASCII Tables for Java.
  • Bulk creation and edition of ID Gen's autogeneration options provided through CSV files in configuration/autogenerationoptions.
  • Support associating location tags to locations using boolean Tag| headers.
  • Bulk creation and edition of location tags provided through CSV files in configuration/locationtags.
  • Bulk creation and edition of Bahmni forms provided as JSON schema definitions in configuration/bahmniforms.
  • Bulk creation and edition of htmlforms provided as XML schema definitions in configuration/htmlforms.

Version 2.0.0

  • (For devs.) Support for conditional loading of domains based on the runtime availability of OpenMRS modules.
  • Bulk creation and edition of programs provided through CSV files in configuration/programs.
  • Bulk creation and edition of program workflows provided through CSV files in configuration/programworkflows.
  • Bulk creation and edition of program workflow states provided through CSV files in configuration/programworkflowstates.
  • Bulk creation and edition of privileges provided through CSV files in configuration/privileges.
  • Bulk creation and edition of roles provided through CSV files in configuration/roles.
  • Bulk creation and edition of metadata terms mappings provided through CSV files in configuration/metadatatermmappings.
  • Bulk creation and edition of encounter types provided through CSV files in configuration/encountertypes.
  • Bulk creation and edition of Bahmni appointments specialities provided through CSV files in configuration/appointmentsspecialities.
  • Bulk access management of Data Filter entity to basis mappings provided through CSV files in configuration/datafiltermappings.
  • Bulk creation and edition of attribute types provided through CSV files in configuration/attributetypes.
  • Support location attributes.
  • Bulk creation and edition of patient identifier types provided through CSV files in configuration/patientidentifiertypes.
  • Bulk creation and edition of metadata terms mappings provided through CSV files in configuration/metadatasets.
  • Bulk creation and edition of metadata terms mappings provided through CSV files in configuration/metadatasetmembers.
  • Bulk creation and edition of bahmni forms provided JSON files in configuration/bahmniforms
  • Support concept attributes.

Version 1.1.0

  • Bulk creation and edition of drugs provided through CSV files in configuration/locations.

Version 1.0.1

  • Loads i18n messages files from configuration/addresshierarchy and configuration/messageproperties.
  • Bulk creation and edition of concepts provided through CSV files in configuration/concepts.
    This covers: basic concepts, concepts with nested members or answers and concepts with multiple mappings.
  • Bulk creation and edition of drugs provided through CSV files in configuration/drugs.
  • Overrides global properties provided through XML configuration files in configuration/globalproperties.
  • Modifies (retire) or create ID Gen's identifier sources through CSV files in configuration/idgen.
  • Exposes runtime key-values configuration parameters through JSON files in configuration/jsonkeyvalues.
  • Bulk creation and edition of person attribute types provided through CSV files in configuration/personattributetypes.
  • Imports MDS packages provided as .zip files in configuration/metadatasharing.
  • Bulk creation and edition of order frequencies provided through CSV files in configuration/orderfrequencies.

About

The OpenMRS Initializer module is an API-only module that processes the content of the configuration folder when it is found inside OpenMRS' application data directory.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Java 100.0%