Skip to content
Snippets Groups Projects
Commit 02b05911 authored by Mathias Maaß's avatar Mathias Maaß Committed by Robert Lange
Browse files

refs #22765 [finc] account menu: adjust in order to use new vufind features

parent 3dbb6c7e
No related merge requests found
......@@ -90,6 +90,8 @@ $config = [
'finc\AjaxHandler\GetResolverLinksFactory',
'finc\AjaxHandler\GetUserILLRequestsStats' =>
'VuFind\AjaxHandler\AbstractIlsAndUserActionFactory',
'finc\AjaxHandler\GetUserLoanHistory' =>
'VuFind\AjaxHandler\AbstractIlsAndUserActionFactory',
'finc\AjaxHandler\GetUserMediaReadyToPickup' =>
'VuFind\AjaxHandler\AbstractIlsAndUserActionFactory',
'finc\AjaxHandler\GetUserPermanentLoans' =>
......@@ -106,6 +108,8 @@ $config = [
'finc\AjaxHandler\GetResolverLinks',
'getUserILLRequestsStats' =>
'finc\AjaxHandler\GetUserILLRequestsStats',
'getUserLoanHistory' =>
'finc\AjaxHandler\GetUserLoanHistory',
'getUserMediaReadyToPickup' =>
'finc\AjaxHandler\GetUserMediaReadyToPickup',
'getUserPermanentLoans' =>
......
<?php
/**
* PHP version 7
*
* Copyright (C) Villanova University 2018.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2,
* as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*
* @category VuFind
* @package AJAX
* @author Demian Katz <demian.katz@villanova.edu>
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License
* @link https://vufind.org/wiki/development Wiki
*/
namespace finc\AjaxHandler;
use Zend\Mvc\Controller\Plugin\Params;
/**
* "Get User Holds" AJAX handler
*
* @category VuFind
* @package AJAX
* @author Demian Katz <demian.katz@villanova.edu>
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License
* @link https://vufind.org/wiki/development Wiki
*/
class GetUserLoanHistory extends \VuFind\AjaxHandler\AbstractUserRequestAction
{
/**
* Handle a request.
*
* @param Params $params Parameter helper from controller
*
* @return array [response data, internal status code, HTTP status code]
*/
public function handleRequest(Params $params)
{
$this->disableSessionWrites(); // avoid session write timing bug
$patron = $this->ilsAuthenticator->storedCatalogLogin();
if (!$patron) {
return $this->formatResponse('', self::STATUS_HTTP_NEED_AUTH, 401);
}
if (!$this->ils->checkCapability('getMyTransactions')) {
return $this->formatResponse('', self::STATUS_HTTP_ERROR, 405);
}
$items = $this->ils->getMyLoanHistory($patron, 100);
$counts = [ 'ok' => $items['total'] ];
return $this->formatResponse($counts);
}
}
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