fusionpbx/app/access_controls/access_control_edit.php

246 lines
8.4 KiB
PHP
Raw Normal View History

<?php
2018-06-04 02:01:10 +02:00
/*
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.
Contributor(s):
Mark J Crane <markjcrane@fusionpbx.com>
*/
2016-06-22 02:00:38 +02:00
//includes
require_once "root.php";
require_once "resources/require.php";
//check permissions
require_once "resources/check_auth.php";
if (permission_exists('access_control_add') || permission_exists('access_control_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";
$access_control_uuid = check_str($_REQUEST["id"]);
}
else {
$action = "add";
}
//get http post variables and set them to php variables
if (count($_POST)>0) {
$access_control_name = check_str($_POST["access_control_name"]);
$access_control_default = check_str($_POST["access_control_default"]);
$access_control_description = check_str($_POST["access_control_description"]);
}
if (count($_POST)>0 && strlen($_POST["persistformvar"]) == 0) {
2017-07-04 19:34:41 +02:00
//get the primary key
if ($action == "update") {
$access_control_uuid = check_str($_POST["access_control_uuid"]);
}
//check for all required data
2017-07-04 19:34:41 +02:00
$msg = '';
if (strlen($access_control_name) == 0) { $msg .= $text['message-required']." ".$text['label-access_control_name']."<br>\n"; }
if (strlen($access_control_default) == 0) { $msg .= $text['message-required']." ".$text['label-access_control_default']."<br>\n"; }
//if (strlen($access_control_description) == 0) { $msg .= $text['message-required']." ".$text['label-access_control_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;
}
//add or update the database
if ($_POST["persistformvar"] != "true") {
if ($action == "add" && permission_exists('access_control_add')) {
2017-07-04 19:15:47 +02:00
//update the database
$sql = "insert into v_access_controls ";
$sql .= "(";
$sql .= "access_control_uuid, ";
$sql .= "access_control_name, ";
$sql .= "access_control_default, ";
$sql .= "access_control_description ";
$sql .= ")";
$sql .= "values ";
$sql .= "(";
$sql .= "'".uuid()."', ";
$sql .= "'$access_control_name', ";
$sql .= "'$access_control_default', ";
$sql .= "'$access_control_description' ";
$sql .= ")";
$db->exec(check_sql($sql));
unset($sql);
2017-07-04 19:15:47 +02:00
//clear the cache
$cache = new cache;
$cache->delete("configuration:acl.conf");
2017-07-04 19:34:41 +02:00
//create the event socket connection
$fp = event_socket_create($_SESSION['event_socket_ip_address'], $_SESSION['event_socket_port'], $_SESSION['event_socket_password']);
2017-07-04 19:35:55 +02:00
if ($fp) { event_socket_request($fp, "api reloadacl"); }
2017-07-04 19:34:41 +02:00
2017-07-04 19:15:47 +02:00
//add the message
2018-08-31 05:09:01 +02:00
message::add($text['message-add']);
2017-07-04 19:15:47 +02:00
//redirect the user
2016-06-22 02:00:38 +02:00
header("Location: access_controls.php");
return;
} //if ($action == "add")
if ($action == "update" && permission_exists('access_control_edit')) {
2017-07-04 19:15:47 +02:00
//update the database
$sql = "update v_access_controls set ";
$sql .= "access_control_name = '$access_control_name', ";
$sql .= "access_control_default = '$access_control_default', ";
$sql .= "access_control_description = '$access_control_description' ";
$sql .= "where access_control_uuid = '$access_control_uuid'";
$db->exec(check_sql($sql));
unset($sql);
2017-07-04 19:15:47 +02:00
//clear the cache
$cache = new cache;
$cache->delete("configuration:acl.conf");
2017-07-04 19:34:41 +02:00
//create the event socket connection
$fp = event_socket_create($_SESSION['event_socket_ip_address'], $_SESSION['event_socket_port'], $_SESSION['event_socket_password']);
2017-07-04 19:35:55 +02:00
if ($fp) { event_socket_request($fp, "api reloadacl"); }
2017-07-04 19:34:41 +02:00
2017-07-04 19:15:47 +02:00
//add the message
2018-08-31 05:09:01 +02:00
message::add($text['message-update']);
2017-07-04 19:15:47 +02:00
//redirect the user
2016-06-22 02:00:38 +02:00
header("Location: access_controls.php");
return;
} //if ($action == "update")
} //if ($_POST["persistformvar"] != "true")
} //(count($_POST)>0 && strlen($_POST["persistformvar"]) == 0)
//pre-populate the form
2018-06-30 02:28:09 +02:00
if (count($_GET) > 0 && $_POST["persistformvar"] != "true") {
$access_control_uuid = check_str($_GET["id"]);
$sql = "select * from v_access_controls ";
$sql .= "where access_control_uuid = '$access_control_uuid' ";
$prep_statement = $db->prepare(check_sql($sql));
$prep_statement->execute();
$result = $prep_statement->fetchAll(PDO::FETCH_NAMED);
foreach ($result as &$row) {
$access_control_name = $row["access_control_name"];
$access_control_default = $row["access_control_default"];
$access_control_description = $row["access_control_description"];
break; //limit to 1 row
}
unset ($prep_statement);
}
//show the header
require_once "resources/header.php";
//show the content
2016-06-22 02:00:38 +02:00
echo "<form name='frm' id='frm' method='post' action=''>\n";
echo "<table width='100%' border='0' cellpadding='0' cellspacing='0'>\n";
echo "<tr>\n";
2016-03-28 16:41:55 +02:00
echo "<td align='left' width='30%' nowrap='nowrap' valign='top'><b>".$text['title-access_control']."</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='access_controls.php'\" value='".$text['button-back']."'>";
echo " <input type='submit' name='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-access_control_name']."\n";
echo "</td>\n";
echo "<td class='vtable' align='left'>\n";
2018-06-30 02:28:09 +02:00
echo " <input class='formfld' type='text' name='access_control_name' maxlength='255' value=\"".escape($access_control_name)."\">\n";
echo "<br />\n";
echo $text['description-access_control_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-access_control_default']."\n";
echo "</td>\n";
echo "<td class='vtable' align='left'>\n";
echo " <select class='formfld' name='access_control_default'>\n";
echo " <option value=''></option>\n";
if ($access_control_default == "allow") {
echo " <option value='allow' selected='selected'>".$text['label-allow']."</option>\n";
}
else {
echo " <option value='allow'>".$text['label-allow']."</option>\n";
}
if ($access_control_default == "deny") {
echo " <option value='deny' selected='selected'>".$text['label-deny']."</option>\n";
}
else {
echo " <option value='deny'>".$text['label-deny']."</option>\n";
}
echo " </select>\n";
echo "<br />\n";
echo $text['description-access_control_default']."\n";
echo "</td>\n";
echo "</tr>\n";
echo "<tr>\n";
echo "<td class='vncell' valign='top' align='left' nowrap='nowrap'>\n";
echo " ".$text['label-access_control_description']."\n";
echo "</td>\n";
echo "<td class='vtable' align='left'>\n";
2018-06-30 02:28:09 +02:00
echo " <input class='formfld' type='text' name='access_control_description' maxlength='255' value=\"".escape($access_control_description)."\">\n";
echo "<br />\n";
echo $text['description-access_control_description']."\n";
echo "</td>\n";
echo "</tr>\n";
echo " <tr>\n";
echo " <td colspan='2' align='right'>\n";
if ($action == "update") {
2018-06-30 02:28:09 +02:00
echo " <input type='hidden' name='access_control_uuid' value='".escape($access_control_uuid)."'>\n";
}
2016-03-28 16:41:55 +02:00
echo " <br><input type='submit' name='submit' class='btn' value='".$text['button-save']."'>\n";
echo " </td>\n";
echo " </tr>";
echo "</table>";
echo "</form>";
2016-06-22 02:00:38 +02:00
echo "<br /><br />";
if ($action == "update") {
require "access_control_nodes.php";
2016-03-28 16:41:55 +02:00
echo "<br><br>";
}
//include the footer
require_once "resources/footer.php";
2018-06-30 02:28:09 +02:00
2017-07-04 19:15:47 +02:00
?>