DINA Ruby Gem
The DINA Consortium develops an open-source web-based information management system for natural history data that consists of several connected software components. At the core of the system is support for assembling, managing and sharing data associated with natural history collections and their curation ("collection management"). Target collections include zoological, botanical, geological and paleontological collections, living collections, biodiversity inventories, observation records, and molecular data.
This Ruby 3.1 gem abstracts the Keycloak configuration and JSON:API models for the DINA collection management system. It depends on the json_api_client where more documentation is available on how to create, update, query, and delete objects.
Disclaimer
The DINA APIs for each of its components are under rapid development and so too is this gem. The intent of the latter is to be as closely aligned with the most recent versions of the former. As such, this gem makes use of the DINA APIs via their single, frontend gateway.
Requirements & Dependencies
- ruby >= 3.1
- bundled dependencies: json_api_client (~> 1.20), keycloak (~> 3.2.1),
Install
$ gem install dina
Configuration
All variables are required and most can be obtained from a DINA system administrator.
-
authorization_url
,realm
,client_id
,user
, andpassword
: used in the Keycloak authentication handshake -
endpoint_url
: the single DINA gateway to JSON:API models -
server_name
: a key used to reference authentication token responses (in the event you connect to multiple DINA servers or have multiple credentials) -
token_store_file
: your local file that caches authentication token responses, prefixed by the server_name key.
require 'dina'
settings = {
authorization_url: "http://localhost/auth",
endpoint_url: "http://localhost/api",
realm: "dina",
client_id: "dina",
user: "username",
password: "password",
server_name: "server",
token_store_file: "config/token.json"
}
Dina.config = settings
Person
Instantiate and Save a person = Dina::Person.new
person.givenNames = "Peter"
person.familyNames = "Pipetter"
person.email = "email@email.com"
person.save
=> true
Alternatively, use the create
method to save a Person
without having to instantiate it first:
data = {
givenNames: "Peter",
familyNames: "pipetter",
email: "email@email.com"
}
person = Dina::Person.create(data)
A new instance like person
above sets and uses a default UUIDv4, which can be accessed as person.id
.
person
Instance
Add an Identifier to a identifier = Dina::Identifier.new
identifier.namespace = "WIKIDATA"
identifier.value = "http://www.wikidata.org/entity/Q163373"
identifier.save
=> true
person.identifiers = [ identifier ]
person.save
=> true
Instance objects (like identifier
above) must be saved before they can be attached to related objects (like person
above).
Person
by Email Address
Query for a person = Dina::Person.find_by_email("email@email.com").first
person.attributes
=>
{"type"=>"person",
"id"=>"bf42616e-846c-4dbd-8372-bef44cdfa3e8",
"displayName"=>"Pipetter, Peter",
"email"=>"email@email.com",
"createdBy"=>"username",
"createdOn"=>2022-11-25 17:23:09.262958 UTC,
"givenNames"=>"Peter",
"familyNames"=>"Pipetter",
"aliases"=>nil,
"webpage"=>nil,
"remarks"=>nil,
"identifiers"=>[]}
Unlike typical ActiveRecord methods, find or find_by_* methods return an array and so you must additionally use .first
or [0]
.
Person
Delete a person = Dina::Person.find("bf42616e-846c-4dbd-8372-bef44cdfa3e8").first
person.destroy
=> true
collection method
to that of a collecting event
Add an instance of a # Find a collection method or create one as you would a person or identifier above
collection_method = Dina::CollectionMethod.find("bf42616e-846c-4dbd-8372-bef44cdfa3e9").first
collecting_event = Dina::CollectingEvent.new
collecting_event.group = "CNC"
collecting_event.collection_method = collection_method
collecting_event.save
=> true
File
and its ObjectStore
Metadata
Upload an Image file = Dina::File.new
file.group = "DAOM"
file.file_path = "/my-directory/my-file.jpg"
file.save
=> true
metadata = Dina::ObjectStore.new
metadata.group = "DAOM"
metadata.dcType = "IMAGE"
metadata.dcFormat = "image/jpeg"
metadata.fileExtension = ".jpg"
metadata.fileIdentifier = file.id
metadata.save
=> true
Schema
To list available JSON:API Classes:
Dina.classes
To list available properties for a Class:
Dina::MaterialSample.properties
To list relationships and their cardinality for a Class:
Dina::MaterialSample.associations
Connection Errors
In the event there are SSL certificate verification issues:
Dina::BaseModel.connection_options[:ssl] = { verify: false }
Advanced
Flush the token from memory and save an empty token file
Dina.flush
Support
Bug reports can be filed at https://github.com/dshorthouse/dina/issues.
Copyright
Copyright © 2023 Government of Canada
Authors: David P. Shorthouse
License
dina
is released under the MIT license.