summaryrefslogtreecommitdiffstats
path: root/application/controllers/IconsController.php
blob: 422dcd56a04f5b427bf0e6862035550767501d84 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<?php
// Icinga Web 2 X.509 Module | (c) 2018 Icinga GmbH | GPLv2

namespace Icinga\Module\X509\Controllers;

use Icinga\Web\Controller;

class IconsController extends Controller
{
    /**
     * Disable layout rendering as this controller doesn't provide any html layouts
     */
    public function init()
    {
        $this->_helper->viewRenderer->setNoRender(true);
        $this->_helper->layout()->disableLayout();
    }

    public function indexAction()
    {
        $file = realpath(
            $this->Module()->getBaseDir() . '/public/font/icons.' . $this->params->get('q', 'svg')
        );

        if ($file === false) {
            $this->httpNotFound('File does not exist');
        }

        readfile($file);
    }
}