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:
<?php
namespace Affilinet\ProductData\Requests;
use Affilinet\ProductData\AffilinetClient;
use Affilinet\ProductData\Exceptions\AffilinetProductWebserviceException;
use Affilinet\ProductData\Requests\Traits\PaginationTrait;
use Affilinet\ProductData\Responses\CategoriesResponse;
use Affilinet\ProductData\Responses\CategoriesResponseInterface;
use Doctrine\Instantiator\Exception\InvalidArgumentException;
class CategoriesRequest extends AbstractRequest implements CategoriesRequestInterface
{
use PaginationTrait;
public function getEndpoint()
{
return 'https://product-api.affili.net/V3/productservice.svc/JSON/GetCategoryList';
}
public function __construct(AffilinetClient $affilinetClient)
{
parent::__construct($affilinetClient);
$this->queryParams['ShopId'] = 0;
}
public function send()
{
$psr7Request = $this->getPsr7Request();
$psr7Response = $this->getAffilinetClient()->getHttpClient()->send($psr7Request);
$response = new CategoriesResponse($psr7Response);
return $response;
}
public function setShopId($shopId = 0)
{
if (!is_integer($shopId) && $shopId !== 0) {
throw new InvalidArgumentException('$shopId must be an integer value or 0');
}
$this->queryParams['ShopId'] = $shopId;
return $this;
}
public function getAffilinetCategories()
{
$this->queryParams['ShopId'] = 0;
return $this;
}
}