Files
ezmigrationbundle/Core/FieldHandler/EzImage.php
2019-04-10 12:43:40 +00:00

76 lines
2.5 KiB
PHP

<?php
namespace Kaliop\eZMigrationBundle\Core\FieldHandler;
use eZ\Publish\Core\FieldType\Image\Value as ImageValue;
use Kaliop\eZMigrationBundle\API\FieldValueConverterInterface;
class EzImage extends FileFieldHandler implements FieldValueConverterInterface
{
/**
* Creates a value object to use as the field value when setting an image field type.
*
* @param array|string $fieldValue The path to the file or an array with 'path' and 'alt_text' keys
* @param array $context The context for execution of the current migrations. Contains f.e. the path to the migration
* @return ImageValue
*
* @todo resolve refs more
*/
public function hashToFieldValue($fieldValue, array $context = array())
{
$altText = '';
$fileName = '';
if ($fieldValue === null) {
return new ImageValue();
} else if (is_string($fieldValue)) {
$filePath = $fieldValue;
} else {
$filePath = $fieldValue['path'];
if (isset($fieldValue['alt_text'])) {
$altText = $fieldValue['alt_text'];
}
if (isset($fieldValue['filename'])) {
$fileName = $fieldValue['filename'];
}
}
// default format: path is relative to the 'images' dir
$realFilePath = dirname($context['path']) . '/images/' . $filePath;
// but in the past, when using a string, this worked as well as an absolute path, so we have to support it as well
if (!is_file($realFilePath) && is_file($filePath)) {
$realFilePath = $filePath;
}
return new ImageValue(
array(
'path' => $realFilePath,
'fileSize' => filesize($realFilePath),
'fileName' => $fileName != '' ? $fileName : basename($realFilePath),
'alternativeText' => $altText
)
);
}
/**
* @param \eZ\Publish\Core\FieldType\Image\Value $fieldValue
* @param array $context
* @return array
*
* @todo check out if this works in ezplatform
*/
public function fieldValueToHash($fieldValue, array $context = array())
{
if ($fieldValue->uri == null) {
return null;
}
return array(
'path' => realpath($this->ioRootDir) . '/' . ($this->ioDecorator ? $this->ioDecorator->undecorate($fieldValue->uri) : $fieldValue->uri),
'filename'=> $fieldValue->fileName,
'alternativeText' => $fieldValue->alternativeText
);
}
}