fusionpbx/app/gateways/gateway_copy.php

164 lines
4.6 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>
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";
2012-12-23 09:18:15 +01:00
if (permission_exists('gateway_add')) {
//access granted
}
else {
echo "access denied";
exit;
}
2014-02-23 08:15:37 +01:00
//add multi-lingual support
$language = new text;
$text = $language->get();
2014-02-23 08:15:37 +01:00
//set the http get/post variable(s) to a php variable
if (isset($_REQUEST["id"])) {
$gateway_uuid = check_str($_REQUEST["id"]);
}
2014-02-23 08:15:37 +01:00
//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"];
2013-09-25 22:14:33 +02:00
$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, ";
2013-09-25 22:14:33 +02:00
$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', ";
2013-09-25 22:14:33 +02:00
$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);
//add new gateway to session variable
if ($enabled == 'true') {
$_SESSION['gateways'][$gateway_uuid] = $gateway;
}
//synchronize the xml config
save_gateway_xml();
//redirect the user
2014-02-23 08:15:37 +01:00
$_SESSION["message"] = $text['message-copy'];
header("Location: gateways.php");
return;
?>