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

Alma: Add paging support to getMyTransactions.

parent c2cc960d
Branches
Tags
No related merge requests found
...@@ -1001,13 +1001,13 @@ class Alma extends AbstractBase implements \VuFindHttp\HttpServiceAwareInterface ...@@ -1001,13 +1001,13 @@ class Alma extends AbstractBase implements \VuFindHttp\HttpServiceAwareInterface
* Get transactions of the current patron. * Get transactions of the current patron.
* *
* @param array $patron The patron array from patronLogin * @param array $patron The patron array from patronLogin
* @param array $params Parameters
* *
* @return string[] Transaction information as array or empty array if the * @return array Transaction information as array.
* patron has no transactions.
* *
* @author Michael Birkner * @author Michael Birkner
*/ */
public function getMyTransactions($patron) public function getMyTransactions($patron, $params = [])
{ {
// Defining the return value // Defining the return value
$returnArray = []; $returnArray = [];
...@@ -1018,13 +1018,25 @@ class Alma extends AbstractBase implements \VuFindHttp\HttpServiceAwareInterface ...@@ -1018,13 +1018,25 @@ class Alma extends AbstractBase implements \VuFindHttp\HttpServiceAwareInterface
// Create a timestamp for calculating the due / overdue status // Create a timestamp for calculating the due / overdue status
$nowTS = time(); $nowTS = time();
// Create parameters for the API call $sort = explode(
// INFO: "order_by" does not seem to work as expected! ' ', !empty($params['sort']) ? $params['sort'] : 'checkout desc', 2
// This is an Alma API problem. );
if ($sort[0] == 'checkout') {
$sortKey = 'loan_date';
} elseif ($sort[0] == 'title') {
$sortKey = 'title';
} else {
$sortKey = 'due_date';
}
$direction = (isset($sort[1]) && 'desc' === $sort[1]) ? 'DESC' : 'ASC';
$pageSize = $params['limit'] ?? 50;
$params = [ $params = [
'limit' => '100', 'limit' => $pageSize,
'order_by' => 'due_date', 'offset' => isset($params['page'])
'direction' => 'DESC', ? ($params['page'] - 1) * $pageSize : 0,
'order_by' => $sortKey,
'direction' => $direction,
'expand' => 'renewable' 'expand' => 'renewable'
]; ];
...@@ -1035,7 +1047,9 @@ class Alma extends AbstractBase implements \VuFindHttp\HttpServiceAwareInterface ...@@ -1035,7 +1047,9 @@ class Alma extends AbstractBase implements \VuFindHttp\HttpServiceAwareInterface
); );
// If there is an API result, process it // If there is an API result, process it
$totalCount = 0;
if ($apiResult) { if ($apiResult) {
$totalCount = $apiResult->attributes()->total_record_count;
// Iterate over all item loans // Iterate over all item loans
foreach ($apiResult->item_loan as $itemLoan) { foreach ($apiResult->item_loan as $itemLoan) {
$loan['duedate'] = $this->parseDate( $loan['duedate'] = $this->parseDate(
...@@ -1080,7 +1094,10 @@ class Alma extends AbstractBase implements \VuFindHttp\HttpServiceAwareInterface ...@@ -1080,7 +1094,10 @@ class Alma extends AbstractBase implements \VuFindHttp\HttpServiceAwareInterface
} }
} }
return $returnArray; return [
'count' => $totalCount,
'records' => $returnArray
];
} }
/** /**
...@@ -1279,6 +1296,18 @@ class Alma extends AbstractBase implements \VuFindHttp\HttpServiceAwareInterface ...@@ -1279,6 +1296,18 @@ class Alma extends AbstractBase implements \VuFindHttp\HttpServiceAwareInterface
?? 10 ?? 10
?: 10; ?: 10;
} }
} elseif ('getMyTransactions' === $function) {
$functionConfig = [
'max_results' => 100,
'sort' => [
'checkout desc' => 'sort_checkout_date_desc',
'checkout asc' => 'sort_checkout_date_asc',
'due desc' => 'sort_due_date_desc',
'due asc' => 'sort_due_date_asc',
'title asc' => 'sort_title'
],
'default_sort' => 'due asc'
];
} else { } else {
$functionConfig = false; $functionConfig = false;
} }
......
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