2012-06-04 16:58:40 +02:00
|
|
|
<?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) 2008-2012
|
|
|
|
|
the Initial Developer. All Rights Reserved.
|
|
|
|
|
|
|
|
|
|
Contributor(s):
|
|
|
|
|
Mark J Crane <markjcrane@fusionpbx.com>
|
|
|
|
|
*/
|
|
|
|
|
require_once "root.php";
|
2013-07-06 08:03:27 +02:00
|
|
|
require_once "resources/require.php";
|
2013-07-06 07:50:55 +02:00
|
|
|
require_once "resources/check_auth.php";
|
2012-09-27 02:34:10 +02:00
|
|
|
if (permission_exists('domain_add') || permission_exists('domain_edit')) {
|
2012-06-04 16:58:40 +02:00
|
|
|
//access granted
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
echo "access denied";
|
|
|
|
|
exit;
|
|
|
|
|
}
|
|
|
|
|
|
2013-05-14 07:34:04 +02:00
|
|
|
//add multi-lingual support
|
|
|
|
|
require_once "app_languages.php";
|
|
|
|
|
foreach($text as $key => $value) {
|
|
|
|
|
$text[$key] = $value[$_SESSION['domain']['language']['code']];
|
|
|
|
|
}
|
|
|
|
|
|
2012-06-04 16:58:40 +02:00
|
|
|
//action add or update
|
|
|
|
|
if (isset($_REQUEST["id"])) {
|
|
|
|
|
$action = "update";
|
|
|
|
|
$domain_uuid = check_str($_REQUEST["id"]);
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
$action = "add";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//get http post variables and set them to php variables
|
2012-10-24 05:43:15 +02:00
|
|
|
if (count($_POST) > 0) {
|
|
|
|
|
$domain_name = strtolower(check_str($_POST["domain_name"]));
|
2012-06-04 16:58:40 +02:00
|
|
|
$domain_description = check_str($_POST["domain_description"]);
|
|
|
|
|
}
|
|
|
|
|
|
2012-08-12 14:45:10 +02:00
|
|
|
if (count($_POST) > 0 && strlen($_POST["persistformvar"]) == 0) {
|
2012-06-04 16:58:40 +02:00
|
|
|
|
|
|
|
|
$msg = '';
|
|
|
|
|
if ($action == "update") {
|
|
|
|
|
$domain_uuid = check_str($_POST["domain_uuid"]);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//check for all required data
|
2013-05-14 07:34:04 +02:00
|
|
|
//if (strlen($domain_name) == 0) { $msg .= $text['message-required'].$text['label-name']."<br>\n"; }
|
|
|
|
|
//if (strlen($domain_description) == 0) { $msg .= $text['message-required'].$text['label-description']."<br>\n"; }
|
2012-06-04 16:58:40 +02:00
|
|
|
if (strlen($msg) > 0 && strlen($_POST["persistformvar"]) == 0) {
|
|
|
|
|
require_once "includes/header.php";
|
2013-07-06 08:21:12 +02:00
|
|
|
require_once "resources/persist_form_var.php";
|
2012-06-04 16:58:40 +02:00
|
|
|
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 "includes/footer.php";
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//add or update the database
|
|
|
|
|
if ($_POST["persistformvar"] != "true") {
|
2012-09-27 02:34:10 +02:00
|
|
|
if ($action == "add" && permission_exists('domain_add')) {
|
2012-08-12 14:45:10 +02:00
|
|
|
$sql = "select count(*) as num_rows from v_domains ";
|
|
|
|
|
$sql .= "where domain_name = '$domain_name' ";
|
|
|
|
|
$prep_statement = $db->prepare($sql);
|
|
|
|
|
if ($prep_statement) {
|
|
|
|
|
$prep_statement->execute();
|
|
|
|
|
$row = $prep_statement->fetch(PDO::FETCH_ASSOC);
|
|
|
|
|
if ($row['num_rows'] == 0) {
|
|
|
|
|
$sql = "insert into v_domains ";
|
|
|
|
|
$sql .= "(";
|
|
|
|
|
$sql .= "domain_uuid, ";
|
|
|
|
|
$sql .= "domain_name, ";
|
|
|
|
|
$sql .= "domain_description ";
|
|
|
|
|
$sql .= ")";
|
|
|
|
|
$sql .= "values ";
|
|
|
|
|
$sql .= "(";
|
|
|
|
|
$sql .= "'".uuid()."', ";
|
|
|
|
|
$sql .= "'$domain_name', ";
|
|
|
|
|
$sql .= "'$domain_description' ";
|
|
|
|
|
$sql .= ")";
|
|
|
|
|
$db->exec(check_sql($sql));
|
|
|
|
|
unset($sql);
|
|
|
|
|
}
|
|
|
|
|
}
|
2012-06-04 16:58:40 +02:00
|
|
|
}
|
|
|
|
|
|
2012-09-27 02:34:10 +02:00
|
|
|
if ($action == "update" && permission_exists('domain_edit')) {
|
2012-06-04 16:58:40 +02:00
|
|
|
$sql = "update v_domains set ";
|
|
|
|
|
$sql .= "domain_name = '$domain_name', ";
|
|
|
|
|
$sql .= "domain_description = '$domain_description' ";
|
|
|
|
|
$sql .= "where domain_uuid = '$domain_uuid' ";
|
|
|
|
|
$db->exec(check_sql($sql));
|
|
|
|
|
unset($sql);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//upgrade the domains
|
|
|
|
|
require_once "core/upgrade/upgrade_domains.php";
|
|
|
|
|
|
|
|
|
|
//clear the domains session array to update it
|
|
|
|
|
unset($_SESSION["domains"]);
|
|
|
|
|
unset($_SESSION["domain_uuid"]);
|
|
|
|
|
unset($_SESSION["domain_name"]);
|
|
|
|
|
unset($_SESSION['domain']);
|
|
|
|
|
unset($_SESSION['switch']);
|
|
|
|
|
|
|
|
|
|
//redirect the browser
|
|
|
|
|
require_once "includes/header.php";
|
|
|
|
|
echo "<meta http-equiv=\"refresh\" content=\"2;url=domains.php\">\n";
|
|
|
|
|
echo "<div align='center'>\n";
|
|
|
|
|
if ($action == "update") {
|
2013-05-14 07:34:04 +02:00
|
|
|
echo $text['message-update']."\n";
|
2012-06-04 16:58:40 +02:00
|
|
|
}
|
|
|
|
|
if ($action == "add") {
|
2013-05-14 07:34:04 +02:00
|
|
|
echo $text['message-add']."\n";
|
2012-06-04 16:58:40 +02:00
|
|
|
}
|
|
|
|
|
echo "</div>\n";
|
|
|
|
|
require_once "includes/footer.php";
|
|
|
|
|
return;
|
|
|
|
|
} //if ($_POST["persistformvar"] != "true")
|
|
|
|
|
} //(count($_POST)>0 && strlen($_POST["persistformvar"]) == 0)
|
|
|
|
|
|
|
|
|
|
//pre-populate the form
|
|
|
|
|
if (count($_GET)>0 && $_POST["persistformvar"] != "true") {
|
|
|
|
|
$sql = "select * from v_domains ";
|
|
|
|
|
$sql .= "where 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) {
|
2012-10-24 05:43:15 +02:00
|
|
|
$domain_name = strtolower($row["domain_name"]);
|
2012-06-04 16:58:40 +02:00
|
|
|
$domain_description = $row["domain_description"];
|
|
|
|
|
}
|
|
|
|
|
unset ($prep_statement);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//show the header
|
|
|
|
|
require_once "includes/header.php";
|
2013-05-14 07:34:04 +02:00
|
|
|
if ($action == "update") {
|
|
|
|
|
$page["title"] = $text['title-domain-edit'];
|
|
|
|
|
}
|
|
|
|
|
if ($action == "add") {
|
|
|
|
|
$page["title"] = $text['title-domain-add'];
|
|
|
|
|
}
|
2012-06-04 16:58:40 +02:00
|
|
|
|
|
|
|
|
//show the content
|
|
|
|
|
echo "<div align='center'>";
|
|
|
|
|
echo "<table width='100%' border='0' cellpadding='0' cellspacing=''>\n";
|
|
|
|
|
echo "<tr class='border'>\n";
|
|
|
|
|
echo " <td align=\"left\">\n";
|
2012-09-27 02:34:10 +02:00
|
|
|
echo " <br>";
|
2012-06-04 16:58:40 +02:00
|
|
|
|
|
|
|
|
echo "<form method='post' name='frm' action=''>\n";
|
|
|
|
|
echo "<div align='center'>\n";
|
|
|
|
|
echo "<table width='100%' border='0' cellpadding='6' cellspacing='0'>\n";
|
|
|
|
|
echo "<tr>\n";
|
2013-05-14 07:34:04 +02:00
|
|
|
echo "<td align='left' width='30%' nowrap='nowrap'><b>";
|
|
|
|
|
if ($action == "update") {
|
|
|
|
|
echo $text['header-domain-edit'];
|
|
|
|
|
}
|
|
|
|
|
if ($action == "add") {
|
|
|
|
|
echo $text['header-domain-add'];
|
|
|
|
|
}
|
|
|
|
|
echo "</b></td>\n";
|
2013-05-11 17:40:06 +02:00
|
|
|
echo "<td width='70%' align='right'>\n";
|
|
|
|
|
if (permission_exists('domain_export')) {
|
2013-05-14 07:34:04 +02:00
|
|
|
echo " <input type='button' class='btn' name='' alt='".$text['button-export']."' onclick=\"window.location='".PROJECT_PATH."/app/domain_export/index.php?id=".$domain_uuid."'\" value='".$text['button-export']."'>\n";
|
2013-05-11 17:40:06 +02:00
|
|
|
}
|
2013-05-14 07:34:04 +02:00
|
|
|
echo " <input type='button' class='btn' name='' alt='".$text['button-back']."' onclick=\"window.location='domains.php'\" value='".$text['button-back']."'>\n";
|
2013-05-11 17:40:06 +02:00
|
|
|
echo "</td>\n";
|
2012-06-04 16:58:40 +02:00
|
|
|
echo "</tr>\n";
|
|
|
|
|
echo "<tr>\n";
|
|
|
|
|
echo "<td align='left' colspan='2'>\n";
|
2013-05-14 07:34:04 +02:00
|
|
|
if ($action == "update") {
|
|
|
|
|
echo $text['description-domain-edit'];
|
|
|
|
|
}
|
|
|
|
|
if ($action == "add") {
|
|
|
|
|
echo $text['description-domain-add'];
|
|
|
|
|
}
|
|
|
|
|
echo "<br /><br />\n";
|
2012-06-04 16:58:40 +02:00
|
|
|
echo "</td>\n";
|
|
|
|
|
echo "</tr>\n";
|
|
|
|
|
|
|
|
|
|
echo "<tr>\n";
|
|
|
|
|
echo "<td class='vncellreq' valign='top' align='left' nowrap='nowrap'>\n";
|
2013-05-14 07:34:04 +02:00
|
|
|
echo " ".$text['label-name'].":\n";
|
2012-06-04 16:58:40 +02:00
|
|
|
echo "</td>\n";
|
|
|
|
|
echo "<td class='vtable' align='left'>\n";
|
|
|
|
|
echo " <input class='formfld' type='text' name='domain_name' maxlength='255' value=\"$domain_name\">\n";
|
|
|
|
|
echo "<br />\n";
|
2013-05-14 07:34:04 +02:00
|
|
|
echo $text['description-name']."\n";
|
2012-06-04 16:58:40 +02:00
|
|
|
echo "</td>\n";
|
|
|
|
|
echo "</tr>\n";
|
|
|
|
|
|
|
|
|
|
echo "<tr>\n";
|
|
|
|
|
echo "<td class='vncell' valign='top' align='left' nowrap='nowrap'>\n";
|
2013-05-14 07:34:04 +02:00
|
|
|
echo " ".$text['label-description'].":\n";
|
2012-06-04 16:58:40 +02:00
|
|
|
echo "</td>\n";
|
|
|
|
|
echo "<td class='vtable' align='left'>\n";
|
|
|
|
|
echo " <input class='formfld' type='text' name='domain_description' maxlength='255' value=\"$domain_description\">\n";
|
|
|
|
|
echo "<br />\n";
|
2013-05-14 07:34:04 +02:00
|
|
|
echo $text['description-description']."\n";
|
2012-06-04 16:58:40 +02:00
|
|
|
echo "</td>\n";
|
|
|
|
|
echo "</tr>\n";
|
|
|
|
|
echo " <tr>\n";
|
|
|
|
|
echo " <td colspan='2' align='right'>\n";
|
|
|
|
|
if ($action == "update") {
|
|
|
|
|
echo " <input type='hidden' name='domain_uuid' value='$domain_uuid'>\n";
|
|
|
|
|
}
|
2013-05-14 07:34:04 +02:00
|
|
|
echo " <input type='submit' name='submit' class='btn' value='".$text['button-save']."'>\n";
|
2012-06-04 16:58:40 +02:00
|
|
|
echo " </td>\n";
|
|
|
|
|
echo " </tr>";
|
|
|
|
|
echo "</table>";
|
|
|
|
|
echo "</form>";
|
|
|
|
|
|
|
|
|
|
if ($action == "update") {
|
|
|
|
|
require "domain_settings.php";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
echo " </td>";
|
|
|
|
|
echo " </tr>";
|
|
|
|
|
echo "</table>";
|
|
|
|
|
echo "</div>";
|
|
|
|
|
|
|
|
|
|
//include the footer
|
|
|
|
|
require_once "includes/footer.php";
|
|
|
|
|
?>
|