|
|
@ -41,15 +41,17 @@ class fits { |
|
|
|
* @return type |
|
|
|
* @return type |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
function extractFits($parameterArray, $dsid, $file, $file_ext) { |
|
|
|
function extractFits($parameterArray, $dsid, $file, $file_ext) { |
|
|
|
|
|
|
|
if (variable_get('enable_fits', TRUE) == 1) { |
|
|
|
$file_name = '_' . $dsid . '.xml'; |
|
|
|
$file_name = '_' . $dsid . '.xml'; |
|
|
|
$output = array(); |
|
|
|
$output = array(); |
|
|
|
exec('fits.sh -i ' . escapeshellarg($file) . '', $output); |
|
|
|
exec(variable_get('fits_path', '/usr/local/bin/fits.sh') .' -i ' . escapeshellarg($file) . '', $output); |
|
|
|
if ( !file_put_contents($file . $file_name, implode("\n", $output)) ) { |
|
|
|
if ( !file_put_contents($file . $file_name, implode("\n", $output)) ) { |
|
|
|
exit("Error writing file: ". $file_name); |
|
|
|
exit("Error writing file: ". $file.$file_name); |
|
|
|
} |
|
|
|
} |
|
|
|
$_SESSION['fedora_ingest_files']["$dsid"] = $file . $file_name; |
|
|
|
$_SESSION['fedora_ingest_files']["$dsid"] = $file . $file_name; |
|
|
|
return TRUE; |
|
|
|
return TRUE; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
/** |
|
|
|
* display metadata |
|
|
|
* display metadata |
|
|
|