Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
0.00% covered (danger)
0.00%
0 / 9
0.00% covered (danger)
0.00%
0 / 2
CRAP
0.00% covered (danger)
0.00%
0 / 1
IndexController
0.00% covered (danger)
0.00%
0 / 9
0.00% covered (danger)
0.00%
0 / 2
12
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
 homeAction
0.00% covered (danger)
0.00%
0 / 7
0.00% covered (danger)
0.00%
0 / 1
6
1<?php
2
3/**
4 * Default Controller
5 *
6 * PHP version 8
7 *
8 * Copyright (C) Villanova University 2010.
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  Controller
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 Main Site
28 */
29
30namespace VuFind\Controller;
31
32use Laminas\Config\Config;
33use VuFind\Auth\Manager as AuthManager;
34
35/**
36 * Redirects the user to the appropriate default VuFind action.
37 *
38 * @category VuFind
39 * @package  Controller
40 * @author   Demian Katz <demian.katz@villanova.edu>
41 * @license  http://opensource.org/licenses/gpl-2.0.php GNU General Public License
42 * @link     https://vufind.org Main Site
43 */
44class IndexController extends \Laminas\Mvc\Controller\AbstractActionController
45{
46    /**
47     * VuFind configuration
48     *
49     * @var Config
50     */
51    protected $config;
52
53    /**
54     * Auth manager
55     *
56     * @var AuthManager
57     */
58    protected $authManager;
59
60    /**
61     * Constructor
62     *
63     * @param Config      $config      VuFind configuration
64     * @param AuthManager $authManager Auth manager
65     */
66    public function __construct(Config $config, AuthManager $authManager)
67    {
68        $this->config = $config;
69        $this->authManager = $authManager;
70    }
71
72    /**
73     * Determines what elements are displayed on the home page based on whether
74     * the user is logged in.
75     *
76     * @return mixed
77     */
78    public function homeAction()
79    {
80        // Load different configurations depending on whether we're logged in or not:
81        if ($this->authManager->getIdentity()) {
82            $controller = $this->config->Site->defaultLoggedInModule ?? 'MyResearch';
83            $actionConfig = 'defaultLoggedInAction';
84        } else {
85            $controller = $this->config->Site->defaultModule ?? 'Search';
86            $actionConfig = 'defaultAction';
87        }
88        $action = $this->config->Site->$actionConfig ?? 'Home';
89
90        // Forward to the appropriate controller and action:
91        return $this->forward()->dispatch($controller, compact('action'));
92    }
93}