Beispiel #1
0
function form_save()
{
    if ($_POST["action_post"] == "graph_edit") {
        /* fetch some cache variables */
        if (empty($_POST["id"])) {
            $_graph_template_id = 0;
        } else {
            $_graph_template_id = db_fetch_cell("select graph_template_id from graph where id=" . $_POST["id"]);
        }
        /* cache all post field values */
        init_post_field_cache();
        $form_graph_fields = array();
        $form_graph_item_fields = array();
        /* parse out form values that we care about */
        reset($_POST);
        while (list($name, $value) = each($_POST)) {
            if (substr($name, 0, 2) == "g|") {
                $matches = explode("|", $name);
                $form_graph_fields[$matches[1]] = $value;
            } else {
                if (substr($name, 0, 4) == "gip|") {
                    $matches = explode("|", $name);
                    $form_graph_item_fields[$matches[2]] = $value;
                }
            }
        }
        /* make a list of fields to save */
        while (list($_field_name, $_field_value) = each($form_graph_fields)) {
            /* make sure that we know about this field */
            if (isset($fields_graph[$_field_name])) {
                $save_graph[$_field_name] = $_field_value;
            }
        }
        /* add any unchecked checkbox fields */
        $form_graph_fields += field_register_html_checkboxes(api_graph_form_list(), "g||field|");
        $form_graph_fields["host_id"] = $_POST["host_id"];
        $form_graph_fields["graph_template_id"] = $_POST["graph_template_id"];
        /* step #2: field validation */
        $suggested_value_fields = array();
        /* placeholder */
        field_register_error(api_graph_fields_validate($form_graph_fields, $suggested_value_fields, "g||field|", ""));
        /* step #3: field save */
        if (is_error_message()) {
            log_save("User input validation error for graph [ID#" . $_POST["id"] . "]", SEV_DEBUG);
        } else {
            /* save graph data */
            if (!api_graph_save($_POST["id"], $form_graph_fields)) {
                log_save("Save error for graph [ID#" . $_POST["id"] . "]", SEV_ERROR);
            }
            /* save graph item data for templated graphs */
            if (!empty($_graph_template_id)) {
                if (sizeof($form_graph_item_fields) > 0) {
                    foreach ($form_graph_item_fields as $graph_template_item_input_id => $value) {
                        if (!api_graph_template_item_input_propagate($graph_template_item_input_id, $value)) {
                            log_save("Save error when propagating graph item input [ID#{$graph_template_item_input_id}] to graph [ID#" . $_POST["id"] . "]", SEV_ERROR);
                        }
                    }
                }
            }
        }
        if (is_error_message() || $_POST["graph_template_id"] != $_graph_template_id) {
            header("Location: graphs.php?action=edit&id=" . $_POST["id"] . (!isset($_POST["host_id"]) ? "" : "&host_id=" . $_POST["host_id"]) . (!isset($_POST["graph_template_id"]) ? "" : "&graph_template_id=" . $_POST["graph_template_id"]));
        } else {
            header("Location: graphs.php");
        }
        /* submit button on the actions area page */
    } else {
        if ($_POST["action_post"] == "box-1") {
            $selected_rows = explode(":", $_POST["box-1-action-area-selected-rows"]);
            if ($_POST["box-1-action-area-type"] == "search") {
                $get_string = "";
                if ($_POST["box-1-search_device"] != "-1") {
                    $get_string .= ($get_string == "" ? "?" : "&") . "search_device=" . urlencode($_POST["box-1-search_device"]);
                }
                if (trim($_POST["box-1-search_filter"]) != "") {
                    $get_string .= ($get_string == "" ? "?" : "&") . "search_filter=" . urlencode($_POST["box-1-search_filter"]);
                }
                header("Location: graphs.php{$get_string}");
            } else {
                if ($_POST["box-1-action-area-type"] == "remove") {
                    foreach ($selected_rows as $graph_id) {
                        api_graph_remove($graph_id);
                    }
                } else {
                    if ($_POST["box-1-action-area-type"] == "duplicate") {
                        // not yet coded
                    } else {
                        if ($_POST["box-1-action-area-type"] == "change_graph_template") {
                            // note yet coded
                        } else {
                            if ($_POST["box-1-action-area-type"] == "change_host") {
                                foreach ($selected_rows as $graph_id) {
                                    api_graph_host_update($graph_id, $_POST["box-1-change_device"]);
                                }
                            } else {
                                if ($_POST["box-1-action-area-type"] == "convert_graph_template") {
                                    // note yet coded
                                } else {
                                    if ($_POST["box-1-action-area-type"] == "place_tree") {
                                        // note yet coded
                                    }
                                }
                            }
                        }
                    }
                }
            }
            header("Location: graphs.php");
            /* 'filter' area at the bottom of the box */
        } else {
            if ($_POST["action_post"] == "graph_list") {
                $get_string = "";
                /* the 'clear' button wasn't pressed, so we should filter */
                if (!isset($_POST["box-1-action-clear-button"])) {
                    if (trim($_POST["box-1-search_filter"]) != "") {
                        $get_string = ($get_string == "" ? "?" : "&") . "search_filter=" . urlencode($_POST["box-1-search_filter"]);
                    }
                }
                header("Location: graphs.php{$get_string}");
            }
        }
    }
}
Beispiel #2
0
function form_post()
{
    if ($_POST["action_post"] == "data_source_add") {
        if (!empty($_POST["data_template_id"])) {
            $data_source_id = copy_data_template_to_data_source($_POST["data_template_id"], $_POST["host_id"]);
            if ($data_source_id) {
                api_data_source_title_cache_update($data_source_id);
            } else {
                log_save("Error pushing data template [ID#" . $_POST["data_template_id"] . "] down to a data source.", SEV_ERROR);
            }
        }
        header("Location: data_sources.php?action=edit" . (empty($data_source_id) ? "" : "&id={$data_source_id}") . (!isset($_POST["host_id"]) ? "" : "&host_id=" . $_POST["host_id"]) . (!isset($_POST["data_template_id"]) ? "" : "&data_template_id=" . $_POST["data_template_id"]));
    } else {
        if ($_POST["action_post"] == "data_source_edit") {
            /* fetch some cache variables */
            if (empty($_POST["data_source_id"])) {
                $_data_template_id = 0;
            } else {
                $_data_template_id = db_fetch_cell("select data_template_id from data_source where id = " . $_POST["data_source_id"]);
            }
            /* cache all post field values */
            init_post_field_cache();
            $data_source_fields = array();
            $data_source_item_fields = array();
            $data_input_fields = array();
            $rra_item_fields = array();
            /* parse out form values that we care about (data source / data source item fields) */
            reset($_POST);
            while (list($name, $value) = each($_POST)) {
                if (substr($name, 0, 4) == "dsi|") {
                    $matches = explode("|", $name);
                    $data_source_item_fields[$matches[2]][$matches[1]] = $value;
                } else {
                    if (substr($name, 0, 4) == "dif_") {
                        $data_input_fields[substr($name, 4)] = $value;
                    } else {
                        if (substr($name, 0, 3) == "ds|") {
                            $matches = explode("|", $name);
                            $data_source_fields[$matches[1]] = $value;
                        } else {
                            if (substr($name, 0, 5) == "rrai|") {
                                $matches = explode("|", $name);
                                $rra_item_fields[$matches[2]][$matches[1]] = $value;
                            }
                        }
                    }
                }
            }
            /* add any unchecked checkbox fields */
            $data_source_fields += field_register_html_checkboxes(api_data_source_form_list(), "ds||field|");
            /* step #2: field validation */
            $suggested_value_fields = array();
            /* placeholder */
            field_register_error(api_data_source_fields_validate($data_source_fields, $suggested_value_fields, "ds||field|", ""));
            field_register_error(api_data_source_input_fields_validate($data_input_fields, "dif_|field|"));
            foreach ($data_source_item_fields as $data_source_item_id => $data_source_item) {
                field_register_error(api_data_source_item_fields_validate($data_source_item, "dsi||field||{$data_source_item_id}"));
            }
            /* step #3: field save */
            if (is_error_message()) {
                log_save("User input validation error for data source [ID#" . $_POST["data_source_id"] . "]", SEV_DEBUG);
            } else {
                /* save data source data */
                $data_source_id = api_data_source_save($_POST["data_source_id"], $data_source_fields);
                if ($data_source_id) {
                    /* treat this as a regular form with rra presets if there is no template selected */
                    if (empty($_data_template_id)) {
                        if (isset($_POST["preset_rra_id"])) {
                            /* copy down the selected rra preset into the data template if a preset is selected */
                            api_data_source_rra_item_clear($data_source_id);
                            /* copy down associated rra items from the preset */
                            api_data_source_preset_rra_item_copy($data_source_id, $_POST["preset_rra_id"]);
                        }
                        /* rra items for templated forms ALWAYS come from the template */
                    } else {
                        /* ONLY copy down rra items from the template if the data source is new */
                        if (empty($_POST["data_source_id"])) {
                            if (!api_data_source_data_template_rra_item_copy($data_source_id, $_POST["data_template_id"])) {
                                log_save("Copy error for data template [ID#" . $_POST["data_template_id"] . "], data source [ID#" . $data_source_id . "]", SEV_ERROR);
                            }
                        }
                    }
                    /* save data source input fields */
                    if (!api_data_source_fields_save($data_source_id, $data_input_fields)) {
                        log_save("Save error for data input fields, data source [ID#" . $data_source_id . "]", SEV_ERROR);
                    }
                    /* save data source item data */
                    foreach ($data_source_item_fields as $data_source_item_id => $data_source_item) {
                        /* required fields */
                        $data_source_item["data_source_id"] = $data_source_id;
                        if (!api_data_source_item_save($data_source_item_id, $data_source_item)) {
                            log_save("Save error for data source item [ID#" . $data_source_item_id . "], data source [ID#" . $data_source_id . "]", SEV_ERROR);
                        }
                    }
                } else {
                    log_save("Save error for data source [ID#" . $_POST["data_source_id"] . "]", SEV_ERROR);
                }
            }
            if (is_error_message() || $_POST["data_template_id"] != $_data_template_id) {
                if (isset($_POST["redirect_item_add"])) {
                    $action = "item_add";
                } else {
                    $action = "edit";
                }
                header("Location: data_sources.php?action={$action}" . (empty($_POST["data_source_id"]) ? "" : "&id=" . $_POST["data_source_id"]) . (!isset($_POST["host_id"]) ? "" : "&host_id=" . $_POST["host_id"]) . (!isset($_POST["data_template_id"]) ? "" : "&data_template_id=" . $_POST["data_template_id"]) . (isset($_POST["data_input_type"]) ? "&data_input_type=" . $_POST["data_input_type"] : "") . (isset($_POST["dif_script_id"]) ? "&script_id=" . $_POST["dif_script_id"] : "") . (isset($_POST["dif_data_query_id"]) ? "&data_query_id=" . $_POST["dif_data_query_id"] : ""));
            } else {
                header("Location: data_sources.php");
            }
            /* submit button on the actions area page */
        } else {
            if ($_POST["action_post"] == "box-1") {
                $selected_rows = explode(":", $_POST["box-1-action-area-selected-rows"]);
                if ($_POST["box-1-action-area-type"] == "search") {
                    $get_string = "";
                    if ($_POST["box-1-search_device"] != "-1") {
                        $get_string .= ($get_string == "" ? "?" : "&") . "search_device=" . urlencode($_POST["box-1-search_device"]);
                    }
                    if (trim($_POST["box-1-search_filter"]) != "") {
                        $get_string .= ($get_string == "" ? "?" : "&") . "search_filter=" . urlencode($_POST["box-1-search_filter"]);
                    }
                    header("Location: data_sources.php{$get_string}");
                    exit;
                } else {
                    if ($_POST["box-1-action-area-type"] == "remove") {
                        foreach ($selected_rows as $data_source_id) {
                            api_data_source_remove($data_source_id);
                        }
                    } else {
                        if ($_POST["box-1-action-area-type"] == "duplicate") {
                            // not yet coded
                        } else {
                            if ($_POST["box-1-action-area-type"] == "enable") {
                                foreach ($selected_rows as $data_source_id) {
                                    api_data_source_enable($data_source_id);
                                }
                            } else {
                                if ($_POST["box-1-action-area-type"] == "disable") {
                                    foreach ($selected_rows as $data_source_id) {
                                        api_data_source_disable($data_source_id);
                                    }
                                } else {
                                    if ($_POST["box-1-action-area-type"] == "change_data_template") {
                                        // note yet coded
                                    } else {
                                        if ($_POST["box-1-action-area-type"] == "change_host") {
                                            foreach ($selected_rows as $data_source_id) {
                                                api_data_source_host_update($data_source_id, $_POST["box-1-change_device"]);
                                            }
                                        } else {
                                            if ($_POST["box-1-action-area-type"] == "convert_data_template") {
                                                // note yet coded
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
                header("Location: data_sources.php");
                /* 'filter' area at the bottom of the box */
            } else {
                if ($_POST["action_post"] == "data_source_list") {
                    $get_string = "";
                    /* the 'clear' button wasn't pressed, so we should filter */
                    if (!isset($_POST["box-1-action-clear-button"])) {
                        if (trim($_POST["box-1-search_filter"]) != "") {
                            $get_string = ($get_string == "" ? "?" : "&") . "search_filter=" . urlencode($_POST["box-1-search_filter"]);
                        }
                    }
                    header("Location: data_sources.php{$get_string}");
                }
            }
        }
    }
}