261 lines
8.5 KiB
PHP
261 lines
8.5 KiB
PHP
|
|
<?php
|
||
|
|
/*
|
||
|
|
FusionPBX
|
||
|
|
Version: MPL 1.1
|
||
|
|
|
||
|
|
The contents of this file are subject to the Mozilla Public License Version
|
||
|
|
1.1 (the "License"); you may not use this file except in compliance with
|
||
|
|
the License. You may obtain a copy of the License at
|
||
|
|
http://www.mozilla.org/MPL/
|
||
|
|
|
||
|
|
Software distributed under the License is distributed on an "AS IS" basis,
|
||
|
|
WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
||
|
|
for the specific language governing rights and limitations under the
|
||
|
|
License.
|
||
|
|
|
||
|
|
The Original Code is FusionPBX
|
||
|
|
|
||
|
|
The Initial Developer of the Original Code is
|
||
|
|
Mark J Crane <markjcrane@fusionpbx.com>
|
||
|
|
Portions created by the Initial Developer are Copyright (C) 2018
|
||
|
|
the Initial Developer. All Rights Reserved.
|
||
|
|
*/
|
||
|
|
|
||
|
|
//includes
|
||
|
|
require_once "root.php";
|
||
|
|
require_once "resources/require.php";
|
||
|
|
|
||
|
|
//check permissions
|
||
|
|
require_once "resources/check_auth.php";
|
||
|
|
if (permission_exists('stream_add') || permission_exists('stream_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";
|
||
|
|
$stream_uuid = check_str($_REQUEST["id"]);
|
||
|
|
$id = check_str($_REQUEST["id"]);
|
||
|
|
}
|
||
|
|
else {
|
||
|
|
$action = "add";
|
||
|
|
}
|
||
|
|
|
||
|
|
//get http post variables and set them to php variables
|
||
|
|
if (is_array($_POST)) {
|
||
|
|
$stream_uuid = check_str($_POST["stream_uuid"]);
|
||
|
|
$stream_name = check_str($_POST["stream_name"]);
|
||
|
|
$stream_location = check_str($_POST["stream_location"]);
|
||
|
|
$stream_enabled = check_str($_POST["stream_enabled"]);
|
||
|
|
$stream_description = check_str($_POST["stream_description"]);
|
||
|
|
}
|
||
|
|
|
||
|
|
//process the user data and save it to the database
|
||
|
|
if (count($_POST) > 0 && strlen($_POST["persistformvar"]) == 0) {
|
||
|
|
|
||
|
|
//get the uuid from the POST
|
||
|
|
if ($action == "update") {
|
||
|
|
$stream_uuid = check_str($_POST["stream_uuid"]);
|
||
|
|
}
|
||
|
|
|
||
|
|
//check for all required data
|
||
|
|
$msg = '';
|
||
|
|
if (strlen($stream_name) == 0) { $msg .= $text['message-required']." ".$text['label-stream_name']."<br>\n"; }
|
||
|
|
if (strlen($stream_location) == 0) { $msg .= $text['message-required']." ".$text['label-stream_location']."<br>\n"; }
|
||
|
|
if (strlen($stream_enabled) == 0) { $msg .= $text['message-required']." ".$text['label-stream_enabled']."<br>\n"; }
|
||
|
|
//if (strlen($domain_uuid) == 0) { $msg .= $text['message-required']." ".$text['label-domain_uuid']."<br>\n"; }
|
||
|
|
//if (strlen($stream_description) == 0) { $msg .= $text['message-required']." ".$text['label-stream_description']."<br>\n"; }
|
||
|
|
if (strlen($msg) > 0 && strlen($_POST["persistformvar"]) == 0) {
|
||
|
|
require_once "resources/header.php";
|
||
|
|
require_once "resources/persist_form_var.php";
|
||
|
|
echo "<div align='center'>\n";
|
||
|
|
echo "<table><tr><td>\n";
|
||
|
|
echo $msg."<br />";
|
||
|
|
echo "</td></tr></table>\n";
|
||
|
|
persistformvar($_POST);
|
||
|
|
echo "</div>\n";
|
||
|
|
require_once "resources/footer.php";
|
||
|
|
return;
|
||
|
|
}
|
||
|
|
|
||
|
|
//set the domain_uuid
|
||
|
|
$_POST["domain_uuid"] = $_SESSION["domain_uuid"];
|
||
|
|
|
||
|
|
//add the stream_uuid
|
||
|
|
if (strlen($_POST["stream_uuid"]) == 0) {
|
||
|
|
$stream_uuid = uuid();
|
||
|
|
$_POST["stream_uuid"] = $stream_uuid;
|
||
|
|
}
|
||
|
|
|
||
|
|
//prepare the array
|
||
|
|
$array['streams'][0] = $_POST;
|
||
|
|
|
||
|
|
//save to the data
|
||
|
|
$database = new database;
|
||
|
|
$database->app_name = 'streams';
|
||
|
|
$database->app_uuid = null;
|
||
|
|
if (strlen($stream_uuid) > 0) {
|
||
|
|
$database->uuid($stream_uuid);
|
||
|
|
}
|
||
|
|
$database->save($array);
|
||
|
|
$message = $database->message;
|
||
|
|
|
||
|
|
//debug info
|
||
|
|
//echo "<pre>";
|
||
|
|
//print_r($message);
|
||
|
|
//echo "</pre>";
|
||
|
|
//exit;
|
||
|
|
|
||
|
|
//redirect the user
|
||
|
|
if (isset($action)) {
|
||
|
|
if ($action == "add") {
|
||
|
|
$_SESSION["message"] = $text['message-add'];
|
||
|
|
}
|
||
|
|
if ($action == "update") {
|
||
|
|
$_SESSION["message"] = $text['message-update'];
|
||
|
|
}
|
||
|
|
header('Location: stream_edit.php?id='.$stream_uuid);
|
||
|
|
return;
|
||
|
|
}
|
||
|
|
} //(is_array($_POST) && strlen($_POST["persistformvar"]) == 0)
|
||
|
|
|
||
|
|
//pre-populate the form
|
||
|
|
if (is_array($_GET) && $_POST["persistformvar"] != "true") {
|
||
|
|
$stream_uuid = check_str($_GET["id"]);
|
||
|
|
$sql = "select * from v_streams ";
|
||
|
|
$sql .= "where stream_uuid = '$stream_uuid' ";
|
||
|
|
//$sql .= "and domain_uuid = '$domain_uuid' ";
|
||
|
|
$prep_statement = $db->prepare(check_sql($sql));
|
||
|
|
$prep_statement->execute();
|
||
|
|
$result = $prep_statement->fetchAll(PDO::FETCH_NAMED);
|
||
|
|
foreach ($result as &$row) {
|
||
|
|
$stream_name = $row["stream_name"];
|
||
|
|
$stream_location = $row["stream_location"];
|
||
|
|
$stream_enabled = $row["stream_enabled"];
|
||
|
|
$stream_description = $row["stream_description"];
|
||
|
|
}
|
||
|
|
unset ($prep_statement);
|
||
|
|
}
|
||
|
|
|
||
|
|
//show the header
|
||
|
|
require_once "resources/header.php";
|
||
|
|
|
||
|
|
//show the content
|
||
|
|
echo "<form name='frm' id='frm' method='post' action=''>\n";
|
||
|
|
echo "<table width='100%' border='0' cellpadding='0' cellspacing='0'>\n";
|
||
|
|
|
||
|
|
echo "<tr>\n";
|
||
|
|
echo "<td align='left' width='30%' nowrap='nowrap' valign='top'><b>".$text['title-stream']."</b><br><br></td>\n";
|
||
|
|
echo "<td width='70%' align='right' valign='top'>\n";
|
||
|
|
echo " <input type='button' class='btn' name='' alt='".$text['button-back']."' onclick=\"window.location='streams.php'\" value='".$text['button-back']."'>";
|
||
|
|
echo " <input type='submit' class='btn' value='".$text['button-save']."'>";
|
||
|
|
echo "</td>\n";
|
||
|
|
echo "</tr>\n";
|
||
|
|
|
||
|
|
echo "<tr>\n";
|
||
|
|
echo "<td class='vncellreq' valign='top' align='left' nowrap='nowrap'>\n";
|
||
|
|
echo " ".$text['label-stream_name']."\n";
|
||
|
|
echo "</td>\n";
|
||
|
|
echo "<td class='vtable' style='position: relative;' align='left'>\n";
|
||
|
|
echo " <input class='formfld' type='text' name='stream_name' maxlength='255' value=\"$stream_name\">\n";
|
||
|
|
echo "<br />\n";
|
||
|
|
echo $text['description-stream_name']."\n";
|
||
|
|
echo "</td>\n";
|
||
|
|
echo "</tr>\n";
|
||
|
|
|
||
|
|
echo "<tr>\n";
|
||
|
|
echo "<td class='vncellreq' valign='top' align='left' nowrap='nowrap'>\n";
|
||
|
|
echo " ".$text['label-stream_location']."\n";
|
||
|
|
echo "</td>\n";
|
||
|
|
echo "<td class='vtable' style='position: relative;' align='left'>\n";
|
||
|
|
echo " <input class='formfld' type='text' name='stream_location' maxlength='255' value=\"$stream_location\">\n";
|
||
|
|
echo "<br />\n";
|
||
|
|
echo $text['description-stream_location']."\n";
|
||
|
|
echo "</td>\n";
|
||
|
|
echo "</tr>\n";
|
||
|
|
|
||
|
|
echo "<tr>\n";
|
||
|
|
echo "<td class='vncellreq' valign='top' align='left' nowrap='nowrap'>\n";
|
||
|
|
echo " ".$text['label-stream_enabled']."\n";
|
||
|
|
echo "</td>\n";
|
||
|
|
echo "<td class='vtable' style='position: relative;' align='left'>\n";
|
||
|
|
echo " <select class='formfld' name='stream_enabled'>\n";
|
||
|
|
echo " <option value=''></option>\n";
|
||
|
|
if ($stream_enabled == "true") {
|
||
|
|
echo " <option value='true' selected='selected'>".$text['label-true']."</option>\n";
|
||
|
|
}
|
||
|
|
else {
|
||
|
|
echo " <option value='true'>".$text['label-true']."</option>\n";
|
||
|
|
}
|
||
|
|
if ($stream_enabled == "false") {
|
||
|
|
echo " <option value='false' selected='selected'>".$text['label-false']."</option>\n";
|
||
|
|
}
|
||
|
|
else {
|
||
|
|
echo " <option value='false'>".$text['label-false']."</option>\n";
|
||
|
|
}
|
||
|
|
echo " </select>\n";
|
||
|
|
echo "<br />\n";
|
||
|
|
echo $text['description-stream_enabled']."\n";
|
||
|
|
echo "</td>\n";
|
||
|
|
echo "</tr>\n";
|
||
|
|
|
||
|
|
echo "<tr>\n";
|
||
|
|
echo "<td class='vncell' valign='top' align='left' nowrap='nowrap'>\n";
|
||
|
|
echo " ".$text['label-domain_uuid']."\n";
|
||
|
|
echo "</td>\n";
|
||
|
|
echo "<td class='vtable' style='position: relative;' align='left'>\n";
|
||
|
|
echo " <select class='formfld' name='domain_uuid'>\n";
|
||
|
|
if (strlen($domain_uuid) == 0) {
|
||
|
|
echo " <option value='' selected='selected'>".$text['select-global']."</option>\n";
|
||
|
|
}
|
||
|
|
else {
|
||
|
|
echo " <option value=''>".$text['label-global']."</option>\n";
|
||
|
|
}
|
||
|
|
foreach ($_SESSION['domains'] as $row) {
|
||
|
|
if ($row['domain_uuid'] == $domain_uuid) {
|
||
|
|
echo " <option value='".$row['domain_uuid']."' selected='selected'>".$row['domain_name']."</option>\n";
|
||
|
|
}
|
||
|
|
else {
|
||
|
|
echo " <option value='".$row['domain_uuid']."'>".$row['domain_name']."</option>\n";
|
||
|
|
}
|
||
|
|
}
|
||
|
|
echo " </select>\n";
|
||
|
|
echo "<br />\n";
|
||
|
|
echo $text['description-domain_uuid']."\n";
|
||
|
|
echo "</td>\n";
|
||
|
|
echo "</tr>\n";
|
||
|
|
|
||
|
|
echo "<tr>\n";
|
||
|
|
echo "<td class='vncell' valign='top' align='left' nowrap='nowrap'>\n";
|
||
|
|
echo " ".$text['label-stream_description']."\n";
|
||
|
|
echo "</td>\n";
|
||
|
|
echo "<td class='vtable' style='position: relative;' align='left'>\n";
|
||
|
|
echo " <input class='formfld' type='text' name='stream_description' maxlength='255' value=\"$stream_description\">\n";
|
||
|
|
echo "<br />\n";
|
||
|
|
echo $text['description-stream_description']."\n";
|
||
|
|
echo "</td>\n";
|
||
|
|
echo "</tr>\n";
|
||
|
|
|
||
|
|
echo " <tr>\n";
|
||
|
|
echo " <td colspan='2' align='right'>\n";
|
||
|
|
echo " <input type='hidden' name='stream_uuid' value='$stream_uuid'>\n";
|
||
|
|
echo " <input type='submit' class='btn' value='".$text['button-save']."'>\n";
|
||
|
|
echo " </td>\n";
|
||
|
|
echo " </tr>";
|
||
|
|
echo "</table>";
|
||
|
|
echo "</form>";
|
||
|
|
echo "<br /><br />";
|
||
|
|
|
||
|
|
//include the footer
|
||
|
|
require_once "resources/footer.php";
|
||
|
|
|
||
|
|
?>
|