1
0
mirror of synced 2024-11-21 12:56:08 +03:00

Added support for POST /api/v5/store/products/api/v5/customers/{externalId}/subscriptions

This commit is contained in:
Uryvskiy Dima 2024-09-26 10:23:40 +03:00 committed by GitHub
commit 3c316cfae9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 83 additions and 0 deletions

View File

@ -141,4 +141,45 @@ trait Customers
"POST"
);
}
/**
* Update subscriptions a customer
*
* @param array $subscriptions subscriptions data
* @param integer $customerId identifier customer
* @param string $by (default: 'externalId')
* @param string|null $site (default: null)
*
* @throws \InvalidArgumentException
* @throws \RetailCrm\Exception\InvalidJsonException
* @throws \RetailCrm\Exception\CurlException
*
* @return \RetailCrm\Response\ApiResponse
*/
public function customerSubscriptionsUpdate(array $subscriptions, $customerId, $by = 'externalId', $site = null)
{
if (!count($subscriptions)) {
throw new \InvalidArgumentException(
'Parameter `subscriptions` must contains a data'
);
}
if ($customerId === null || $customerId === '') {
throw new \InvalidArgumentException(
'Parameter `customerId` is empty'
);
}
$this->checkIdParameter($by);
/* @noinspection PhpUndefinedMethodInspection */
return $this->client->makeRequest(
sprintf('/customers/%s/subscriptions', $customerId),
'POST',
$this->fillSite(
$site,
['subscriptions' => json_encode($subscriptions), 'by' => $by]
)
);
}
}

View File

@ -11,6 +11,7 @@
namespace RetailCrm\Tests\Methods\Version5;
use RetailCrm\Response\ApiResponse;
use RetailCrm\Test\TestCase;
/**
@ -441,4 +442,45 @@ class ApiClientCustomersTest extends TestCase
static::assertTrue($responseDelete->isSuccessful(), 'Note deleted');
static::assertEquals(200, $responseDelete->getStatusCode());
}
public function testCustomerSubscriptionsUpdate()
{
$clientMock = $this->getMockBuilder(\RetailCrm\Http\Client::class)
->disableOriginalConstructor()
->setMethods(['makeRequest'])
->getMock()
;
$parameters = [
'subscriptions' => [
[
'channel' => 'email',
'active' => false
]
],
'by' => 'externalId',
'site' => 'test'
];
$clientMock->expects(self::once())->method('makeRequest')->with(
'/customers/123/subscriptions',
'POST',
[
'subscriptions' => json_encode($parameters['subscriptions']),
'by' => $parameters['by'],
'site' => $parameters['site']
]
)->willReturn((new ApiResponse(200, json_encode(['success' => true])))->asJsonResponse());
$client = static::getMockedApiClient($clientMock);
$response = $client->request->customerSubscriptionsUpdate(
$parameters['subscriptions'],
123,
$parameters['by'],
$parameters['site']
);
static::assertTrue($response->isSuccessful());
}
}