Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
0.00% covered (danger)
0.00%
0 / 29
0.00% covered (danger)
0.00%
0 / 1
CRAP
0.00% covered (danger)
0.00%
0 / 1
GetLibraryPickupLocations
0.00% covered (danger)
0.00%
0 / 29
0.00% covered (danger)
0.00%
0 / 1
72
0.00% covered (danger)
0.00%
0 / 1
 handleRequest
0.00% covered (danger)
0.00%
0 / 29
0.00% covered (danger)
0.00%
0 / 1
72
1<?php
2
3/**
4 * "Get Library Pickup Locations" 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;
33
34/**
35 * "Get Library Pickup Locations" AJAX handler
36 *
37 * Get pick up locations for a library
38 *
39 * @category VuFind
40 * @package  AJAX
41 * @author   Demian Katz <demian.katz@villanova.edu>
42 * @license  http://opensource.org/licenses/gpl-2.0.php GNU General Public License
43 * @link     https://vufind.org/wiki/development Wiki
44 */
45class GetLibraryPickupLocations extends AbstractIlsAndUserAction
46{
47    /**
48     * Handle a request.
49     *
50     * @param Params $params Parameter helper from controller
51     *
52     * @return array [response data, HTTP status code]
53     */
54    public function handleRequest(Params $params)
55    {
56        $this->disableSessionWrites();  // avoid session write timing bug
57        $id = $params->fromQuery('id');
58        $pickupLib = $params->fromQuery('pickupLib');
59        if (null === $id || null === $pickupLib) {
60            return $this->formatResponse(
61                $this->translate('bulk_error_missing'),
62                self::STATUS_HTTP_BAD_REQUEST
63            );
64        }
65        // check if user is logged in
66        if (!$this->user) {
67            return $this->formatResponse(
68                $this->translate('You must be logged in first'),
69                self::STATUS_HTTP_NEED_AUTH
70            );
71        }
72
73        try {
74            $patron = $this->ilsAuthenticator->storedCatalogLogin();
75            if ($patron) {
76                $results = $this->ils
77                    ->getILLPickupLocations($id, $pickupLib, $patron);
78                foreach ($results as &$result) {
79                    if (isset($result['name'])) {
80                        $result['name'] = $this->translateWithPrefix(
81                            'location_',
82                            $result['name']
83                        );
84                    }
85                }
86                return $this->formatResponse(['locations' => $results]);
87            }
88        } catch (\Exception $e) {
89            // Do nothing -- just fail through to the error message below.
90        }
91
92        return $this->formatResponse(
93            $this->translate('An error has occurred'),
94            self::STATUS_HTTP_ERROR
95        );
96    }
97}