

3 changed files with 115 additions and 45 deletions
@ -1,56 +1,60 @@ |
|||||||
# Islandora FITS |
# Islandora FITS |
||||||
Config module to make Islandora aware of FITS microservice |
Config module to make Islandora aware of FITS microservice |
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## Installation |
## Installation |
||||||
#### Install this module |
#### Install this module |
||||||
Install and enable this module in the usual way. On installation the module will |
Install and enable this module in the usual way. On installation the module will |
||||||
add a context causing the creation of A FITs media when an Original File media is ingested. |
add a context causing the creation of A FITS media when an Original File media is ingested; however, this process is |
||||||
|
predicated on the existence of an `islandora_media_use` term with an external URI of `https://projects.iq.harvard. |
||||||
|
edu/fits`--the `islandora_fits_tags` migration might be executed to create such a term. |
||||||
|
|
||||||
#### Install FITS Webservice |
#### Install FITS Webservice |
||||||
FITS xmls are generated from an easily installed web service. |
FITS XMLs are generated from an easily installed web service. |
||||||
Get the latest fits.zip and fits.war from https://projects.iq.harvard.edu/fits/downloads |
Get the latest fits.zip and fits.war from https://projects.iq.harvard.edu/fits/downloads |
||||||
(on my box I had to install a missing zip library with |
(on my box I had to install a missing zip library with |
||||||
‘sudo apt-get install php7.1-zip’) |
‘sudo apt-get install php7.1-zip’) |
||||||
|
|
||||||
Install following their instructions. |
Install following their instructions. |
||||||
Copy the .war file to your webapps directory and test. |
Copy the `.war` file to your webapps directory and test. |
||||||
Edit the catalina.properties file on the Drupal server by adding the |
Edit the `catalina.properties` file on the Drupal server by adding the |
||||||
following two lines to the bottom of the file- |
following two lines to the bottom of the file: |
||||||
|
|
||||||
|
```properties |
||||||
fits.home=/\<path-to-fits>/fits |
fits.home=/\<path-to-fits>/fits |
||||||
|
|
||||||
shared.loader=/\<path-to-fits>/fits/lib/*.jar |
shared.loader=/\<path-to-fits>/fits/lib/*.jar |
||||||
|
``` |
||||||
|
|
||||||
Restart Tomcat and test with |
Restart Tomcat and test with: |
||||||
|
```bash |
||||||
`curl -k -F datafile="@/path/to/myfile.jpg" http://example.com:8080/fits/examine` |
curl -k -F datafile="@/path/to/myfile.jpg" http://example.com:8080/fits/examine |
||||||
|
``` |
||||||
(note: the ‘@’ is required.) |
(note: the ‘@’ is required.) |
||||||
|
|
||||||
#### Installing Microservice |
#### Installing Microservice |
||||||
Get code from https://github.com/roblib/CrayFits and install. This code can live anywhere, including an external server, |
Get code from https://github.com/roblib/CrayFits and install. This code can live anywhere, including an external server, |
||||||
but most installations will have it at /var/www/html. |
but most installations will have it at `/var/www/html`. |
||||||
|
|
||||||
The App runs by entering php bin/console server:start *:8050 in the App |
The App runs by entering: |
||||||
root folder. |
```bash |
||||||
The server is stopped with php bin/console server:stop. |
php bin/console server:start *:8050 |
||||||
On a production machine you'd probably want to configure an additional |
``` |
||||||
|
in the App root folder. |
||||||
|
The server is stopped with: |
||||||
|
```bash |
||||||
|
php bin/console server:stop |
||||||
|
``` |
||||||
|
On a production machine you'd probably want to configure an additional |
||||||
port in Apache. |
port in Apache. |
||||||
|
|
||||||
|
Note: The location of the FITS webserver is stored in the `.env` file in the |
||||||
Note: The location of the fits webserver is stored in the .env file in the |
root dir of the Symfony app. This will have to be reconfigured if the FITS |
||||||
root dir of the Symfony app. This will have to be reconfigured if the Fits |
server is anywhere other than `localhost:8080/fits` |
||||||
server is anywhere other than localhost:8080/fits |
|
||||||
|
|
||||||
|
|
||||||
#### Adding FITs requests to the queue |
#### Adding FITs requests to the queue |
||||||
Copy the file `assets/ca.islandora.alpaca.connector.ocr.blueprint.xml` |
Copy the file `assets/ca.islandora.alpaca.connector.ocr.blueprint.xml` |
||||||
to `/opt/karak/deploy` on your server. There is no need to restart. |
to `/opt/karak/deploy` on your server. There is no need to restart. |
||||||
|
|
||||||
|
|
||||||
#### Adding Checksum to Display |
#### Adding Checksum to Display |
||||||
A pseudo field with the computed checksum can be added to Repository Item |
A pseudo field with the computed checksum can be added to Repository Item |
||||||
display. Navigate to `admin/structure/types/manage/islandora_object/display` |
display. Navigate to `admin/structure/types/manage/islandora_object/display` |
||||||
to enable or disable display of `File Checksum`. |
to enable or disable display of `File Checksum`. |
||||||
|
@ -0,0 +1,25 @@ |
|||||||
|
--- |
||||||
|
id: islandora_fits_tags |
||||||
|
migration_tags: |
||||||
|
- islandora |
||||||
|
migration_group: islandora |
||||||
|
label: "FITS Term(s)" |
||||||
|
source: |
||||||
|
plugin: embedded_data |
||||||
|
data_rows: |
||||||
|
- vid: islandora_media_use |
||||||
|
name: FITS File |
||||||
|
description: Technical Metadata associated with an original media file |
||||||
|
uri: https://projects.iq.harvard.edu/fits |
||||||
|
ids: |
||||||
|
uri: |
||||||
|
type: string |
||||||
|
process: |
||||||
|
vid: vid |
||||||
|
name: name |
||||||
|
description: description |
||||||
|
field_external_uri/uri: uri |
||||||
|
destination: |
||||||
|
plugin: entity:taxonomy_term |
||||||
|
migration_dependencies: |
||||||
|
required: { } |
Loading…
Reference in new issue