change the switch phrases to switch languages

This commit is contained in:
markjcrane
2022-01-30 13:08:49 -07:00
parent b88c46bf47
commit 8372fa61f8
3 changed files with 128 additions and 118 deletions

View File

@@ -28,9 +28,9 @@ if ($domains_processed == 1) {
//create phrases folder and add include line in xml for each language found //create phrases folder and add include line in xml for each language found
/* /*
if (strlen($_SESSION['switch']['phrases']['dir']) > 0) { if (strlen($_SESSION['switch']['languages']['dir']) > 0) {
if (is_readable($_SESSION['switch']['phrases']['dir'])) { if (is_readable($_SESSION['switch']['languages']['dir'])) {
$conf_lang_folders = glob($_SESSION['switch']['phrases']['dir']."/*"); $conf_lang_folders = glob($_SESSION['switch']['languages']['dir']."/*");
foreach ($conf_lang_folders as $conf_lang_folder) { foreach ($conf_lang_folders as $conf_lang_folder) {
//create phrases folder, if necessary //create phrases folder, if necessary
if (!file_exists($conf_lang_folder."/phrases/")) { if (!file_exists($conf_lang_folder."/phrases/")) {

View File

@@ -1,114 +1,124 @@
<?php <?php
/* /*
FusionPBX FusionPBX
Version: MPL 1.1 Version: MPL 1.1
The contents of this file are subject to the Mozilla Public License Version 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 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 the License. You may obtain a copy of the License at
http://www.mozilla.org/MPL/ http://www.mozilla.org/MPL/
Software distributed under the License is distributed on an "AS IS" basis, Software distributed under the License is distributed on an "AS IS" basis,
WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
for the specific language governing rights and limitations under the for the specific language governing rights and limitations under the
License. License.
The Original Code is FusionPBX The Original Code is FusionPBX
The Initial Developer of the Original Code is The Initial Developer of the Original Code is
Mark J Crane <markjcrane@fusionpbx.com> Mark J Crane <markjcrane@fusionpbx.com>
Portions created by the Initial Developer are Copyright (C) 2008-2021 Portions created by the Initial Developer are Copyright (C) 2008-2021
the Initial Developer. All Rights Reserved. the Initial Developer. All Rights Reserved.
Contributor(s): Contributor(s):
Mark J Crane <markjcrane@fusionpbx.com> Mark J Crane <markjcrane@fusionpbx.com>
*/ */
//process this only one time //process this only one time
if ($domains_processed == 1) { if ($domains_processed == 1) {
//make sure the voicemail directory exists //make sure the voicemail directory exists
$sql = "select d.domain_name, v.voicemail_id \n"; $sql = "select d.domain_name, v.voicemail_id \n";
$sql .= "from v_voicemails as v, v_domains as d \n"; $sql .= "from v_voicemails as v, v_domains as d \n";
$sql .= "where voicemail_enabled = 'true' \n"; $sql .= "where voicemail_enabled = 'true' \n";
$sql .= "and v.domain_uuid = d.domain_uuid \n"; $sql .= "and v.domain_uuid = d.domain_uuid \n";
$database = new database; $database = new database;
$voicemails = $database->select($sql, null, 'all'); $voicemails = $database->select($sql, null, 'all');
unset($sql, $parameters); unset($sql, $parameters);
if (is_array($voicemails) && @sizeof($voicemails) != 0) { if (is_array($voicemails) && @sizeof($voicemails) != 0) {
foreach($voicemails as $row) { foreach($voicemails as $row) {
if (is_numeric($row['voicemail_id'])) { if (is_numeric($row['voicemail_id'])) {
if (!file_exists($_SESSION['switch']['voicemail']['dir']."/default/".$row['domain_name']."/".$row['voicemail_id'])) { if (!file_exists($_SESSION['switch']['voicemail']['dir']."/default/".$row['domain_name']."/".$row['voicemail_id'])) {
mkdir($_SESSION['switch']['voicemail']['dir']."/default/".$row['domain_name']."/".$row['voicemail_id'], 0770, true); mkdir($_SESSION['switch']['voicemail']['dir']."/default/".$row['domain_name']."/".$row['voicemail_id'], 0770, true);
} }
} }
} }
} }
//define initial, get current, define correct languages folder paths //change the switch phrases to switch languages
$switch_configuration_dir = $_SESSION['switch']['conf']['dir'] != '' ? $_SESSION['switch']['conf']['dir'] : '/etc/freeswitch'; $sql = "update v_default_settings ";
$switch_phrases_dir_initial = $switch_configuration_dir.'/lang'; $sql .= "set default_setting_value = 'languages' ";
$switch_phrases_dir_current = $_SESSION['switch']['phrases']['dir']; $sql .= "where default_setting_category = 'switch' ";
$switch_phrases_dir_correct = $switch_configuration_dir.'/languages'; $sql .= "and default_setting_subcategory = 'phrases' ";
$sql .= "and default_setting_name = 'dir' ";
//ensure switch using languages (not lang) folder $database = new database;
if ($switch_phrases_dir_current == $switch_phrases_dir_initial) { $database->execute($sql);
//rename languages folder, if necessary unset($sql);
if (file_exists($switch_phrases_dir_current) && !file_exists($switch_phrases_dir_correct)) {
rename($switch_phrases_dir_current, $switch_phrases_dir_correct); //define initial, get current, define correct languages folder paths
} $switch_configuration_dir = $_SESSION['switch']['conf']['dir'] != '' ? $_SESSION['switch']['conf']['dir'] : '/etc/freeswitch';
$switch_languages_dir_initial = $switch_configuration_dir.'/lang';
//update default setting value $switch_languages_dir_current = $_SESSION['switch']['languages']['dir'];
if (file_exists($switch_phrases_dir_correct)) { $switch_languages_dir_correct = $switch_configuration_dir.'/languages';
//get the phrases directory
$_SESSION['switch']['phrases']['dir'] = $switch_phrases_dir_correct; //ensure switch using languages (not lang) folder
if ($switch_languages_dir_current == $switch_languages_dir_initial) {
//update phrases with the correct path //rename languages folder, if necessary
$sql = "update v_default_settings "; if (file_exists($switch_languages_dir_current) && !file_exists($switch_languages_dir_correct)) {
$sql .= "set default_setting_value = '".$switch_phrases_dir_correct."', "; rename($switch_languages_dir_current, $switch_languages_dir_correct);
$sql .= "default_setting_enabled = true "; }
$sql .= "where default_setting_category = 'switch' ";
$sql .= "and default_setting_subcategory = 'phrases' "; //update default setting value
$sql .= "and default_setting_name = 'dir' "; if (file_exists($switch_languages_dir_correct)) {
$database = new database; //get the languages directory
$database->execute($sql); $_SESSION['switch']['languages']['dir'] = $switch_languages_dir_correct;
unset($sql);
} //update languages with the correct path
$sql = "update v_default_settings ";
} $sql .= "set default_setting_value = '".$switch_languages_dir_correct."', ";
$sql .= "default_setting_enabled = true ";
if (file_exists($switch_phrases_dir_correct)) { $sql .= "where default_setting_category = 'switch' ";
//update language path in main switch xml file $sql .= "and default_setting_subcategory = 'languages' ";
if (file_exists($switch_configuration_dir.'/freeswitch.xml')) { $sql .= "and default_setting_name = 'dir' ";
$switch_xml_content = file_get_contents($switch_configuration_dir.'/freeswitch.xml'); $database = new database;
$switch_xml_content = str_replace('data="lang/', 'data="languages/', $switch_xml_content); $database->execute($sql);
@file_put_contents($switch_configuration_dir.'/freeswitch.xml', $switch_xml_content); unset($sql);
} }
$folder_contents = scandir($switch_phrases_dir_correct);
if (is_array($folder_contents) && @sizeof($folder_contents) != 0) { }
foreach ($folder_contents as $language_abbreviation) {
if ($language_abbreviation == '.' || $language_abbreviation == '..') { continue; } if (file_exists($switch_languages_dir_correct)) {
// adjust language xml file to include all xml phrase files in the vm folder //update language path in main switch xml file
$language_xml_path = $switch_phrases_dir_correct.'/'.$language_abbreviation.'/'.$language_abbreviation.'.xml'; if (file_exists($switch_configuration_dir.'/freeswitch.xml')) {
if (file_exists($language_xml_path)) { $switch_xml_content = file_get_contents($switch_configuration_dir.'/freeswitch.xml');
$language_xml_content = file_get_contents($language_xml_path); $switch_xml_content = str_replace('data="lang/', 'data="languages/', $switch_xml_content);
$language_xml_content = str_replace('data="vm/sounds.xml"', 'data="vm/*.xml"', $language_xml_content); @file_put_contents($switch_configuration_dir.'/freeswitch.xml', $switch_xml_content);
@file_put_contents($language_xml_path, $language_xml_content); }
} $folder_contents = scandir($switch_languages_dir_correct);
// copy voicemail.xml to languages/xx/vm folders if (is_array($folder_contents) && @sizeof($folder_contents) != 0) {
$voicemail_xml_source = $_SERVER['PROJECT_ROOT'].'/app/voicemails/resources/switch/languages/'.$language_abbreviation.'/vm/voicemail.xml'; foreach ($folder_contents as $language_abbreviation) {
$voicemail_xml_target = $switch_phrases_dir_correct.'/'.$language_abbreviation.'/vm/voicemail.xml'; if ($language_abbreviation == '.' || $language_abbreviation == '..') { continue; }
if (!file_exists($voicemail_xml_target)) { // adjust language xml file to include all xml phrase files in the vm folder
copy($voicemail_xml_source, $voicemail_xml_target); $language_xml_path = $switch_languages_dir_correct.'/'.$language_abbreviation.'/'.$language_abbreviation.'.xml';
} if (file_exists($language_xml_path)) {
} $language_xml_content = file_get_contents($language_xml_path);
} $language_xml_content = str_replace('data="vm/sounds.xml"', 'data="vm/*.xml"', $language_xml_content);
} @file_put_contents($language_xml_path, $language_xml_content);
}
// clear variables // copy voicemail.xml to languages/xx/vm folders
unset($switch_configuration_dir, $switch_phrases_dir_initial, $switch_phrases_dir_current, $switch_phrases_dir_correct); $voicemail_xml_source = $_SERVER['PROJECT_ROOT'].'/app/voicemails/resources/switch/languages/'.$language_abbreviation.'/vm/voicemail.xml';
unset($switch_xml_content, $folder_contents, $language_abbreviation, $language_xml_path, $language_xml_content, $voicemail_xml_source, $voicemail_xml_target); $voicemail_xml_target = $switch_languages_dir_correct.'/'.$language_abbreviation.'/vm/voicemail.xml';
if (!file_exists($voicemail_xml_target)) {
} copy($voicemail_xml_source, $voicemail_xml_target);
}
?> }
}
}
// clear variables
unset($switch_configuration_dir, $switch_languages_dir_initial, $switch_languages_dir_current, $switch_languages_dir_correct);
unset($switch_xml_content, $folder_contents, $language_abbreviation, $language_xml_path, $language_xml_content, $voicemail_xml_source, $voicemail_xml_target);
}
?>

View File

@@ -156,7 +156,7 @@ if (!class_exists('switch_settings')) {
$array[$x]['default_setting_description'] = ''; $array[$x]['default_setting_description'] = '';
$x++; $x++;
$array[$x]['default_setting_category'] = 'switch'; $array[$x]['default_setting_category'] = 'switch';
$array[$x]['default_setting_subcategory'] = 'phrases'; $array[$x]['default_setting_subcategory'] = 'languages';
$array[$x]['default_setting_name'] = 'dir'; $array[$x]['default_setting_name'] = 'dir';
$array[$x]['default_setting_value'] = $vars['conf_dir'].'/languages'; $array[$x]['default_setting_value'] = $vars['conf_dir'].'/languages';
$array[$x]['default_setting_enabled'] = 'true'; $array[$x]['default_setting_enabled'] = 'true';