This file is indexed.

/usr/share/icingaweb2/modules/monitoring/application/views/scripts/list/servicegrid.phtml is in icingaweb2-module-monitoring 2.1.0-1ubuntu1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  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
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
<?php
use Icinga\Module\Monitoring\Object\Service;
use Icinga\Web\Url;

if (! $this->compact): ?>
<div class="controls">
    <?= $this->tabs ?>
    <?= $this->sortBox ?>
    <?= $this->filterEditor ?>
</div>
<?php endif ?>
<div class="content" data-base-target="_next">
<?php if (empty($pivotData)): ?>
    <p><?= $this->translate('No services found matching the filter.') ?></p>
</div>
<?php return; endif;
$hostFilter = '(host_name=' . implode('|host_name=', array_keys($pivotData)) . ')';
?>
    <table class="service-grid-table">
    <thead>
        <tr>
            <th><?= $this->partial(
                'joystickPagination.phtml',
                'default',
                array(
                    'xAxisPaginator' => $horizontalPaginator,
                    'yAxisPaginator' => $verticalPaginator
                )
            ) ?></th>
        <?php foreach ($pivotHeader['cols'] as $serviceDescription => $serviceDisplayName): ?>
            <th class="rotate-45"><div><span><?= $this->qlink(
                $this->ellipsis($serviceDisplayName, 18),
                'monitoring/list/services?' . $hostFilter,
                array('service_description' => $serviceDescription),
                array('title' => sprintf(
                    $this->translate('List all services with the name "%s" on all reported hosts'),
                    $serviceDisplayName
                )),
                false
            ) ?></span></div></th>
        <?php endforeach ?>
        </tr>
    </thead>
    <tbody>

    <?php $i = 0 ?>
    <?php foreach ($pivotHeader['rows'] as $hostName => $hostDisplayName): ?>
        <tr>
            <th><?php
                $services = $pivotData[$hostName];
                $serviceFilter = '(service_description=' . implode('|service_description=', array_keys($services)) . ')';
                echo $this->qlink(
                    $hostDisplayName,
                    'monitoring/list/services?' . $serviceFilter,
                    array('host_name' => $hostName),
                    array('title' => sprintf($this->translate('List all reported services on host %s'), $hostDisplayName))
                );
            ?></th>
        <?php foreach (array_keys($pivotHeader['cols']) as $serviceDescription): ?>
            <td>
            <?php
            $service = $pivotData[$hostName][$serviceDescription];
            if ($service === null): ?>
                <span aria-hidden="true">&middot;</span>
            <?php continue; endif ?>
                <?php $ariaDescribedById = $this->protectId($service->host_name . '_' . $service->service_description . '_desc') ?>
                <span class="sr-only" id="<?= $ariaDescribedById ?>">
                    <?= $this->escape($service->service_output) ?>
                </span>
                <?= $this->qlink(
                    '',
                    'monitoring/service/show',
                    array(
                        'host'    => $hostName,
                        'service' => $serviceDescription
                    ),
                    array(
                        'aria-describedby'    => $ariaDescribedById,
                        'aria-label'          => sprintf(
                            $this->translate('Show detailed information for service %s on host %s'),
                            $service->service_display_name,
                            $service->host_display_name
                        ),
                        'class'               => 'bg-color-' . Service::getStateText($service->service_state) . ($service->service_handled ? ' handled' : ''),
                        'title'               => $this->escape($service->service_output)
                    )
                ) ?>
            </td>
        <?php endforeach ?>
        <?php if (! $this->compact && $this->horizontalPaginator->getPages()->pageCount > 1): ?>
            <td>
                <?php $expandLink = $this->qlink(
                    $this->translate('Load more'),
                    Url::fromRequest(),
                    array(
                        'limit' => (
                                $this->horizontalPaginator->getItemCountPerPage() + 20) . ','
                             .  $this->verticalPaginator->getItemCountPerPage()
                    ),
                    array(
                        'class'             => 'action-link',
                        'data-base-target'  => '_self'
                    )
                ) ?>
                <?= ++$i === (int) (count($pivotHeader['rows']) / 2) ? $expandLink : '' ?>
            </td>
        <?php endif ?>
        </tr>
    <?php endforeach ?>
    <?php if (! $this->compact && $this->verticalPaginator->getPages()->pageCount > 1): ?>
        <tr>
            <td colspan="<?= count($pivotHeader['cols']) + 1?>" class="service-grid-table-more">
                <?php echo $this->qlink(
                    $this->translate('Load more'),
                    Url::fromRequest(),
                    array(
                        'limit' => $this->horizontalPaginator->getItemCountPerPage() . ',' .
                            ($this->verticalPaginator->getItemCountPerPage() + 20)
                    ),
                    array(
                        'class'             => 'action-link',
                        'data-base-target'  => '_self'
                    )
                ) ?>
            </td>
        </tr>
    <?php endif ?>
    </tbody>
    </table>
</div>