Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
0.00% covered (danger)
0.00%
0 / 12
0.00% covered (danger)
0.00%
0 / 2
CRAP
0.00% covered (danger)
0.00%
0 / 1
GetUserFines
0.00% covered (danger)
0.00%
0 / 12
0.00% covered (danger)
0.00%
0 / 2
20
0.00% covered (danger)
0.00%
0 / 1
 __construct
0.00% covered (danger)
0.00%
0 / 2
0.00% covered (danger)
0.00%
0 / 1
2
 handleRequest
0.00% covered (danger)
0.00%
0 / 10
0.00% covered (danger)
0.00%
0 / 1
12
1<?php
2
3/**
4 * "Get User Fines" AJAX handler
5 *
6 * PHP version 8
7 *
8 * Copyright (C) Villanova University 2018.
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License version 2,
12 * as published by the Free Software Foundation.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
22 *
23 * @category VuFind
24 * @package  AJAX
25 * @author   Demian Katz <demian.katz@villanova.edu>
26 * @license  http://opensource.org/licenses/gpl-2.0.php GNU General Public License
27 * @link     https://vufind.org/wiki/development Wiki
28 */
29
30namespace VuFind\AjaxHandler;
31
32use Laminas\Mvc\Controller\Plugin\Params;
33use VuFind\Auth\ILSAuthenticator;
34use VuFind\Db\Entity\UserEntityInterface;
35use VuFind\ILS\Connection;
36use VuFind\Service\CurrencyFormatter;
37use VuFind\Session\Settings as SessionSettings;
38
39/**
40 * "Get User Fines" AJAX handler
41 *
42 * @category VuFind
43 * @package  AJAX
44 * @author   Demian Katz <demian.katz@villanova.edu>
45 * @license  http://opensource.org/licenses/gpl-2.0.php GNU General Public License
46 * @link     https://vufind.org/wiki/development Wiki
47 */
48class GetUserFines extends AbstractIlsAndUserAction
49{
50    use \VuFind\ILS\Logic\SummaryTrait;
51
52    /**
53     * Currency formatter
54     *
55     * @var CurrencyFormatter
56     */
57    protected $currencyFormatter;
58
59    /**
60     * Constructor
61     *
62     * @param SessionSettings      $ss                Session settings
63     * @param Connection           $ils               ILS connection
64     * @param ILSAuthenticator     $ilsAuthenticator  ILS authenticator
65     * @param ?UserEntityInterface $user              Logged in user (or false)
66     * @param CurrencyFormatter    $currencyFormatter Currency formatter
67     */
68    public function __construct(
69        SessionSettings $ss,
70        Connection $ils,
71        ILSAuthenticator $ilsAuthenticator,
72        ?UserEntityInterface $user,
73        CurrencyFormatter $currencyFormatter
74    ) {
75        parent::__construct($ss, $ils, $ilsAuthenticator, $user);
76        $this->currencyFormatter = $currencyFormatter;
77    }
78
79    /**
80     * Handle a request.
81     *
82     * @param Params $params Parameter helper from controller
83     *
84     * @return array [response data, internal status code, HTTP status code]
85     */
86    public function handleRequest(Params $params)
87    {
88        $this->disableSessionWrites();  // avoid session write timing bug
89        $patron = $this->ilsAuthenticator->storedCatalogLogin();
90        if (!$patron) {
91            return $this->formatResponse('', self::STATUS_HTTP_NEED_AUTH);
92        }
93        if (!$this->ils->checkCapability('getMyFines')) {
94            return $this->formatResponse('', self::STATUS_HTTP_ERROR);
95        }
96        $fines = $this->ils->getMyFines($patron);
97        return $this->formatResponse(
98            $this->getFineSummary($fines, $this->currencyFormatter)
99        );
100    }
101}