Cara mengunggah lampiran file ke atribut produk khusus menggunakan Magento SOAP

8

Ini terkait dengan pertanyaan saya; cara-untuk-mendapatkan-produk-file-lampiran

Saya ingin membuat skrip (bukan di server) yang dapat memanfaatkan Intellimage_Attachsmodul dalam pertanyaan saya yang lain.

Saya akan menggunakan SABUN Magento jika memungkinkan.

Masalah yang saya alami saat ini adalah saya tidak bisa mendapatkan / menempatkan / memperbarui / kami produk "sampel / file".

return $this->handle->call($this->session,'product_custom_option.list', "productnamehere ");

Membawa kembali array kosong pada produk yang saya punya lampiran pada :(! Jelas menggunakan panggilan sabun yang salah, mana yang akan menjadi yang benar? (Karena product_custom_option.listsalah, fungsi saya berfungsi dengan baik dengan panggilan lain.)

MEMPERBARUI

mencoba:

return $this->handle->call($this->session, 'product_downloadable_link.list', array( $sku . " "));

Tetapi tidak akan berfungsi karena produk tersebut bukan produk yang dapat diunduh, meskipun mereka gunakan samples.

Robert Pounder
sumber
masalah pada satu-satunya produk yang dapat diunduh?
Abdul
Mengira Anda salah paham, tidak ada produk yang dapat diunduh. Semua produk fisik tetapi tidak bisa mendapatkan sampel unduhan untuk mereka melalui sabun.
Robert Pounder
amasty.com/product-attachments.html Akan melakukan semua yang Anda butuhkan, dan memberikan akses API.
B00MER
terima kasih atas info tetapi lebih memilih untuk menyortirnya sendiri daripada membeli ekstensi dan file sudah terintegrasi, alasan saya mencoba memilah otomatisasi adalah karena itu adalah rasa sakit untuk pergi melalui admin magento untuk memperbarui file, seperti yang disebutkan sebelumnya Saya punya solusi dengan tabel SQL jadi saya akan melakukannya sebelum membeli ekstensi
Robert Pounder

Jawaban:

2

Dalam kasus Anda, Anda perlu menerapkan titik akhir API SOAP khusus. Untungnya Anda dapat menggunakan kembali implementasi API Produk yang Dapat Diunduh.

Jika Anda membuat semua file yang tercantum di bawah ini, Anda akan memiliki API SOAP V2 baru yang tersedia: catalogProductAttachLinkList . Untuk mengaktifkan metode add / remove, cukup porting dari app / code / core / Mage / Diunduh / Model / Link / Api.php ke app / kode / komunitas / Intellimage / Attachs / Model / Link / Api.php .

Untuk menguji API baru jalankan salah satu dari yang berikut:

<?php
/* SOAP V2 Style */
$client = new SoapClient('http://simple-magento-vagrant.dev/index.php/api/v2_soap/?wsdl');
$sessionId = $client->login('apiUser', 'apiKey');
$productId = 1;
$result = $client->catalogProductAttachLinkList($sessionId, $productId);
print_r($result);

/* SOAP V1 style. If you want to use this style, you may skip creation of custom wsdl.xml and Api/V2.php files proposed below. Adding api.xml and Api.php will be enough */
$client = new SoapClient('http://simple-magento-vagrant.dev/index.php/api/soap/?wsdl');
$sessionId = $client->login('apiUser', 'apiKey');
$productId = 1;
$result = $client->call($sessionId, 'attach_link.list', [$productId]);
print_r($result);

File yang akan ditambahkan ke modul Anda:

app / code / community / Intellimage / Attachs / etc / api.xml

<?xml version="1.0"?>
<config>
    <api>
        <resources>
            <catalog_product_attach_link translate="title" module="intellimage_attachs">
                <model>attachs/link_api</model>
                <title>Category API</title>
                <acl>downloadable/link</acl>
                <methods>
                    <list translate="title" module="intellimage_attachs">
                        <title>Retrieve links and samples list from attach product</title>
                        <method>items</method>
                        <acl>downloadable/link/list</acl>
                    </list>
                </methods>
            </catalog_product_attach_link>
        </resources>
        <resources_alias>
            <attach_link>catalog_product_attach_link</attach_link>
        </resources_alias>
        <v2>
            <resources_function_prefix>
                <attach_link>catalogProductAttachLink</attach_link>
            </resources_function_prefix>
        </v2>
    </api>
</config>

app / code / community / Intellimage / Attachs / etc / wsdl.xml (Harap dicatat, bahwa wsi.xml harus dibuat jika kompatibilitas SOAP V2 WS-I diperlukan)

<?xml version="1.0"?>
<config>
    <api>
        <resources>
            <catalog_product_attach_link translate="title" module="intellimage_attachs">
                <model>attachs/link_api</model>
                <title>Category API</title>
                <acl>downloadable/link</acl>
                <methods>
                    <list translate="title" module="intellimage_attachs">
                        <title>Retrieve links and samples list from attach product</title>
                        <method>items</method>
                        <acl>downloadable/link/list</acl>
                    </list>
                </methods>
            </catalog_product_attach_link>
        </resources>
        <resources_alias>
            <attach_link>catalog_product_attach_link</attach_link>
        </resources_alias>
        <v2>
            <resources_function_prefix>
                <attach_link>catalogProductAttachLink</attach_link>
            </resources_function_prefix>
        </v2>
    </api>
</config>

app / code / community / Intellimage / Attachs / Model / Link / Api / V2.php

<?php

class Intellimage_Attachs_Model_Link_Api_V2 extends Intellimage_Attachs_Model_Link_Api
{
    protected function _prepareData(&$var)
    {
        if (is_object($var)) {
            $var = get_object_vars($var);
            foreach ($var as $key => &$value) {
                $this->_prepareData($value);
            }
        }
    }

    public function add($productId, $resource, $resourceType, $store = null, $identifierType = null)
    {
        $this->_prepareData($resource);
        return parent::add($productId, $resource, $resourceType, $store, $identifierType);
    }
}

app / code / community / Intellimage / Attachs / Model / Link / Api.php

   <?php
    class Intellimage_Attachs_Model_Link_Api extends Mage_Catalog_Model_Api_Resource
    {
        public function items($productId, $store = null, $identifierType = null)
        {
            $product = parent::_getProduct($productId, $store, $identifierType);
            $typeInstance = $product->getTypeInstance(true);
            $product->setTypeInstance(Mage::getModel('attachs/product_type', $typeInstance), true);

            $linkArr = array();
            $links = $product->getTypeInstance(true)->getSamples($product);
            $downloadHelper = Mage::helper('downloadable');
            foreach ($links as $item) {
                $tmpLinkItem = array(
                    'link_id' => $item->getId(),
                    'title' => $item->getTitle(),
                    'price' => $item->getPrice(),
                    'number_of_downloads' => $item->getNumberOfDownloads(),
                    'is_shareable' => $item->getIsShareable(),
                    'link_url' => $item->getLinkUrl(),
                    'link_type' => $item->getLinkType(),
                    'sample_file' => $item->getSampleFile(),
                    'sample_url' => $item->getSampleUrl(),
                    'sample_type' => $item->getSampleType(),
                    'sort_order' => $item->getSortOrder()
                );
                $file = Mage::helper('downloadable/file')->getFilePath(
                    Mage_Downloadable_Model_Link::getBasePath(), $item->getLinkFile()
                );

                if ($item->getLinkFile() && !is_file($file)) {
                    Mage::helper('core/file_storage_database')->saveFileToFilesystem($file);
                }

                if ($item->getLinkFile() && is_file($file)) {
                    $name = Mage::helper('downloadable/file')->getFileFromPathFile($item->getLinkFile());
                    $tmpLinkItem['file_save'] = array(
                        array(
                            'file' => $item->getLinkFile(),
                            'name' => $name,
                            'size' => filesize($file),
                            'status' => 'old'
                        ));
                }
                $sampleFile = Mage::helper('downloadable/file')->getFilePath(
                    Mage_Downloadable_Model_Link::getBaseSamplePath(), $item->getSampleFile()
                );
                if ($item->getSampleFile() && is_file($sampleFile)) {
                    $tmpLinkItem['sample_file_save'] = array(
                        array(
                            'file' => $item->getSampleFile(),
                            'name' => Mage::helper('downloadable/file')->getFileFromPathFile($item->getSampleFile()),
                            'size' => filesize($sampleFile),
                            'status' => 'old'
                        ));
                }
                if ($item->getNumberOfDownloads() == '0') {
                    $tmpLinkItem['is_unlimited'] = 1;
                }
                if ($product->getStoreId() && $item->getStoreTitle()) {
                    $tmpLinkItem['store_title'] = $item->getStoreTitle();
                }
                if ($product->getStoreId() && $downloadHelper->getIsPriceWebsiteScope()) {
                    $tmpLinkItem['website_price'] = $item->getWebsitePrice();
                }
                $linkArr[] = $tmpLinkItem;
            }
            unset($item);
            unset($tmpLinkItem);
            unset($links);

            $samples = $product->getTypeInstance(true)->getSamples($product)->getData();
            return array('links' => $linkArr, 'samples' => $samples);
        }
    }
Alex Paliarush
sumber
bagus, akan menerima dan karunia sekali diuji, mungkin akan besok meskipun pertarungan!
Robert Pounder
Tentu, beri tahu saya jika Anda memiliki pertanyaan tentang ini. Juga, tambahkan tag 'api' dan 'sabun' ke pertanyaan.
Alex Paliarush
0

Ok jadi saya telah datang dengan jawaban saya sendiri, tetapi benar-benar berharap mereka adalah cara yang lebih rapi dalam melakukan ini, walaupun cara ini secara mengejutkan mudah diimplementasikan;

2 tabel SQL yang digunakan adalah; downloadable_sample downloadable_sample_title

Namun saya lebih suka untuk tidak langsung mengakses magento sql dan berharap akan ada cara yang dilakukan di dalam.

Robert Pounder
sumber
0

Silakan coba kode di bawah ini untuk mengunggah lampiran file menggunakan Magento SOAP API V2

try {
    $client = new SoapClient('http://magentohost/api/v2_soap/?wsdl'); // api url
    $sessionId = $client->login('test123', 'test123'); // API user name & key 
    $resource = array(
        'title' => 'link_2',
        'price' => '11.99',
        'type' => 'file',
        'file' => array(
            'name' => 'file_test',
            'base64_content' => '/9j/4AAQSkZJRgABAQEAYABgAAD/2wBDAAIBAQIBAQICAgICAgICAwUDAwMDAwYEBAMFBwYHBwcGBwcICQsJCAgKCAcHCg0KCgsMDAwMBwkODw0MDgsMDAz/2wBDAQICAgMDAwYDAwYMCAcIDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAz/wAARCAAXABcDASIAAhEBAxEB/8QAHwAAAQUBAQEBAQEAAAAAAAAAAAECAwQFBgcICQoL/8QAtRAAAgEDAwIEAwUFBAQAAAF9AQIDAAQRBRIhMUEGE1FhByJxFDKBkaEII0KxwRVS0fAkM2JyggkKFhcYGRolJicoKSo0NTY3ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uHi4+Tl5ufo6erx8vP09fb3+Pn6/8QAHwEAAwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoL/8QAtREAAgECBAQDBAcFBAQAAQJ3AAECAxEEBSExBhJBUQdhcRMiMoEIFEKRobHBCSMzUvAVYnLRChYkNOEl8RcYGRomJygpKjU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6goOEhYaHiImKkpOUlZaXmJmaoqOkpaanqKmqsrO0tba3uLm6wsPExcbHyMnK0tPU1dbX2Nna4uPk5ebn6Onq8vP09fb3+Pn6/9oADAMBAAIRAxEAPwDLooor8XP4DCiiigAooooAKKKKAP/Z'
        )
    );
    $resourceType = 'link';
    $productId =  '4607';
    $result = $client->catalogProductDownloadableLinkAdd($sessionId, $productId, $resource, $resourceType);
}
catch (Exception $e) {
   echo $e->getMessage();
}
print_r($result);
Abdul
sumber