Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
0.00% covered (danger)
0.00%
0 / 31
0.00% covered (danger)
0.00%
0 / 1
CRAP
0.00% covered (danger)
0.00%
0 / 1
GetRequestGroupPickupLocations
0.00% covered (danger)
0.00%
0 / 31
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 / 31
0.00% covered (danger)
0.00%
0 / 1
72
1<?php
2
3/**
4 * "Get Request Group 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 Request Group Pickup Locations" AJAX handler
36 *
37 * Get pick up locations for a request group
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 GetRequestGroupPickupLocations 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        $requestGroupId = $params->fromQuery('requestGroupId');
59        if (null === $id || null === $requestGroupId) {
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            if ($patron = $this->ilsAuthenticator->storedCatalogLogin()) {
75                $details = [
76                    'id' => $id,
77                    'requestGroupId' => $requestGroupId,
78                ];
79                $results = $this->ils->getPickupLocations($patron, $details);
80                foreach ($results as &$result) {
81                    if (isset($result['locationDisplay'])) {
82                        $result['locationDisplay'] = $this->translateWithPrefix(
83                            'location_',
84                            $result['locationDisplay']
85                        );
86                    }
87                }
88                return $this->formatResponse(['locations' => $results]);
89            }
90        } catch (\Exception $e) {
91            // Do nothing -- just fail through to the error message below.
92        }
93
94        return $this->formatResponse(
95            $this->translate('An error has occurred'),
96            self::STATUS_HTTP_ERROR
97        );
98    }
99}