From 92d8bbc820f98ac7a38f1d1875129ba4174c598c Mon Sep 17 00:00:00 2001 From: Alexander O'Neill Date: Tue, 25 Feb 2020 14:58:09 -0400 Subject: [PATCH 01/18] Make source PID available to default (MODS) row type. --- .../migrate_plus/data_parser/AuthenticatedXml.php | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/src/Plugin/migrate_plus/data_parser/AuthenticatedXml.php b/src/Plugin/migrate_plus/data_parser/AuthenticatedXml.php index 775dc0a..bbc59f9 100644 --- a/src/Plugin/migrate_plus/data_parser/AuthenticatedXml.php +++ b/src/Plugin/migrate_plus/data_parser/AuthenticatedXml.php @@ -57,6 +57,17 @@ protected function fetchNextRow() { $this->currentItem[$field_name] = reset($values); } } + + // Make the PID available as a field in teh migration + // This facilitates migrate_lookup, needed to migrate data + // into paragraphs. + if (empty($currentItem['PID'])) { + $pid_matches = []; + preg_match('/\/objects\/(.*?)\/datastreams/', $this->urls[$this->activeUrl], $pid_matches); + if (!empty($pid_matches[1])) { + $this->currentItem['PID'] = $pid_matches[1]; + } + } } } From 03b1e072016490960d4165ed9a3c73ff865bb723 Mon Sep 17 00:00:00 2001 From: Alexander O'Neill Date: Tue, 25 Feb 2020 15:41:03 -0400 Subject: [PATCH 02/18] Fix typo in AuthenticatedXml code comments. --- src/Plugin/migrate_plus/data_parser/AuthenticatedXml.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Plugin/migrate_plus/data_parser/AuthenticatedXml.php b/src/Plugin/migrate_plus/data_parser/AuthenticatedXml.php index bbc59f9..f36131f 100644 --- a/src/Plugin/migrate_plus/data_parser/AuthenticatedXml.php +++ b/src/Plugin/migrate_plus/data_parser/AuthenticatedXml.php @@ -58,7 +58,7 @@ protected function fetchNextRow() { } } - // Make the PID available as a field in teh migration + // Make the PID available as a field in the migration // This facilitates migrate_lookup, needed to migrate data // into paragraphs. if (empty($currentItem['PID'])) { From 741268150cddab7d71ea1775bfd7c538a5e957e8 Mon Sep 17 00:00:00 2001 From: Alexander O'Neill Date: Sun, 2 Aug 2020 19:57:48 -0300 Subject: [PATCH 03/18] Update migrate_plus version dependency. --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 4073d2f..831e217 100644 --- a/composer.json +++ b/composer.json @@ -16,7 +16,7 @@ } ], "require": { - "drupal/migrate_plus": "^4", + "drupal/migrate_plus": "*", "jonathangreen/tuque": "dev-master" }, "require-dev": { From 605db1413db44a92dce0bdc0a0776d2ce1873f11 Mon Sep 17 00:00:00 2001 From: Alexander O'Neill Date: Sun, 2 Aug 2020 20:01:22 -0300 Subject: [PATCH 04/18] Change composer prefix. --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 831e217..ba44ae8 100644 --- a/composer.json +++ b/composer.json @@ -1,5 +1,5 @@ { - "name": "islandora/migrate_7x_claw", + "name": "islandora-rdm/migrate_7x_claw", "description": "Tools to assist in Islandora 7.x to CLAW migrations.", "type": "drupal-module", "homepage": "https://github.com/Islandora-Devops/migrate_7x_claw", From bf3f4ada206198151cc245196deefbe919704030 Mon Sep 17 00:00:00 2001 From: Alexander O'Neill Date: Fri, 8 Jan 2021 11:19:17 -0400 Subject: [PATCH 05/18] Update CSV plugin YML syntax. See https://www.drupal.org/node/3060246 --- .../config/install/migrate_plus.migration.islandora_7x_tags.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/islandora_migrate_7x_claw_feature/config/install/migrate_plus.migration.islandora_7x_tags.yml b/modules/islandora_migrate_7x_claw_feature/config/install/migrate_plus.migration.islandora_7x_tags.yml index a3cc204..c3ea45f 100644 --- a/modules/islandora_migrate_7x_claw_feature/config/install/migrate_plus.migration.islandora_7x_tags.yml +++ b/modules/islandora_migrate_7x_claw_feature/config/install/migrate_plus.migration.islandora_7x_tags.yml @@ -15,6 +15,7 @@ source: plugin: csv path: modules/contrib/migrate_7x_claw/migrate/tags.csv header_row_count: 1 + ids: [id] keys: - external_uri process: From d6a7fee5819e9c735f2f5bc632f3e5d78be5f693 Mon Sep 17 00:00:00 2001 From: Alexander O'Neill Date: Fri, 8 Jan 2021 15:39:29 -0400 Subject: [PATCH 06/18] Change to using vid for ids. --- .../install/migrate_plus.migration.islandora_7x_tags.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/islandora_migrate_7x_claw_feature/config/install/migrate_plus.migration.islandora_7x_tags.yml b/modules/islandora_migrate_7x_claw_feature/config/install/migrate_plus.migration.islandora_7x_tags.yml index c3ea45f..dead82a 100644 --- a/modules/islandora_migrate_7x_claw_feature/config/install/migrate_plus.migration.islandora_7x_tags.yml +++ b/modules/islandora_migrate_7x_claw_feature/config/install/migrate_plus.migration.islandora_7x_tags.yml @@ -15,7 +15,8 @@ source: plugin: csv path: modules/contrib/migrate_7x_claw/migrate/tags.csv header_row_count: 1 - ids: [id] + ids: + - vid keys: - external_uri process: From 051f6ae545197bb96fb6cb21da088075b5c1f1a3 Mon Sep 17 00:00:00 2001 From: Alexander O'Neill Date: Thu, 11 Feb 2021 10:36:01 -0400 Subject: [PATCH 07/18] Drupal 9 compatibility. --- migrate_7x_claw.info.yml | 2 +- .../islandora_migrate_7x_claw_feature.info.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/migrate_7x_claw.info.yml b/migrate_7x_claw.info.yml index 9445b93..b669123 100644 --- a/migrate_7x_claw.info.yml +++ b/migrate_7x_claw.info.yml @@ -2,7 +2,7 @@ type: module name: Migrate Islandora 7.x to CLAW description: 'Migration setup for migrating from an Islandora 7.x instance to CLAW.' package: Islandora -core: 8.x +core_version_requirement: ^8 || ^9 dependencies: - drupal:migrate - migrate_plus:migrate_plus diff --git a/modules/islandora_migrate_7x_claw_feature/islandora_migrate_7x_claw_feature.info.yml b/modules/islandora_migrate_7x_claw_feature/islandora_migrate_7x_claw_feature.info.yml index ab3b7b5..8f1927c 100644 --- a/modules/islandora_migrate_7x_claw_feature/islandora_migrate_7x_claw_feature.info.yml +++ b/modules/islandora_migrate_7x_claw_feature/islandora_migrate_7x_claw_feature.info.yml @@ -1,7 +1,7 @@ name: 'Migrate 7x Claw Feature' description: 'Migration configuration for moving to Islandora CLAW from 7.x' type: module -core: 8.x +core_version_requirement: ^8 || ^9 dependencies: - migrate_plus - migrate_7x_claw From 7adc97f13e98d1e25ba8889ac0d34f5f6e8dabf2 Mon Sep 17 00:00:00 2001 From: Alexander O'Neill Date: Fri, 12 Feb 2021 16:42:10 -0400 Subject: [PATCH 08/18] WIP --- src/Form/MIGRATE7XCLAWSettingsForm.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Form/MIGRATE7XCLAWSettingsForm.php b/src/Form/MIGRATE7XCLAWSettingsForm.php index c7b09c7..a02f302 100644 --- a/src/Form/MIGRATE7XCLAWSettingsForm.php +++ b/src/Form/MIGRATE7XCLAWSettingsForm.php @@ -125,7 +125,6 @@ public function submitForm(array &$form, FormStateInterface $form_state) { $islandora_objects_config->set('source.authentication.username', $form_state->getValue('oldfedoraUsername')); $islandora_person_config->set('source.authentication.username', $form_state->getValue('oldfedoraUsername')); $islandora_subject_config->set('source.authentication.username', $form_state->getValue('oldfedoraUsername')); - $islandora_files_config->set('process.uri.settings.authentication.username', $form_state->getValue('oldfedoraUsername')); if (!$form_state->getValue('oldfedorapsswd') == '') { $config->set('oldfedorapsswd', $form_state->getValue('oldfedorapsswd')); @@ -138,7 +137,8 @@ public function submitForm(array &$form, FormStateInterface $form_state) { $islandora_objects_config->set('source.authentication.password', $form_state->getValue('oldfedorapsswd')); $islandora_person_config->set('source.authentication.password', $form_state->getValue('oldfedorapsswd')); $islandora_subject_config->set('source.authentication.password', $form_state->getValue('oldfedorapsswd')); - $islandora_files_config->set('process.uri.settings.authentication.password', $form_state->getValue('oldfedorapsswd')); + // File needs a special authentication configuration to pass to Guzzle. + $islandora_files_config->set('process.uri.guzzle_options.auth', [$form_state->getValue('oldfedoraUsername'), $form_state->getValue('oldfedorapasswd')]); } $config->set('solr-endpoint-url', $form_state->getValue('solr-endpoint-url')); From 40e6952383568c20d4ef615cfc2002f2854f60c8 Mon Sep 17 00:00:00 2001 From: Alexander O'Neill Date: Thu, 18 Feb 2021 14:02:16 -0400 Subject: [PATCH 09/18] Fix authentication for islandora_files migration. --- .../install/migrate_plus.migration.islandora_files.yml | 10 +++++----- src/Form/MIGRATE7XCLAWSettingsForm.php | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/modules/islandora_migrate_7x_claw_feature/config/install/migrate_plus.migration.islandora_files.yml b/modules/islandora_migrate_7x_claw_feature/config/install/migrate_plus.migration.islandora_files.yml index 859772c..2c08e48 100644 --- a/modules/islandora_migrate_7x_claw_feature/config/install/migrate_plus.migration.islandora_files.yml +++ b/modules/islandora_migrate_7x_claw_feature/config/install/migrate_plus.migration.islandora_files.yml @@ -675,11 +675,11 @@ process: source: - '@remote_path' - '@local_path' - settings: - authentication: - plugin: basic - username: fedoraAdmin - password: fedoraAdmin + guzzle_options: + auth: + - fedoraAdmin + - fedoraAdmin + uid: constants/creator_uid destination: plugin: 'entity:file' diff --git a/src/Form/MIGRATE7XCLAWSettingsForm.php b/src/Form/MIGRATE7XCLAWSettingsForm.php index a02f302..c058a85 100644 --- a/src/Form/MIGRATE7XCLAWSettingsForm.php +++ b/src/Form/MIGRATE7XCLAWSettingsForm.php @@ -138,7 +138,7 @@ public function submitForm(array &$form, FormStateInterface $form_state) { $islandora_person_config->set('source.authentication.password', $form_state->getValue('oldfedorapsswd')); $islandora_subject_config->set('source.authentication.password', $form_state->getValue('oldfedorapsswd')); // File needs a special authentication configuration to pass to Guzzle. - $islandora_files_config->set('process.uri.guzzle_options.auth', [$form_state->getValue('oldfedoraUsername'), $form_state->getValue('oldfedorapasswd')]); + $islandora_files_config->set('process.uri.guzzle_options.auth', [$form_state->getValue('oldfedoraUsername'), $form_state->getValue('oldfedorapsswd')]); } $config->set('solr-endpoint-url', $form_state->getValue('solr-endpoint-url')); From b5766cf6c7c086e7a5d8fdf41e0df3313d22b474 Mon Sep 17 00:00:00 2001 From: Alexander O'Neill Date: Thu, 1 Apr 2021 16:00:40 -0300 Subject: [PATCH 10/18] De-duplicate MIME types, by @edlington --- ...migrate_plus.migration.islandora_files.yml | 225 +----------------- 1 file changed, 2 insertions(+), 223 deletions(-) diff --git a/modules/islandora_migrate_7x_claw_feature/config/install/migrate_plus.migration.islandora_files.yml b/modules/islandora_migrate_7x_claw_feature/config/install/migrate_plus.migration.islandora_files.yml index 2c08e48..c2893fc 100644 --- a/modules/islandora_migrate_7x_claw_feature/config/install/migrate_plus.migration.islandora_files.yml +++ b/modules/islandora_migrate_7x_claw_feature/config/install/migrate_plus.migration.islandora_files.yml @@ -78,11 +78,8 @@ process: application/acad: dwg application/arj: arj application/base64: mm - application/base64: mme application/binhex4: hqx - application/binhex: hqx application/book: boo - application/book: book application/cdf: cdf application/clariscad: ccad application/commonground: dp @@ -92,17 +89,6 @@ process: application/ecmascript: js application/envoy: evy application/excel: xl - application/excel: xla - application/excel: xlb - application/excel: xlc - application/excel: xld - application/excel: xlk - application/excel: xll - application/excel: xlm - application/excel: xls - application/excel: xlt - application/excel: xlv - application/excel: xlw application/fractals: fif application/freeloader: frl application/futuresplash: spl @@ -112,7 +98,6 @@ process: application/hta: hta application/i-deas: unv application/iges: iges - application/iges: igs application/inf: inf application/java-byte-code: class application/java: class @@ -128,74 +113,40 @@ process: application/mbedlet: mbd application/mcad: mcd application/mime: aps - application/mspowerpoint: pot - application/mspowerpoint: pps application/mspowerpoint: ppt - application/mspowerpoint: ppz application/msword: doc - application/msword: dot - application/msword: w6w - application/msword: wiz - application/msword: word - application/mswrite: wri + application/mswrite: msw application/netmc: mcp - application/octet-stream: a - application/octet-stream: arc - application/octet-stream: arj - application/octet-stream: bin - application/octet-stream: com - application/octet-stream: dump application/octet-stream: exe - application/octet-stream: lha - application/octet-stream: lhx - application/octet-stream: lzh - application/octet-stream: lzx - application/octet-stream: o - application/octet-stream: psd - application/octet-stream: saveme - application/octet-stream: uu - application/octet-stream: zoo application/oda: oda application/pdf: pdf application/pkcs-12: p12 application/pkcs-crl: crl application/pkcs10: p10 application/pkcs7-mime: p7c - application/pkcs7-mime: p7m application/pkcs7-signature: p7s application/pkix-cert: cer - application/pkix-cert: crt application/pkix-crl: crl application/plain: text - application/postscript: ai application/postscript: eps - application/postscript: ps application/powerpoint: ppt application/pro_eng: part - application/pro_eng: prt application/rdf+xml: xml application/ringing-tones: rng application/rtf: rtf - application/rtf: rtx application/sdp: sdp application/sea: sea application/set: set application/sla: stl application/smil: smi - application/smil: smil application/solids: sol application/sounder: sdr application/step: step - application/step: stp application/streamingmedia: ssm application/toolbook: tbk application/vda: vda application/vocaltec-media-desc: vmd - application/vocaltec-media-file: vmf application/wordperfect: wp - application/wordperfect: wp5 - application/wordperfect: wp6 - application/wordperfect: wpd application/x-123: wk1 application/x-aim: aim application/x-authorware-bin: aab @@ -204,58 +155,35 @@ process: application/x-bcpio: bcpio application/x-binary: bin application/x-binhex40: hqx - application/x-bsh: bsh application/x-bsh: sh - application/x-bsh: shar - application/x-bzip2: boz application/x-bzip2: bz2 application/x-bzip: bz application/x-cdf: cdf application/x-cdlink: vcd - application/x-chat: cha application/x-chat: chat application/x-cmu-raster: ras application/x-cocoa: cco application/x-compactpro: cpt application/x-compress: z - application/x-compressed: gz - application/x-compressed: tgz - application/x-compressed: z application/x-compressed: zip - application/x-conference: nsc application/x-cpio: cpio application/x-cpt: cpt application/x-csh: csh application/x-deepv: deepv - application/x-director: dcr application/x-director: dir - application/x-director: dxr application/x-dvi: dvi application/x-elc: elc application/x-envoy: env - application/x-envoy: evy application/x-esrehber: es application/x-excel: xla - application/x-excel: xlb - application/x-excel: xlc - application/x-excel: xld - application/x-excel: xlk - application/x-excel: xll - application/x-excel: xlm - application/x-excel: xls - application/x-excel: xlt - application/x-excel: xlv - application/x-excel: xlw application/x-frame: mif application/x-freelance: pre application/x-gsp: gsp application/x-gss: gss application/x-gtar: gtar - application/x-gzip: gz application/x-gzip: gzip application/x-hdf: hdf application/x-helpfile: help - application/x-helpfile: hlp application/x-httpd-imap: imap application/x-ima: ima application/x-internett-signup: ins @@ -265,12 +193,8 @@ process: application/x-java-commerce: jcm application/x-javascript: js application/x-koan: skd - application/x-koan: skm - application/x-koan: skp - application/x-koan: skt application/x-ksh: ksh application/x-latex: latex - application/x-latex: ltx application/x-lha: lha application/x-lisp: lsp application/x-livescreen: ivy @@ -282,20 +206,16 @@ process: application/x-macbinary: bin application/x-mathcad: mcd application/x-meme: mm - application/x-midi: mid application/x-midi: midi application/x-mif: mif application/x-mix-transfer: nix application/x-mplayer2: asx application/x-msexcel: xla - application/x-msexcel: xls - application/x-msexcel: xlw application/x-mspowerpoint: ppt application/x-navi-animation: ani application/x-navidoc: nvd application/x-navimap: map application/x-navistyle: stl - application/x-netcdf: cdf application/x-netcdf: nc application/x-newton-compatible-pkg: pkg application/x-nokia-9000-communicator-add-on-software: aos @@ -303,7 +223,6 @@ process: application/x-omcdatamaker: omcd application/x-omcregerator: omcr application/x-pagemaker: pm4 - application/x-pagemaker: pm5 application/x-pcl: pcl application/x-pixclscript: plx application/x-pkcs10: p10 @@ -311,14 +230,10 @@ process: application/x-pkcs7-certificates: spc application/x-pkcs7-certreqresp: p7r application/x-pkcs7-mime: p7c - application/x-pkcs7-mime: p7m application/x-pkcs7-signature: p7a application/x-pointplus: css application/x-portable-anymap: pnm application/x-project: mpc - application/x-project: mpt - application/x-project: mpv - application/x-project: mpx application/x-qpro: wb1 application/x-rtf: rtf application/x-sdp: sdp @@ -326,71 +241,46 @@ process: application/x-seelogo: sl application/x-sh: sh application/x-shar: sh - application/x-shar: shar application/x-shockwave-flash: swf application/x-sit: sit application/x-sprite: spr - application/x-sprite: sprite application/x-stuffit: sit application/x-sv4cpio: sv4cpio application/x-sv4crc: sv4crc application/x-tar: tar application/x-tbook: sbk - application/x-tbook: tbk application/x-tcl: tcl application/x-tex: tex application/x-texinfo: texi - application/x-texinfo: texinfo application/x-troff-man: man application/x-troff-me: me application/x-troff-ms: ms application/x-troff-msvideo: avi application/x-troff: roff - application/x-troff: t - application/x-troff: tr application/x-ustar: ustar application/x-visio: vsd - application/x-visio: vst - application/x-visio: vsw application/x-vrml: vrml application/x-wais-source: src - application/x-wais-source: wsrc application/x-winhelp: hlp application/x-wintalk: wtk application/x-world: svr - application/x-world: wrl application/x-wpwin: wpd application/x-wri: wri application/x-x509-ca-cert: cer - application/x-x509-ca-cert: crt - application/x-x509-ca-cert: der application/x-x509-user-cert: crt application/x-zip-compressed: zip application/xml: xml application/zip: zip audio/aac: aac - audio/aiff: aif - audio/aiff: aifc audio/aiff: aiff audio/basic: au - audio/basic: snd audio/it: it audio/make: funk - audio/make: my - audio/make: pfunk audio/mid: rmi - audio/midi: kar - audio/midi: mid audio/midi: midi audio/mod: mod audio/mpeg3: mp3 audio/mpeg: m2a - audio/mpeg: mp2 - audio/mpeg: mp3 - audio/mpeg: mpa - audio/mpeg: mpg - audio/mpeg: mpga - audio/nspaudio: la audio/nspaudio: lma audio/s3m: s3m audio/tsp-audio: tsi @@ -400,84 +290,52 @@ process: audio/wav: wav audio/x-adpcm: snd audio/x-aiff: aif - audio/x-aiff: aifc - audio/x-aiff: aiff audio/x-au: au audio/x-gsm: gsd - audio/x-gsm: gsm audio/x-jam: jam audio/x-liveaudio: lam audio/x-mid: mid - audio/x-mid: midi - audio/x-midi: mid audio/x-midi: midi audio/x-mod: mod audio/x-mpeg-3: mp3 audio/x-mpeg: mp2 audio/x-mpequrl: m3u - audio/x-nspaudio: la audio/x-nspaudio: lma audio/x-pn-realaudio-plugin: ra - audio/x-pn-realaudio-plugin: rmp - audio/x-pn-realaudio-plugin: rpm audio/x-pn-realaudio: ra - audio/x-pn-realaudio: ram - audio/x-pn-realaudio: rm - audio/x-pn-realaudio: rmm - audio/x-pn-realaudio: rmp audio/x-psid: sid audio/x-realaudio: ra audio/x-twinvq-plugin: vqe - audio/x-twinvq-plugin: vql audio/x-twinvq: vqf audio/x-voc: voc audio/x-wav: wav audio/xm: xm chemical/x-pdb: pdb - chemical/x-pdb: xyz drawing/x-dwf (old): dwf i-world/i-vrml: ivr image/bmp: bm - image/bmp: bmp - image/cmu-raster: ras image/cmu-raster: rast image/fif: fif image/florian: flo - image/florian: turbot image/g3fax: g3 image/gif: gif image/ief: ief - image/ief: iefs image/jp2: jp2 image/jpeg: jfif - image/jpeg: jfif-tbnl - image/jpeg: jpe - image/jpeg: jpeg - image/jpeg: jpg image/jpg: jpg image/jutvision: jut image/naplps: nap - image/naplps: naplps image/pict: pic - image/pict: pict - image/pjpeg: jfif - image/pjpeg: jpe image/pjpeg: jpeg - image/pjpeg: jpg image/png: png - image/png: x-png image/tif: tiff - image/tiff: tif image/tiff: tiff image/vasa: mcf image/x-cmu-raster: ras image/x-dwg: dwg - image/x-dwg: dxf - image/x-dwg: svf image/x-icon: ico image/x-jg: art image/x-jps: jps - image/x-niff: nif image/x-niff: niff image/x-pcx: pcx image/x-pict: pct @@ -486,114 +344,55 @@ process: image/x-portable-graymap: pgm image/x-portable-greymap: pgm image/x-portable-pixmap: ppm - image/x-quicktime: qif - image/x-quicktime: qti image/x-quicktime: qtif image/x-rgb: rgb image/x-tiff: tif - image/x-tiff: tiff image/x-windows-bmp: bmp image/x-xbitmap: xbm image/x-xbm: xbm - image/x-xpixmap: pm image/x-xpixmap: xpm image/x-xwd: xwd image/x-xwindowdump: xwd image/xbm: xbm image/xpm: xpm - message/rfc822: mht - message/rfc822: mhtml message/rfc822: mime model/iges: iges - model/iges: igs model/vrml: vrml - model/vrml: wrl - model/vrml: wrz model/x-pov: pov multipart/x-gzip: gzip multipart/x-ustar: ustar multipart/x-zip: zip - music/crescendo: mid music/crescendo: midi music/x-karaoke: kar paleovu/x-pv: pvu text/asp: asp text/css: css text/ecmascript: js - text/html: acgi - text/html: htm text/html: html - text/html: htmls - text/html: htx - text/html: shtml text/javascript: js text/mcf: mcf text/pascal: pas - text/plain: c - text/plain: c++ - text/plain: cc - text/plain: com - text/plain: conf - text/plain: cxx - text/plain: def - text/plain: f - text/plain: f90 - text/plain: for - text/plain: g - text/plain: h - text/plain: hh - text/plain: idc - text/plain: jav - text/plain: java - text/plain: list - text/plain: log - text/plain: lst - text/plain: m - text/plain: mar - text/plain: pl - text/plain: sdml - text/plain: text text/plain: txt - text/richtext: rt text/richtext: rtf - text/richtext: rtx text/scriplet: wsc - text/sgml: sgm text/sgml: sgml text/tab-separated-values: tsv - text/uri-list: uni - text/uri-list: unis - text/uri-list: uri text/uri-list: uris text/webviewhtml: htt text/x-asm: asm - text/x-asm: s text/x-audiosoft-intra: aip text/x-c: c - text/x-c: cc - text/x-c: cpp text/x-component: htc text/x-fortran: f - text/x-fortran: f77 - text/x-fortran: f90 - text/x-fortran: for - text/x-h: h text/x-h: hh - text/x-java-source: jav text/x-java-source: java text/x-la-asf: lsx text/x-m: m text/x-pascal: p text/x-script: hlb text/x-server-parsed-html: shtml - text/x-server-parsed-html: ssi text/x-setext: etx - text/x-sgml: sgm text/x-sgml: sgml - text/x-speech: spc - text/x-speech: talk - text/x-uil: uil - text/x-uuencode: uu text/x-uuencode: uue text/x-vcalendar: vcs text/xml: xml @@ -605,56 +404,36 @@ process: video/gl: gl video/mp4: mp4 video/mpeg: m1v - video/mpeg: m2v - video/mpeg: mp2 - video/mpeg: mp3 - video/mpeg: mpa - video/mpeg: mpe - video/mpeg: mpeg - video/mpeg: mpg video/msvideo: avi - video/quicktime: moov video/quicktime: mov - video/quicktime: qt video/vdo: vdo video/vivo: viv - video/vivo: vivo video/vosaic: vos video/x-amt-demorun: xdr video/x-amt-showrun: xsr video/x-atomic3d-feature: fmf video/x-dl: dl video/x-dv: dif - video/x-dv: dv video/x-fli: fli video/x-gl: gl video/x-isvideo: isu video/x-matroska: mkv video/x-motion-jpeg: mjpg - video/x-mpeg: mp2 video/x-mpeg: mp3 video/x-mpeq2a: mp2 video/x-ms-asf-plugin: asx video/x-ms-asf: asf - video/x-ms-asf: asx video/x-msvideo: avi video/x-qtc: qtc video/x-scm: scm video/x-sgi-movie: movie - video/x-sgi-movie: mv windows/metafile: wmf www/mime: mime x-conference/x-cooltalk: ice - x-music/x-midi: mid x-music/x-midi: midi x-world/x-3dmf: 3dm - x-world/x-3dmf: 3dmf - x-world/x-3dmf: qd3 - x-world/x-3dmf: qd3d x-world/x-svr: svr x-world/x-vrml: vrml - x-world/x-vrml: wrl - x-world/x-vrml: wrz x-world/x-vrt: vrt xgl/drawing: xgz xgl/movie: xmz @@ -679,7 +458,7 @@ process: auth: - fedoraAdmin - fedoraAdmin - +​ uid: constants/creator_uid destination: plugin: 'entity:file' From 367238d343c3a9e21580970fbc4515a5226ce3fe Mon Sep 17 00:00:00 2001 From: Alexander O'Neill Date: Mon, 5 Apr 2021 12:04:31 -0300 Subject: [PATCH 11/18] Remove blank line causing parse error. Should be good to re-test now. --- .../config/install/migrate_plus.migration.islandora_files.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/modules/islandora_migrate_7x_claw_feature/config/install/migrate_plus.migration.islandora_files.yml b/modules/islandora_migrate_7x_claw_feature/config/install/migrate_plus.migration.islandora_files.yml index c2893fc..87651bc 100644 --- a/modules/islandora_migrate_7x_claw_feature/config/install/migrate_plus.migration.islandora_files.yml +++ b/modules/islandora_migrate_7x_claw_feature/config/install/migrate_plus.migration.islandora_files.yml @@ -458,7 +458,6 @@ process: auth: - fedoraAdmin - fedoraAdmin -​ uid: constants/creator_uid destination: plugin: 'entity:file' From ccabf3d85b50c2cb7f1e4710028fb33eed7d9a86 Mon Sep 17 00:00:00 2001 From: Alexander O'Neill Date: Thu, 8 Apr 2021 10:01:50 -0300 Subject: [PATCH 12/18] Reset composer name to Islandora. --- composer.json | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/composer.json b/composer.json index ba44ae8..c6d409e 100644 --- a/composer.json +++ b/composer.json @@ -1,11 +1,10 @@ { - "name": "islandora-rdm/migrate_7x_claw", + "name": "islandora/migrate_7x_claw", "description": "Tools to assist in Islandora 7.x to CLAW migrations.", "type": "drupal-module", "homepage": "https://github.com/Islandora-Devops/migrate_7x_claw", "support": { "issues": "https://github.com/Islandora-CLAW/CLAW/issues", - "irc": "irc://irc.freenode.org/islandora", "source": "https://github.com/Islandora-Devops/migrate_7x_claw" }, "license": "GPL-2.0-or-later", From 1ff58199ccd2e2a0578dab9520826bdf6ee951cf Mon Sep 17 00:00:00 2001 From: Alexander O'Neill Date: Wed, 7 Jul 2021 10:57:15 -0300 Subject: [PATCH 13/18] Remove unbounded dependency for migrate_plus. --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index c6d409e..3bd998f 100644 --- a/composer.json +++ b/composer.json @@ -15,7 +15,7 @@ } ], "require": { - "drupal/migrate_plus": "*", + "drupal/migrate_plus": "^5", "jonathangreen/tuque": "dev-master" }, "require-dev": { From 724cb6adc033b10db2f4876357b8a26a436b2428 Mon Sep 17 00:00:00 2001 From: Alexander O'Neill Date: Fri, 17 Jun 2022 19:08:38 +0000 Subject: [PATCH 14/18] Add book structure support. --- ...grate_plus.migration.islandora_objects.yml | 257 ++++++++++-------- 1 file changed, 147 insertions(+), 110 deletions(-) diff --git a/modules/islandora_migrate_7x_claw_feature/config/install/migrate_plus.migration.islandora_objects.yml b/modules/islandora_migrate_7x_claw_feature/config/install/migrate_plus.migration.islandora_objects.yml index df13b2a..41ce7d8 100644 --- a/modules/islandora_migrate_7x_claw_feature/config/install/migrate_plus.migration.islandora_objects.yml +++ b/modules/islandora_migrate_7x_claw_feature/config/install/migrate_plus.migration.islandora_objects.yml @@ -6,6 +6,8 @@ dependencies: - migrate_7x_claw - migrate_plus - islandora +_core: + default_config_hash: uC85xvYZ_ID8nCAyQOKeXgq-Q0yiEIhHLmhNLM8mzL0 id: islandora_objects class: null field_plugin_method: null @@ -15,125 +17,129 @@ migration_group: islandora_7x label: 'Islandora Objects' source: plugin: islandora - solr_base_url: 'http://10.0.2.2:8080/solr' - q: 'RELS_EXT_isMemberOfCollection_uri_ms:"info:fedora/islandora:sp_basic_image_collection" OR PID:"islandora:sp_basic_image_collection"' + solr_base_url: 'http://10.0.2.2:8090/solr' + q: 'PID:ilives\:209051*' row_type: solr - fedora_base_url: 'http://10.0.2.2:8080/fedora' + fedora_base_url: 'http://10.0.2.2:8090/fedora' data_fetcher_plugin: http authentication: plugin: basic username: fedoraAdmin - password: fedoraAdmin - data_parser_plugin: json_list - item_selector: '/response/docs' + password: sqr1j3rky + data_parser_plugin: json_list + item_selector: /response/docs constants: creator_uid: 1 fields: - name: PID label: PID - selector: 'PID' + selector: PID - name: model label: 'Content Model' - selector: 'RELS_EXT_hasModel_uri_s' + selector: RELS_EXT_hasModel_uri_s - name: created label: 'Created Date' - selector: 'fgs_createdDate_dt' + selector: fgs_createdDate_dt - name: lastmodified label: 'Last Modified Date' - selector: 'fgs_lastModifiedDate_dt' + selector: fgs_lastModifiedDate_dt - - name: title - label: 'Title' - selector: 'fgs_label_s' + name: title + label: Title + selector: fgs_label_s - - name: subtitle - label: 'Subtitle' - selector: 'mods_titleInfo_subTitle_s' + name: subtitle + label: Subtitle + selector: mods_titleInfo_subTitle_s - - name: resource_type + name: resource_type label: 'Type of Resource' - selector: 'mods_typeOfResource_s' + selector: mods_typeOfResource_s - - name: identifier - label: 'Identifier' - selector: 'mods_identifier_local_s' + name: identifier + label: Identifier + selector: mods_identifier_local_s - - name: description - label: 'Description' - selector: 'mods_abstract_s' + name: description + label: Description + selector: mods_abstract_s - - name: extent + name: extent label: 'Physical Extent' - selector: 'mods_physicalDescription_extent_s' + selector: mods_physicalDescription_extent_s - name: member_of label: 'Member Of' - selector: 'RELS_EXT_isMemberOfCollection_uri_ms' + selector: RELS_EXT_isMemberOfCollection_uri_ms - - name: person_agents - label: "Person agents" - selector: 'mods_name_personal_namePart_ms' + name: part_of + label: 'Part Of' + selector: RELS_EXT_isMemberOf_uri_ms + - + name: person_agents + label: 'Person agents' + selector: mods_name_personal_namePart_ms - name: person_roles - label: "Person roles" - selector: 'mods_name_personal_role_roleTerm_text_ms' + label: 'Person roles' + selector: mods_name_personal_role_roleTerm_text_ms - - name: corporate_agents - label: "Corporate agents" - selector: 'mods_name_corporate_namePart_ms' + name: corporate_agents + label: 'Corporate agents' + selector: mods_name_corporate_namePart_ms - name: corporate_roles - label: "Corporate roles" - selector: 'mods_name_corporate_role_roleTerm_text_ms' + label: 'Corporate roles' + selector: mods_name_corporate_role_roleTerm_text_ms - - name: topic - label: "Topics" - selector: 'mods_subject_topic_ms' + name: topic + label: Topics + selector: mods_subject_topic_ms - name: temporal - label: "Temporal" - selector: 'mods_subject_temporal_ms' + label: Temporal + selector: mods_subject_temporal_ms - - name: geographic - label: "Geographic" - selector: 'mods_subject_geographic_ms' + name: geographic + label: Geographic + selector: mods_subject_geographic_ms - - name: continent - label: "Continent" - selector: 'mods_subject_hierarchicalGeographic_continent_ms' + name: continent + label: Continent + selector: mods_subject_hierarchicalGeographic_continent_ms - - name: country - label: "Country" - selector: 'mods_subject_hierarchicalGeographic_country_ms' + name: country + label: Country + selector: mods_subject_hierarchicalGeographic_country_ms - - name: province - label: "Province" - selector: 'mods_subject_hierarchicalGeographic_province_ms' + name: province + label: Province + selector: mods_subject_hierarchicalGeographic_province_ms - - name: region - label: "Region" - selector: 'mods_subject_hierarchicalGeographic_region_ms' + name: region + label: Region + selector: mods_subject_hierarchicalGeographic_region_ms - - name: county - label: "County" - selector: 'mods_subject_hierarchicalGeographic_county_ms' + name: county + label: County + selector: mods_subject_hierarchicalGeographic_county_ms - - name: city - label: "City" - selector: 'mods_subject_hierarchicalGeographic_city_ms' + name: city + label: City + selector: mods_subject_hierarchicalGeographic_city_ms - name: city_section - label: "City Section" - selector: 'mods_subject_hierarchicalGeographic_citySection_ms' + label: 'City Section' + selector: mods_subject_hierarchicalGeographic_citySection_ms ids: PID: type: string process: - title: title + title: title field_alternative_title: subtitle field_identifier: identifier field_pid: PID @@ -157,34 +163,64 @@ process: source: lastmodified settings: validate_format: false - field_member_of: + _field_tmp_member_of_src1: - plugin: skip_on_empty method: process source: member_of + - + plugin: log + _field_tmp_member_of_src2: + - + plugin: skip_on_empty + method: process + source: part_of + - + plugin: log + _field_tmp_member_of: + - + plugin: skip_on_empty + method: process + source: + - '@_field_tmp_member_of_src1' + - '@_field_tmp_member_of_src2' + - + plugin: flatten + - + plugin: filter_on_condition + condition: 'not:empty' + - + plugin: extract + index: + - '0' + field_member_of: + - + plugin: skip_on_empty + method: process + source: '@_field_tmp_member_of' - plugin: substr start: 12 - plugin: migration_lookup migration: islandora_objects - no_stub: true + no_stub: false field_model: - plugin: skip_on_empty method: process - source: model + source: model - plugin: static_map map: - info:fedora/islandora:collectionCModel: http://purl.org/dc/dcmitype/Collection - info:fedora/islandora:sp_basic_image: http://purl.org/coar/resource_type/c_c513 - info:fedora/islandora:sp-audioCModel: http://purl.org/coar/resource_type/c_18cc - info:fedora/islandora:sp_videoCModel: http://purl.org/coar/resource_type/c_12ce - default_value: http://purl.org/coar/resource_type/c_1843 + 'info:fedora/islandora:collectionCModel': 'http://purl.org/dc/dcmitype/Collection' + 'info:fedora/islandora:sp_basic_image': 'http://purl.org/coar/resource_type/c_c513' + 'info:fedora/islandora:sp-audioCModel': 'http://purl.org/coar/resource_type/c_18cc' + 'info:fedora/islandora:sp_videoCModel': 'http://purl.org/coar/resource_type/c_12ce' + default_value: 'http://purl.org/coar/resource_type/c_1843' - plugin: entity_lookup - value_key: field_external_uri + value_key: field_external_uri bundle_key: vid bundle: islandora_models entity_type: taxonomy_term @@ -193,99 +229,98 @@ process: - plugin: skip_on_empty method: process - source: resource_type + source: resource_type - plugin: static_map map: - 'still image': http://purl.org/dc/dcmitype/StillImage - 'text': http://purl.org/dc/dcmitype/Text - 'cartographic': http://purl.org/dc/dcmitype/Image - 'notated music': http://purl.org/dc/dcmitype/Text - 'sound recording': http://purl.org/dc/dcmitype/Sound - 'sound recording-musical': http://purl.org/dc/dcmitype/Sound - 'sound recording-nonmusical': http://purl.org/dc/dcmitype/Sound - 'moving image': http://purl.org/dc/dcmitype/MovingImage - 'three dimensional object': http://purl.org/dc/dcmitype/Image - 'software, multimedia': http://purl.org/dc/dcmitype/Software - # Need to figure out what to do wtih 'mixed material' - # There is no obvious mapping at https://www.loc.gov/standards/mods/mods-dcsimple.html + 'still image': 'http://purl.org/dc/dcmitype/StillImage' + text: 'http://purl.org/dc/dcmitype/Text' + cartographic: 'http://purl.org/dc/dcmitype/Image' + 'notated music': 'http://purl.org/dc/dcmitype/Text' + 'sound recording': 'http://purl.org/dc/dcmitype/Sound' + 'sound recording-musical': 'http://purl.org/dc/dcmitype/Sound' + 'sound recording-nonmusical': 'http://purl.org/dc/dcmitype/Sound' + 'moving image': 'http://purl.org/dc/dcmitype/MovingImage' + 'three dimensional object': 'http://purl.org/dc/dcmitype/Image' + 'software, multimedia': 'http://purl.org/dc/dcmitype/Software' + collection: 'http://purl.org/dc/dcmitype/Collection' - plugin: entity_lookup - value_key: field_external_uri + value_key: field_external_uri bundle_key: vid bundle: resource_types entity_type: taxonomy_term ignore_case: true temp_person: - - plugin: migration_lookup + plugin: migration_lookup migration: islandora_person source: person_agents - no_stub: true + no_stub: false - - plugin: typed_relation + plugin: typed_relation role_source: person_roles temp_corporate: - - plugin: migration_lookup + plugin: migration_lookup migration: islandora_corporate source: corporate_agents no_stub: true - - plugin: typed_relation + plugin: typed_relation role_source: corporate_roles field_linked_agent: plugin: merge_ignore_empty source: - '@temp_person' - '@temp_corporate' - temp_topic: + temp_topic: plugin: migration_lookup migration: islandora_subject source: topic no_stub: true temp_temporal: - plugin: migration_lookup + plugin: migration_lookup migration: islandora_subject - source: temporal + source: temporal no_stub: true temp_geographic: - plugin: migration_lookup + plugin: migration_lookup migration: islandora_geographic source: geographic no_stub: true temp_continent: - plugin: migration_lookup + plugin: migration_lookup migration: islandora_geographic source: continent no_stub: true temp_country: - plugin: migration_lookup + plugin: migration_lookup migration: islandora_geographic source: country no_stub: true temp_province: - plugin: migration_lookup + plugin: migration_lookup migration: islandora_geographic - source: province + source: province no_stub: true temp_region: - plugin: migration_lookup + plugin: migration_lookup migration: islandora_geographic - source: region + source: region no_stub: true temp_county: - plugin: migration_lookup + plugin: migration_lookup migration: islandora_geographic - source: county + source: county no_stub: true temp_city: - plugin: migration_lookup + plugin: migration_lookup migration: islandora_geographic - source: city + source: city no_stub: true temp_city_section: - plugin: migration_lookup + plugin: migration_lookup migration: islandora_geographic source: city_section no_stub: true @@ -312,4 +347,6 @@ migration_dependencies: - migrate_plus.migration.islandora_subject - migrate_plus.migration.islandora_geographic - migrate_plus.migration.islandora_7x_tags - optional: { } + optional: { } + + From 118c859b05ca62cb8e10a1406564545b4fc821ca Mon Sep 17 00:00:00 2001 From: Alexander O'Neill Date: Wed, 22 Jun 2022 16:30:45 +0000 Subject: [PATCH 15/18] Add isMemberOf next to isMemberOfCollection in field_member_of selectors. --- .../migrate_plus.migration.islandora_objects.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/modules/islandora_migrate_7x_claw_feature/config/install/migrate_plus.migration.islandora_objects.yml b/modules/islandora_migrate_7x_claw_feature/config/install/migrate_plus.migration.islandora_objects.yml index 41ce7d8..341ceaf 100644 --- a/modules/islandora_migrate_7x_claw_feature/config/install/migrate_plus.migration.islandora_objects.yml +++ b/modules/islandora_migrate_7x_claw_feature/config/install/migrate_plus.migration.islandora_objects.yml @@ -1,3 +1,4 @@ +uuid: 3715ee7f-e903-4c04-90e2-726051e67e1f langcode: en status: true dependencies: @@ -17,15 +18,15 @@ migration_group: islandora_7x label: 'Islandora Objects' source: plugin: islandora - solr_base_url: 'http://10.0.2.2:8090/solr' - q: 'PID:ilives\:209051*' + solr_base_url: 'http://10.0.2.2:8080/solr' + q: 'RELS_EXT_isMemberOfCollection_uri_ms:"info:fedora/islandora:sp_basic_image_collection" OR PID:"islandora:sp_basic_image_collection"' row_type: solr - fedora_base_url: 'http://10.0.2.2:8090/fedora' + fedora_base_url: 'http://10.0.2.2:8080/fedora' data_fetcher_plugin: http authentication: plugin: basic username: fedoraAdmin - password: sqr1j3rky + password: islandora data_parser_plugin: json_list item_selector: /response/docs constants: @@ -193,6 +194,7 @@ process: plugin: extract index: - '0' + default: '' field_member_of: - plugin: skip_on_empty @@ -349,4 +351,3 @@ migration_dependencies: - migrate_plus.migration.islandora_7x_tags optional: { } - From 8b1bf92944147328dfb90fe1f67912d43c9129f8 Mon Sep 17 00:00:00 2001 From: Alexander O'Neill Date: Wed, 22 Jun 2022 17:00:07 +0000 Subject: [PATCH 16/18] Update README. --- README.md | 21 ++++++++++++--------- 1 file changed, 12 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index fdbb7c8..5d8fc71 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ ## Introduction This module contains plugins to import data from a Fedora 3 Islandora instance -into an Islandora 8 instance. It also contains a feature as a submodule +into an Islandora 2 (previously called Islandora 8) instance. It also contains a feature as a submodule that contains some example migrations. The example migrations are based on forms from vanilla Islandora 7.x solution packs, and are meant to work with the fields defined in `islandora_defaults`. If you customized your MODS forms, then you will also need to customize the example migration and `islandora_defaults`. @@ -37,7 +37,7 @@ drush en islandora_migrate_7x_claw_feature ## Configuration By default, the migrations are configured to work with an `islandora_vagrant` instance running on the same host as a -`claw-playbook` instance, which is convenient for development and testing. But for your Islandora 7.x instance, the +`Islandora playbook` instance, which is convenient for development and testing. But for your Islandora 7.x instance, the following config will need to be set the same way on the source plugin of each migration (except for the "7.x Tags Migration from CSV" migration): @@ -77,19 +77,22 @@ migrations are configured to look for `islandora:sp_basic_image_collection` and RELS_EXT_isMemberOfCollection_uri_ms:"info:fedora/islandora:sp_basic_image_collection" OR PID:"islandora:sp_basic_image_collection" ``` You can easily import a collection of your own by changing the PID in the above query, or you can provide your own -query to migrate over objects in other ways (such as per content model, in order by date created, etc...). If you can write a Solr select query for it, you can migrate it into Islandora 8. Omitting `q` from configuration will default to `*:*` -for the Solr query. +query to migrate over objects in other ways (such as per content model, in order by date created, etc...). If you can write a Solr select query for it, you can migrate it into Islandora 2. Omitting `q` from configuration will default to `*:*` +for the Solr query. Once you've updated the configuration, you need to re-import the feature to load your changes. You can do this with `drush`: ``` drush -y fim islandora_migrate_7x_claw_feature ``` -You can also use the UI to import the feature if you go to `admin/config/development/features` and click on the `Changed` link next to "Migrate 7x Claw Feature". +You can also use the UI to import the feature if you go +to `admin/config/development/features` and click on +the `Changed` link next to "Migrate 7x Claw Feature". +This requires the Migrate Tools module which is no longer installed by default since migrate commands were added to drush 10.x. ![Changed Link](docs/images/feature_click_changed.png) -From there, you can select all changes and clicking "Import Changes" +From there, you can select all changes and click "Import Changes" ![Import Changes](docs/images/feature_import_changes.png) @@ -132,7 +135,7 @@ Here's the original object in Islandora 7.x: ![Free Smells in 7x](docs/images/free_smells_in_7x.png) -And here it is in Islandora 8: +And here it is in Islandora 2: ![Free Smells in Islandora 8](docs/images/free_smells_in_claw.png) @@ -140,7 +143,7 @@ Clicking on the Media tab will reveal all of the datastreams migrated over from ![Free Smells Datastreams](docs/images/free_smells_datastreams.png) -And here they are in Islandora 8 as Media: +And here they are in Islandora 2 as Media: ![Free Smells Media](docs/images/free_smells_media.png) @@ -168,7 +171,7 @@ This starts the import process from the command line with the username and actio ```shell $ drush --uri=http://localhost:8000 --userid=1 -y migrate:import --group islandora_7x --update └─────────────────────────┘:└────────┘└─┘ └────────────┘ └──────────────────┘ └──────┘ -URL of Islandora 8 ───┘ │ │ │ │ │ +URL of Islandora 2 ───┘ │ │ │ │ │ User Numeric ID ──────────────────────┘ │ │ │ │ send yes to confirmation(optional) ────────────┘ │ │ │ Module and action ──────────────────────────────────────┘ │ │ From f0a38382bb62b35190be8e6acd33616c1c9cafac Mon Sep 17 00:00:00 2001 From: Alexander O'Neill Date: Wed, 22 Jun 2022 18:59:24 +0000 Subject: [PATCH 17/18] Remove UUID from exported config. --- .../config/install/migrate_plus.migration.islandora_objects.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/modules/islandora_migrate_7x_claw_feature/config/install/migrate_plus.migration.islandora_objects.yml b/modules/islandora_migrate_7x_claw_feature/config/install/migrate_plus.migration.islandora_objects.yml index 341ceaf..6fbed87 100644 --- a/modules/islandora_migrate_7x_claw_feature/config/install/migrate_plus.migration.islandora_objects.yml +++ b/modules/islandora_migrate_7x_claw_feature/config/install/migrate_plus.migration.islandora_objects.yml @@ -1,4 +1,3 @@ -uuid: 3715ee7f-e903-4c04-90e2-726051e67e1f langcode: en status: true dependencies: From 352d8cd04a269fcb79d128f9b203f4253df19f6d Mon Sep 17 00:00:00 2001 From: Alexander O'Neill Date: Wed, 22 Jun 2022 19:40:12 +0000 Subject: [PATCH 18/18] Add migrate_conditions dependency. --- composer.json | 5 +++-- migrate_7x_claw.info.yml | 1 + 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/composer.json b/composer.json index 3bd998f..8f2983a 100644 --- a/composer.json +++ b/composer.json @@ -1,10 +1,10 @@ { "name": "islandora/migrate_7x_claw", - "description": "Tools to assist in Islandora 7.x to CLAW migrations.", + "description": "Tools to assist in Islandora Classic 7.x to Islandora 2 migrations.", "type": "drupal-module", "homepage": "https://github.com/Islandora-Devops/migrate_7x_claw", "support": { - "issues": "https://github.com/Islandora-CLAW/CLAW/issues", + "issues": "https://github.com/Islandora-Devops/migrate_7x_claw/issues", "source": "https://github.com/Islandora-Devops/migrate_7x_claw" }, "license": "GPL-2.0-or-later", @@ -15,6 +15,7 @@ } ], "require": { + "drupal/migrate_conditions": "1.x@beta", "drupal/migrate_plus": "^5", "jonathangreen/tuque": "dev-master" }, diff --git a/migrate_7x_claw.info.yml b/migrate_7x_claw.info.yml index b669123..e557f3f 100644 --- a/migrate_7x_claw.info.yml +++ b/migrate_7x_claw.info.yml @@ -5,5 +5,6 @@ package: Islandora core_version_requirement: ^8 || ^9 dependencies: - drupal:migrate + - migrate_conditions:migrate_conditions - migrate_plus:migrate_plus configure: migrate_7x_claw.settings