fusionpbx/app/gateways/gateway_copy.php

161 lines
4.5 KiB
PHP

<?php
/*
FusionPBX
Version: MPL 1.1
The contents of this file are subject to the Mozilla Public License Version
1.1 (the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.mozilla.org/MPL/
Software distributed under the License is distributed on an "AS IS" basis,
WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
for the specific language governing rights and limitations under the
License.
The Original Code is FusionPBX
The Initial Developer of the Original Code is
Mark J Crane <markjcrane@fusionpbx.com>
Portions created by the Initial Developer are Copyright (C) 2008-2012
the Initial Developer. All Rights Reserved.
Contributor(s):
Mark J Crane <markjcrane@fusionpbx.com>
*/
include "root.php";
require_once "resources/require.php";
require_once "resources/check_auth.php";
require_once "resources/paging.php";
if (permission_exists('gateway_add')) {
//access granted
}
else {
echo "access denied";
exit;
}
//add multi-lingual support
require_once "app_languages.php";
foreach($text as $key => $value) {
$text[$key] = $value[$_SESSION['domain']['language']['code']];
}
//set the http get/post variable(s) to a php variable
if (isset($_REQUEST["id"])) {
$gateway_uuid = check_str($_REQUEST["id"]);
}
//get the data
$sql = "select * from v_gateways ";
$sql .= "where domain_uuid = '$domain_uuid' ";
$sql .= "and gateway_uuid = '$gateway_uuid' ";
$prep_statement = $db->prepare(check_sql($sql));
$prep_statement->execute();
$result = $prep_statement->fetchAll(PDO::FETCH_NAMED);
foreach ($result as &$row) {
$gateway = $row["gateway"];
$username = $row["username"];
$password = $row["password"];
$auth_username = $row["auth_username"];
$realm = $row["realm"];
$from_user = $row["from_user"];
$from_domain = $row["from_domain"];
$proxy = $row["proxy"];
$register_proxy = $row["register_proxy"];
$outbound_proxy = $row["outbound_proxy"];
$expire_seconds = $row["expire_seconds"];
$register = $row["register"];
$register_transport = $row["register_transport"];
$retry_seconds = $row["retry_seconds"];
$extension = $row["extension"];
$codec_prefs = $row["codec_prefs"];
$ping = $row["ping"];
$channels = $row["channels"];
$caller_id_in_from = $row["caller_id_in_from"];
$supress_cng = $row["supress_cng"];
$extension_in_contact = $row["extension_in_contact"];
$effective_caller_id_name = $row["effective_caller_id_name"];
$effective_caller_id_number = $row["effective_caller_id_number"];
$outbound_caller_id_name = $row["outbound_caller_id_name"];
$outbound_caller_id_number = $row["outbound_caller_id_number"];
$context = $row["context"];
$enabled = $row["enabled"];
$description = 'copy: '.$row["description"];
break; //limit to 1 row
}
unset ($prep_statement);
//copy the gateways
$gateway_uuid = uuid();
$sql = "insert into v_gateways ";
$sql .= "(";
$sql .= "domain_uuid, ";
$sql .= "gateway_uuid, ";
$sql .= "gateway, ";
$sql .= "username, ";
$sql .= "password, ";
$sql .= "auth_username, ";
$sql .= "realm, ";
$sql .= "from_user, ";
$sql .= "from_domain, ";
$sql .= "proxy, ";
$sql .= "register_proxy, ";
$sql .= "outbound_proxy, ";
$sql .= "expire_seconds, ";
$sql .= "register, ";
$sql .= "register_transport, ";
$sql .= "retry_seconds, ";
$sql .= "extension, ";
$sql .= "codec_prefs, ";
$sql .= "ping, ";
$sql .= "channels, ";
$sql .= "caller_id_in_from, ";
$sql .= "supress_cng, ";
$sql .= "extension_in_contact, ";
$sql .= "context, ";
$sql .= "enabled, ";
$sql .= "description ";
$sql .= ")";
$sql .= "values ";
$sql .= "(";
$sql .= "'$domain_uuid', ";
$sql .= "'$gateway_uuid', ";
$sql .= "'$gateway', ";
$sql .= "'$username', ";
$sql .= "'$password', ";
$sql .= "'$auth_username', ";
$sql .= "'$realm', ";
$sql .= "'$from_user', ";
$sql .= "'$from_domain', ";
$sql .= "'$proxy', ";
$sql .= "'$register_proxy', ";
$sql .= "'$outbound_proxy', ";
$sql .= "'$expire_seconds', ";
$sql .= "'$register', ";
$sql .= "'$register_transport', ";
$sql .= "'$retry_seconds', ";
$sql .= "'$extension', ";
$sql .= "'$codec_prefs', ";
$sql .= "'$ping', ";
$sql .= "'$channels', ";
$sql .= "'$caller_id_in_from', ";
$sql .= "'$supress_cng', ";
$sql .= "'$extension_in_contact', ";
$sql .= "'$context', ";
$sql .= "'$enabled', ";
$sql .= "'$description' ";
$sql .= ")";
$db->exec(check_sql($sql));
unset($sql);
//synchronize the xml config
save_gateway_xml();
//redirect the user
$_SESSION["message"] = $text['message-copy'];
header("Location: gateways.php");
return;
?>