* @version $Revision: 18172 $ */ class DcrawModule extends GalleryModule { function DcrawModule() { global $gallery; $this->setId('dcraw'); $this->setName($gallery->i18n('Dcraw')); $this->setDescription( $gallery->i18n('Graphics toolkit for processing images in raw format')); $this->setVersion('1.0.12'); $this->_templateVersion = 1; $this->setGroup('toolkits', $gallery->i18n('Graphics Toolkits')); $this->setCallbacks('getSiteAdminViews'); $this->setRequiredCoreApi(array(7, 20)); $this->setRequiredModuleApi(array(3, 6)); } /** * @see GalleryModule::performFactoryRegistrations */ function performFactoryRegistrations() { /* Register our graphics class with the factory */ $ret = GalleryCoreApi::registerFactoryImplementation( 'GalleryToolkit', 'DcrawToolkit', 'Dcraw', 'modules/dcraw/classes/DcrawToolkit.class', 'dcraw', null); if ($ret) { return $ret; } return null; } /** * @see GalleryModule::activate */ function activate($postActivationEvent=true) { global $gallery; GalleryCoreApi::requireOnce('modules/dcraw/classes/DcrawToolkitHelper.class'); list ($ret, $path) = $this->getParameter('path'); if ($ret) { return array($ret, null); } /* Detect the version of the binary (it may have changed since last activation) */ list ($ret, $testResults, $version) = DcrawToolkitHelper::testBinary($path); if ($ret) { return array($ret, null); } $ret = $this->setParameter('version', $version); if ($ret) { return array($ret, null); } list ($ret, $priority) = GalleryCoreApi::getToolkitPriorityById('Dcraw'); if ($ret) { return array($ret, null); } if (!$priority) { list ($ret, $priority) = GalleryCoreApi::getMaximumManagedToolkitPriority(); if ($ret) { return array($ret, null); } $priority = min($priority + 1, 40); } $mimeTypes = array('image/x-dcraw'); if (version_compare($version, '7', '>=')) { /* dcraw supports Adobe Digital Negative starting in v7.0 */ $mimeTypes[] = 'image/x-adobe-dng'; } $ret = GalleryCoreApi::registerToolkitOperation( 'Dcraw', $mimeTypes, 'convert-to-image/x-portable-pixmap', array(), $gallery->i18n('Convert to PPM'), 'image/x-portable-pixmap', $priority); if ($ret) { return array($ret, null); } $ret = GalleryCoreApi::registerToolkitProperty( 'Dcraw', $mimeTypes, 'dimensions', 'int,int', $gallery->i18n('Get the width and height of the image')); if ($ret) { return array($ret, null); } /* Assign all extensions we handle to our image mime type */ foreach (array('bay', 'bmq', 'cr2', 'crw', 'cs1', 'dc2', 'dcr', 'fff', 'k25', 'kdc', 'mos', 'mrw', 'nef', 'orf', 'pef', 'raf', 'rdc', 'srf', 'x3f', 'dng') as $extension) { $mimeType = ($extension == 'dng') ? 'image/x-adobe-dng' : 'image/x-dcraw'; $ret = GalleryCoreApi::addMimeType($extension, $mimeType, 0); if ($ret) { if (!($ret->getErrorCode() & ERROR_COLLISION)) { return array($ret, null); } } } list ($ret, $redirect) = parent::activate($postActivationEvent); if ($ret) { return array($ret, null); } return array(null, $redirect); } /** * @see GalleryModule::needsConfiguration */ function needsConfiguration() { /* This module requires exec() */ if (in_array('exec', split(',\s*', ini_get('disable_functions')))) { return array(null, true); } list ($ret, $path) = $this->getParameter('path'); if ($ret) { return array($ret, null); } list ($ret, $version) = $this->getParameter('version'); if ($ret) { return array($ret, null); } return array(null, empty($path) || empty($version)); } /** * @see GalleryModule::autoConfigure */ function autoConfigure() { global $gallery; /* This module requires exec() */ if (in_array('exec', split(',\s*', ini_get('disable_functions')))) { return array(null, false); } list ($ret, $needsConfiguration) = $this->needsConfiguration(); if ($ret) { return array($ret, false); } if (!$needsConfiguration) { return array(null, true); } /* Try a bunch of likely seeming paths to see if any of them work. */ $platform =& $gallery->getPlatform(); $slash = $platform->getDirectorySeparator(); /* * Start with system paths. Tack on a trailing slash if necessary, * then tack on other likely paths, based on our OS */ $paths = array(); if (GalleryUtilities::isA($platform, 'WinNtPlatform')) { foreach (explode(';', getenv('PATH')) as $path) { $path = trim($path); if (empty($path)) { continue; } if ($path{strlen($path)-1} != $slash) { $path .= $slash; } $paths[] = $path; } /* * Double-quoting the paths removes any ambiguity about the * double-slashes being escaped or not */ $paths[] = "C:\\Program Files\\Dcraw\\dcraw.exe"; $paths[] = "C:\\apps\Dcraw\\dcraw.exe"; $paths[] = "C:\\Dcraw\\dcraw.exe"; } else if (GalleryUtilities::isA($platform, 'UnixPlatform')) { foreach (explode(':', getenv('PATH')) as $path) { $path = trim($path); if (empty($path)) { continue; } if ($path{strlen($path)-1} != $slash) { $path .= $slash; } $paths[] = $path; } $paths[] = '/usr/bin/dcraw'; $paths[] = '/usr/local/bin/dcraw'; $paths[] = '/bin/dcraw'; $paths[] = '/sw/bin/dcraw'; } else { return array(null, false); } /* Load any classes we require */ GalleryCoreApi::requireOnce('modules/dcraw/classes/DcrawToolkitHelper.class'); /* Now try each path in turn to see which ones work */ foreach ($paths as $path) { list ($ret, $testResults, $version) = DcrawToolkitHelper::testBinary($path); if ($ret) { /* This path failed. Continue with the next one */ continue; } $failCount = 0; foreach ($testResults as $testResult) { /* All tests should work, else this path is not a valid one */ if (!$testResult['success']) { $failCount++; } } if ($failCount == 0) { /* We have a winner */ $ret = GalleryCoreApi::setPluginParameter('module', 'dcraw', 'path', $path); if ($ret) { return array($ret, false); } return array(null, true); } } return array(null, false); } /** * @see GalleryModule::getSiteAdminViews */ function getSiteAdminViews() { return array(null, array(array('name' => $this->translate('Dcraw'), 'view' => 'dcraw.AdminDcraw'))); } /** * @see GalleryModule::getConfigurationView */ function getConfigurationView() { return 'dcraw.AdminDcraw'; } } ?>