get(); //action add or update if (isset($_REQUEST["id"])) { $action = "update"; $access_control_node_uuid = check_str($_REQUEST["id"]); } else { $action = "add"; } //set the parent uuid if (strlen($_GET["access_control_uuid"]) > 0) { $access_control_uuid = check_str($_GET["access_control_uuid"]); } //get http post variables and set them to php variables if (count($_POST)>0) { $node_type = check_str($_POST["node_type"]); $node_cidr = check_str($_POST["node_cidr"]); $node_domain = check_str($_POST["node_domain"]); $node_description = check_str($_POST["node_description"]); } if (count($_POST)>0 && strlen($_POST["persistformvar"]) == 0) { //get the uuid if ($action == "update") { $access_control_node_uuid = check_str($_POST["access_control_node_uuid"]); } //check for all required data $msg = ''; if (strlen($node_type) == 0) { $msg .= $text['message-required']." ".$text['label-node_type']."
\n"; } //if (strlen($node_cidr) == 0) { $msg .= $text['message-required']." ".$text['label-node_cidr']."
\n"; } //if (strlen($node_domain) == 0) { $msg .= $text['message-required']." ".$text['label-node_domain']."
\n"; } //if (strlen($node_description) == 0) { $msg .= $text['message-required']." ".$text['label-node_description']."
\n"; } // check IPv4 and IPv6 CIDR notation $pattern4 = '/^(([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])(\/([0-9]|[1-2][0-9]|3[0-2]))$/'; $pattern6 = '/^s*((([0-9A-Fa-f]{1,4}:){7}([0-9A-Fa-f]{1,4}|:))|(([0-9A-Fa-f]{1,4}:){6}(:[0-9A-Fa-f]{1,4}|((25[0-5]|2[0-4]d|1dd|[1-9]?d)(.(25[0-5]|2[0-4]d|1dd|[1-9]?d)){3})|:))|(([0-9A-Fa-f]{1,4}:){5}(((:[0-9A-Fa-f]{1,4}){1,2})|:((25[0-5]|2[0-4]d|1dd|[1-9]?d)(.(25[0-5]|2[0-4]d|1dd|[1-9]?d)){3})|:))|(([0-9A-Fa-f]{1,4}:){4}(((:[0-9A-Fa-f]{1,4}){1,3})|((:[0-9A-Fa-f]{1,4})?:((25[0-5]|2[0-4]d|1dd|[1-9]?d)(.(25[0-5]|2[0-4]d|1dd|[1-9]?d)){3}))|:))|(([0-9A-Fa-f]{1,4}:){3}(((:[0-9A-Fa-f]{1,4}){1,4})|((:[0-9A-Fa-f]{1,4}){0,2}:((25[0-5]|2[0-4]d|1dd|[1-9]?d)(.(25[0-5]|2[0-4]d|1dd|[1-9]?d)){3}))|:))|(([0-9A-Fa-f]{1,4}:){2}(((:[0-9A-Fa-f]{1,4}){1,5})|((:[0-9A-Fa-f]{1,4}){0,3}:((25[0-5]|2[0-4]d|1dd|[1-9]?d)(.(25[0-5]|2[0-4]d|1dd|[1-9]?d)){3}))|:))|(([0-9A-Fa-f]{1,4}:){1}(((:[0-9A-Fa-f]{1,4}){1,6})|((:[0-9A-Fa-f]{1,4}){0,4}:((25[0-5]|2[0-4]d|1dd|[1-9]?d)(.(25[0-5]|2[0-4]d|1dd|[1-9]?d)){3}))|:))|(:(((:[0-9A-Fa-f]{1,4}){1,7})|((:[0-9A-Fa-f]{1,4}){0,5}:((25[0-5]|2[0-4]d|1dd|[1-9]?d)(.(25[0-5]|2[0-4]d|1dd|[1-9]?d)){3}))|:)))(%.+)?s*(\/([0-9]|[1-9][0-9]|1[0-1][0-9]|12[0-8]))$/'; if ($node_cidr != '' && (preg_match($pattern4, $node_cidr) == 0) && (preg_match($pattern6, $node_cidr) == 0)) { $msg .= $text['message-required']." ".$text['label-node_cidr']."
\n"; } if (strlen($msg) > 0 && strlen($_POST["persistformvar"]) == 0) { require_once "resources/header.php"; require_once "resources/persist_form_var.php"; echo "
\n"; echo "
\n"; echo $msg."
"; echo "
\n"; persistformvar($_POST); echo "
\n"; require_once "resources/footer.php"; return; } //add or update the database if ($_POST["persistformvar"] != "true") { if ($action == "add" && permission_exists('access_control_node_add')) { //update the database $sql = "insert into v_access_control_nodes "; $sql .= "("; $sql .= "access_control_node_uuid, "; $sql .= "access_control_uuid, "; $sql .= "node_type, "; $sql .= "node_cidr, "; $sql .= "node_domain, "; $sql .= "node_description "; $sql .= ")"; $sql .= "values "; $sql .= "("; $sql .= "'".uuid()."', "; $sql .= "'$access_control_uuid', "; $sql .= "'$node_type', "; $sql .= "'$node_cidr', "; $sql .= "'$node_domain', "; $sql .= "'$node_description' "; $sql .= ")"; $db->exec(check_sql($sql)); unset($sql); //clear the cache $cache = new cache; $cache->delete("configuration:acl.conf"); //create the event socket connection $fp = event_socket_create($_SESSION['event_socket_ip_address'], $_SESSION['event_socket_port'], $_SESSION['event_socket_password']); if ($fp) { event_socket_request($fp, "api reloadacl"); } //add the message messages::add($text['message-add']); //redirect the browser header('Location: access_control_edit.php?id='.$access_control_uuid); return; } //if ($action == "add") if ($action == "update" && permission_exists('access_control_node_edit')) { //update the database $sql = "update v_access_control_nodes set "; $sql .= "access_control_uuid = '$access_control_uuid', "; $sql .= "node_type = '$node_type', "; $sql .= "node_cidr = '$node_cidr', "; $sql .= "node_domain = '$node_domain', "; $sql .= "node_description = '$node_description' "; $sql .= "where access_control_node_uuid = '$access_control_node_uuid'"; $db->exec(check_sql($sql)); unset($sql); //clear the cache $cache = new cache; $cache->delete("configuration:acl.conf"); //create the event socket connection $fp = event_socket_create($_SESSION['event_socket_ip_address'], $_SESSION['event_socket_port'], $_SESSION['event_socket_password']); if ($fp) { event_socket_request($fp, "api reloadacl"); } //add the message messages::add($text['message-update']); //redirect the browser header('Location: access_control_edit.php?id='.$access_control_uuid); return; } //if ($action == "update") } //if ($_POST["persistformvar"] != "true") } //(count($_POST)>0 && strlen($_POST["persistformvar"]) == 0) //pre-populate the form if (count($_GET)>0 && $_POST["persistformvar"] != "true") { $access_control_node_uuid = check_str($_GET["id"]); $sql = "select * from v_access_control_nodes "; $sql .= "where access_control_node_uuid = '$access_control_node_uuid' "; $prep_statement = $db->prepare(check_sql($sql)); $prep_statement->execute(); $result = $prep_statement->fetchAll(PDO::FETCH_NAMED); foreach ($result as &$row) { $node_type = $row["node_type"]; $node_cidr = $row["node_cidr"]; $node_domain = $row["node_domain"]; $node_description = $row["node_description"]; break; //limit to 1 row } unset ($prep_statement); } //show the header require_once "resources/header.php"; //show the content echo "
\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo " \n"; echo " \n"; echo " "; echo "
".$text['title-access_control_node']."

\n"; echo " "; echo " "; echo "
\n"; echo " ".$text['label-node_type']."\n"; echo "\n"; echo " \n"; echo "
\n"; echo $text['description-node_type']."\n"; echo "
\n"; echo " ".$text['label-node_cidr']."\n"; echo "\n"; echo " \n"; echo "
\n"; echo $text['description-node_cidr']."\n"; echo "
\n"; echo " ".$text['label-node_domain']."\n"; echo "\n"; echo " \n"; echo "
\n"; echo $text['description-node_domain']."\n"; echo "
\n"; echo " ".$text['label-node_description']."\n"; echo "\n"; echo " \n"; echo "
\n"; echo $text['description-node_description']."\n"; echo "
\n"; echo " \n"; if ($action == "update") { echo " \n"; } echo "
\n"; echo "
"; echo "
"; echo "

"; //include the footer require_once "resources/footer.php"; ?>