1
0
Fork 0
mirror of synced 2025-04-03 22:03:34 +03:00

Add page limit for history

This commit is contained in:
dima-uryvskiy 2022-01-28 10:28:57 +03:00
parent a3a79ee9c5
commit 0cd06c1507
2 changed files with 38 additions and 7 deletions

View file

@ -112,19 +112,20 @@ if (!class_exists('WC_Retailcrm_History')) :
*/
protected function customersHistory($date, $sinceId)
{
$filter = array('startDate' => $date);
$filter = ['startDate' => $date];
if ($sinceId) {
$filter = array('sinceId' => $sinceId);
$filter = ['sinceId' => $sinceId];
}
$request = new WC_Retailcrm_Paginated_Request();
$history = $request
->setApi($this->retailcrm)
->setMethod('customersHistory')
->setParams(array($filter, '{{page}}'))
->setParams([$filter, '{{page}}'])
->setDataKey('history')
->setLimit(100)
->setPageLimit(25)
->execute()
->getData();
@ -200,20 +201,21 @@ if (!class_exists('WC_Retailcrm_History')) :
*/
protected function ordersHistory($date, $sinceId)
{
$filter = array('startDate' => $date);
$filter = ['startDate' => $date];
$options = array_flip(array_filter($this->retailcrmSettings));
if ($sinceId) {
$filter = array('sinceId' => $sinceId);
$filter = ['sinceId' => $sinceId];
}
$request = new WC_Retailcrm_Paginated_Request();
$history = $request
->setApi($this->retailcrm)
->setMethod('ordersHistory')
->setParams(array($filter, '{{page}}'))
->setParams([$filter, '{{page}}'])
->setDataKey('history')
->setLimit(100)
->setPageLimit(25)
->execute()
->getData();

View file

@ -43,6 +43,11 @@ class WC_Retailcrm_Paginated_Request
*/
private $data;
/**
* @var int|null
*/
private $pageLimit;
/**
* WC_Retailcrm_Paginated_Request constructor.
*/
@ -61,6 +66,7 @@ class WC_Retailcrm_Paginated_Request
public function setApi($api)
{
$this->api = $api;
return $this;
}
@ -74,6 +80,7 @@ class WC_Retailcrm_Paginated_Request
public function setMethod($method)
{
$this->method = $method;
return $this;
}
@ -87,6 +94,7 @@ class WC_Retailcrm_Paginated_Request
public function setParams($params)
{
$this->params = $params;
return $this;
}
@ -100,6 +108,7 @@ class WC_Retailcrm_Paginated_Request
public function setDataKey($dataKey)
{
$this->dataKey = $dataKey;
return $this;
}
@ -113,6 +122,21 @@ class WC_Retailcrm_Paginated_Request
public function setLimit($limit)
{
$this->limit = $limit;
return $this;
}
/**
* Sets page limit per call
*
* @param int $pageLimit
*
* @return self
*/
public function setPageLimit($pageLimit)
{
$this->pageLimit = $pageLimit;
return $this;
}
@ -129,7 +153,7 @@ class WC_Retailcrm_Paginated_Request
do {
$response = call_user_func_array(
array($this->api, $this->method),
[$this->api, $this->method],
$this->buildParams($this->params, $page)
);
@ -138,6 +162,10 @@ class WC_Retailcrm_Paginated_Request
$page = $response['pagination']['currentPage'] + 1;
}
if ($this->pageLimit !== null && $page > $this->pageLimit) {
break;
}
time_nanosleep(0, 300000000);
} while ($response && (isset($response['pagination'])
&& $response['pagination']['currentPage'] < $response['pagination']['totalPageCount']));
@ -164,6 +192,7 @@ class WC_Retailcrm_Paginated_Request
{
$this->method = '';
$this->limit = 100;
$this->pageLimit = null;
$this->data = array();
return $this;