Your IP : 216.73.216.43


Current Path : /proc/thread-self/root/home/rtorresani/www/vendor/stripe/module-payments/Model/Stripe/
Upload File :
Current File : //proc/thread-self/root/home/rtorresani/www/vendor/stripe/module-payments/Model/Stripe/Product.php

<?php

namespace StripeIntegration\Payments\Model\Stripe;

class Product extends StripeObject
{
    protected $objectSpace = 'products';

    public function fromData($id, $name, $metadata = null)
    {
        $data = [
            'name' => $name
        ];

        if (!empty($metadata))
        {
            $data['metadata'] = $metadata;
        }

        $this->upsert($id, $data);

        if (!$this->object)
            throw new \Magento\Framework\Exception\LocalizedException(__("The product could not be created in Stripe: %1", $this->lastError));

        return $this;
    }

    public function fromOrderItem($orderItem)
    {
        $data = [
            'name' => $orderItem->getName()
        ];

        $this->upsert($orderItem->getProductId(), $data);

        if (!$this->object)
            throw new \Magento\Framework\Exception\LocalizedException(__("The product \"%1\" could not be created in Stripe: %2", $orderItem->getName(), $this->lastError));

        return $this;
    }

    public function fromQuoteItem($quoteItem)
    {
        return $this->fromOrderItem($quoteItem);
    }
}