Documentation
Common Data Model (CDM)
Convert Database to CDM (ETL)
Tool Specific Documentation
Common Data Model (CDM)
Convert Database to CDM (ETL)
Tool Specific Documentation
This is an old revision of the document!
This tutorial will demonstrate how to configure the OHDSI WebAPI and ATLAS using the OHDSI WebAPI's built in SHIRO security configuration. This configuration is intended for use in demonstration environments and is explicitly NOT for use in production.
The settings.xml file is used to configure your build of the OHDSI WebAPI in your development environment by allowing you to override the settings to the values in the settings.xml file. You will need to make the following changes / additions to your settings.xml file in the profile you wish to use in this demonstration environment.
<security.enabled>true</security.enabled> <security.origin>*</security.origin> <security.db.datasource.url>jdbc:postgresql://localhost:5432/ohdsi</security.db.datasource.url> <security.db.datasource.driverClassName>org.postgresql.Driver</security.db.datasource.driverClassName> <security.db.datasource.schema>ohdsi</security.db.datasource.schema> <security.db.datasource.username>ohdsi</security.db.datasource.username> <security.db.datasource.password>ohdsi</security.db.datasource.password> <security.db.datasource.authenticationQuery>select password from ${security.db.datasource.schema}.demo_security where email = ?</security.db.datasource.authenticationQuery>
Once you have completed the configuration of the profile for your OHDSI WebAPI you will need to create the table that will contain our sample login information. The script to create a minimal sample table in a postgresql environment is as follows:
-- Table: ohdsi.demo_security -- DROP TABLE ohdsi.demo_security; CREATE TABLE ohdsi.demo_security ( email character varying(255) COLLATE pg_catalog."default", password character varying(255) COLLATE pg_catalog."default" ) WITH ( OIDS = FALSE ) TABLESPACE pg_default; ALTER TABLE ohdsi.demo_security OWNER to ohdsi;