Mevcut ürünlere resim yüklemek istiyorum. Görüntüler var import_dir
. Ve zaten katalogda bulunan ürüne eklenmeleri gerekiyor.
Bunu yapmanın sadece 2 yolunu bulabilirim.
1. "Kötü uygulama" yolu - ürün modelini kullanma\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
kod
/* 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. "İyi uygulama" yolu - API kullanarak \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
kod
$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);
Endişeler:
- In 1 Ben bir hata, alıyorum bilinen sorun
Tanımsız dizin: media_type
- In 2 yol çok karmaşıktır ve daha kolay bir yolu olmalı
Sorular:
- Ürün resimlerini yönetmenin (ekleme, kaldırma, değiştirme) "en iyi uygulama" yolu var mı?
- Belki \ Magento \ CatalogueImportExport \ Model \ Import \ Product ile bir yol var
$entry->setMediaType('image');
çizgi hakkında pek emin değilim, çünkü hatırladığım kadarıyla bana bir tür "png" veya "jpg" gibi bir hataya neden oldu (bu yüzden sonunda "image / png" olmalıdır). Ama yine, emin değilim