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:
<?php
namespace Affilinet\ProductData\Requests;
use Affilinet\ProductData\Exceptions\AffilinetProductWebserviceException;
use Affilinet\ProductData\Requests\Traits\ShopLogoTrait;
use Affilinet\ProductData\Requests\Traits\PaginationTrait;
use Affilinet\ProductData\Responses\ShopsResponse;
use Affilinet\ProductData\Responses\ShopsResponseInterface;
class ShopsRequest extends AbstractRequest implements ShopsRequestInterface
{
use ShopLogoTrait, PaginationTrait;
public function getEndpoint()
{
return 'https://product-api.affili.net/V3/productservice.svc/JSON/GetShopList';
}
public function send()
{
$psr7Request = $this->getPsr7Request();
$psr7Response = $this->getAffilinetClient()->getHttpClient()->send($psr7Request);
$response = new ShopsResponse($psr7Response);
return $response;
}
public function onlyShopsUpdatedAfter(\DateTime $date)
{
$this->queryParams['UpdatedAfter'] = $date->format('c');
return $this;
}
public function onlyShopsMatchingKeyword($keyword)
{
if (!is_scalar($keyword)) throw new \InvalidArgumentException('Parameter $keyword should be a string and must be scalar');
$this->queryParams['Query'] = $keyword;
return $this;
}
}