Files
fusionpbx/app/fax/fax_edit.php
T

775 lines
28 KiB
PHP
Raw Normal View History

2016-04-25 20:30:23 -05: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>
2024-02-05 13:35:06 -07:00
Portions created by the Initial Developer are Copyright (C) 2008-2024
2016-04-25 20:30:23 -05:00
the Initial Developer. All Rights Reserved.
Contributor(s):
Mark J Crane <markjcrane@fusionpbx.com>
*/
2016-10-08 22:16:54 -06:00
2023-06-15 14:28:23 -03:00
//includes files
require_once dirname(__DIR__, 2) . "/resources/require.php";
2016-10-08 22:16:54 -06:00
require_once "resources/check_auth.php";
//check permissions
if (permission_exists('fax_extension_add') || permission_exists('fax_extension_edit') || permission_exists('fax_extension_delete')) {
//access granted
}
else {
echo "access denied";
exit;
2016-04-25 20:30:23 -05:00
}
//add multi-lingual support
$language = new text;
$text = $language->get();
//get the fax_extension and save it as a variable
2019-09-19 08:08:17 -06:00
if (isset($_REQUEST["fax_extension"])) {
2019-08-07 18:59:26 -06:00
$fax_extension = $_REQUEST["fax_extension"];
2016-04-25 20:30:23 -05:00
}
//set the fax directory
$fax_dir = $_SESSION['switch']['storage']['dir'].'/fax/'.$_SESSION['domain_name'];
//get the fax extension
2023-05-29 22:26:37 +00:00
if (!empty($fax_extension) && is_numeric($fax_extension)) {
2016-04-25 20:30:23 -05:00
//set the fax directories. example /usr/local/freeswitch/storage/fax/329/inbox
$dir_fax_inbox = $fax_dir.'/'.$fax_extension.'/inbox';
$dir_fax_sent = $fax_dir.'/'.$fax_extension.'/sent';
$dir_fax_temp = $fax_dir.'/'.$fax_extension.'/temp';
//make sure the directories exist
if (!is_dir($_SESSION['switch']['storage']['dir'])) {
2021-12-30 10:19:47 -07:00
mkdir($_SESSION['switch']['storage']['dir'], 0770, true);
2016-04-25 20:30:23 -05:00
}
if (!is_dir($fax_dir.'/'.$fax_extension)) {
2021-12-30 10:19:47 -07:00
mkdir($fax_dir.'/'.$fax_extension, 0770, true);
2016-04-25 20:30:23 -05:00
}
if (!is_dir($dir_fax_inbox)) {
2021-12-30 10:19:47 -07:00
mkdir($dir_fax_inbox, 0770, true);
2016-04-25 20:30:23 -05:00
}
if (!is_dir($dir_fax_sent)) {
2021-12-30 10:19:47 -07:00
mkdir($dir_fax_sent, 0770, true);
2016-04-25 20:30:23 -05:00
}
if (!is_dir($dir_fax_temp)) {
2021-12-30 10:19:47 -07:00
mkdir($dir_fax_temp, 0770, true);
2016-04-25 20:30:23 -05:00
}
2016-04-25 20:30:23 -05:00
}
//set the action as an add or an update
2023-05-29 22:26:37 +00:00
if (!empty($_REQUEST["id"]) && is_uuid($_REQUEST["id"])) {
2016-04-25 20:30:23 -05:00
$action = "update";
2019-08-07 18:59:26 -06:00
$fax_uuid = $_REQUEST["id"];
2023-05-29 22:26:37 +00:00
$dialplan_uuid = $_REQUEST["dialplan_uuid"] ?? null;
2016-04-25 20:30:23 -05:00
}
else {
$action = "add";
}
//get the http post values and set them as php variables
if (count($_POST) > 0) {
//process the http post data by submitted action
2023-05-29 22:26:37 +00:00
if (!empty($_POST['action']) && is_uuid($fax_uuid)) {
$array[0]['checked'] = 'true';
$array[0]['uuid'] = $fax_uuid;
switch ($_POST['action']) {
case 'copy':
if (permission_exists('fax_extension_copy')) {
$obj = new fax;
$obj->copy($array);
}
break;
case 'delete':
if (permission_exists('fax_extension_delete')) {
$obj = new fax;
$obj->delete($array);
}
break;
}
header('Location: fax.php');
exit;
}
2018-12-14 15:13:28 -07:00
//set the variables
2019-08-07 18:59:26 -06:00
$fax_name = $_POST["fax_name"];
$fax_extension = $_POST["fax_extension"];
$fax_accountcode = $_POST["accountcode"];
$fax_destination_number = $_POST["fax_destination_number"];
$fax_prefix = $_POST["fax_prefix"];
2024-02-05 13:35:06 -07:00
$fax_email = implode(',',array_filter($_POST["fax_email"] ?? []));
$fax_file = $_POST["fax_file"];
2019-08-07 18:59:26 -06:00
$fax_email_connection_type = $_POST["fax_email_connection_type"];
$fax_email_connection_host = $_POST["fax_email_connection_host"];
$fax_email_connection_port = $_POST["fax_email_connection_port"];
$fax_email_connection_security = $_POST["fax_email_connection_security"];
$fax_email_connection_validate = $_POST["fax_email_connection_validate"];
$fax_email_connection_username = $_POST["fax_email_connection_username"];
$fax_email_connection_password = $_POST["fax_email_connection_password"];
$fax_email_connection_mailbox = $_POST["fax_email_connection_mailbox"];
$fax_email_inbound_subject_tag = $_POST["fax_email_inbound_subject_tag"];
$fax_email_outbound_subject_tag = $_POST["fax_email_outbound_subject_tag"];
2016-04-25 20:30:23 -05:00
$fax_email_outbound_authorized_senders = $_POST["fax_email_outbound_authorized_senders"];
2019-08-07 18:59:26 -06:00
$fax_caller_id_name = $_POST["fax_caller_id_name"];
$fax_caller_id_number = $_POST["fax_caller_id_number"];
2019-12-09 00:37:12 -05:00
$fax_toll_allow = $_POST["fax_toll_allow"];
2019-08-07 18:59:26 -06:00
$fax_forward_number = $_POST["fax_forward_number"];
2023-05-05 13:46:37 -03:00
if (empty($fax_destination_number)) {
2016-04-25 20:30:23 -05:00
$fax_destination_number = $fax_extension;
}
if (strlen($fax_forward_number) > 3) {
//$fax_forward_number = preg_replace("~[^0-9]~", "",$fax_forward_number);
$fax_forward_number = str_replace(" ", "", $fax_forward_number);
$fax_forward_number = str_replace("-", "", $fax_forward_number);
}
if (strripos($fax_forward_number, '$1') === false) {
$forward_prefix = ''; //not found
2019-08-07 18:59:26 -06:00
}
else {
2016-04-25 20:30:23 -05:00
$forward_prefix = $forward_prefix.$fax_forward_number.'#'; //found
}
2023-05-29 22:26:37 +00:00
$fax_local = $_POST["fax_local"] ?? null; //! @todo check in database
2019-08-07 18:59:26 -06:00
$fax_description = $_POST["fax_description"];
$fax_send_channels = $_POST["fax_send_channels"];
2018-12-14 15:13:28 -07:00
//restrict size of user data
$fax_name = substr($fax_name, 0, 30);
$fax_extension = substr($fax_extension, 0, 15);
2023-05-29 22:26:37 +00:00
$accountcode = substr($accountcode ?? '', 0, 80);
$fax_prefix = substr($fax_prefix ?? '', 0, 12);
$fax_caller_id_name = substr($fax_caller_id_name, 0, 40);
2018-12-14 15:13:28 -07:00
$fax_caller_id_number = substr($fax_caller_id_number, 0, 20);
$fax_forward_number = substr($fax_forward_number, 0, 20);
2016-04-25 20:30:23 -05:00
}
//delete the user from the fax users
2023-05-29 22:26:37 +00:00
if (!empty($_REQUEST["user_uuid"]) && is_uuid($_REQUEST["user_uuid"]) && is_uuid($_REQUEST["id"]) && !empty($_GET["a"]) && $_GET["a"] == "delete" && permission_exists("fax_extension_delete")) {
2016-04-25 20:30:23 -05:00
//set the variables
2019-08-07 18:59:26 -06:00
$user_uuid = $_REQUEST["user_uuid"];
$fax_uuid = $_REQUEST["id"];
2016-04-25 20:30:23 -05:00
//delete the group from the users
2019-08-07 18:59:26 -06:00
$array['fax_users'][0]['domain_uuid'] = $_SESSION['domain_uuid'];
$array['fax_users'][0]['fax_uuid'] = $fax_uuid;
$array['fax_users'][0]['user_uuid'] = $user_uuid;
$p = new permissions;
$p->add('fax_user_delete', 'temp');
$database = new database;
$database->app_name = 'fax';
$database->app_uuid = '24108154-4ac3-1db6-1551-4731703a4440';
$database->delete($array);
unset($array);
$p->delete('fax_user_delete', 'temp');
2016-04-25 20:30:23 -05:00
//redirect the browser
2018-08-31 03:09:01 +00:00
message::add($text['message-delete']);
2016-04-25 20:30:23 -05:00
header("Location: fax_edit.php?id=".$fax_uuid);
return;
}
//add the user to the fax users
2023-05-29 22:26:37 +00:00
if (!empty($_REQUEST["user_uuid"]) && is_uuid($_REQUEST["user_uuid"]) && is_uuid($_REQUEST["id"]) && (empty($_GET["a"]) || $_GET["a"] != "delete")) {
2016-04-25 20:30:23 -05:00
//set the variables
2019-08-07 18:59:26 -06:00
$user_uuid = $_REQUEST["user_uuid"];
$fax_uuid = $_REQUEST["id"];
2016-04-25 20:30:23 -05:00
//assign the user to the fax extension
2019-08-07 18:59:26 -06:00
$array['fax_users'][0]['fax_user_uuid'] = uuid();
$array['fax_users'][0]['domain_uuid'] = $_SESSION['domain_uuid'];
$array['fax_users'][0]['fax_uuid'] = $fax_uuid;
$array['fax_users'][0]['user_uuid'] = $user_uuid;
$p = new permissions;
$p->add('fax_user_add', 'temp');
$database = new database;
$database->app_name = 'fax';
$database->app_uuid = '24108154-4ac3-1db6-1551-4731703a4440';
$database->save($array);
unset($array);
$p->delete('fax_user_add', 'temp');
2016-04-25 20:30:23 -05:00
//redirect the browser
2018-08-31 03:09:01 +00:00
message::add($text['confirm-add']);
2016-04-25 20:30:23 -05:00
header("Location: fax_edit.php?id=".$fax_uuid);
return;
}
//clear file status cache
clearstatcache();
2019-08-24 09:26:47 -06:00
//process the data
2024-02-05 13:35:06 -07:00
if (!empty($_POST) && empty($_POST["persistformvar"])) {
2016-04-25 20:30:23 -05:00
2024-02-05 13:35:06 -07:00
//get the fax_uuid
2019-09-19 13:30:32 -06:00
if ($action == "update" && is_uuid($_POST["fax_uuid"]) && permission_exists('fax_extension_edit')) {
2019-08-24 09:26:47 -06:00
$fax_uuid = $_POST["fax_uuid"];
2016-04-25 20:30:23 -05:00
}
2019-09-19 06:27:05 -06:00
//validate the token
$token = new token;
if (!$token->validate($_SERVER['PHP_SELF'])) {
message::add($text['message-invalid_token'],'negative');
header('Location: fax.php');
exit;
}
2019-08-24 09:26:47 -06:00
//check for all required data
2024-02-05 13:35:06 -07:00
$msg = '';
if (permission_exists('fax_extension') && empty($fax_extension)) { $msg .= "".$text['confirm-ext']."<br>\n"; }
2023-05-05 13:46:37 -03:00
if (empty($fax_name)) { $msg .= "".$text['confirm-fax']."<br>\n"; }
if (!empty($msg) && empty($_POST["persistformvar"])) {
2019-08-24 09:26:47 -06:00
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;
}
2016-04-25 20:30:23 -05:00
2022-06-23 15:02:07 -06:00
//sanitize the fax extension number
$fax_extension = preg_replace('#[^0-9]#', '', $fax_extension);
2019-08-24 09:26:47 -06:00
//replace the spaces with a dash
$fax_name = str_replace(" ", "-", $fax_name);
2016-04-25 20:30:23 -05:00
2019-08-24 09:26:47 -06:00
//escape the commas with a backslash and remove the spaces
$fax_email = str_replace(" ", "", $fax_email);
2016-04-25 20:30:23 -05:00
2019-08-24 09:26:47 -06:00
//set the $php_bin
//if (file_exists(PHP_BINDIR."/php")) { $php_bin = 'php'; }
if (substr(strtoupper(PHP_OS), 0, 3) == "WIN") {
$php_bin = 'php.exe';
}
2024-02-05 13:35:06 -07:00
elseif (file_exists(PHP_BINDIR."/php5")) {
$php_bin = 'php5';
2019-08-24 09:26:47 -06:00
}
else {
$php_bin = 'php';
}
2016-04-25 20:30:23 -05:00
2019-08-24 09:26:47 -06:00
//add or update the database
2023-05-29 22:26:37 +00:00
if (empty($_POST["persistformvar"]) || $_POST["persistformvar"] != "true") {
2019-08-24 09:26:47 -06:00
//prep authorized senders
2023-04-24 23:06:58 -04:00
if (is_array($fax_email_outbound_authorized_senders) && (sizeof($fax_email_outbound_authorized_senders) > 0)) {
2019-08-24 09:26:47 -06:00
foreach ($fax_email_outbound_authorized_senders as $sender_num => $sender) {
if ($sender == '' || (substr_count($sender, '@') == 1 && !valid_email($sender)) || substr_count($sender, '.') == 0) {
unset($fax_email_outbound_authorized_senders[$sender_num]);
}
2019-08-24 09:26:47 -06:00
}
2019-09-17 14:38:59 -04:00
$fax_email_outbound_authorized_senders = strtolower(implode(',', $fax_email_outbound_authorized_senders));
2016-04-25 20:30:23 -05:00
}
2019-08-24 09:26:47 -06:00
if ($action == "add" && permission_exists('fax_extension_add')) {
//prepare the unique identifiers
$fax_uuid = uuid();
$dialplan_uuid = uuid();
2016-04-25 20:30:23 -05:00
2019-08-24 09:26:47 -06:00
//begin insert array
$array['fax'][0]['fax_uuid'] = $fax_uuid;
$array['fax'][0]['dialplan_uuid'] = $dialplan_uuid;
2016-04-25 20:30:23 -05:00
2019-08-24 09:26:47 -06:00
//assign temp permission
$p = new permissions;
$p->add('fax_add', 'temp');
2016-04-25 20:30:23 -05:00
2019-08-24 09:26:47 -06:00
//set the dialplan action
$dialplan_type = "add";
}
2016-04-25 20:30:23 -05:00
2019-08-24 09:26:47 -06:00
if ($action == "update" && permission_exists('fax_extension_edit')) {
//begin update array
$array['fax'][0]['fax_uuid'] = $fax_uuid;
2019-08-07 18:59:26 -06:00
2019-08-24 09:26:47 -06:00
//assign temp permission
$p = new permissions;
$p->add('fax_edit', 'temp');
}
2019-08-07 18:59:26 -06:00
2019-08-24 09:26:47 -06:00
if (is_array($array) && @sizeof($array) != 0) {
//add common columns to array
$array['fax'][0]['domain_uuid'] = $_SESSION['domain_uuid'];
2024-02-05 13:35:06 -07:00
if (permission_exists('fax_extension')) {
$array['fax'][0]['fax_extension'] = $fax_extension;
}
if (permission_exists('fax_accountcode')) {
$array['fax'][0]['accountcode'] = $fax_accountcode;
}
if (permission_exists('fax_destination_number')) {
$array['fax'][0]['fax_destination_number'] = $fax_destination_number;
}
if (permission_exists('fax_prefix')) {
$array['fax'][0]['fax_prefix'] = $fax_prefix;
}
2019-08-24 09:26:47 -06:00
$array['fax'][0]['fax_name'] = $fax_name;
2024-02-05 13:35:06 -07:00
if (permission_exists('fax_email')) {
$array['fax'][0]['fax_email'] = $fax_email;
$array['fax'][0]['fax_file'] = $fax_file;
2024-02-05 13:35:06 -07:00
}
if (permission_exists('fax_caller_id_name')) {
$array['fax'][0]['fax_caller_id_name'] = $fax_caller_id_name;
2019-08-24 09:26:47 -06:00
}
2024-02-05 13:35:06 -07:00
if (permission_exists('fax_caller_id_number')) {
$array['fax'][0]['fax_caller_id_number'] = $fax_caller_id_number;
}
if (permission_exists('fax_toll_allow')) {
$array['fax'][0]['fax_toll_allow'] = $fax_toll_allow;
}
if (permission_exists('fax_forward_number')) {
if ($action == "add" && !empty($fax_forward_number)) {
$array['fax'][0]['fax_forward_number'] = $fax_forward_number;
}
if ($action == "update") {
$array['fax'][0]['fax_forward_number'] = !empty($fax_forward_number) ? $fax_forward_number : null;
}
}
if (permission_exists('fax_send_channels')) {
$array['fax'][0]['fax_send_channels'] = strlen($fax_send_channels) != 0 ? $fax_send_channels : null;
2019-08-24 09:26:47 -06:00
}
$array['fax'][0]['fax_description'] = $fax_description;
//execute
$database = new database;
$database->app_name = 'fax';
$database->app_uuid = '24108154-4ac3-1db6-1551-4731703a4440';
$database->save($array);
unset($array);
//revoke temp permissions
$p->delete('fax_add', 'temp');
$p->delete('fax_edit', 'temp');
//clear the destinations session array
if (isset($_SESSION['destinations']['array'])) {
unset($_SESSION['destinations']['array']);
}
2019-08-24 09:26:47 -06:00
}
//get the dialplan_uuid
$sql = "select dialplan_uuid from v_fax ";
$sql .= "where domain_uuid = :domain_uuid ";
$sql .= "and fax_uuid = :fax_uuid ";
$parameters['domain_uuid'] = $_SESSION['domain_uuid'];
$parameters['fax_uuid'] = $fax_uuid;
$database = new database;
$dialplan_uuid = $database->select($sql, $parameters, 'column');
unset($sql, $parameters);
//dialplan add or update
$c = new fax;
$c->domain_uuid = $_SESSION['domain_uuid'];
$c->dialplan_uuid = $dialplan_uuid;
$c->fax_name = $fax_name;
$c->fax_uuid = $fax_uuid;
$c->fax_extension = $fax_extension;
$c->fax_forward_number = $fax_forward_number;
$c->destination_number = $fax_destination_number;
$c->fax_description = $fax_description;
$a = $c->dialplan();
//redirect the browser
if ($action == "update" && permission_exists('fax_extension_edit')) {
message::add($text['confirm-update']);
2016-04-25 20:30:23 -05:00
}
2019-08-24 09:26:47 -06:00
if ($action == "add" && permission_exists('fax_extension_add')) {
message::add($text['confirm-add']);
2019-03-15 00:01:21 -06:00
}
2019-08-24 09:26:47 -06:00
header("Location: fax.php");
return;
2019-08-07 18:59:26 -06:00
2016-04-25 20:30:23 -05:00
}
2019-08-24 09:26:47 -06:00
}
2016-04-25 20:30:23 -05:00
//pre-populate the form
2023-05-29 22:26:37 +00:00
if (!empty($_GET['id']) && is_uuid($_GET['id']) && (empty($_POST["persistformvar"]) || $_POST["persistformvar"] != "true")) {
2019-08-07 18:59:26 -06:00
$fax_uuid = $_GET["id"];
2016-04-25 20:30:23 -05:00
$sql = "select * from v_fax ";
2019-08-07 18:59:26 -06:00
$sql .= "where domain_uuid = :domain_uuid ";
$sql .= "and fax_uuid = :fax_uuid ";
$parameters['domain_uuid'] = $_SESSION['domain_uuid'];
$parameters['fax_uuid'] = $fax_uuid;
$database = new database;
$row = $database->select($sql, $parameters, 'row');
if (is_array($row) && @sizeof($row) != 0) {
2016-04-25 20:30:23 -05:00
$dialplan_uuid = $row["dialplan_uuid"];
$fax_extension = $row["fax_extension"];
$fax_accountcode = $row["accountcode"];
$fax_destination_number = $row["fax_destination_number"];
$fax_prefix = $row["fax_prefix"];
$fax_name = $row["fax_name"];
$fax_email = $row["fax_email"];
$fax_file = $row["fax_file"];
2016-04-25 20:30:23 -05:00
$fax_caller_id_name = $row["fax_caller_id_name"];
$fax_caller_id_number = $row["fax_caller_id_number"];
2019-12-09 00:37:12 -05:00
$fax_toll_allow = $row["fax_toll_allow"];
2016-04-25 20:30:23 -05:00
$fax_forward_number = $row["fax_forward_number"];
$fax_description = $row["fax_description"];
$fax_send_channels = $row["fax_send_channels"];
}
2019-08-07 18:59:26 -06:00
unset($sql, $parameters, $row);
2016-04-25 20:30:23 -05:00
}
else{
$fax_send_channels = 10;
}
2019-08-24 09:26:47 -06:00
//get the fax users
2023-05-29 22:26:37 +00:00
if (!empty($fax_uuid) && is_uuid($fax_uuid)) {
$sql = "select * from v_fax_users as e, v_users as u ";
$sql .= "where e.user_uuid = u.user_uuid ";
$sql .= "and e.domain_uuid = :domain_uuid ";
$sql .= "and e.fax_uuid = :fax_uuid ";
$parameters['domain_uuid'] = $_SESSION['domain_uuid'];
$parameters['fax_uuid'] = $fax_uuid;
$database = new database;
$fax_users = $database->select($sql, $parameters, 'all');
unset($sql, $parameters);
}
2019-08-24 09:26:47 -06:00
//get the users that are not assigned to this fax server
2023-05-29 22:26:37 +00:00
if (!empty($fax_uuid) && is_uuid($fax_uuid)) {
$sql = "select * from v_users \n";
$sql .= "where domain_uuid = :domain_uuid \n";
$sql .= "and user_uuid not in (\n";
$sql .= " select user_uuid from v_fax_users ";
$sql .= " where domain_uuid = :domain_uuid ";
$sql .= " and fax_uuid = :fax_uuid ";
$sql .= " and user_uuid is not null ";
$sql .= ")\n";
$parameters['domain_uuid'] = $_SESSION['domain_uuid'];
$parameters['fax_uuid'] = $fax_uuid;
$database = new database;
$available_users = $database->select($sql, $parameters, 'all');
unset($sql, $parameters);
}
2019-08-24 09:26:47 -06:00
2016-04-25 20:30:23 -05:00
//replace the dash with a space
2023-05-29 22:26:37 +00:00
$fax_name = str_replace("-", " ", $fax_name ?? '');
2016-04-25 20:30:23 -05:00
2019-08-24 09:26:47 -06:00
//build the fax_emails array
2023-05-29 22:26:37 +00:00
$fax_emails = explode(',', $fax_email ?? '');
2019-08-24 09:26:47 -06:00
2016-04-25 20:30:23 -05:00
//set the dialplan_uuid
2023-05-29 22:26:37 +00:00
if (empty($dialplan_uuid) || !is_uuid($dialplan_uuid)) {
2016-04-25 20:30:23 -05:00
$dialplan_uuid = uuid();
}
2019-09-19 06:27:05 -06:00
//create token
$object = new token;
$token = $object->create($_SERVER['PHP_SELF']);
2016-04-25 20:30:23 -05:00
//show the header
2020-01-06 11:43:43 -07:00
$document['title'] = $text['title-fax_server_settings'];
2016-04-25 20:30:23 -05:00
require_once "resources/header.php";
//show the content
echo "<form method='post' name='frm' id='frm'>\n";
2016-04-25 20:30:23 -05:00
echo "<div class='action_bar' id='action_bar'>\n";
echo " <div class='heading'><b>".$text['header-fax_server_settings']."</b></div>\n";
echo " <div class='actions'>\n";
2024-02-05 13:35:06 -07:00
echo button::create(['type'=>'button','label'=>$text['button-back'],'icon'=>$_SESSION['theme']['button_icon_back'],'id'=>'btn_back','link'=>'fax.php']);
2020-03-26 09:38:50 -06:00
if ($action == "update") {
$button_margin = 'margin-left: 15px;';
2024-02-05 13:35:06 -07:00
if (permission_exists('fax_extension_advanced')) {
$button_margin = 'margin-left: 15px;';
if (function_exists("imap_open") && file_exists("fax_files_remote.php")) {
2024-04-11 13:23:09 -06:00
echo button::create(['type'=>'button','label'=>$text['button-advanced'],'icon'=>'tools','style'=>($button_margin ?? ''),'link'=>'fax_advanced.php?id='.urlencode($fax_uuid)]);
2024-02-05 13:35:06 -07:00
}
unset($button_margin);
}
2020-03-26 09:38:50 -06:00
if (permission_exists('fax_extension_copy')) {
2023-05-29 22:26:37 +00:00
echo button::create(['type'=>'button','label'=>$text['button-copy'],'icon'=>$_SESSION['theme']['button_icon_copy'],'name'=>'btn_copy','style'=>($button_margin ?? null),'onclick'=>"modal_open('modal-copy','btn_copy');"]);
2020-03-26 09:38:50 -06:00
unset($button_margin);
}
if (permission_exists('fax_extension_delete')) {
2023-05-29 22:26:37 +00:00
echo button::create(['type'=>'button','label'=>$text['button-delete'],'icon'=>$_SESSION['theme']['button_icon_delete'],'name'=>'btn_delete','style'=>($button_margin ?? null),'onclick'=>"modal_open('modal-delete','btn_delete');"]);
2020-03-26 09:38:50 -06:00
unset($button_margin);
}
}
2024-02-05 13:35:06 -07:00
echo button::create(['type'=>'submit','label'=>$text['button-save'],'icon'=>$_SESSION['theme']['button_icon_save'],'id'=>'btn_save','style'=>'margin-left: 15px;']);
echo " </div>\n";
echo " <div style='clear: both;'></div>\n";
echo "</div>\n";
2020-03-26 09:38:50 -06:00
if ($action == 'update') {
if (permission_exists('fax_extension_copy')) {
echo modal::create(['id'=>'modal-copy','type'=>'copy','actions'=>button::create(['type'=>'submit','label'=>$text['button-continue'],'icon'=>'check','id'=>'btn_copy','style'=>'float: right; margin-left: 15px;','collapse'=>'never','name'=>'action','value'=>'copy','onclick'=>"modal_close();"])]);
}
if (permission_exists('fax_extension_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();"])]);
}
}
2024-09-05 16:10:04 -07:00
echo "<div class='card'>\n";
echo "<table width='100%' border='0' cellpadding='0' cellspacing='0'>\n";
2024-02-05 13:35:06 -07:00
echo "<tr>\n";
echo "<td width='30%' class='vncellreq' valign='top' align='left' nowrap='nowrap'>\n";
echo " ".$text['label-name']."\n";
echo "</td>\n";
echo "<td width='70%' class='vtable' align='left'>\n";
echo " <input class='formfld' type='text' name='fax_name' maxlength='30' value=\"".escape($fax_name)."\" required='required'>\n";
echo "<br />\n";
echo "".$text['description-name']."\n";
echo "</td>\n";
echo "</tr>\n";
2016-04-25 20:30:23 -05:00
2024-02-05 13:35:06 -07:00
if (permission_exists('fax_extension')) {
2016-04-25 20:30:23 -05:00
echo "<tr>\n";
echo "<td class='vncellreq' valign='top' align='left' nowrap='nowrap'>\n";
echo " ".$text['label-extension']."\n";
echo "</td>\n";
echo "<td class='vtable' align='left'>\n";
2024-05-30 18:45:45 -06:00
echo " <input class='formfld' type='text' name='fax_extension' maxlength='15' value=\"".escape($fax_extension ?? '')."\" required='required' placeholder=\"".($_SESSION['fax']['extension_range']['text'] ?? '')."\">\n";
2016-04-25 20:30:23 -05:00
echo "<br />\n";
echo "".$text['description-extension']."\n";
echo "</td>\n";
echo "</tr>\n";
2024-02-05 13:35:06 -07:00
}
2016-04-25 20:30:23 -05:00
2024-02-05 13:35:06 -07:00
if (permission_exists('fax_accountcode')) {
2016-10-08 22:16:54 -06:00
echo "<tr>\n";
2016-12-27 12:06:30 -05:00
echo "<td class='vncell' valign='top' align='left' nowrap='nowrap'>\n";
2016-10-08 22:16:54 -06:00
echo " ".$text['label-accountcode']."\n";
echo "</td>\n";
echo "<td class='vtable' align='left'>\n";
if ($action == "add") { $fax_accountcode = get_accountcode(); }
2018-12-14 15:13:28 -07:00
echo " <input class='formfld' type='text' name='accountcode' maxlength='80' value=\"".escape($fax_accountcode)."\">\n";
2016-10-08 22:16:54 -06:00
echo "<br />\n";
echo $text['description-accountcode']."\n";
echo "</td>\n";
echo "</tr>\n";
2024-02-05 13:35:06 -07:00
}
2016-04-25 20:30:23 -05:00
2024-02-05 13:35:06 -07:00
if (permission_exists('fax_destination_number')) {
2016-04-25 20:30:23 -05:00
echo "<tr>\n";
echo "<td class='vncell' valign='top' align='left' nowrap='nowrap'>\n";
echo " ".$text['label-destination-number']."\n";
echo "</td>\n";
echo "<td class='vtable' align='left'>\n";
2023-05-29 22:26:37 +00:00
echo " <input class='formfld' type='text' name='fax_destination_number' maxlength='255' value=\"".escape($fax_destination_number ?? '')."\">\n";
2016-04-25 20:30:23 -05:00
echo "<br />\n";
echo " ".$text['description-destination-number']."\n";
echo "</td>\n";
echo "</tr>\n";
2024-02-05 13:35:06 -07:00
}
2016-04-25 20:30:23 -05:00
2024-02-05 13:35:06 -07:00
if (permission_exists('fax_prefix')) {
2016-04-25 20:30:23 -05:00
echo "<tr>\n";
echo "<td class='vncell' valign='top' align='left' nowrap='nowrap'>\n";
echo " ".$text['label-fax_prefix']."\n";
echo "</td>\n";
echo "<td class='vtable' align='left'>\n";
2023-05-29 22:26:37 +00:00
echo " <input class='formfld' type='text' name='fax_prefix' maxlength='12' value=\"".escape($fax_prefix ?? '')."\">\n";
2016-04-25 20:30:23 -05:00
echo "<br />\n";
echo " ".$text['description-fax_prefix']."\n";
echo "</td>\n";
echo "</tr>\n";
2024-02-05 13:35:06 -07:00
}
2016-04-25 20:30:23 -05:00
2024-02-05 13:35:06 -07:00
if (permission_exists('fax_email')) {
2016-04-25 20:30:23 -05:00
echo "<tr>\n";
echo "<td class='vncell' valign='top' align='left' nowrap='nowrap'>\n";
echo " ".$text['label-email']."\n";
echo "</td>\n";
echo "<td class='vtable' align='left'>\n";
2017-02-08 16:32:07 -05:00
echo "<table border='0' cellpadding='2' cellspacing='0'>\n";
$x = 0;
foreach ($fax_emails as $email) {
2017-02-08 16:32:07 -05:00
echo "<tr>\n";
echo "<td>\n";
2018-06-02 23:17:13 -06:00
echo " <input class='formfld' type=\"text\" name=\"fax_email[".$x."]\" maxlength='255' style=\"width: 90%;\"value=\"".escape($email)."\">\n";
2017-02-08 16:32:07 -05:00
echo "</td>\n";
$x++;
}
echo "<tr>\n";
echo " <td>\n";
echo " <input class='formfld' type=\"text\" name=\"fax_email[".$x++."]\" maxlength='255' style=\"width: 90%;\"value=\"\">\n";
echo " </td>\n";
echo "</table>\n";
2016-04-25 20:30:23 -05:00
echo "<br />\n";
2024-02-05 13:35:06 -07:00
echo " ".$text['description-email']."\n";
2016-04-25 20:30:23 -05:00
echo "</td>\n";
echo "</tr>\n";
echo "<tr>\n";
echo "<td class='vncell' valign='top' align='left' nowrap='nowrap'>\n";
echo " ".$text['label-email_fax_file']."\n";
echo "</td>\n";
echo "<td class='vtable' align='left'>\n";
echo " <select class='formfld' name='fax_file' id='fax_file'>\n";
echo " <option value='attach' ".(empty($fax_file) || $fax_fax_file == 'attach' ? "selected='selected'" : null).">".$text['option-attachment']."</option>\n";
echo " <option value='link' ".($fax_file == "link" ? "selected='selected'" : null).">".$text['option-download_link']."</option>\n";
echo " </select>\n";
echo "<br />\n";
echo $text['description-email_fax_file']."\n";
echo "</td>\n";
echo "</tr>\n";
2024-02-05 13:35:06 -07:00
}
2016-04-25 20:30:23 -05:00
2024-02-05 13:35:06 -07:00
if (permission_exists('fax_caller_id_name')) {
2016-04-25 20:30:23 -05:00
echo "<tr>\n";
echo "<td width='30%' class='vncell' valign='top' align='left' nowrap='nowrap'>\n";
echo " ".$text['label-caller-id-name']."\n";
echo "</td>\n";
echo "<td width='70%' class='vtable' align='left'>\n";
2023-05-29 22:26:37 +00:00
echo " <input class='formfld' type='text' name='fax_caller_id_name' maxlength='40' value=\"".escape($fax_caller_id_name ?? '')."\">\n";
2016-04-25 20:30:23 -05:00
echo "<br />\n";
echo "".$text['description-caller-id-name']."\n";
echo "</td>\n";
echo "</tr>\n";
2024-02-05 13:35:06 -07:00
}
2016-04-25 20:30:23 -05:00
2024-02-05 13:35:06 -07:00
if (permission_exists('fax_caller_id_number')) {
2016-04-25 20:30:23 -05:00
echo "<tr>\n";
echo "<td class='vncell' valign='top' align='left' nowrap='nowrap'>\n";
echo " ".$text['label-caller-id-number']."\n";
echo "</td>\n";
echo "<td class='vtable' align='left'>\n";
2023-05-29 22:26:37 +00:00
echo " <input class='formfld' type='text' name='fax_caller_id_number' maxlength='20' min='0' step='1' value=\"".escape($fax_caller_id_number ?? '')."\">\n";
2016-04-25 20:30:23 -05:00
echo "<br />\n";
echo "".$text['description-caller-id-number']."\n";
echo "</td>\n";
echo "</tr>\n";
2024-02-05 13:35:06 -07:00
}
2016-04-25 20:30:23 -05:00
2024-02-05 13:35:06 -07:00
if (permission_exists('fax_forward_number')) {
2016-04-25 20:30:23 -05:00
echo "<tr>\n";
echo "<td class='vncell' valign='top' align='left' nowrap='nowrap'>\n";
echo " ".$text['label-forward']."\n";
echo "</td>\n";
echo "<td class='vtable' align='left'>\n";
2023-05-29 22:26:37 +00:00
echo " <input class='formfld' type='text' name='fax_forward_number' maxlength='20' value=\"".(!empty($fax_forward_number) && is_numeric($fax_forward_number) ? format_phone($fax_forward_number) : escape($fax_forward_number ?? ''))."\">\n";
2016-04-25 20:30:23 -05:00
echo "<br />\n";
echo "".$text['description-forward-number']."\n";
echo "</td>\n";
echo "</tr>\n";
2024-02-05 13:35:06 -07:00
}
if (permission_exists('fax_toll_allow')) {
2019-12-09 00:37:12 -05:00
echo "<tr>\n";
echo "<td class='vncell' valign='top' align='left' nowrap='nowrap'>\n";
echo " ".$text['label-toll_allow']."\n";
echo "</td>\n";
echo "<td class='vtable' align='left'>\n";
2023-05-29 22:26:37 +00:00
echo " <input class='formfld' type='text' name='fax_toll_allow' maxlength='20' min='0' step='1' value=\"".escape($fax_toll_allow ?? '')."\">\n";
2019-12-09 00:37:12 -05:00
echo "<br />\n";
echo "".$text['description-toll_allow']."\n";
echo "</td>\n";
echo "</tr>\n";
2024-02-05 13:35:06 -07:00
}
2016-04-25 20:30:23 -05:00
2024-02-05 13:35:06 -07:00
if (permission_exists('fax_user_view')) {
if ($action == "update") {
echo " <tr>";
echo " <td class='vncell' valign='top'>".$text['label-user-list']."</td>";
echo " <td class='vtable'>";
if (!empty($fax_users) && is_array($fax_users) && @sizeof($fax_users) != 0) {
echo " <table style='width: 50%; min-width: 200px; max-width: 450px;'>\n";
foreach ($fax_users as $field) {
echo " <tr>\n";
echo " <td class='vtable'>".escape($field['username'])."</td>\n";
echo " <td>\n";
echo " <a href='fax_edit.php?id=".urlencode($fax_uuid)."&domain_uuid=".urlencode($_SESSION['domain_uuid'])."&user_uuid=".urlencode($field['user_uuid'])."&a=delete' alt='delete' onclick=\"return confirm('".$text['confirm-delete']."')\">$v_link_label_delete</a>\n";
echo " </td>\n";
echo " </tr>\n";
2016-04-25 20:30:23 -05:00
}
2024-02-05 13:35:06 -07:00
echo " </table>\n";
echo " <br />\n";
}
unset($fax_users);
if (!empty($available_users) && is_array($available_users) && @sizeof($available_users) != 0) {
echo " <select name='user_uuid' class='formfld' style='width: auto;'>\n";
echo " <option value=''></option>\n";
foreach ($available_users as $field) {
echo " <option value='".escape($field['user_uuid'])."'>".escape($field['username'])."</option>\n";
2016-04-25 20:30:23 -05:00
}
2024-02-05 13:35:06 -07:00
echo " </select>";
echo button::create(['type'=>'submit','label'=>$text['button-add'],'icon'=>$_SESSION['theme']['button_icon_add']]);
echo " <br>\n";
echo " ".$text['description-user-add']."\n";
echo " <br />\n";
unset($available_users);
2016-04-25 20:30:23 -05:00
}
2024-02-05 13:35:06 -07:00
echo " </td>";
echo " </tr>";
2016-04-25 20:30:23 -05:00
}
2024-02-05 13:35:06 -07:00
}
2016-04-25 20:30:23 -05:00
2024-02-05 13:35:06 -07:00
if (permission_exists('fax_send_channels')) {
2016-04-25 20:30:23 -05:00
echo "<tr>\n";
echo "<td class='vncell' valign='top' align='left' nowrap='nowrap'>\n";
echo " ".$text['label-fax_send_channels']."\n";
echo "</td>\n";
echo "<td class='vtable' align='left'>\n";
2018-06-02 23:17:13 -06:00
echo " <input class='formfld' type='text' name='fax_send_channels' maxlength='255' value=\"".escape($fax_send_channels)."\">\n";
2016-04-25 20:30:23 -05:00
echo "<br />\n";
echo " ".$text['description-fax_send_channels']."\n";
echo "</td>\n";
echo "</tr>\n";
}
2024-02-05 13:35:06 -07:00
echo "<tr>\n";
echo "<td class='vncell' valign='top' align='left' nowrap='nowrap'>\n";
echo " ".$text['label-description']."\n";
echo "</td>\n";
echo "<td class='vtable' align='left'>\n";
echo " <input class='formfld' type='text' name='fax_description' maxlength='255' value=\"".escape($fax_description ?? '')."\">\n";
echo "<br />\n";
echo "".$text['description-info']."\n";
echo "</td>\n";
echo "</tr>\n";
2016-04-25 20:30:23 -05:00
echo " <tr>\n";
echo " <td colspan='2' align='right'>\n";
echo " <br>";
if ($action == "update") {
2018-06-02 23:17:13 -06:00
echo " <input type='hidden' name='fax_uuid' value='".escape($fax_uuid)."'>\n";
echo " <input type='hidden' name='dialplan_uuid' value='".escape($dialplan_uuid)."'>\n";
2016-04-25 20:30:23 -05:00
}
2019-09-19 06:27:05 -06:00
echo " <input type='hidden' name='".$token['name']."' value='".$token['hash']."'>\n";
2016-04-25 20:30:23 -05:00
echo " </td>\n";
echo " </tr>";
echo "</table>";
2024-09-05 16:10:04 -07:00
echo "</div>\n";
2016-04-25 20:30:23 -05:00
echo "<br />\n";
echo "</form>";
//show the footer
require_once "resources/footer.php";
2024-09-05 16:10:04 -07:00
?>