Skip to content

seth-shaw-asu/migrate_apollo

 
 

Repository files navigation

Proof of Concept: Islandora 8 Migrate Files (Apollo Edition)

This repository is a Drupal module holding the Migrate API configs to load Tiff masters, metadata from a CSV, and MADS RDF XML authority records from the Library of Congress. It also contains a directory of source data we will migrate. (See the running instructions for where to place the data directory.)

The source data used for this proof of concept came from the Project Apollo Archive Flickr Albums and are in the public domain although some of the descriptive metadata was supplemented and the original Jpegs were converted to Tiff.

Running

Note: using drush with migrate_tools is optional, but the instructions assume it is installed.

  1. Install Islandora 8, including islandora_defaults.
  2. Clone this git repo to your modules directory. (git clone https://github.com/seth-shaw-asu/migrate-apollo.git)
  3. Copy the data directory to your drupal web root (e.g. for islandora the default drupal web root is /var/www/html/drupal/web and the data directory is /var/www/html/drupal/web/data).
  4. Enable the modules. E.g. drush en -y migrate_apollo.
  5. Run the migration. E.g. drush -l http://localhost:8000 mim --userid=1 --all. Note: drush must be run by the webserver user because the file migration copies files to the "public://directory". E.g. sudo -u www-data drush -l http://localhost:8000 mim --userid=1 --all if you are using Ubuntu. Also, the userid flag is specific to the migrate:import command, it provides the necessary user information to the JWT authentication to enable derivatives.
  6. See a wonderful list of the newly migrated images on your Drupal site's front page!

Combining People and Subject entities in a single column

This example splits out people that are subjects from topics that are subjects into separate columns. This allows us to perform entity lookups on each column for the matching content type.

In some cases, however, topic columns include items that could be either people or topics. This requires us to perform a single lookup across multiple vocabularies, something the existing migrate_plus module doesn't support. I've created a patch and issue to address the issue. Until it is merged or some other solution is found, we will either have to patch migrate_plus, or extend the process plugin for this small modification.

About

Proof of Concept: Migrate Files for Islandora

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published