AllSoapAndRest.php 2.28 KB
Newer Older
Ketan's avatar
Ketan committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86
<?php
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
namespace Magento\TestModule1\Service\V2;

use Magento\TestModule1\Service\V2\Entity\Item;
use Magento\TestModule1\Service\V2\Entity\ItemFactory;

class AllSoapAndRest implements \Magento\TestModule1\Service\V2\AllSoapAndRestInterface
{
    /**
     * @var ItemFactory
     */
    protected $itemFactory;

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

    /**
     * {@inheritdoc}
     */
    public function item($id)
    {
        return $this->itemFactory->create()->setId($id)->setName('testProduct1')->setPrice('1');
    }

    /**
     * {@inheritdoc}
     */
    public function items($filters = [], $sortOrder = 'ASC')
    {
        $result = [];
        $firstItem = $this->itemFactory->create()->setId(1)->setName('testProduct1')->setPrice('1');
        $secondItem = $this->itemFactory->create()->setId(2)->setName('testProduct2')->setPrice('2');

        /** Simple filtration implementation */
        if (!empty($filters)) {
            /** @var \Magento\Framework\Api\Filter $filter */
            foreach ($filters as $filter) {
                if ('id' == $filter->getField() && $filter->getValue() == 1) {
                    $result[] = $firstItem;
                } elseif ('id' == $filter->getField() && $filter->getValue() == 2) {
                    $result[] = $secondItem;
                }
            }
        } else {
            /** No filter is specified. */
            $result = [$firstItem, $secondItem];
        }
        return $result;
    }

    /**
     * {@inheritdoc}
     */
    public function create($name)
    {
        return $this->itemFactory->create()->setId(rand())->setName($name)->setPrice('10');
    }

    /**
     * {@inheritdoc}
     */
    public function update(Item $entityItem)
    {
        return $this->itemFactory->create()
            ->setId($entityItem->getId())
            ->setName('Updated' . $entityItem->getName())
            ->setPrice('5');
    }

    /**
     * {@inheritdoc}
     */
    public function delete($id)
    {
        return $this->itemFactory->create()->setId($id)->setName('testProduct1')->setPrice('1');
    }
}