123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432 |
- <?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 <[email protected]>
- Portions created by the Initial Developer are Copyright (C) 2008 - 2023
- the Initial Developer. All Rights Reserved.
- Contributor(s):
- Mark J Crane <[email protected]>
- */
- //includes files
- require_once dirname(__DIR__, 2) . "/resources/require.php";
- require_once "resources/check_auth.php";
- //check permissions
- if (permission_exists('domain_setting_view')) {
- //access granted
- }
- else {
- echo "access denied";
- exit;
- }
- //connect to the database
- $database = new database;
- //add multi-lingual support
- $language = new text;
- $text = $language->get();
- //get the domain_uuid
- if (!empty($_GET['id']) && is_uuid($_GET['id'])) {
- $domain_uuid = $_GET['id'];
- }
- //set additional variables
- //$search = !empty($_GET["search"]) ? $_GET["search"] : '';
- $show = !empty($_GET["show"]) ? $_GET["show"] : '';
- //set from session variables
- $list_row_edit_button = !empty($_SESSION['theme']['list_row_edit_button']['boolean']) ? $_SESSION['theme']['list_row_edit_button']['boolean'] : 'false';
- //get the http post data
- if (!empty($_POST['action'])) {
- $action = $_POST['action'] ?? '';
- $domain_uuid = $_POST['domain_uuid'] ?? '';
- $domain_settings = $_POST['domain_settings'] ?? '';
- $domain_uuid_target = $_POST['domain_uuid_target'] ?? '';
- //process the http post data by action
- if (!empty($domain_settings)) {
- switch ($action) {
- case 'copy':
- if (permission_exists('domain_setting_add') && permission_exists('domain_select') && count($_SESSION['domains']) > 1) {
- $obj = new domain_settings;
- $obj->domain_uuid = $domain_uuid;
- $obj->domain_uuid_target = $domain_uuid_target;
- $obj->copy($domain_settings);
- }
- break;
- case 'toggle':
- if (permission_exists('domain_setting_edit')) {
- $obj = new domain_settings;
- $obj->domain_uuid = $domain_uuid;
- $obj->toggle($domain_settings);
- }
- break;
- case 'delete':
- if (permission_exists('domain_setting_delete')) {
- $obj = new domain_settings;
- $obj->domain_uuid = $domain_uuid;
- $obj->delete($domain_settings);
- }
- break;
- }
- }
- //redirect
- header('Location: '.PROJECT_PATH.'/core/domain_settings/domain_settings.php?id='.urlencode($_REQUEST['domain_uuid']));
- exit;
- }
- //get order and order by and sanitize the values
- $order_by = $_GET["order_by"] ?? '';
- $order = $_GET["order"] ?? '';
- //get the domain_name
- $sql = "select domain_name from v_domains ";
- $sql .= "where domain_uuid = :domain_uuid ";
- $parameters['domain_uuid'] = $domain_uuid;
- $domain_name = $database->select($sql, $parameters, 'column');
- //prepare to page the results
- $sql = "select count(domain_setting_uuid) from v_domain_settings ";
- $sql .= "where domain_uuid = :domain_uuid ";
- $parameters['domain_uuid'] = $domain_uuid;
- $num_rows = $database->select($sql, $parameters, 'column');
- //get the list
- $sql = "select domain_setting_uuid, domain_setting_category, domain_setting_subcategory, domain_setting_name, ";
- $sql .= "domain_setting_value, cast(domain_setting_enabled as text), domain_setting_description ";
- $sql .= "from v_domain_settings ";
- $sql .= "where domain_uuid = :domain_uuid ";
- if ($order_by == '') {
- $sql .= "order by domain_setting_category, domain_setting_subcategory, domain_setting_order asc, domain_setting_name, domain_setting_value ";
- }
- else {
- $sql .= order_by($order_by, $order);
- }
- $parameters['domain_uuid'] = $domain_uuid;
- $domain_settings = $database->select($sql, $parameters ?? null, 'all');
- unset($sql, $parameters);
- //create token
- $object = new token;
- $token = $object->create('/core/domain_settings/domain_settings.php');
- //include the header
- $document['title'] = $text['title-domain_settings'];
- require_once "resources/header.php";
- //copy settings javascript
- if (permission_exists("domain_select") && permission_exists("domain_setting_add") && !empty($_SESSION['domains'])) {
- echo "<script language='javascript' type='text/javascript'>\n";
- echo " var fade_speed = 400;\n";
- echo " function show_domains() {\n";
- echo " $('#btn_copy').fadeOut(fade_speed, function() {\n";
- echo " $('#btn_copy_cancel').fadeIn(fade_speed);\n";
- echo " $('#target_domain').fadeIn(fade_speed);\n";
- echo " $('#btn_paste').fadeIn(fade_speed);\n";
- echo " document.getElementById('domain_uuid_target').value = '';\n";
- echo " });";
- echo " }";
- echo " function hide_domains() {\n";
- echo " $('#btn_copy_cancel').fadeOut(fade_speed);\n";
- echo " $('#target_domain').fadeOut(fade_speed);\n";
- echo " $('#btn_paste').fadeOut(fade_speed, function() {\n";
- echo " $('#btn_copy').fadeIn(fade_speed);\n";
- echo " document.getElementById('target_domain').selectedIndex = 0;\n";
- echo " document.getElementById('domain_uuid_target').value = '';\n";
- echo " });\n";
- echo " }\n";
- echo "</script>";
- }
- //show the content
- echo "<div class='action_bar' id='action_bar_sub'>\n";
- echo " <div class='heading'><b id='heading_sub'>".$domain_name." (".$num_rows.")</b></div>\n"; //$text['title-domain_settings']
- echo " <div class='actions'>\n";
- echo button::create(['type'=>'button','label'=>$text['button-back'],'icon'=>$_SESSION['theme']['button_icon_back'],'id'=>'action_bar_sub_button_back','style'=>'','link'=>PROJECT_PATH.'/core/domains/domains.php']);
- if (permission_exists('default_setting_view') && $num_rows) {
- echo button::create(['type'=>'button','label'=>$text['select-global'],'icon'=>$_SESSION['theme']['button_icon_all'],'style'=>'','link'=>PROJECT_PATH.'/core/default_settings/default_settings.php']);
- echo button::create(['type'=>'button','label'=>$text['button-reload'],'icon'=>$_SESSION['theme']['button_icon_reload'],'style'=>'margin-right: 15px;','link'=>PROJECT_PATH.'/core/default_settings/default_settings_reload.php?id='.$domain_uuid]);
- }
- if (permission_exists('domain_setting_add')) {
- echo button::create(['type'=>'button','label'=>$text['button-add'],'icon'=>$_SESSION['theme']['button_icon_add'],'id'=>'btn_add','link'=>PROJECT_PATH."/core/domain_settings/domain_setting_edit.php?domain_uuid=".urlencode($domain_uuid)]);
- }
- if (permission_exists("domain_select") && permission_exists("domain_setting_add") && $num_rows) {
- echo button::create(['type'=>'button','label'=>$text['button-copy'],'id'=>'btn_copy','icon'=>$_SESSION['theme']['button_icon_copy'],'id'=>'btn_copy','onclick'=>'show_domains();']);
- echo button::create(['type'=>'button','label'=>$text['button-cancel'],'id'=>'btn_copy_cancel','icon'=>$_SESSION['theme']['button_icon_cancel'],'style'=>'display: none;','onclick'=>'hide_domains();']);
- echo "<select class='formfld' style='display: none; width: auto;' id='target_domain' onchange=\"document.getElementById('domain_uuid_target').value = this.options[this.selectedIndex].value;\">\n";
- echo " <option value='".$domain_uuid."'>(".$text['label-duplicate'].")</option>\n";
- echo " <option value='' selected='selected' disabled='disabled'>".$text['label-domain']."...</option>\n";
- foreach ($_SESSION['domains'] as $domain) {
- if ($domain['domain_uuid'] == $domain_uuid) { continue; }
- echo " <option value='".escape($domain["domain_uuid"])."'>".escape($domain["domain_name"])."</option>\n";
- }
- if (permission_exists('default_setting_add') && permission_exists('default_setting_edit')) {
- echo " <option value='' disabled='disabled'></option>\n";
- echo " <option value='default'>".$text['label-default_settings']."</option>\n";
- }
- echo " </select>";
- echo button::create(['type'=>'button','label'=>$text['button-paste'],'icon'=>$_SESSION['theme']['button_icon_paste'],'id'=>'btn_paste','style'=>'display: none;','onclick'=>"if (confirm('".$text['confirm-copy']."')) { list_action_set('copy'); list_form_submit('form_list'); } else { this.blur(); return false; }"]);
- }
- if (permission_exists('domain_setting_edit') && $num_rows) {
- echo button::create(['type'=>'button','label'=>$text['button-toggle'],'icon'=>$_SESSION['theme']['button_icon_toggle'],'name'=>'btn_toggle','onclick'=>"modal_open('modal-toggle','btn_toggle');"]);
- }
- if (permission_exists('domain_setting_delete') && $num_rows) {
- echo button::create(['type'=>'button','label'=>$text['button-delete'],'icon'=>$_SESSION['theme']['button_icon_delete'],'name'=>'btn_delete','onclick'=>"modal_open('modal-delete-settings','btn_delete_settings');"]);
- echo modal::create(['id'=>'modal-delete-settings','type'=>'delete','actions'=>button::create(['type'=>'button','label'=>$text['button-continue'],'icon'=>'check','id'=>'btn_delete_settings','style'=>'float: right; margin-left: 15px;','collapse'=>'never','onclick'=>"modal_close(); list_action_set('delete'); list_form_submit('form_list');"])]);
- }
- echo " </div>\n";
- echo " <div style='clear: both;'></div>\n";
- echo "</div>\n";
- if (permission_exists('domain_setting_edit') && $num_rows) {
- echo modal::create(['id'=>'modal-toggle','type'=>'toggle','actions'=>button::create(['type'=>'button','label'=>$text['button-continue'],'icon'=>'check','id'=>'btn_toggle','style'=>'float: right; margin-left: 15px;','collapse'=>'never','onclick'=>"modal_close(); list_action_set('toggle'); list_form_submit('form_list');"])]);
- }
- if (permission_exists('domain_setting_delete') && $num_rows) {
- echo modal::create(['id'=>'modal-delete-settings','type'=>'delete','actions'=>button::create(['type'=>'button','label'=>$text['button-continue'],'icon'=>'check','id'=>'btn_delete_settings','style'=>'float: right; margin-left: 15px;','collapse'=>'never','onclick'=>"modal_close(); list_action_set('delete'); list_form_submit('form_list');"])]);
- }
- echo $text['header_description-domain_settings']."\n";
- echo "<br /><br />\n";
- echo "<form id='form_list' method='post' action='".PROJECT_PATH."/core/domain_settings/domain_settings.php'>\n";
- echo "<input type='hidden' id='action' name='action' value=''>\n";
- echo "<input type='hidden' name='domain_uuid' value='".escape($domain_uuid)."'>\n";
- echo "<input type='hidden' name='domain_uuid_target' id='domain_uuid_target' value=''>\n";
- echo "<div class='card'>\n";
- echo "<table class='list'>\n";
- if (!empty($domain_settings)) {
- //define the variable
- $previous_domain_setting_category = '';
- $x = 0;
- foreach ($domain_settings as $row) {
- $domain_setting_category = strtolower($row['domain_setting_category']);
- $label_domain_setting_category = $row['domain_setting_category'];
- switch (strtolower($label_domain_setting_category)) {
- case "api" : $label_domain_setting_category = "API"; break;
- case "cdr" : $label_domain_setting_category = "CDR"; break;
- case "ldap" : $label_domain_setting_category = "LDAP"; break;
- case "ivr_menu" : $label_domain_setting_category = "IVR Menu"; break;
- default:
- $label_domain_setting_category = str_replace("_", " ", $label_domain_setting_category);
- $label_domain_setting_category = str_replace("-", " ", $label_domain_setting_category);
- $label_domain_setting_category = ucwords($label_domain_setting_category);
- }
- if ($previous_domain_setting_category != $row['domain_setting_category']) {
- if (!empty($previous_domain_setting_category)) {
- echo "</table>\n";
- echo "<br>\n";
- }
- echo "<b>".escape($label_domain_setting_category)."</b><br>\n";
- echo "<table class='list'>\n";
- echo "<tr class='list-header'>\n";
- if (permission_exists('domain_setting_add') || permission_exists('domain_setting_edit') || permission_exists('domain_setting_delete')) {
- echo " <th class='checkbox'>\n";
- echo " <input type='checkbox' id='checkbox_all_".$domain_setting_category."' name='checkbox_all' onclick=\"list_all_toggle('".$domain_setting_category."');\">\n";
- echo " </th>\n";
- }
- if ($show == 'all' && permission_exists('domain_setting_all')) {
- echo th_order_by('domain_name', $text['label-domain'], $order_by, $order);
- }
- echo th_order_by('domain_setting_subcategory', $text['label-subcategory'], $order_by, $order, null, "class='pct-35'");
- echo th_order_by('domain_setting_name', $text['label-type'], $order_by, $order, null, "class='pct-10 hide-sm-dn'");
- echo th_order_by('domain_setting_value', $text['label-value'], $order_by, $order, null, "class='pct-30'");
- echo th_order_by('domain_setting_enabled', $text['label-enabled'], $order_by, $order, null, "class='center'");
- echo " <th class='pct-25 hide-sm-dn'>".$text['label-description']."</th>\n";
- if (permission_exists('domain_setting_edit') && $list_row_edit_button == 'true') {
- echo " <td class='action-button'> </td>\n";
- }
- echo "</tr>\n";
- }
- if (permission_exists('domain_setting_edit')) {
- $list_row_url = PROJECT_PATH."/core/domain_settings/domain_setting_edit.php?domain_uuid=".escape($domain_uuid)."&id=".escape($row['domain_setting_uuid']);
- }
- echo "<tr class='list-row' href='".$list_row_url."'>\n";
- if (permission_exists('domain_setting_add') || permission_exists('domain_setting_edit') || permission_exists('domain_setting_delete')) {
- echo " <td class='checkbox'>\n";
- echo " <input type='checkbox' name='domain_settings[$x][checked]' id='checkbox_".$x."' class='checkbox_".$domain_setting_category."' value='true' onclick=\"if (!this.checked) { document.getElementById('checkbox_all_".$domain_setting_category."').checked = false; }\">\n";
- echo " <input type='hidden' name='domain_settings[$x][uuid]' value='".escape($row['domain_setting_uuid'])."' />\n";
- echo " </td>\n";
- }
- echo " <td class='overflow no-wrap'>";
- if (permission_exists('domain_setting_edit')) {
- echo " <a href='".$list_row_url."'>".escape($row['domain_setting_subcategory'])."</a>";
- }
- else {
- echo escape($row['domain_setting_subcategory']);
- }
- echo " </td>\n";
- $setting_types = ['Array','Boolean','Code','Dir','Name','Numeric','Text','UUID'];
- echo " <td class='hide-sm-dn'>".$setting_types[array_search(strtolower($row['domain_setting_name']), array_map('strtolower',$setting_types))]."</td>\n";
- echo " <td class='overflow no-wrap'>\n";
- $category = $row['domain_setting_category'];
- $subcategory = $row['domain_setting_subcategory'];
- $name = $row['domain_setting_name'];
- if ($category == "domain" && $subcategory == "menu" && $name == "uuid" ) {
- $sql = "select * from v_menus ";
- $sql .= "where menu_uuid = :menu_uuid ";
- $parameters['menu_uuid'] = $row['domain_setting_value'];
- $sub_result = $database->select($sql, $parameters, 'all');
- if (!empty($sub_result)) {
- foreach ($sub_result as $sub_row) {
- echo escape($sub_row["menu_language"])." - ".escape($sub_row["menu_name"])."\n";
- }
- }
- unset($sql, $parameters, $sub_result, $sub_row);
- }
- else if ($category == "domain" && $subcategory == "template" && $name == "name" ) {
- echo " ".ucwords($row['domain_setting_value']);
- }
- else if ($category == "domain" && $subcategory == "time_format" && $name == "text" ) {
- switch ($row['domain_setting_value']) {
- case '12h': echo $text['label-12-hour']; break;
- case '24h': echo $text['label-24-hour']; break;
- }
- }
- else if (
- ( $category == "theme" && $subcategory == "menu_main_icons" && $name == "boolean" ) ||
- ( $category == "theme" && $subcategory == "menu_sub_icons" && $name == "boolean" ) ||
- ( $category == "theme" && $subcategory == "menu_brand_type" && $name == "text" ) ||
- ( $category == "theme" && $subcategory == "menu_style" && $name == "text" ) ||
- ( $category == "theme" && $subcategory == "menu_position" && $name == "text" ) ||
- ( $category == "theme" && $subcategory == "body_header_brand_type" && $name == "text" ) ||
- ( $category == "theme" && $subcategory == "logo_align" && $name == "text" )
- ) {
- echo " ".$text['label-'.escape($row['domain_setting_value'])];
- }
- else if ($subcategory == 'password' || substr_count($subcategory, '_password') > 0 || substr_count($subcategory, '_key') || substr_count($subcategory, '_secret') > 0) {
- echo " ".str_repeat('*', strlen(escape($row['domain_setting_value'])));
- }
- else if ($category == 'theme' && $subcategory == 'button_icons' && $name == 'text') {
- echo " ".$text['option-button_icons_'.$row['domain_setting_value']]."\n";
- }
- else if ($category == 'theme' && $subcategory == 'menu_side_state' && $name == 'text') {
- echo " ".$text['option-'.$row['domain_setting_value']]."\n";
- }
- else if ($category == 'theme' && $subcategory == 'menu_side_toggle' && $name == 'text') {
- echo " ".$text['option-'.$row['domain_setting_value']]."\n";
- }
- else if ($category == 'theme' && $subcategory == 'menu_side_toggle_body_width' && $name == 'text') {
- echo " ".$text['option-'.$row['domain_setting_value']]."\n";
- }
- else if ($category == 'theme' && $subcategory == 'menu_side_item_main_sub_close' && $name == 'text') {
- echo " ".$text['option-'.$row['domain_setting_value']]."\n";
- }
- else if ($category == 'theme' && $subcategory == 'input_toggle_style' && $name == 'text') {
- echo " ".$text['option-'.$row['domain_setting_value']]."\n";
- }
- else if ($category == "theme" && substr_count($subcategory, "_color") > 0 && ($name == "text" || $name == 'array')) {
- echo " ".(img_spacer('15px', '15px', 'background: '.escape($row['domain_setting_value']).'; margin-right: 4px; vertical-align: middle; border: 1px solid '.(color_adjust($row['domain_setting_value'], -0.18)).'; padding: -1px;'));
- echo "<span style=\"font-family: 'Courier New'; line-height: 6pt;\">".escape($row['domain_setting_value'])."</span>\n";
- }
- else if ($category == 'users' && $subcategory == 'username_format' && $name == 'text') {
- echo " ".$text['option-username_format_'.$row['domain_setting_value']]."\n";
- }
- else if ($category == 'recordings' && $subcategory == 'storage_type' && $name == 'text') {
- echo " ".$text['label-'.$row['domain_setting_value']]."\n";
- }
- else if ($category == 'destinations' && $subcategory == 'dialplan_mode' && $name == 'text') {
- echo " ".$text['label-'.$row['domain_setting_value']]."\n";
- }
- else if ($category == 'destinations' && $subcategory == 'select_mode' && $name == 'text') {
- echo " ".$text['label-'.$row['domain_setting_value']]."\n";
- }
- else if ($category == 'voicemail' && ($subcategory == 'message_caller_id_number' || $subcategory == 'message_date_time') && $name == 'text') {
- echo " ".$text['label-'.$row['domain_setting_value']]."\n";
- }
- else if ($row['domain_setting_value'] == 'true' || $row['domain_setting_value'] == 'false') {
- echo " ".$text['label-'.$row['domain_setting_value']]."\n";
- }
- else {
- if (!empty($row['domain_setting_value']) && substr_count($row['domain_setting_value'], "\n") > 0) {
- $lines = explode("\n", $row['domain_setting_value']);
- if (!empty($lines) && is_array($lines) && @sizeof($lines) != 0) {
- foreach ($lines as $i => $line) {
- $lines[$i] = escape($line);
- }
- echo implode("<i class='fas fa-level-down-alt fa-rotate-90 fa-xs ml-2 mr-5' style='opacity: 0.3;'></i>", $lines);
- }
- unset($lines, $line);
- }
- else {
- echo escape($row['domain_setting_value'])."\n";
- }
- }
- echo " </td>\n";
- if (permission_exists('domain_setting_edit')) {
- echo " <td class='no-link center'>\n";
- echo button::create(['type'=>'submit','class'=>'link','label'=>$text['label-'.$row['domain_setting_enabled']],'title'=>$text['button-toggle'],'onclick'=>"list_self_check('checkbox_".$x."'); list_action_set('toggle'); list_form_submit('form_list')"]);
- }
- else {
- echo " <td class='center'>\n";
- echo $text['label-'.$row['domain_setting_enabled']];
- }
- echo " </td>\n";
- echo " <td class='description overflow hide-sm-dn' title=\"".escape($row['domain_setting_description'])."\">".escape($row['domain_setting_description'])." </td>\n";
- if (permission_exists('domain_setting_edit') && $list_row_edit_button == 'true') {
- echo " <td class='action-button'>\n";
- echo button::create(['type'=>'button','title'=>$text['button-edit'],'icon'=>$_SESSION['theme']['button_icon_edit'],'link'=>$list_row_url]);
- echo " </td>\n";
- }
- echo "</tr>\n";
- //set the previous category
- $previous_domain_setting_category = $row['domain_setting_category'];
- $x++;
- }
- unset($domain_settings);
- }
- echo "</table>\n";
- echo "</div>\n";
- echo "<br />\n";
- echo "<input type='hidden' name='".$token['name']."' value='".$token['hash']."'>\n";
- echo "</form>\n";
- //make sub action bar sticky
- echo "<script>\n";
- echo " window.addEventListener('scroll', function(){\n";
- echo " action_bar_scroll('action_bar_sub', 300, heading_modify, heading_restore);\n";
- echo " }, false);\n";
- echo " function heading_modify() {\n";
- echo " document.getElementById('action_bar_sub_button_back').style.display = 'inline-block';\n";
- echo " }\n";
- echo " function heading_restore() {\n";
- echo " document.getElementById('action_bar_sub_button_back').style.display = 'none';\n";
- echo " }\n";
- echo "</script>\n";
- //include the footer
- require_once "resources/footer.php";
- ?>
|