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.
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.
- ruby >= 3.1
- bundled dependencies: json_api_client (~> 1.20), keycloak (~> 3.2.1),
$ gem install dina
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 handshakeendpoint_url
: the single DINA gateway to JSON:API modelstoken_store_file
: your local file that caches authentication token responses, which are thereafter automatically reused and updated as needed
require 'dina'
settings = {
authorization_url: "http://localhost/auth",
endpoint_url: "http://localhost/api",
realm: "dina",
client_id: "dina",
user: "username",
password: "password",
token_store_file: "config/token.json"
}
Dina.config = settings
person = Dina::Person.new
person.givenNames = "Peter"
person.familyNames = "Pipetter"
person.email = "[email protected]"
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 protected]"
}
person = Dina::Person.create(data)
A new instance like person
above sets and uses a default UUIDv4, which can be accessed as person.id
.
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 = Dina::Person.find_by_email("[email protected]").first
person.attributes
=>
{"type"=>"person",
"id"=>"bf42616e-846c-4dbd-8372-bef44cdfa3e8",
"displayName"=>"Pipetter, Peter",
"email"=>"[email protected]",
"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 = Dina::Person.find("bf42616e-846c-4dbd-8372-bef44cdfa3e8").first
person.destroy
=> true
# 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 = Dina::File.new
file.group = "DAOM"
file.file_path = "/my-directory/my-file.jpg"
file.filename = "what-i-want-it-called.jpg" # the Original Filename in the DINA UI
file.save # also injects attributes from the server response like dateTimeDigitized below
=> true
metadata = Dina::ObjectStore.new
metadata.group = "DAOM"
metadata.dcType = "IMAGE"
metadata.dcFormat = "image/jpeg"
metadata.fileExtension = ".jpg"
metadata.fileIdentifier = file.id
date_time = Time.find_zone("America/New_York")
.parse(file.dateTimeDigitized)
.rfc3339.to_s
metadata.acDigitizationDate = date_time
metadata.save
=> true
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
In the event there are SSL certificate verification issues, you can skip verification:
Dina::BaseModel.connection_options[:ssl] = { verify: false }
Flush the token from memory and save an empty token file
Dina.flush
Bug reports can be filed at https://github.com/dshorthouse/dina/issues.
Copyright © 2023 Government of Canada
Authors: David P. Shorthouse, Julia Douglas Freitas
dina
is released under the MIT license.