Spamworldpro Mini Shell
Spamworldpro


Server : Apache
System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64
User : corals ( 1002)
PHP Version : 7.4.33
Disable Function : exec,passthru,shell_exec,system
Directory :  /home/corals/old/vendor/magento/module-adobe-stock-image/Model/Extract/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/corals/old/vendor/magento/module-adobe-stock-image/Model/Extract/MediaGalleryAsset.php
<?php
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
declare(strict_types=1);

namespace Magento\AdobeStockImage\Model\Extract;

use Magento\Framework\Api\Search\Document;
use Magento\MediaGalleryApi\Api\Data\AssetInterface;
use Magento\MediaGalleryApi\Api\Data\AssetInterfaceFactory;

/**
 * Media gallery asset extractor
 */
class MediaGalleryAsset
{
    /**
     * @var AssetInterfaceFactory
     */
    private $assetFactory;

    /**
     * @param AssetInterfaceFactory $assetFactory
     */
    public function __construct(
        AssetInterfaceFactory $assetFactory
    ) {
        $this->assetFactory = $assetFactory;
    }

    /**
     * Convert search document to the asset object
     *
     * @param Document $document
     * @param array $additionalData
     * @return AssetInterface
     */
    public function convert(Document $document, array $additionalData = []): AssetInterface
    {
        $assetData = [];
        foreach ($document->getCustomAttributes() as $attribute) {
            $assetData[$attribute->getAttributeCode()] = $attribute->getValue();
        }

        foreach ($additionalData as $key => $value) {
            $assetData[$key] = $value;
        }

        return $this->assetFactory->create([
            'id' => $assetData['id'],
            'path' => $assetData['path'],
            'title' => $assetData['title'],
            'description' => $assetData['description'],
            'source' => $assetData['source'],
            'hash' => $assetData['hash'],
            'contentType' => $assetData['content_type'],
            'width' => $assetData['width'],
            'height' => $assetData['height'],
            'size' => $assetData['size']
        ]);
    }
}

Spamworldpro Mini