* values which has problems
 */
$types = choosen_common_factor($conf['type_common_factor_for_alert']);
$results = array();
$pdo = connexionbdd($conf);
$sql = "SELECT DISTINCT item FROM results WHERE result=1 OR result=2 OR result=3 OR result=4";
$statement = $pdo->prepare($sql);
if (!$statement->execute()) {
    throw new PDOException();
}
$result = $statement->fetchAll(PDO::FETCH_ASSOC);
foreach ($result as $item) {
    foreach ($types as $type) {
        switch ($type) {
            case 'hostname':
                $founds = common_host($conf, $item['item'], $vocables);
                $type = 'hostname';
                break;
            case 'network':
                $founds = common_network($conf, $item['item'], $vocables);
                $type = 'network';
                break;
            case 'routeur':
                $founds = common_routeur($conf, $item['item'], $vocables);
                $type = 'routeur';
                break;
            default:
                $results = 0;
                break;
        }
        foreach ($founds as $found) {
Пример #2
0
        error_log("No common factor selected for audits results", 0);
    }
    return $final_types;
}
/*
 * Main code
 * which choose type of common factor and return 
 * values which has problems
 */
$md5 = trim(htmlspecialchars($_REQUEST['md5']));
$types = choosen_common_factor($conf['type_common_factor_for_alert']);
$results = array();
foreach ($types as $type) {
    switch ($type) {
        case 'hostname':
            $results = common_host($conf, $md5);
            $nb_all = $results['nb_all'];
            $results['hostnames'] = $results['hostnames'];
            $results['nb_all'] = $nb_all;
            break;
        case 'network':
            $results['networks'] = common_network($conf, $md5);
            break;
        case 'routeur':
            $results['routeurs'] = common_routeur($conf, $md5);
            break;
        default:
            $results = 0;
            break;
    }
}