File: core.php

package info (click to toggle)
nagvis 1%3A1.9.47-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 7,556 kB
  • sloc: php: 28,986; javascript: 16,395; sh: 1,696; makefile: 16; xml: 8
file content (170 lines) | stat: -rw-r--r-- 4,932 bytes parent folder | download | duplicates (4)
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
<?php
/*****************************************************************************
 * Copyright (c) 2004-2016 NagVis Project (Contact: info@nagvis.org)
 *
 * License:
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 *
 *****************************************************************************/

$CORE = GlobalCore::getInstance();

/*
 * l() needs to be available in MainCfg initialization and config parsing,
 * but GlobalLanguage initialization relies on the main configuration in
 * some parts.
 * The cleanest way to solve this problem is to skip the i18n in the main
 * configuration init code until all needed values are initialized and then
 * initialize the i18n code.
 */

// ----------------------------------------------------------------------------

$_MAINCFG = new GlobalMainCfg();
$_MAINCFG->init();

/**
 * This is mainly a short access to config options. In the past the whole
 * language object method call was used all arround NagVis. This has been
 * introduced to keep the code shorter
 */
function cfg($sec, $key, $ignoreDefaults = false) {
    global $_MAINCFG;
    return $_MAINCFG->getValue($sec, $key, $ignoreDefaults);
}

function path($type, $loc, $var, $relfile = '') {
    global $_MAINCFG;
    return $_MAINCFG->getPath($type, $loc, $var, $relfile);
}

// ----------------------------------------------------------------------------

$_LANG = new GlobalLanguage();

/**
 * This is mainly a short access to localized strings. In the past the whole
 * language object method call was used all arround NagVis. This has been
 * introduced to keep the code shorter
 */
function l($txt, $vars = null) {
    global $_LANG;
    if(isset($_LANG))
        return $_LANG->getText($txt, $vars);
    elseif($vars !== null)
        return GlobalLanguage::getReplacedString($txt, $vars);
    else
        return $txt;
}

function curLang() {
    global $_LANG;
    return $_LANG->getCurrentLanguage();
}

// ----------------------------------------------------------------------------

/**
 * Initialize the backend management for all pages. But don't open backend
 * connections. This is only done when the pages request data from any backend
 */
$_BACKEND = new CoreBackendMgmt();

// ----------------------------------------------------------------------------
// some untilities

function val($arr, $key, $dflt = null) {
    return isset($arr[$key]) ? $arr[$key] : $dflt;
}

function state_str($state) {
    switch($state) {
        case UNCHECKED:   return 'UNCHECKED';
        case UNREACHABLE: return 'UNREACHABLE';
        case DOWN:        return 'DOWN';
        case UP:          return 'UP';
        case PENDING:     return 'PENDING';
        case UNKNOWN:     return 'UNKNOWN';
        case CRITICAL:    return 'CRITICAL';
        case WARNING:     return 'WARNING';
        case OK:          return 'OK';
        case ERROR:       return 'ERROR';
        default:          return 'ERROR'; // unspecified state
    }
}

function state_num($state_str) {
    $a = array(
        'UNCHECKED'     => UNCHECKED,
        'UNREACHABLE'   => UNREACHABLE,
        'DOWN'          => DOWN,
        'UP'            => UP,
        // services
        'PENDING'       => PENDING,
        'UNKNOWN'       => UNKNOWN,
        'CRITICAL'      => CRITICAL,
        'WARNING'       => WARNING,
        'OK'            => OK,
        // generic
        'ERROR'         => ERROR
    );
    return $a[$state_str];
}

function is_host_state($state) {
    return $state == UNCHECKED || $state == UNREACHABLE || $state == DOWN || $state == UP;
}

function listIconsets() {
    global $CORE;
    return $CORE->getAvailableIconsets();
}

function listBackendIds() {
    global $CORE;
    return $CORE->getDefinedBackends();
}

function listHeaderTemplates() {
    global $CORE;
    return $CORE->getAvailableHeaderTemplates();
}

function listHoverTemplates() {
    global $CORE;
    return $CORE->getAvailableHoverTemplates();
}

function listContextTemplates() {
    global $CORE;
    return $CORE->getAvailableContextTemplates();
}

function listHoverChildSorters() {
    return Array(
        'a' => l('Alphabetically'),
        's' => l('State'),
        'k' => l('Keep original order'),
    );
}

function listHoverChildOrders() {
    return Array(
        'asc'  => l('Ascending'),
        'desc' => l('Descending'),
    );
}

?>