$user, 'name' => $name, 'description' => $description, 'period' => $period, 'width' => $width, 'height' => $height, 'private' => $private, 'events' => $events, 'stacked' => $stacked, 'id_group' => $id_group, 'id_graph_template' => 0, 'fullscale' => $fullscale, ] ); if (empty($id_graph)) { return false; } else { $result = true; foreach ($id_modules as $id_module) { $result = db_process_sql_insert( 'tgraph_source', [ 'id_graph' => $id_graph, 'id_agent_module' => $id_module, 'weight' => 1, ] ); if (empty($result)) { break; } } if (empty($result)) { // Not it is a complete insert the modules. Delete all db_process_sql_delete( 'tgraph_source', ['id_graph' => $id_graph] ); db_process_sql_delete( 'tgraph', ['id_graph' => $id_graph] ); return false; } return $id_graph; } } /** * Get all the custom graphs a user can see. * * @param $id_user User id to check. * @param $only_names Wheter to return only graphs names in an associative array * or all the values. * @param $returnAllGroup Wheter to return graphs of group All or not. * @param $privileges Privileges to check in user group * * @return Custom graphs of a an user. Empty array if none. */ function custom_graphs_get_user($id_user=0, $only_names=false, $returnAllGroup=true, $privileges='RR') { global $config; if (!$id_user) { $id_user = $config['id_user']; } $groups = users_get_groups($id_user, $privileges, $returnAllGroup); $all_graphs = []; if (is_metaconsole()) { $servers = metaconsole_get_connection_names(); foreach ($servers as $key => $server) { $connection = metaconsole_get_connection($server); if (metaconsole_connect($connection) != NOERR) { continue; } $all_graph = db_get_all_rows_in_table('tgraph', 'name'); if ($all_graph !== false) { $all_graphs = array_merge($all_graphs, $all_graph); } metaconsole_restore_db(); } } else { $all_graphs = db_get_all_rows_in_table('tgraph', 'name'); } if ($all_graphs === false) { return []; } $graphs = []; foreach ($all_graphs as $graph) { if (!in_array($graph['id_group'], array_keys($groups))) { continue; } if ($graph['id_user'] != $id_user && $graph['private']) { continue; } if ($graph['id_group'] > 0) { if (!isset($groups[$graph['id_group']])) { continue; } } if ($only_names) { $graphs[$graph['id_graph']] = $graph['name']; } else { $graphs[$graph['id_graph']] = $graph; $graphsCount = db_get_value_sql( 'SELECT COUNT(id_gs) FROM tgraph_source WHERE id_graph = '.$graph['id_graph'] ); $graphs[$graph['id_graph']]['graphs_count'] = $graphsCount; } } return $graphs; } function custom_graphs_search($id_group, $search) { if ($id_group != '' && $search != '') { $all_graphs = db_get_all_rows_sql('select * from tgraph where id_group = '.$id_group.' AND name LIKE "%'.$search.'%"'); } else if ($id_group != '') { $all_graphs = db_get_all_rows_sql('select * from tgraph where id_group = '.$id_group.''); } else { $all_graphs = db_get_all_rows_sql('select * from tgraph where name LIKE "%'.$search.'%"'); } if ($all_graphs === false) { return []; } $graphs = []; foreach ($all_graphs as $graph) { $graphsCount = db_get_value_sql( 'SELECT COUNT(id_gs) FROM tgraph_source WHERE id_graph = '.$graph['id_graph'].'' ); $graphs[$graph['id_graph']]['id_graph'] = $graph['id_graph']; $graphs[$graph['id_graph']]['graphs_count'] = $graphsCount; $graphs[$graph['id_graph']]['name'] = $graph['name']; $graphs[$graph['id_graph']]['description'] = $graph['description']; $graphs[$graph['id_graph']]['id_group'] = $graph['id_group']; } return $graphs; }