Portions created by the Initial Developer are Copyright (C) 2008-2014 the Initial Developer. All Rights Reserved. Contributor(s): Mark J Crane */ require_once "root.php"; require_once "resources/require.php"; require_once "resources/check_auth.php"; if (permission_exists('conference_center_add') || permission_exists('conference_center_edit')) { //access granted } else { echo "access denied"; exit; } //add multi-lingual support $language = new text; $text = $language->get(); //action add or update if (isset($_REQUEST["id"])) { $action = "update"; $conference_center_uuid = check_str($_REQUEST["id"]); } else { $action = "add"; } //get http post variables and set them to php variables if (count($_POST) > 0) { $dialplan_uuid = check_str($_POST["dialplan_uuid"]); $conference_center_name = check_str($_POST["conference_center_name"]); $conference_center_extension = check_str($_POST["conference_center_extension"]); $conference_center_greeting = check_str($_POST["conference_center_greeting"]); $conference_center_pin_length = check_str($_POST["conference_center_pin_length"]); $conference_center_description = check_str($_POST["conference_center_description"]); $conference_center_enabled = check_str($_POST["conference_center_enabled"]); //sanitize the conference name $conference_center_name = preg_replace("/[^A-Za-z0-9\- ]/", "", $conference_center_name); $conference_center_name = str_replace(" ", "-", $conference_center_name); } //process user data if (count($_POST)>0 && strlen($_POST["persistformvar"]) == 0) { $msg = ''; if ($action == "update") { $conference_center_uuid = check_str($_POST["conference_center_uuid"]); } //check for all required data //if (strlen($dialplan_uuid) == 0) { $msg .= "Please provide: Dialplan UUID
\n"; } if (strlen($conference_center_name) == 0) { $msg .= "Please provide: Name
\n"; } if (strlen($conference_center_extension) == 0) { $msg .= "Please provide: Extension
\n"; } if (strlen($conference_center_pin_length) == 0) { $msg .= "Please provide: PIN Length
\n"; } //if (strlen($conference_center_order) == 0) { $msg .= "Please provide: Order
\n"; } //if (strlen($conference_center_description) == 0) { $msg .= "Please provide: Description
\n"; } if (strlen($conference_center_enabled) == 0) { $msg .= "Please provide: Enabled
\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") { //prepare the uuids $conference_center_uuid = uuid(); $dialplan_uuid = uuid(); //add the conference $sql = "insert into v_conference_centers "; $sql .= "("; $sql .= "domain_uuid, "; $sql .= "conference_center_uuid, "; $sql .= "dialplan_uuid, "; $sql .= "conference_center_name, "; $sql .= "conference_center_extension, "; $sql .= "conference_center_pin_length, "; $sql .= "conference_center_greeting, "; $sql .= "conference_center_description, "; $sql .= "conference_center_enabled "; $sql .= ")"; $sql .= "values "; $sql .= "("; $sql .= "'$domain_uuid', "; $sql .= "'$conference_center_uuid', "; $sql .= "'$dialplan_uuid', "; $sql .= "'$conference_center_name', "; $sql .= "'$conference_center_extension', "; $sql .= "'$conference_center_pin_length', "; $sql .= "'$conference_center_greeting', "; $sql .= "'$conference_center_description', "; $sql .= "'$conference_center_enabled' "; $sql .= ")"; $db->exec(check_sql($sql)); unset($sql); //create the dialplan entry $dialplan_name = $conference_center_name; $dialplan_order ='333'; $dialplan_context = $_SESSION['context']; $dialplan_enabled = 'true'; $dialplan_description = $conference_center_description; $app_uuid = 'b81412e8-7253-91f4-e48e-42fc2c9a38d9'; dialplan_add($_SESSION['domain_uuid'], $dialplan_uuid, $dialplan_name, $dialplan_order, $dialplan_context, $dialplan_enabled, $dialplan_description, $app_uuid); // $dialplan_detail_tag = 'condition'; //condition, action, antiaction $dialplan_detail_type = 'destination_number'; $dialplan_detail_data = '^'.$conference_center_extension.'$'; $dialplan_detail_order = '010'; $dialplan_detail_group = '2'; dialplan_detail_add($_SESSION['domain_uuid'], $dialplan_uuid, $dialplan_detail_tag, $dialplan_detail_order, $dialplan_detail_group, $dialplan_detail_type, $dialplan_detail_data); // $dialplan_detail_tag = 'action'; //condition, action, antiaction $dialplan_detail_type = 'lua'; $dialplan_detail_data = 'app.lua conference_center'; $dialplan_detail_order = '020'; $dialplan_detail_group = '2'; dialplan_detail_add($_SESSION['domain_uuid'], $dialplan_uuid, $dialplan_detail_tag, $dialplan_detail_order, $dialplan_detail_group, $dialplan_detail_type, $dialplan_detail_data); //save the xml save_dialplan_xml(); $_SESSION["message"] = $text['message-add']; header("Location: conference_centers.php"); return; } //if ($action == "add") if ($action == "update") { //update the conference center extension $sql = "update v_conference_centers set "; $sql .= "conference_center_name = '$conference_center_name', "; $sql .= "conference_center_extension = '$conference_center_extension', "; $sql .= "conference_center_pin_length = '$conference_center_pin_length', "; $sql .= "conference_center_greeting = '$conference_center_greeting', "; $sql .= "conference_center_description = '$conference_center_description', "; $sql .= "conference_center_enabled = '$conference_center_enabled' "; $sql .= "where domain_uuid = '$domain_uuid' "; $sql .= "and conference_center_uuid = '$conference_center_uuid'"; $db->exec(check_sql($sql)); unset($sql); //udpate the conference center dialplan $sql = "update v_dialplans set "; $sql .= "dialplan_name = '$conference_center_name', "; if (strlen($dialplan_order) > 0) { $sql .= "dialplan_order = '333', "; } $sql .= "dialplan_context = '".$_SESSION['context']."', "; $sql .= "dialplan_enabled = 'true', "; $sql .= "dialplan_description = '$conference_center_description' "; $sql .= "where domain_uuid = '".$_SESSION['domain_uuid']."' "; $sql .= "and dialplan_uuid = '$dialplan_uuid' "; $db->query($sql); unset($sql); //update dialplan detail condition $sql = "update v_dialplan_details set "; $sql .= "dialplan_detail_data = '^".$conference_center_extension."$' "; $sql .= "where domain_uuid = '".$_SESSION['domain_uuid']."' "; $sql .= "and dialplan_detail_tag = 'condition' "; $sql .= "and dialplan_detail_type = 'destination_number' "; $sql .= "and dialplan_uuid = '$dialplan_uuid' "; $db->query($sql); unset($sql); //update dialplan detail action $dialplan_detail_type = 'lua'; $dialplan_detail_data = 'app.lua conference_center'; $sql = "update v_dialplan_details set "; $sql .= "dialplan_detail_type = '".$dialplan_detail_type."', "; $sql .= "dialplan_detail_data = '".$dialplan_detail_data."' "; $sql .= "where domain_uuid = '".$_SESSION['domain_uuid']."' "; $sql .= "and dialplan_detail_tag = 'action' "; $sql .= "and dialplan_detail_type = 'lua' "; $sql .= "and dialplan_uuid = '$dialplan_uuid' "; $db->query($sql); //syncrhonize configuration save_dialplan_xml(); //apply settings reminder $_SESSION["reload_xml"] = true; //clear the cache $cache = new cache; $cache->delete("dialplan:".$_SESSION["context"]); //redirect the browser $_SESSION["message"] = $text['message-update']; header("Location: conference_centers.php"); return; } //if ($action == "update") } //if ($_POST["persistformvar"] != "true") } //(count($_POST)>0 && strlen($_POST["persistformvar"]) == 0) //function to show the list of sound files // moved to functions.php //pre-populate the form if (count($_GET)>0 && $_POST["persistformvar"] != "true") { $conference_center_uuid = $_GET["id"]; $sql = "select * from v_conference_centers "; $sql .= "where domain_uuid = '$domain_uuid' "; $sql .= "and conference_center_uuid = '$conference_center_uuid' "; $prep_statement = $db->prepare(check_sql($sql)); $prep_statement->execute(); $result = $prep_statement->fetchAll(); foreach ($result as &$row) { $dialplan_uuid = $row["dialplan_uuid"]; $conference_center_name = $row["conference_center_name"]; $conference_center_greeting = $row["conference_center_greeting"]; $conference_center_extension = $row["conference_center_extension"]; $conference_center_pin_length = $row["conference_center_pin_length"]; $conference_center_order = $row["conference_center_order"]; $conference_center_description = $row["conference_center_description"]; $conference_center_enabled = $row["conference_center_enabled"]; $conference_center_name = str_replace("-", " ", $conference_center_name); } unset ($prep_statement); } //set defaults if (strlen($conference_center_enabled) == 0) { $conference_center_enabled = "true"; } if (strlen($conference_center_pin_length) == 0) { $conference_center_pin_length = 9; } //show the header require_once "resources/header.php"; //show the content echo "
\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "
".$text['title-conference_center']."\n"; echo " \n"; if (permission_exists('conference_active_advanced_view')) { echo " \n"; } echo " \n"; echo "
\n"; echo "
"; echo $text['description-conference_center']."\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 "\n"; echo "\n"; echo "\n"; echo " \n"; echo " \n"; echo " "; echo "
\n"; echo " ".$text['label-name']."\n"; echo "\n"; echo " \n"; echo "
\n"; echo " ".$text['description-name']."\n"; echo "
\n"; echo " ".$text['label-extension']."\n"; echo "\n"; echo " \n"; echo "
\n"; echo " ".$text['description-extension']."\n"; echo "
\n"; echo " ".$text['label-greeting']."\n"; echo "\n"; if (permission_exists('conference_center_add') || permission_exists('conference_center_edit')) { echo "\n"; echo "\n"; } echo " \n"; echo "
\n"; echo $text['description-greeting']."\n"; echo "
\n"; echo " ".$text['label-pin-length']."\n"; echo "\n"; echo " \n"; echo "
\n"; echo " ".$text['description-pin-length']."\n"; echo "
\n"; echo " ".$text['label-enabled']."\n"; echo "\n"; echo " \n"; echo "
\n"; echo " ".$text['description-enabled']."\n"; echo "
\n"; echo " ".$text['label-description']."\n"; echo "\n"; echo " \n"; echo "
\n"; echo " ".$text['description-description']."\n"; echo "
\n"; if ($action == "update") { echo " \n"; echo " \n"; } echo "
"; echo " \n"; echo "
"; echo "

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