Skip to content
Snippets Groups Projects
Commit 1b80a5f9 authored by Ere Maijala's avatar Ere Maijala Committed by Robert Lange
Browse files

Add pagination support to getUserTransactions (#1739)

- This allows the call to return proper data when checkouts are paged, even if slowly.
parent 972f87d0
Branches
Tags
No related merge requests found
...@@ -40,6 +40,13 @@ use Laminas\Mvc\Controller\Plugin\Params; ...@@ -40,6 +40,13 @@ use Laminas\Mvc\Controller\Plugin\Params;
*/ */
class GetUserTransactions extends AbstractIlsAndUserAction class GetUserTransactions extends AbstractIlsAndUserAction
{ {
/**
* Paginator
*
* @var \VuFind\ILS\PaginationHelper
*/
protected $paginator = null;
/** /**
* Handle a request. * Handle a request.
* *
...@@ -57,25 +64,64 @@ class GetUserTransactions extends AbstractIlsAndUserAction ...@@ -57,25 +64,64 @@ class GetUserTransactions extends AbstractIlsAndUserAction
if (!$this->ils->checkCapability('getMyTransactions')) { if (!$this->ils->checkCapability('getMyTransactions')) {
return $this->formatResponse('', self::STATUS_HTTP_ERROR, 405); return $this->formatResponse('', self::STATUS_HTTP_ERROR, 405);
} }
$items = $this->ils->getMyTransactions($patron);
$counts = [ $counts = [
'ok' => 0, 'ok' => 0,
'warn' => 0, 'warn' => 0,
'overdue' => 0 'overdue' => 0
]; ];
foreach ($items['records'] as $item) { $functionConfig = $this->ils->checkFunction('getMyTransactions', $patron);
switch ($item['dueStatus'] ?? '') { $page = 1;
case 'due': do {
$counts['warn']++; // Try to use large page size, but take ILS limits into account
break; $pageOptions = $this->getPaginationHelper()
case 'overdue': ->getOptions($page, null, 1000, $functionConfig);
$counts['overdue']++; $result = $this->ils
break; ->getMyTransactions($patron, $pageOptions['ilsParams']);
default: foreach ($result['records'] as $item) {
$counts['ok']++; switch ($item['dueStatus'] ?? '') {
break; case 'due':
$counts['warn']++;
break;
case 'overdue':
$counts['overdue']++;
break;
default:
$counts['ok']++;
break;
}
} }
} $pageEnd = $pageOptions['ilsPaging']
? ceil($result['count'] / $pageOptions['limit'])
: 1;
$page++;
} while ($page <= $pageEnd);
return $this->formatResponse($counts); return $this->formatResponse($counts);
} }
/**
* Set the ILS pagination helper
*
* @param \VuFind\ILS\PaginationHelper $helper Pagination helper
*
* @return void
*/
protected function setPaginationHelper($helper)
{
$this->paginationHelper = $helper;
}
/**
* Get the ILS pagination helper
*
* @return \VuFind\ILS\PaginationHelper
*/
protected function getPaginationHelper()
{
if (null === $this->paginationHelper) {
$this->paginationHelper = new \VuFind\ILS\PaginationHelper();
}
return $this->paginationHelper;
}
} }
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment