Voglio caricare immagini sui prodotti esistenti. Le immagini sono dentro import_dir
. E devono essere aggiunti al prodotto che esiste già nel catalogo.
Ho trovato solo 2 modi per farlo.
1. Modo "Bad practice" - utilizzo del modello del prodotto\Magento\Catalog\Model\Product::addImageToMediaGallery
1. Copy the images from `import_dir` to `pub/media/tmp`
2. Add the images to the product
3. Save product
Codice
/* copy files from import_dir to pub/media/tmp */
/** @var \Magento\Catalog\Api\Data\ProductInterface $product */
/* Init media gallery */
$mediaGalleryEntries = $product->getMediaGalleryEntries();
if (empty($mediaGalleryEntries) === true){
$product->setMediaGalleryEntries([]);
}
/* Add an image to the product's gallery */
$product->addImageToMediaGallery(
$filePathFromTmpDir,
[
"image",
"small_image",
"thumbnail",
"swatch_image"
],
$moveImage,
$disableImage
);
/* Save */
$this->_productRepository->save($product);
2. Modo "buone pratiche" - utilizzo dell'API \Magento\Catalog\Api\ProductAttributeMediaGalleryManagementInterface::create
1. Create image content object via **\Magento\Framework\Api\Data\ImageContentInterfaceFactory**
2. Create image object via **\Magento\Catalog\Api\Data\ProductAttributeMediaGalleryEntryInterfaceFactory**
3. Create an image via API
Codice
$imageContent = $this->_imageContentInterfaceFactory->create()
->setBase64EncodedData(base64_encode(file_get_contents($filePathImportDir)))
->setType($this->_mime->getMimeType($filePathImportDir))
->setName($file_name);
$newImage = $this->_productAttributeMediaGalleryEntryInterfaceFactory->create()
->setMediaType(\Magento\Catalog\Model\Product\Attribute\Backend\Media\ImageEntryConverter::MEDIA_TYPE_CODE)
->setFile($filePathImportDir)
->setDisabled($disableImage)
->setContent($imageContent)
->setLabel('label');
$this->_productAttributeMediaGalleryManagement->create($product->getSku(), $newImage);
preoccupazioni:
- In 1 visualizzo un errore, che è noto problema
Indice indefinito: media_type
- In 2 è troppo complicato e dovrebbe essere il modo più semplice
Domande:
- Esiste un modo "best practice" per gestire (aggiungere, rimuovere, sostituire) le immagini del prodotto?
- Forse c'è un modo con \ Magento \ CatalogImportExport \ Model \ Import \ Product
$entry->setMediaType('image');
linea non sono del tutto sicuro, perché per quanto mi ricordi mi ha causato un errore qualcosa del genere che ha bisogno di un tipo "png" o "jpg" (quindi alla fine dovrebbe essere "image / png"). Ma ancora una volta, non sono sicuro