The OpenHIM core component is responsible for providing a single entry-point into an HIE as well as providing the following key features:
- Point of service client authentication and authorization
- Persistence and audit logging of all messages that flow through the OpenHIM
- Routing of messages to the correct service provider (be it an HIM orchestrator for further orchestration or the actual intended service provider)
To get started and to learn more about using the OpenHIM see the full documentation.
Some of the important information is repeated here, however, the above documentation is much more comprehensive.
See the development road-map for more details on what is to come!
Last 2 versions of NodeJS LTS are supported
NodeJS (LTS) | MongoDB |
---|---|
10.x | >= 3.6 || <= 4.2 |
12.x | >= 3.6 || <= 4.2 |
- Ensure that you have Docker and Docker Compose installed.
- Navigate to the docker-compose.yml file found in the
/infrastructure
directory. - Execute the Docker Compose file to pull the docker images and start the services in a detached mode:
docker-compose up -d
- Once the services have all started, you will be able to view the OpenHIM Console in your browser.
Clone the https://github.com/jembi/openhim-core-js.git
repository.
Ensure you have the following installed:
- Node.js v10(LTS) && != 10.15.1 || v12(LTS)
- NPM
- MongoDB (in Ubuntu run
sudo apt install mongodb
, in OSX using Homebrew, runbrew update
followed bybrew install mongodb
)
Navigate to the directory where the openhim-core-js source is located and run the following:
npm install
This will install all the required modules and then build the project files.
In order to run the OpenHIM core server, MongoDB must be installed and running. Please refer to the requirements table for accurate versions to use.
To run the server, execute:
npm start
(this runs node lib/server.js
behind the scenes)
The server will by default start in development mode using the mongodb database 'openhim-development'. To start the server in production mode use the following:
NODE_ENV=production npm start
This starts the server with production defaults, including the use of the production mongodb database called 'openhim'.
This project uses mocha as a unit testing framework with should.js for assertions and sinon.js for spies and mocks. The tests can be run using npm test
.
Pro tips:
npm run lint
- ensure the code is lint free, this is also run before annpm test
npm link
- will symlink you local working directory to the globally installed openhim-core module. Use this so you can use the global openhim-core binary to run your current work in progress. Also, if you build any local changes the server will automatically restart.npm test -- --grep <regex>
- will only run tests with names matching the regex.npm test -- --inspect
- enabled the node debugger while running unit tests. Adddebugger
statements and usenode debug localhost:5858
to connect to the debugger instance.npm test -- --bail
- exit on first test failure.
The build process for the RPM package is based off this blog. The reason for using vagrant instead of docker is so that we can test the RPM package by running it as a service using SystemCtl - similar to how it will likely be used in a production environment. SystemCtl is not available out the box in docker containers.
Refer to this blog for a more detailed description of a possible work-around. This is not recommended since it is a hack. This is where vagrant comes in since it sets up an isolated VM.
-
Setup environment
Navigate to the infrastructure folder:
infrastructure/centos
Provision VM and automatically build RPM package:
vagrant up
or without automatic provisioning (useful if you prefer manual control of the process):
vagrant up --no-provision
-
[Optional] The Vagrant file provisions the VM with the latest source code from master and attempts to compile the RPM package for you. However in the event an error occurs, or if you prefer to have manual control over the process, then you'll need to do the following:
- Remote into the VM:
vagrant ssh
- Download or sync all source code into VM.
- Ensure all dependencies are installed.
npm i && npm i speculate
- Run speculate to generate the SPEC files needed to build the RPM package.
npm run spec
- Ensure the directory with the source code is linked to the rpmbuild directory - the folder RPMBUILD will use.
ln -s ~/openhim-core ~/rpmbuild
- Build RPM package.
rpmbuild -bb ~/rpmbuild/SPECS/openhim-core.spec
- Remote into the VM:
-
Install & Test package
sudo yum install -y ~/rpmbuild/RPMS/x86_64/openhim-core-{current_version}.x86_64.rpm sudo systemctl start openhim-core curl https://localhost:8080/heartbeat -k
Note: In order for openhim-core to run successfully, you'll need to point it to a valid instance of Mongo or install it locally:
sudo yum install mongodb-org sudo service mongod start
-
How to check the logs?
sudo systemctl status openhim-core sudo tail -f -n 100 /var/log/messages
-
If everything checks out then extract the RPM package by leaving the VM.
Install Vagrant scp plugin:
vagrant plugin install vagrant-scp
Then copy the file from the VM:
vagrant scp default:/home/vagrant/rpmbuild/RPMS/x86_64/{filename}.rpm .
You may view/add issues here: https://github.com/jembi/openhim-core-js/issues
To contribute code, please fork the repository and submit a pull request. The maintainers will review the code and merge it in if all is well.