Magento 2: najlepsza praktyka dodawania / usuwania zdjęć produktów programowo?


18

Chcę przesłać zdjęcia do istniejących produktów. Obrazy są w import_dir. I należy je dodać do produktu, który już istnieje w katalogu.

Mogłem znaleźć tylko 2 sposoby, jak to zrobić.
1. Sposób „złej praktyki” - przy użyciu modelu produktu\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. Sposób „dobrej praktyki” - korzystanie z 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

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);

Obawy:

  • W 1 otrzymuję błąd, który jest znanym problemem

    Niezdefiniowany indeks: typ_media

  • W 2 jest zbyt skomplikowane i powinno być łatwiejsze

Pytania:

  • Czy istnieje metoda „najlepszych praktyk” do zarządzania (dodawania, usuwania, zastępowania) obrazami produktów?
  • Być może istnieje sposób z \ Magento \ CatalogImportExport \ Model \ Import \ Product

Odpowiedzi:


3

Można to zrobić na swój drugi sposób, mniej więcej tak:

<?php


namespace [vendor]\[moduleName]\Model\Adminhtml\Product\MediaGallery;

use \Magento\Catalog\Model\Product\Gallery\EntryFactory;
use \Magento\Catalog\Model\Product\Gallery\GalleryManagement;
use \Magento\Framework\Api\ImageContentFactory;

{

/**
 * @var \Magento\Catalog\Model\Product\Gallery\EntryFactory
 */
private $mediaGalleryEntryFactory;


/**
 * @var \Magento\Catalog\Model\Product\Gallery\GalleryManagement
 */
private $mediaGalleryManagement;


/**
 * @var \Magento\Framework\Api\ImageContentFactory
 */
private $imageContentFactory;


/**
 * @param \Magento\Catalog\Model\Product\Gallery\EntryFactory $mediaGalleryEntryFactory
 * @param \Magento\Catalog\Model\Product\Gallery\GalleryManagement $mediaGalleryManagement
 * @param \Magento\Framework\Api\ImageContentFactory $imageContentFactory
 */
public function __construct
(
    EntryFactory $mediaGalleryEntryFactory,
    GalleryManagement $mediaGalleryManagement,
    ImageContentFactory $imageContentFactory
)
{
    $this->mediaGalleryEntryFactory = $mediaGalleryEntryFactory;
    $this->mediaGalleryManagement = $mediaGalleryManagement;
    $this->imageContentFactory = $imageContentFactory;
}


/**
 * @param string $filePath
 * @param string $sku
 */
public function processMediaGalleryEntry($filePath, $sku)
{
    $entry = $this->mediaGalleryEntryFactory->create();

    $entry->setFile($filePath);
    $entry->setMediaType('image');
    $entry->setDisabled(false);
    $entry->setTypes(['thumbnail', 'image', 'small_image']);

    $imageContent = $this->imageContentFactory->create();
    $imageContent
        ->setType(mime_content_type($filePath))
        ->setName('test')
        ->setBase64EncodedData(base64_encode(file_get_contents($filePath)));

    $entry->setContent($imageContent);

    $this->mediaGalleryManagement->create($sku, $entry);
}

}

$filePathpowinna być ścieżką absolutną - być może możesz użyć constans BP.


smutne jest, że nie ma już dobrych sposobów na jego rozwiązanie, ponieważ jak powiedział @JakubIlczuk - jest bardzo ograniczony. O tej $entry->setMediaType('image');linii nie jestem do końca pewien, bo o ile pamiętam, spowodowało to błąd coś takiego, że potrzebuje typu „png” lub „jpg” (więc na końcu powinno to być „image / png”). Ale znowu nie jestem pewien
Olga Zhe

W Magento 2.1.1 nie powoduje takiego błędu.
Bartosz Kubicki,

Żadna z metod nie usuwa ani nie zastępuje. Tylko obserwacja.
Rooster242,

0

po spojrzeniu na te same rzeczy, co Ty najwyraźniej jestem w tym samym miejscu i nie mogę znaleźć lepszego sposobu niż ten 2. I te 2 są bardzo ograniczone. W testach funkcjonalnych używają prostej rzeczy product-> save (), która powoduje inne problemy (dla mnie osobiście url_key już istnieje błąd). Wydaje się, że można zastosować tylko drugą metodę, jakkolwiek skomplikowana i myląca. Ale zastanawiam się, czy w drugiej metodzie znalazłeś sposób, aby ustawić przesłane obrazy jako miniaturę lub mały obraz?

Korzystając z naszej strony potwierdzasz, że przeczytałeś(-aś) i rozumiesz nasze zasady używania plików cookie i zasady ochrony prywatności.
Licensed under cc by-sa 3.0 with attribution required.