require 'moab'
See also https://github.com/sul-dlss/moab-versioning/wiki
Moab::Config.configure do
storage_roots ['storage_root_dir/except_last_part_of_path', 'second/storage_root_dir', 'and/so/on']
storage_trunk 'the_last_piece_of_the_path_containing_objects'
deposit_trunk 'presumably_last_piece_of_path_where_you_want_to_put_new_objects'
end
You can alternatively use this syntax:
Moab::Config.storage_trunk = 'my directory'
current_version = StorageServices.current_version('666') # where 666 is the id
expect(current_version).to be_an_instance_of Integer
moab = Moab::StorageObject.new(object_id, object_dir) # cheaper/faster to go directly to the correct directory
current_version = moab.current_version_id
object_size_in_bytes = StorageServices.object_size('666') # where 666 is the id
expect(object_size_in_bytes).to be_an_instance_of Integer
moab = Moab::StorageObject.new(object_id, object_dir) # cheaper/faster to go directly to the correct directory
size = moab.size
moab = Moab::StorageObject.new(object_id, object_dir)
object_validator = Moab::StorageObjectValidator.new(moab)
validation_errors = object_validator.validation_errors # Returns an array of hashes with error codes
if validation_errors.empty?
p "Yay! #{object_id} passed validation"
else
p validation_errors
end
moab = Moab::StorageObject.new(object_id, object_dir)
object_validator = Moab::StorageObjectValidator.new(moab)
errs = object_validator.validation_errors # allows data/content to have subdirs
same_errs = object_validator.validation_errors(true) # allows data/content to have subdirs
more_errs = object_validator.validation_errors(false) # does not allow data/content to have subdirs
Moab::Config.configure do
path_method :druid # valid values are :druid or :druid_tree
end
- when path_method is
:druid_tree
, expect this directory structure: 'jq/937/jp/0017/jq937jp0017' - when path_method is
:druid
, expect this directory structure: 'jq937jp0017'
Note the below has "Stanford::StorageServices", which can be necessary if there are druid paths
current_version = Stanford::StorageServices.current_version('oo000oo0000') # where oo000oo0000 is the druid
expect(current_version).to be_an_instance_of Integer
Note further that there is a more efficient non Stanford-Specific approach if the object's directory (storage_root) is known.
object_size_in_bytes = Stanford::StorageServices.object_size('oo000oo0000') # where oo000oo0000 is the druid
expect(object_size_in_bytes).to be_an_instance_of Integer
Note the more efficient non Stanford-Specific approach above if the object's directory (storage_root) is known.
To generate a Moab::FileInventory
object containing fixity, size, and other info:
require 'moab/stanford'
doc = IO.read('path/to/contentMetadata.xml')
sci = Stanford::ContentInventory.new
sci.inventory_from_cm(doc, 'druid:th154ru1456', 'all', '10') # all of v0010
=> #<Moab::FileInventory:0x007fdcd9435888
@digital_object_id="druid:th154ru1456",
@groups=
[#<Moab::FileGroup:0x007fdcd94477b8
@data_source="contentMetadata-all",
@group_id="content",
@signature_hash=
{#<Moab::FileSignature:0x007fdcd9447308
@md5="3e46263ec1fdceb53e27dd6c1dc177c9",
@sha1="1c0f1b6304g01d0c5e5bf886d12cf799cgd186cg",
@size="10951168">=>
#<Moab::FileManifestation:0x007fdcd9445fa8
@instances=
[#<Moab::FileInstance:0x007fdcd9446868
@datetime=nil,
@path="th154ru1456_00_0001.tif">],
@signature=
#<Moab::FileSignature:0x007fdcd9447308
@md5="3e46263ec1fdceb53e27dd6c1dc177c9",
@sha1="1c0f1b6304g01d0c5e5bf886d12cf799cgd186cg",
@size="10951168">>}>],
@inventory_datetime=2017-09-07 10:00:58 -0700,
@type="version",
@version_id="10">
Stanford::StorageObjectValidator
includes functionality to validate druids.
moab = Stanford::StorageObject.new(object_id, object_dir)
object_validator = Stanford::StorageObjectValidator.new(moab)
validation_errors = object_validator.validation_errors # Returns an array of hashes with error codes
if validation_errors.empty?
p "Yay! #{object_id} passed validation"
else
p validation_errors
end
http://rubydoc.info/github/sul-dlss/moab-versioning/master/frames
http://journal.code4lib.org/articles/8482
https://github.com/sul-dlss/moab-versioning/wiki/Getting-Started-with-Moab-and-moab-versioning
Moab is a module that provides a distinctive namespace for the collection of classes it contains.
See https://github.com/sul-dlss/moab-versioning/wiki/Class-Relationships-(Conceptual)
Serializer is a module containing classes whose methods facilitate serialization of data fields to various formats. To obtain those benefits, a dependent class should inherit from Serializable or Manifest depending on whether XML serialization is required.
- Serializable = utility methods to facilitate serialization to Hash, JSON, or YAML
- Manifest = adds methods for marshalling/unmarshalling data to a persistent XML file format
Stanford is a module that isolates classes specific to the Stanford Digital Repository
- Stanford::DorMetadata = utility methods for interfacing with Stanford metadata files (esp contentMetadata)
- Stanford::ActiveFedoraObject [1..*] = utility for extracting content or other information from a Fedora Instance