Files
fusionpbx/app/sip_profiles/sip_profile_edit.php
T

603 lines
28 KiB
PHP
Raw Normal View History

<?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>
2020-02-10 21:17:57 -07:00
Portions created by the Initial Developer are Copyright (C) 2016-2020
the Initial Developer. All Rights Reserved.
Contributor(s):
Mark J Crane <markjcrane@fusionpbx.com>
*/
2017-01-24 04:08:55 -07:00
//includes
require_once "root.php";
require_once "resources/require.php";
2020-01-06 12:30:15 -07:00
require_once "resources/check_auth.php";
2015-01-22 01:07:37 +00:00
2017-01-24 04:08:55 -07:00
//check permissions
if (permission_exists('sip_profile_add') || permission_exists('sip_profile_edit')) {
//access granted
}
else {
echo "access denied";
exit;
}
2017-01-24 04:08:55 -07:00
//add multi-lingual support
$language = new text;
$text = $language->get();
//action add or update
2019-08-13 07:32:07 -06:00
if (is_uuid($_REQUEST["id"])) {
$action = "update";
2019-08-13 07:32:07 -06:00
$sip_profile_uuid = $_REQUEST["id"];
}
else {
$action = "add";
}
//get http post variables and set them to php variables
2017-01-24 04:08:55 -07:00
if (is_array($_POST)) {
//process the http post data by submitted action
if ($_POST['action'] != '' && is_uuid($_POST['sip_profile_uuid'])) {
$array[0]['checked'] = 'true';
$array[0]['uuid'] = $_POST['sip_profile_uuid'];
switch ($_POST['action']) {
case 'delete':
if (permission_exists('sip_profile_delete')) {
$obj = new sip_profiles;
$obj->delete($array);
}
break;
}
header('Location: sip_profiles.php');
exit;
}
2019-08-13 07:32:07 -06:00
$sip_profile_uuid = $_POST["sip_profile_uuid"];
$sip_profile_name = $_POST["sip_profile_name"];
$sip_profile_hostname = $_POST["sip_profile_hostname"];
$sip_profile_enabled = $_POST["sip_profile_enabled"];
$sip_profile_description = $_POST["sip_profile_description"];
2019-09-18 10:24:43 -06:00
$sip_profile_domains = $_POST["sip_profile_domains"];
$sip_profile_settings = $_POST["sip_profile_settings"];
$sip_profile_domains_delete = $_POST["sip_profile_domains_delete"];
$sip_profile_settings_delete = $_POST["sip_profile_settings_delete"];
}
2017-01-24 04:08:55 -07:00
//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") {
2019-08-13 07:32:07 -06:00
$sip_profile_uuid = $_POST["sip_profile_uuid"];
2017-01-24 04:08:55 -07:00
}
2019-09-19 07:36:23 -06:00
//validate the token
$token = new token;
if (!$token->validate($_SERVER['PHP_SELF'])) {
message::add($text['message-invalid_token'],'negative');
header('Location: sip_profiles.php');
exit;
}
2017-01-24 04:08:55 -07:00
//check for all required data
$msg = '';
2019-08-13 07:32:07 -06:00
//if (strlen($sip_profile_uuid) == 0) { $msg .= $text['message-required']." ".$text['label-sip_profile_uuid']."<br>\n"; }
2017-01-24 04:08:55 -07:00
if (strlen($sip_profile_name) == 0) { $msg .= $text['message-required']." ".$text['label-sip_profile_name']."<br>\n"; }
//if (strlen($sip_profile_hostname) == 0) { $msg .= $text['message-required']." ".$text['label-sip_profile_hostname']."<br>\n"; }
if (strlen($sip_profile_enabled) == 0) { $msg .= $text['message-required']." ".$text['label-sip_profile_enabled']."<br>\n"; }
if (strlen($sip_profile_description) == 0) { $msg .= $text['message-required']." ".$text['label-sip_profile_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;
}
2019-08-13 07:32:07 -06:00
//add the sip_profile_uuid
if (!is_uuid($_POST["sip_profile_uuid"])) {
$sip_profile_uuid = uuid();
}
2019-09-18 10:24:43 -06:00
//prepare the array
$array['sip_profiles'][0]['sip_profile_uuid'] = $sip_profile_uuid;
$array['sip_profiles'][0]['sip_profile_name'] = $sip_profile_name;
$array['sip_profiles'][0]['sip_profile_hostname'] = $sip_profile_hostname;
$array['sip_profiles'][0]['sip_profile_enabled'] = $sip_profile_enabled;
$array['sip_profiles'][0]['sip_profile_description'] = $sip_profile_description;
$y = 0;
foreach ($sip_profile_domains as $row) {
if (strlen($row['sip_profile_domain_uuid']) > 0) {
if (is_uuid($row['sip_profile_domain_uuid'])) {
$sip_profile_domain_uuid = $row['sip_profile_domain_uuid'];
}
2019-09-18 10:24:43 -06:00
else {
$sip_profile_domain_uuid = uuid();
}
2019-09-18 10:24:43 -06:00
if (strlen($row["sip_profile_domain_alias"]) > 0) {
$array['sip_profiles'][0]['sip_profile_domains'][$y]["sip_profile_uuid"] = $sip_profile_uuid;
$array['sip_profiles'][0]['sip_profile_domains'][$y]["sip_profile_domain_uuid"] = $sip_profile_domain_uuid;
$array['sip_profiles'][0]['sip_profile_domains'][$y]["sip_profile_domain_name"] = $row["sip_profile_domain_name"];
$array['sip_profiles'][0]['sip_profile_domains'][$y]["sip_profile_domain_alias"] = $row["sip_profile_domain_alias"];
$array['sip_profiles'][0]['sip_profile_domains'][$y]["sip_profile_domain_parse"] = $row["sip_profile_domain_parse"];
}
2019-09-18 10:24:43 -06:00
$y++;
}
2017-01-24 04:08:55 -07:00
}
2019-09-18 10:24:43 -06:00
$y = 0;
foreach ($sip_profile_settings as $row) {
if (strlen($row['sip_profile_setting_uuid']) > 0) {
if (is_uuid($row['sip_profile_setting_uuid'])) {
$sip_profile_setting_uuid = $row['sip_profile_setting_uuid'];
2019-08-13 07:32:07 -06:00
}
2019-09-18 10:24:43 -06:00
else {
$sip_profile_setting_uuid = uuid();
}
2019-09-18 10:24:43 -06:00
if (strlen($row["sip_profile_setting_name"]) > 0) {
$array['sip_profiles'][0]['sip_profile_settings'][$y]["sip_profile_uuid"] = $sip_profile_uuid;
$array['sip_profiles'][0]['sip_profile_settings'][$y]["sip_profile_setting_uuid"] = $sip_profile_setting_uuid;
$array['sip_profiles'][0]['sip_profile_settings'][$y]["sip_profile_setting_name"] = $row["sip_profile_setting_name"];
2019-09-19 10:58:38 -06:00
$array['sip_profiles'][0]['sip_profile_settings'][$y]["sip_profile_setting_value"] = $row["sip_profile_setting_value"];
2019-09-18 10:24:43 -06:00
$array['sip_profiles'][0]['sip_profile_settings'][$y]["sip_profile_setting_enabled"] = $row["sip_profile_setting_enabled"];
$array['sip_profiles'][0]['sip_profile_settings'][$y]["sip_profile_setting_description"] = $row["sip_profile_setting_description"];
}
2019-09-18 10:24:43 -06:00
$y++;
}
2017-01-24 04:08:55 -07:00
}
2019-09-18 10:25:03 -06:00
2019-08-13 07:32:07 -06:00
//grant temporary permissions
$p = new permissions;
$p->add('sip_profile_domain_add', 'temp');
$p->add('sip_profile_setting_add', 'temp');
2017-01-24 04:08:55 -07:00
//save to the data
$database = new database;
$database->app_name = 'sip_profiles';
2019-08-13 07:32:07 -06:00
$database->app_uuid = '159a8da8-0e8c-a26b-6d5b-19c532b6d470';
2017-01-24 04:08:55 -07:00
$database->save($array);
$message = $database->message;
//revoke temporary permissions
$p->delete('sip_profile_domain_add', 'temp');
$p->delete('sip_profile_setting_add', 'temp');
//remove checked domains
if (
$action == 'update'
&& permission_exists('sip_profile_domain_delete')
&& is_array($sip_profile_domains_delete)
&& @sizeof($sip_profile_domains_delete) != 0
) {
$obj = new sip_profiles;
$obj->sip_profile_uuid = $sip_profile_uuid;
$obj->delete_domains($sip_profile_domains_delete);
}
//remove checked settings
if (
$action == 'update'
&& permission_exists('sip_profile_setting_delete')
&& is_array($sip_profile_settings_delete)
&& @sizeof($sip_profile_settings_delete) != 0
) {
$obj = new sip_profiles;
$obj->sip_profile_uuid = $sip_profile_uuid;
$obj->delete_settings($sip_profile_settings_delete);
}
2019-12-03 16:55:15 -07:00
//get the hostname
if ($sip_profile_hostname == '') {
$fp = event_socket_create($_SESSION['event_socket_ip_address'], $_SESSION['event_socket_port'], $_SESSION['event_socket_password']);
if ($fp) {
$sip_profile_hostname = event_socket_request($fp, 'api switchname');
}
2017-01-24 04:08:55 -07:00
}
2013-01-16 00:26:48 +00:00
2017-01-24 04:08:55 -07:00
//clear the cache
$cache = new cache;
$cache->delete("configuration:sofia.conf:".$sip_profile_hostname);
2017-08-23 20:44:37 -06:00
//save the sip profile xml
2017-01-24 04:08:55 -07:00
save_sip_profile_xml();
2017-08-23 20:44:37 -06:00
//apply settings reminder
2017-01-24 04:08:55 -07:00
$_SESSION["reload_xml"] = true;
2015-07-02 12:09:09 +04:00
2017-01-24 04:08:55 -07:00
//redirect the user
2019-08-13 07:32:07 -06:00
if ($action == "add") {
message::add($text['message-add']);
}
if ($action == "update") {
message::add($text['message-update']);
2017-01-24 04:08:55 -07:00
}
2019-08-28 13:08:34 -06:00
header('Location: sip_profile_edit.php?id='.urlencode($sip_profile_uuid));
2019-08-13 07:32:07 -06:00
exit;
}
//pre-populate the form
2017-01-24 04:08:55 -07:00
if (is_array($_GET) && $_POST["persistformvar"] != "true") {
2019-08-13 07:32:07 -06:00
$sip_profile_uuid = $_GET["id"];
$sql = "select * from v_sip_profiles ";
2019-08-13 07:32:07 -06:00
$sql .= "where sip_profile_uuid = :sip_profile_uuid ";
$parameters['sip_profile_uuid'] = $sip_profile_uuid;
$database = new database;
$row = $database->select($sql, $parameters, 'row');
if (is_array($row) && @sizeof($row) != 0) {
$sip_profile_name = $row["sip_profile_name"];
2013-11-12 15:56:26 +00:00
$sip_profile_hostname = $row["sip_profile_hostname"];
$sip_profile_enabled = $row["sip_profile_enabled"];
2017-01-24 04:08:55 -07:00
$sip_profile_description = $row["sip_profile_description"];
}
2019-08-13 07:32:07 -06:00
unset($sql, $parameters, $row);
}
2017-01-24 04:08:55 -07:00
//get the child data
$sql = "select * from v_sip_profile_settings ";
2019-08-13 07:32:07 -06:00
$sql .= "where sip_profile_uuid = :sip_profile_uuid ";
$sql .= "order by sip_profile_setting_name ";
2019-08-13 07:32:07 -06:00
$parameters['sip_profile_uuid'] = $sip_profile_uuid;
$database = new database;
$sip_profile_settings = $database->select($sql, $parameters, 'all');
unset($sql, $parameters);
2017-01-24 04:08:55 -07:00
//add an empty row
if (permission_exists('sip_profile_setting_add')) {
$x = count($sip_profile_settings);
$sip_profile_settings[$x]['sip_profile_setting_uuid'] = '';
$sip_profile_settings[$x]['sip_profile_uuid'] = $sip_profile_uuid;
$sip_profile_settings[$x]['sip_profile_setting_name'] = '';
$sip_profile_settings[$x]['sip_profile_setting_value'] = '';
$sip_profile_settings[$x]['sip_profile_setting_enabled'] = '';
$sip_profile_settings[$x]['sip_profile_setting_description'] = '';
}
2017-01-24 04:08:55 -07:00
//get the child data
$sql = "select * from v_sip_profile_domains ";
2019-08-13 07:32:07 -06:00
$sql .= "where sip_profile_uuid = :sip_profile_uuid ";
$parameters['sip_profile_uuid'] = $sip_profile_uuid;
$database = new database;
$sip_profile_domains = $database->select($sql, $parameters, 'all');
unset($sql, $parameters);
2017-01-24 04:08:55 -07:00
//add an empty row
if (permission_exists('sip_profile_domain_add')) {
$x = count($sip_profile_domains);
$sip_profile_domains[$x]['sip_profile_domain_uuid'] = '';
$sip_profile_domains[$x]['sip_profile_uuid'] = $sip_profile_uuid;
$sip_profile_domains[$x]['sip_profile_domain_name'] = '';
$sip_profile_domains[$x]['sip_profile_domain_alias'] = '';
$sip_profile_domains[$x]['sip_profile_domain_parse'] = '';
}
2017-01-24 04:08:55 -07:00
2019-09-19 07:36:23 -06:00
//create token
$object = new token;
$token = $object->create($_SERVER['PHP_SELF']);
//show the header
2020-01-06 12:30:15 -07:00
$document['title'] = $text['title-sip_profile'];
require_once "resources/header.php";
2017-05-07 00:18:03 -07:00
//label to form input
echo "<script language='javascript'>\n";
echo " function label_to_form(label_id, form_id) {\n";
echo " if (document.getElementById(label_id) != null) {\n";
echo " label = document.getElementById(label_id);\n";
echo " label.parentNode.removeChild(label);\n";
echo " }\n";
echo " document.getElementById(form_id).style.display='';\n";
echo " }\n";
echo "</script>\n";
//show the content
2020-02-10 21:17:57 -07:00
echo "<form name='frm' id='frm' method='post'>\n";
2017-01-24 04:08:55 -07:00
2020-02-10 21:17:57 -07:00
echo "<div class='action_bar' id='action_bar'>\n";
echo " <div class='heading'><b>".$text['title-sip_profile']."</b></div>\n";
echo " <div class='actions'>\n";
echo button::create(['type'=>'button','label'=>$text['button-back'],'icon'=>$_SESSION['theme']['button_icon_back'],'id'=>'btn_back','link'=>'sip_profiles.php']);
$button_margin = 'margin-left: 15px;';
if ($action == 'update') {
if (
permission_exists('dialplan_add')
|| permission_exists('inbound_route_add')
|| permission_exists('outbound_route_add')
|| permission_exists('time_condition_add')
) {
2020-03-26 15:32:06 -06:00
echo button::create(['type'=>'button','label'=>$text['button-copy'],'icon'=>$_SESSION['theme']['button_icon_copy'],'name'=>'btn_copy','style'=>$button_margin,'onclick'=>"modal_open('modal-copy','new_profile_name');"]);
unset($button_margin);
}
if (
permission_exists('sip_profile_delete')
|| permission_exists('sip_profile_domain_delete')
|| permission_exists('sip_profile_setting_delete')
) {
2020-03-26 15:32:06 -06:00
echo button::create(['type'=>'button','label'=>$text['button-delete'],'icon'=>$_SESSION['theme']['button_icon_delete'],'name'=>'btn_delete','style'=>$button_margin,'onclick'=>"modal_open('modal-delete','btn_delete');"]);
unset($button_margin);
}
2019-08-13 07:32:07 -06:00
}
echo button::create(['type'=>'submit','label'=>$text['button-save'],'icon'=>$_SESSION['theme']['button_icon_save'],'id'=>'btn_save','style'=>'margin-left: 15px;']);
2020-02-10 21:17:57 -07:00
echo " </div>\n";
echo " <div style='clear: both;'></div>\n";
echo "</div>\n";
2020-03-26 15:32:06 -06:00
if ($action == 'update') {
if (
permission_exists('dialplan_add')
|| permission_exists('inbound_route_add')
|| permission_exists('outbound_route_add')
|| permission_exists('time_condition_add')
) {
echo modal::create([
'id'=>'modal-copy',
'type'=>'general',
'message'=>$text['label-new_sip_profile_name']."...<br /><br /><input class='formfld modal-input' data-continue='btn_copy' type='text' id='new_profile_name' maxlength='255'>",
'actions'=>button::create([
'type'=>'button',
'label'=>$text['button-continue'],
'icon'=>'check',
'id'=>'btn_copy',
'style'=>'float: right; margin-left: 15px;',
'collapse'=>'never',
'onclick'=>"modal_close(); if (document.getElementById('new_profile_name').value != '') { window.location='sip_profile_copy.php?id=".urlencode($sip_profile_uuid)."&name=' + document.getElementById('new_profile_name').value; }"
]),
'onclose'=>"document.getElementById('new_profile_name').value = '';",
]);
}
if (
permission_exists('sip_profile_delete')
|| permission_exists('sip_profile_domain_delete')
|| permission_exists('sip_profile_setting_delete')
) {
echo modal::create(['id'=>'modal-delete','type'=>'delete','actions'=>button::create(['type'=>'submit','label'=>$text['button-continue'],'icon'=>'check','id'=>'btn_delete','style'=>'float: right; margin-left: 15px;','collapse'=>'never','name'=>'action','value'=>'delete','onclick'=>"modal_close();"])]);
}
}
2020-02-10 21:17:57 -07:00
echo "<table width='100%' border='0' cellpadding='0' cellspacing='0'>\n";
echo "<tr>\n";
2020-02-10 21:17:57 -07:00
echo "<td width='30%' class='vncellreq' valign='top' align='left' nowrap='nowrap'>\n";
2017-01-24 04:08:55 -07:00
echo " ".$text['label-sip_profile_name']."\n";
echo "</td>\n";
2020-02-10 21:17:57 -07:00
echo "<td width='70%' class='vtable' align='left'>\n";
2019-08-13 07:32:07 -06:00
echo " <input class='formfld' type='text' name='sip_profile_name' maxlength='255' value=\"".escape($sip_profile_name)."\">\n";
echo "<br />\n";
2017-01-24 04:08:55 -07:00
echo $text['description-sip_profile_name']."\n";
echo "</td>\n";
echo "</tr>\n";
2017-01-24 04:08:55 -07:00
echo " <tr>\n";
echo " <td class='vncell' align='left'>\n";
echo " ".$text['title-sip_profile_domains']."\n";
echo " </td>\n";
echo " <td class='vtable' align='left'>\n";
echo " <table border='0' cellpadding='0' cellspacing='0'>\n";
2017-01-24 04:08:55 -07:00
echo " <tr>\n";
echo " <th class='vtable'>".$text['label-sip_profile_domain_name']."</th>\n";
echo " <th class='vtable' style='text-align: center;'>".$text['label-sip_profile_domain_alias']."</th>\n";
echo " <th class='vtable' style='text-align: center;'>".$text['label-sip_profile_domain_parse']."</th>\n";
if (
permission_exists('sip_profile_domain_delete') && (
(permission_exists('sip_profile_domain_add') && is_array($sip_profile_domains) && @sizeof($sip_profile_domains) > 1) ||
(!permission_exists('sip_profile_domain_add') && is_array($sip_profile_domains) && @sizeof($sip_profile_domains) != 0)
)) {
echo " <td class='vtable edit_delete_checkbox_all' onmouseover=\"swap_display('delete_label_domains', 'delete_toggle_domains');\" onmouseout=\"swap_display('delete_label_domains', 'delete_toggle_domains');\">\n";
echo " <span id='delete_label_domains'>".$text['label-delete']."</span>\n";
echo " <span id='delete_toggle_domains'><input type='checkbox' id='checkbox_all_domains' name='checkbox_all' onclick=\"edit_all_toggle('domains');\"></span>\n";
echo " </td>\n";
}
2017-01-24 04:08:55 -07:00
echo " </tr>\n";
$x = 0;
2019-08-13 07:32:07 -06:00
foreach ($sip_profile_domains as $row) {
$bottom_border = !is_uuid($row['sip_profile_domain_uuid']) ? "border-bottom: none;" : null;
2017-01-24 04:08:55 -07:00
echo " <tr>\n";
2019-08-13 07:32:07 -06:00
if (is_uuid($row["sip_profile_uuid"])) {
2017-01-24 04:08:55 -07:00
$sip_profile_uuid = $row["sip_profile_uuid"];
}
echo " <input type='hidden' name='sip_profile_domains[$x][sip_profile_domain_uuid]' value='".(is_uuid($row["sip_profile_domain_uuid"]) ? $sip_profile_domain_uuid : uuid())."'>\n";
echo " <input type='hidden' name='sip_profile_domains[$x][sip_profile_uuid]' value='".escape($sip_profile_uuid)."'>\n";
echo " <td class='vtablerow' style='".$bottom_border."' ".(permission_exists('sip_profile_domain_edit') ? "onclick=\"label_to_form('label_sip_profile_domain_name_$x','sip_profile_domain_name_$x');\"" : null)." nowrap='nowrap'>\n";
2018-08-27 20:38:39 -06:00
echo " &nbsp; <label id='label_sip_profile_domain_name_$x'>".escape($row["sip_profile_domain_name"])."</label>\n";
echo " <input id='sip_profile_domain_name_$x' class='formfld' style='display: none;' type='text' name='sip_profile_domains[$x][sip_profile_domain_name]' maxlength='255' value=\"".escape($row["sip_profile_domain_name"])."\">\n";
2017-01-24 04:08:55 -07:00
echo " </td>\n";
echo " <td class='vtablerow' style='".$bottom_border." text-align: center;' ".(permission_exists('sip_profile_domain_edit') ? "onclick=\"label_to_form('label_sip_profile_domain_alias_$x','sip_profile_domain_alias_$x');\"" : null)." nowrap='nowrap'>\n";
echo " <label id='label_sip_profile_domain_alias_$x'>".$text['label-'.$row["sip_profile_domain_alias"]]."</label>\n";
2017-05-07 00:18:03 -07:00
echo " <select id='sip_profile_domain_alias_$x' class='formfld' style='display: none;' name='sip_profile_domains[$x][sip_profile_domain_alias]'>\n";
2017-01-24 04:08:55 -07:00
echo " <option value=''></option>\n";
echo " <option value='true' ".($row["sip_profile_domain_alias"] == "true" ? "selected='selected'" : null).">".$text['label-true']."</option>\n";
echo " <option value='false' ".($row["sip_profile_domain_alias"] == "false" ? "selected='selected'" : null).">".$text['label-false']."</option>\n";
2017-01-24 04:08:55 -07:00
echo " </select>\n";
echo " </td>\n";
echo " <td class='vtablerow' style='".$bottom_border." text-align: center;' ".(permission_exists('sip_profile_domain_edit') ? "onclick=\"label_to_form('label_sip_profile_domain_parse_$x','sip_profile_domain_parse_$x');\"" : null)." nowrap='nowrap'>\n";
echo " <label id='label_sip_profile_domain_parse_$x'>".$text['label-'.$row["sip_profile_domain_parse"]]."</label>\n";
2017-05-07 00:18:03 -07:00
echo " <select id='sip_profile_domain_parse_$x' class='formfld' style='display: none;' name='sip_profile_domains[$x][sip_profile_domain_parse]'>\n";
2017-01-24 04:08:55 -07:00
echo " <option value=''></option>\n";
echo " <option value='true' ".($row["sip_profile_domain_parse"] == "true" ? "selected='selected'" : null).">".$text['label-true']."</option>\n";
echo " <option value='false' ".($row["sip_profile_domain_parse"] == "false" ? "selected='selected'" : null).">".$text['label-false']."</option>\n";
2017-01-24 04:08:55 -07:00
echo " </select>\n";
echo " </td>\n";
if (permission_exists('sip_profile_domain_delete')) {
if (is_uuid($row['sip_profile_domain_uuid'])) {
echo " <td class='vtable' style='text-align: center; padding-bottom: 3px;'>";
echo " <input type='checkbox' name='sip_profile_domains_delete[".$x."][checked]' value='true' class='chk_delete checkbox_domains' onclick=\"edit_delete_action('domains');\">\n";
echo " <input type='hidden' name='sip_profile_domains_delete[".$x."][uuid]' value='".escape($row['sip_profile_domain_uuid'])."' />\n";
}
else {
echo " <td>\n";
}
echo " </td>\n";
2017-05-07 10:28:39 -06:00
}
2017-01-24 04:08:55 -07:00
echo " </tr>\n";
2019-08-13 07:32:07 -06:00
//convert last empty labels to form elements
if (permission_exists('sip_profile_domain_add') && !is_uuid($row["sip_profile_domain_uuid"])) {
2019-08-13 07:32:07 -06:00
echo "<script>\n";
echo " label_to_form('label_sip_profile_domain_name_$x','sip_profile_domain_name_$x');\n";
echo " label_to_form('label_sip_profile_domain_alias_$x','sip_profile_domain_alias_$x');\n";
echo " label_to_form('label_sip_profile_domain_parse_$x','sip_profile_domain_parse_$x');\n";
echo "</script>\n";
}
2017-01-24 04:08:55 -07:00
$x++;
}
echo " </table>\n";
echo " </td>\n";
echo " </tr>\n";
echo " <tr>\n";
2017-05-07 00:43:41 -07:00
echo " <td class='vncellreq' align='left'>\n";
2017-01-24 04:08:55 -07:00
echo " ".$text['label-sip_profile_settings']."\n";
echo " </td>\n";
echo " <td class='vtable' align='left'>\n";
echo " <table border='0' cellpadding='0' cellspacing='0'>\n";
2017-01-24 04:08:55 -07:00
echo " <tr>\n";
echo " <th class='vtable'>&nbsp;".$text['label-sip_profile_setting_name']."</th>\n";
echo " <th class='vtable'>".$text['label-sip_profile_setting_value']."</th>\n";
echo " <th class='vtable' style='text-align: center;'>".$text['label-sip_profile_setting_enabled']."</th>\n";
echo " <th class='vtable'>".$text['label-sip_profile_setting_description']."</th>\n";
if (
permission_exists('sip_profile_setting_delete') && (
(permission_exists('sip_profile_setting_add') && is_array($sip_profile_settings) && @sizeof($sip_profile_settings) > 1) ||
(!permission_exists('sip_profile_setting_add') && is_array($sip_profile_settings) && @sizeof($sip_profile_settings) != 0)
)) {
echo " <td class='vtable edit_delete_checkbox_all' onmouseover=\"swap_display('delete_label_settings', 'delete_toggle_settings');\" onmouseout=\"swap_display('delete_label_settings', 'delete_toggle_settings');\">\n";
echo " <span id='delete_label_settings'>".$text['label-delete']."</span>\n";
echo " <span id='delete_toggle_settings'><input type='checkbox' id='checkbox_all_settings' name='checkbox_all' onclick=\"edit_all_toggle('settings');\"></span>\n";
echo " </td>\n";
}
2017-01-24 04:08:55 -07:00
echo " </tr>\n";
$x = 0;
2019-08-13 07:32:07 -06:00
foreach ($sip_profile_settings as $row) {
$bottom_border = !is_uuid($row['sip_profile_setting_uuid']) ? "border-bottom: none;" : null;
2017-01-24 04:08:55 -07:00
echo " <tr>\n";
echo " <input type='hidden' name='sip_profile_settings[$x][sip_profile_setting_uuid]' value='".(is_uuid($row["sip_profile_setting_uuid"]) ? $row["sip_profile_setting_uuid"] : uuid())."'>\n";
echo " <input type='hidden' name='sip_profile_settings[$x][sip_profile_uuid]' value='".escape($row["sip_profile_uuid"])."'>\n";
echo " <td class='vtablerow' style='".$bottom_border."' ".(permission_exists('sip_profile_setting_edit') ? "onclick=\"label_to_form('label_sip_profile_setting_name_$x','sip_profile_setting_name_$x');\"" : null)." nowrap='nowrap'>\n";
2018-08-27 20:38:39 -06:00
echo " &nbsp; <label id='label_sip_profile_setting_name_$x'>".escape($row["sip_profile_setting_name"])."</label>\n";
2019-08-13 07:32:07 -06:00
echo " <input id='sip_profile_setting_name_$x' class='formfld' style='display: none;' type='text' name='sip_profile_settings[$x][sip_profile_setting_name]' maxlength='255' value=\"".escape($row["sip_profile_setting_name"])."\">\n";
2017-01-24 04:08:55 -07:00
echo " </td>\n";
echo " <td class='vtablerow' style='".$bottom_border."' ".(permission_exists('sip_profile_setting_edit') ? "onclick=\"label_to_form('label_sip_profile_setting_value_$x','sip_profile_setting_value_$x');\"" : null)." nowrap='nowrap'>\n";
2019-08-13 07:32:07 -06:00
echo " <label id='label_sip_profile_setting_value_$x'>".escape(substr($row["sip_profile_setting_value"],0,22))." &nbsp;</label>\n";
echo " <input id='sip_profile_setting_value_$x' class='formfld' style='display: none;' type='text' name='sip_profile_settings[$x][sip_profile_setting_value]' maxlength='255' value=\"".escape($row["sip_profile_setting_value"])."\">\n";
2017-01-24 04:08:55 -07:00
echo " </td>\n";
echo " <td class='vtablerow' style='".$bottom_border." text-align: center;' ".(permission_exists('sip_profile_setting_edit') ? "onclick=\"label_to_form('label_sip_profile_setting_enabled_$x','sip_profile_setting_enabled_$x');\"" : null)." nowrap='nowrap'>\n";
echo " <label id='label_sip_profile_setting_enabled_$x'>".$text['label-'.$row["sip_profile_setting_enabled"]]."</label>\n";
2017-05-07 00:18:03 -07:00
echo " <select id='sip_profile_setting_enabled_$x' class='formfld' style='display: none;' name='sip_profile_settings[$x][sip_profile_setting_enabled].'>\n";
echo " <option value='true'>".$text['label-true']."</option>\n";
echo " <option value='false' ".($row['sip_profile_setting_enabled'] == "false" ? "selected='selected'" : null).">".$text['label-false']."</option>\n";
2017-05-07 00:18:03 -07:00
echo " </select>\n";
2017-01-24 04:08:55 -07:00
echo " </td>\n";
echo " <td class='vtablerow' style='".$bottom_border."' ".(permission_exists('sip_profile_setting_edit') ? "onclick=\"label_to_form('label_sip_profile_setting_description_$x','sip_profile_setting_description_$x');\"" : null)." nowrap='nowrap'>\n";
2018-08-27 20:38:39 -06:00
echo " <label id='label_sip_profile_setting_description_$x'>".escape($row["sip_profile_setting_description"])."&nbsp;</label>\n";
echo " <input id='sip_profile_setting_description_$x' class='formfld' style='display: none;' type='text' name='sip_profile_settings[$x][sip_profile_setting_description]' maxlength='255' value=\"".escape($row["sip_profile_setting_description"])."\">\n";
2017-01-24 04:08:55 -07:00
echo " </td>\n";
if (permission_exists('sip_profile_setting_delete')) {
if (is_uuid($row['sip_profile_setting_uuid'])) {
echo " <td class='vtable' style='text-align: center; padding-bottom: 3px;'>";
echo " <input type='checkbox' name='sip_profile_settings_delete[".$x."][checked]' value='true' class='chk_delete checkbox_settings' onclick=\"edit_delete_action('settings');\">\n";
echo " <input type='hidden' name='sip_profile_settings_delete[".$x."][uuid]' value='".escape($row['sip_profile_setting_uuid'])."' />\n";
}
else {
echo " <td>\n";
}
echo " </td>\n";
2017-05-07 10:28:39 -06:00
}
2017-01-24 04:08:55 -07:00
echo " </tr>\n";
2019-08-13 07:32:07 -06:00
//convert last empty labels to form elements
if (permission_exists('sip_profile_setting_add') && !is_uuid($row["sip_profile_setting_uuid"])) {
2019-08-13 07:32:07 -06:00
echo "<script>\n";
echo " label_to_form('label_sip_profile_setting_name_$x','sip_profile_setting_name_$x');\n";
echo " label_to_form('label_sip_profile_setting_value_$x','sip_profile_setting_value_$x');\n";
echo " label_to_form('label_sip_profile_setting_enabled_$x','sip_profile_setting_enabled_$x');\n";
echo " label_to_form('label_sip_profile_setting_description_$x','sip_profile_setting_description_$x');\n";
echo "</script>\n";
}
$x++;
2017-01-24 04:08:55 -07:00
$x++;
}
echo " </table>\n";
echo " </td>\n";
echo " </tr>\n";
2013-11-12 15:56:26 +00:00
echo "<tr>\n";
echo "<td class='vncell' valign='top' align='left' nowrap='nowrap'>\n";
2017-01-24 04:08:55 -07:00
echo " ".$text['label-sip_profile_hostname']."\n";
2013-11-12 15:56:26 +00:00
echo "</td>\n";
echo "<td class='vtable' align='left'>\n";
2018-08-27 20:38:39 -06:00
echo " <input class='formfld' type='text' name='sip_profile_hostname' maxlength='255' value=\"".escape($sip_profile_hostname)."\">\n";
2013-11-12 15:56:26 +00:00
echo "<br />\n";
2017-01-24 04:08:55 -07:00
echo $text['description-sip_profile_hostname']."\n";
2013-11-12 15:56:26 +00:00
echo "</td>\n";
echo "</tr>\n";
echo "<tr>\n";
2017-01-24 04:08:55 -07:00
echo "<td class='vncellreq' valign='top' align='left' nowrap='nowrap'>\n";
echo " ".$text['label-sip_profile_enabled']."\n";
echo "</td>\n";
echo "<td class='vtable' align='left'>\n";
2017-01-24 04:08:55 -07:00
echo " <select class='formfld' name='sip_profile_enabled'>\n";
if ($sip_profile_enabled == "true") {
echo " <option value='true' selected='selected'>".$text['label-true']."</option>\n";
}
else {
echo " <option value='true'>".$text['label-true']."</option>\n";
}
if ($sip_profile_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";
2017-01-24 04:08:55 -07:00
echo $text['description-sip_profile_enabled']."\n";
echo "</td>\n";
echo "</tr>\n";
echo "<tr>\n";
2017-01-24 04:08:55 -07:00
echo "<td class='vncellreq' valign='top' align='left' nowrap='nowrap'>\n";
echo " ".$text['label-sip_profile_description']."\n";
echo "</td>\n";
echo "<td class='vtable' align='left'>\n";
2019-08-28 13:08:34 -06:00
echo " <textarea class='formfld' type='text' name='sip_profile_description'>".escape($sip_profile_description)."</textarea>\n";
echo "<br />\n";
2017-01-24 04:08:55 -07:00
echo $text['description-sip_profile_description']."\n";
echo "</td>\n";
echo "</tr>\n";
2020-02-10 21:17:57 -07:00
echo "</table>";
echo "<br /><br />";
if ($action == "update") {
2020-02-10 21:17:57 -07:00
echo "<input type='hidden' name='sip_profile_uuid' value='".escape($sip_profile_uuid)."'>\n";
}
2020-02-10 21:17:57 -07:00
echo "<input type='hidden' name='".$token['name']."' value='".$token['hash']."'>\n";
echo "</form>";
//include the footer
require_once "resources/footer.php";
2017-01-24 04:08:55 -07:00
2020-02-10 21:17:57 -07:00
?>