summaryrefslogtreecommitdiffstats
path: root/application/controllers/IndexController.php
blob: 59a8f8e6aa317cebafd36fb37e172d314af89082 (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
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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
<?php
/*
TODO Things that need to be added:

- Option to show only hard or soft states
- The ability to configure box size, or set it to dynamically fill the screen

- Add a filter and custom label so two dashboards could provide different labeled views.
(you may have two boxy dashboards with two different filters open- one for each dev team/environment/project)

*/


use Icinga\Data\Filter\Filter;
use Icinga\Module\Monitoring\Controller;
use Icinga\Module\Monitoring\Object\Host;
use Icinga\Module\Monitoring\Object\Service;
use Icinga\Web\Url;
use Icinga\Application\Logger;

#FIXME should this be Controller or ModuleActionController? The documentation was unclear.
class BoxyDash_IndexController extends Controller
{
    protected $default_requiresAuthentication = true;
    protected $default_include_softstate = false;
    protected $default_boxsize = 20;
    protected $default_refresh = 10;
    protected $default_showlegend = true;
    protected $default_path_prefix = '';

    public function indexAction()
    {
        $this->getTabs()->activate('dashboard');
        $this->config = $this->Config('config');

        $this->determine_refresh();
        $this->determine_showlegend();
        $this->determine_boxsize();
        $this->determine_path_prefix();
        $this->determine_include_softstate();


        $isrequired = $this->config->get( 'settings', 'requires_authentication', $this->default_requiresAuthentication );

        $this->_request->getParams();

        $this->getServiceData();
        $this->getHostData();
    }

    protected function requiresLogin()
    {
        #Logger::error("running requiresLogin");
        $this->requiresAuthentication = (bool) $this->Config()->get(
            'settings',
            'requires_authentication',
            $this->default_requiresAuthentication
        );

        return parent::requiresLogin();
    }

    public function determine_showlegend()
    {
        if ($this->_hasParam("showlegend")){
            $this->view->showlegend = (boolean) $this->_getParam("showlegend");
            #Failing that, check to see if it's already in the configuration or use the default legend
        }else{
            $this->view->showlegend = (boolean)  $this->config->get('settings','show_legend',$this->default_showlegend);
        }
    }

    public function determine_refresh()
    {
        if (intval($this->_getParam("refresh")) >=1){
            $this->refresh = intval($this->_getParam("refresh"));

        #Failing that, check to see if it's already in the configuration
        }elseif (is_numeric( $this->config->get('settings','setting_refresh','missing'))) {
            # Note that $default_refresh should never be hit on this line.
            $this->refresh = intval($this->config->get('settings','setting_refresh',$this->default_refresh));
        }else{
        #failing THAT, use our default.
            $this->refresh =  $this->default_refresh ;
        }
        $this->setAutorefreshInterval( $this->refresh );
    }

    public function determine_boxsize()
    {
        if (is_numeric($this->_getParam("boxsize"))){
            $this->view->boxsize = intval($this->_getParam("boxsize"));

        #Failing that, check to see if it's already in the configuration
        }elseif (is_numeric( $this->config->get('settings','setting_boxsize','missing'))) {
            # Note that $default_boxsize should never be hit on this line.
            $this->view->boxsize = $this->config->get('settings','setting_boxsize',$this->default_boxsize);
        }else{
        #failing THAT, use our default.
            $this->view->boxsize = $this->default_boxsize;
        }
    }
    public function determine_include_softstate()
    {

        # First determine if uri override is being passed
        if ( $this->_hasParam("include_softstate")){
            $this->view->include_softstate = (boolean) $this->_getParam("include_softstate");
        }else{
            #Failing that, check to see if it's already in the configuration or use the default
            $this->view->include_softstate = $this->config->get('settings','include_softstate',$this->default_include_softstate);
#            $this->view->debug=intval($this->view->include_softstate);
        }

#        $this->view->debug= intval( (bool)$this->view->include_softstate);
    }

    public function determine_path_prefix()
    {
        $this->view->path_prefix = $this->config->get('settings', 'path_prefix', $this->default_path_prefix);
    }


    # Create the tabs for the dashboard and the configuration tab.
    public function getTabs()
    {
        $tabs = parent::getTabs();
        $tabs->add(
            'dashboard',
            array(
                'title' => $this->translate('Dashboard'),
                'url'   => 'boxydash',
                'tip'  => $this->translate('Overview')
            )
        );
	if($this->Auth()->isAuthenticated()){
        	$tabs->add(
        	    'config',
        	    array(
        	        'title' => $this->translate('Configure'),
        	        'url'   => 'boxydash/config',
        	        'tip'  => $this->translate('Configure')
        	    )
        	);
	}

        return $tabs;
    }


    # get the status of each host
    public function getHostData()
    {
        $columns = array(
            'host_name',
            'host_display_name',
            'host_state',
            'host_acknowledged',
            'host_in_downtime',
            'host_output',
            # Most of these may not be needed; included it for future integration/use (yeah, right)
            'host_icon_image',
            'host_handled',
            'host_attempt',
            'host_state_type',
            'host_hard_state',
            'host_last_check',
            'host_notifications_enabled',
            'host_action_url',
            'host_notes_url',
            'host_active_checks_enabled',
            'host_passive_checks_enabled',
            'host_current_check_attempt',
            'host_max_check_attempts'

        );
        $query = $this->backend->select()->from('hostStatus', $columns);
        $this->applyRestriction('monitoring/filter/objects', $query); // follow filter object restrictions
        $query->order('host_name', 'desc');

        # This might be very very bad for very very large environments. I just don't know how well it'll perform.
        $this->view->hosts = $query->getQuery()->fetchAll();

        foreach ($this->view->hosts as $host) {
            #FIXME: using Service function for a host state. that's kinda ugly

            # If we allow statetypes, or it's ack'd OR the state type is already HARD
            if ( $this->view->include_softstate or $host->{'host_acknowledged'}  ){
                $host->{'host_state_text'}=Service::getStateText($host->{'host_state'});
            }else{
                $host->{'host_state_text'}=Service::getStateText($host->{'host_hard_state'});
            }

        }

    }
    # get the status of each service
    public function getServiceData()
    {
        $columns = array(
            'host_name',
            'host_display_name',
            'host_in_downtime',
            'host_acknowledged',
            'host_state',
            'host_hard_state',
            'service_hard_state',
            'service_description',
            'service_display_name',
            'service_state',
            'service_in_downtime',
            'service_acknowledged',
            'service_output',
            # Most of these may not be needed; included it for future integration/use (yeah, right)
            'host_last_state_change',
            'service_attempt',
            'service_last_state_change',
            'service_is_flapping',
            'service_state_type',
            'service_last_check',
            'current_check_attempt' => 'service_current_check_attempt',
            'max_check_attempts'    => 'service_max_check_attempts'
        );
        $query = $this->backend->select()->from('serviceStatus', $columns);
        $this->applyRestriction('monitoring/filter/objects', $query); // follow filter object restrictions
        $query->order('host_name', 'desc');

        $this->view->services = $query->getQuery()->fetchAll();

        foreach ($this->view->services as $service) {
            #Loop through and make sure there's a field that says "OK" so we can grab the right css class
            $service->{'service_state_text'}=Service::getStateText($service->{'service_state'});
            $service->{'host_state_text'}=Service::getStateText($service->{'host_state'});

            # If we allow statetypes, or it's ack'd OR the state type is already HARD
            if ( $this->view->include_softstate or $service->{'service_acknowledged'}  ){
                $service->{'service_state_text'}=Service::getStateText($service->{'service_state'});
            }else{
                $service->{'service_state_text'}=Service::getStateText($service->{'service_hard_state'});
            }


        }
    }

/*  This function may be useful if I can figure out an overall way to show it that integrates well.
    public function statusSummary(){
        $this->view->stats = $this->backend->select()->from('statusSummary', array(
            'services_total',
            'services_ok',
            'services_problem',
            'services_problem_handled',
            'services_problem_unhandled',
            'services_critical',
            'services_critical_unhandled',
            'services_critical_handled',
            'services_warning',
            'services_warning_unhandled',
            'services_warning_handled',
            'services_unknown',
            'services_unknown_unhandled',
            'services_unknown_handled',
            'services_pending',
        ))->getQuery()->fetchRow();

    }
*/
}