123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493 |
- <?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-2012
- the Initial Developer. All Rights Reserved.
- Contributor(s):
- Mark J Crane <[email protected]>
- */
- include "root.php";
- require "resources/require.php";
- require_once "resources/check_auth.php";
- if (permission_exists('cdr_csv_view')) {
- //access granted
- }
- else {
- echo "access denied";
- exit;
- }
- require_once "v_cdr_import.php";
- //action add or update
- if (isset($_REQUEST["id"])) {
- $action = "update";
- $cdr_id = check_str($_REQUEST["id"]);
- }
- else {
- $action = "add";
- }
- //POST to PHP variables
- if (count($_POST)>0) {
- $caller_id_name = check_str($_POST["caller_id_name"]);
- $caller_id_number = check_str($_POST["caller_id_number"]);
- $destination_number = check_str($_POST["destination_number"]);
- $context = check_str($_POST["context"]);
- $start_stamp = check_str($_POST["start_stamp"]);
- $answer_stamp = check_str($_POST["answer_stamp"]);
- $end_stamp = check_str($_POST["end_stamp"]);
- $duration = check_str($_POST["duration"]);
- $billsec = check_str($_POST["billsec"]);
- $hangup_cause = check_str($_POST["hangup_cause"]);
- $uuid = check_str($_POST["uuid"]);
- $bleg_uuid = check_str($_POST["bleg_uuid"]);
- $accountcode = check_str($_POST["accountcode"]);
- $read_codec = check_str($_POST["read_codec"]);
- $write_codec = check_str($_POST["write_codec"]);
- $remote_media_ip = check_str($_POST["remote_media_ip"]);
- $network_addr = check_str($_POST["network_addr"]);
- }
- /*
- if (count($_POST)>0 && strlen($_POST["persistformvar"]) == 0) {
- $msg = '';
- ////recommend moving this to the config.php file
- $uploadtempdir = $_ENV["TEMP"]."\\";
- ini_set('upload_tmp_dir', $uploadtempdir);
- ////$imagedir = $_ENV["TEMP"]."\\";
- ////$filedir = $_ENV["TEMP"]."\\";
- if ($action == "update") {
- $cdr_id = check_str($_POST["cdr_id"]);
- }
- //check for all required data
- //if (strlen($caller_id_name) == 0) { $msg .= "Please provide: CID Name<br>\n"; }
- //if (strlen($caller_id_number) == 0) { $msg .= "Please provide: CID Number<br>\n"; }
- //if (strlen($destination_number) == 0) { $msg .= "Please provide: Destination<br>\n"; }
- //if (strlen($context) == 0) { $msg .= "Please provide: Context<br>\n"; }
- //if (strlen($start_stamp) == 0) { $msg .= "Please provide: Start<br>\n"; }
- //if (strlen($answer_stamp) == 0) { $msg .= "Please provide: Answer<br>\n"; }
- //if (strlen($end_stamp) == 0) { $msg .= "Please provide: End<br>\n"; }
- //if (strlen($duration) == 0) { $msg .= "Please provide: Duration<br>\n"; }
- //if (strlen($billsec) == 0) { $msg .= "Please provide: Bill Seconds<br>\n"; }
- //if (strlen($hangup_cause) == 0) { $msg .= "Please provide: Hangup Cause<br>\n"; }
- //if (strlen($uuid) == 0) { $msg .= "Please provide: UUID<br>\n"; }
- //if (strlen($bleg_uuid) == 0) { $msg .= "Please provide: Bleg UUID<br>\n"; }
- //if (strlen($accountcode) == 0) { $msg .= "Please provide: Account Code<br>\n"; }
- //if (strlen($read_codec) == 0) { $msg .= "Please provide: Read Codec<br>\n"; }
- //if (strlen($write_codec) == 0) { $msg .= "Please provide: Write Codec<br>\n"; }
- //if (strlen($remote_media_ip) == 0) { $msg .= "Please provide: Remote Media IP<br>\n"; }
- //if (strlen($network_addr) == 0) { $msg .= "Please provide: Network Addr<br>\n"; }
- if (strlen($msg) > 0 && strlen($_POST["persistformvar"]) == 0) {
- require "resources/require.php";
- 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;
- }
- //add or update the database
- if ($_POST["persistformvar"] != "true") {
- if ($action == "add") {
- $sql = "insert into v_cdr ";
- $sql .= "(";
- $sql .= "domain_uuid, ";
- $sql .= "caller_id_name, ";
- $sql .= "caller_id_number, ";
- $sql .= "destination_number, ";
- $sql .= "context, ";
- $sql .= "start_stamp, ";
- $sql .= "answer_stamp, ";
- $sql .= "end_stamp, ";
- $sql .= "duration, ";
- $sql .= "billsec, ";
- $sql .= "hangup_cause, ";
- $sql .= "uuid, ";
- $sql .= "bleg_uuid, ";
- $sql .= "accountcode, ";
- $sql .= "read_codec, ";
- $sql .= "write_codec, ";
- $sql .= "remote_media_ip, ";
- $sql .= "network_addr ";
- $sql .= ")";
- $sql .= "values ";
- $sql .= "(";
- $sql .= "'$domain_uuid', ";
- $sql .= "'$caller_id_name', ";
- $sql .= "'$caller_id_number', ";
- $sql .= "'$destination_number', ";
- $sql .= "'$context', ";
- $sql .= "'$start_stamp', ";
- $sql .= "'$answer_stamp', ";
- $sql .= "'$end_stamp', ";
- $sql .= "'$duration', ";
- $sql .= "'$billsec', ";
- $sql .= "'$hangup_cause', ";
- $sql .= "'$uuid', ";
- $sql .= "'$bleg_uuid', ";
- $sql .= "'$accountcode', ";
- $sql .= "'$read_codec', ";
- $sql .= "'$write_codec', ";
- $sql .= "'$remote_media_ip', ";
- $sql .= "'$network_addr' ";
- $sql .= ")";
- $db->exec(check_sql($sql));
- unset($sql);
- require "resources/require.php";
- require_once "resources/header.php";
- echo "<meta http-equiv=\"refresh\" content=\"2;url=v_cdr.php\">\n";
- echo "<div align='center'>\n";
- echo "Add Complete\n";
- echo "</div>\n";
- require_once "resources/footer.php";
- return;
- } //if ($action == "add")
- if ($action == "update") {
- $sql = "update v_cdr set ";
- $sql .= "caller_id_name = '$caller_id_name', ";
- $sql .= "caller_id_number = '$caller_id_number', ";
- $sql .= "destination_number = '$destination_number', ";
- $sql .= "context = '$context', ";
- $sql .= "start_stamp = '$start_stamp', ";
- $sql .= "answer_stamp = '$answer_stamp', ";
- $sql .= "end_stamp = '$end_stamp', ";
- $sql .= "duration = '$duration', ";
- $sql .= "billsec = '$billsec', ";
- $sql .= "hangup_cause = '$hangup_cause', ";
- $sql .= "uuid = '$uuid', ";
- $sql .= "bleg_uuid = '$bleg_uuid', ";
- $sql .= "accountcode = '$accountcode', ";
- $sql .= "read_codec = '$read_codec', ";
- $sql .= "write_codec = '$write_codec', ";
- $sql .= "remote_media_ip = '$remote_media_ip', ";
- $sql .= "network_addr = '$network_addr' ";
- $sql .= "where domain_uuid = '$domain_uuid' ";
- $sql .= "and cdr_id = '$cdr_id' ";
- $db->exec(check_sql($sql));
- unset($sql);
- require "resources/require.php";
- require_once "resources/header.php";
- echo "<meta http-equiv=\"refresh\" content=\"2;url=v_cdr.php\">\n";
- echo "<div align='center'>\n";
- echo "Update Complete\n";
- echo "</div>\n";
- require_once "resources/footer.php";
- return;
- } //if ($action == "update")
- } //if ($_POST["persistformvar"] != "true") {
- } //(count($_POST)>0 && strlen($_POST["persistformvar"]) == 0)
- */
- //pre-populate the form
- if (count($_GET)>0 && $_POST["persistformvar"] != "true") {
- $cdr_id = $_GET["id"];
- $sql = "";
- $sql .= "select * from v_cdr ";
- if (!(if_group("admin") || if_group("superadmin"))) {
- if (trim($sql_where) == "where") { $sql_where = ""; }
- if (count($_SESSION['user']['extension']) > 0) {
- foreach ($_SESSION['user']['extension'] as &$row) {
- if ($row['user'] > 0) { $sql_where .= "or caller_id_number = '".$row['user']."' ". $sql_where_orig; } //source
- if ($row['user'] > 0) { $sql_where .= "or destination_number = '".$row['user']."' ".$sql_where_orig; } //destination
- if ($row['user'] > 0) { $sql_where .= "or destination_number = '*99".$row['user']."' ".$sql_where_orig; } //destination
- }
- }
- }
- else {
- $sql .= "where domain_uuid = '$domain_uuid' ";
- $sql .= "and cdr_id = '$cdr_id' ";
- }
- $sql_where = str_replace ("where or", "where", $sql_where);
- $sql_where = str_replace ("where and", "where", $sql_where);
- $sql .= $sql_where;
- $prep_statement = $db->prepare(check_sql($sql));
- $prep_statement->execute();
- $result = $prep_statement->fetchAll(PDO::FETCH_NAMED);
- foreach ($result as &$row) {
- $caller_id_name = $row["caller_id_name"];
- $caller_id_number = $row["caller_id_number"];
- $destination_number = $row["destination_number"];
- $context = $row["context"];
- $start_stamp = $row["start_stamp"];
- $answer_stamp = $row["answer_stamp"];
- $end_stamp = $row["end_stamp"];
- $duration = $row["duration"];
- $billsec = $row["billsec"];
- $hangup_cause = $row["hangup_cause"];
- $uuid = $row["uuid"];
- $bleg_uuid = $row["bleg_uuid"];
- $accountcode = $row["accountcode"];
- $read_codec = $row["read_codec"];
- $write_codec = $row["write_codec"];
- $remote_media_ip = $row["remote_media_ip"];
- $network_addr = $row["network_addr"];
- break; //limit to 1 row
- }
- unset ($prep_statement);
- }
- require "resources/require.php";
- require_once "resources/header.php";
- echo "<div align='center'>";
- echo "<table width='100%' border='0' cellpadding='0' cellspacing='2'>\n";
- echo "<tr class='border'>\n";
- echo " <td align=\"left\">\n";
- echo " <br>";
- echo "<form method='post' name='frm' action=''>\n";
- echo "<div align='center'>\n";
- echo "<table width='100%' border='0' cellpadding='6' cellspacing='0'>\n";
- echo "<tr>\n";
- if ($action == "add") {
- echo "<td align='left' width='30%' nowrap><b>Call Detail Records Add</b></td>\n";
- }
- if ($action == "update") {
- echo "<td align='left' width='30%' nowrap><b>Call Detail Records: Details</b></td>\n";
- }
- echo "<td width='70%' align='right'><input type='button' class='btn' name='' alt='back' onclick=\"window.location='v_cdr.php'\" value='Back'></td>\n";
- echo "</tr>\n";
- echo "<tr>\n";
- echo "<td class='vncell' valign='top' align='left' nowrap>\n";
- echo " CID Name:\n";
- echo "</td>\n";
- echo "<td class='vtable' align='left'>\n";
- echo " <input class='formfld' type='text' name='caller_id_name' maxlength='255' value=\"$caller_id_name\">\n";
- echo "<br />\n";
- echo "\n";
- echo "</td>\n";
- echo "</tr>\n";
- echo "<tr>\n";
- echo "<td class='vncell' valign='top' align='left' nowrap>\n";
- echo " CID Number:\n";
- echo "</td>\n";
- echo "<td class='vtable' align='left'>\n";
- echo " <input class='formfld' type='text' name='caller_id_number' maxlength='255' value=\"$caller_id_number\">\n";
- echo "<br />\n";
- echo "\n";
- echo "</td>\n";
- echo "</tr>\n";
- echo "<tr>\n";
- echo "<td class='vncell' valign='top' align='left' nowrap>\n";
- echo " Destination:\n";
- echo "</td>\n";
- echo "<td class='vtable' align='left'>\n";
- echo " <input class='formfld' type='text' name='destination_number' maxlength='255' value=\"$destination_number\">\n";
- echo "<br />\n";
- echo "\n";
- echo "</td>\n";
- echo "</tr>\n";
- echo "<tr>\n";
- echo "<td class='vncell' valign='top' align='left' nowrap>\n";
- echo " Context:\n";
- echo "</td>\n";
- echo "<td class='vtable' align='left'>\n";
- echo " <input class='formfld' type='text' name='context' maxlength='255' value=\"$context\">\n";
- echo "<br />\n";
- echo "\n";
- echo "</td>\n";
- echo "</tr>\n";
- echo "<tr>\n";
- echo "<td class='vncell' valign='top' align='left' nowrap>\n";
- echo " Start:\n";
- echo "</td>\n";
- echo "<td class='vtable' align='left'>\n";
- echo " <input class='formfld' type='text' name='start_stamp' maxlength='255' value=\"$start_stamp\">\n";
- echo "<br />\n";
- echo "\n";
- echo "</td>\n";
- echo "</tr>\n";
- echo "<tr>\n";
- echo "<td class='vncell' valign='top' align='left' nowrap>\n";
- echo " Answer:\n";
- echo "</td>\n";
- echo "<td class='vtable' align='left'>\n";
- echo " <input class='formfld' type='text' name='answer_stamp' maxlength='255' value=\"$answer_stamp\">\n";
- echo "<br />\n";
- echo "\n";
- echo "</td>\n";
- echo "</tr>\n";
- echo "<tr>\n";
- echo "<td class='vncell' valign='top' align='left' nowrap>\n";
- echo " End:\n";
- echo "</td>\n";
- echo "<td class='vtable' align='left'>\n";
- echo " <input class='formfld' type='text' name='end_stamp' maxlength='255' value=\"$end_stamp\">\n";
- echo "<br />\n";
- echo "\n";
- echo "</td>\n";
- echo "</tr>\n";
- echo "<tr>\n";
- echo "<td class='vncell' valign='top' align='left' nowrap>\n";
- echo " Duration:\n";
- echo "</td>\n";
- echo "<td class='vtable' align='left'>\n";
- echo " <input class='formfld' type='text' name='duration' maxlength='255' value=\"$duration\">\n";
- echo "<br />\n";
- echo "\n";
- echo "</td>\n";
- echo "</tr>\n";
- echo "<tr>\n";
- echo "<td class='vncell' valign='top' align='left' nowrap>\n";
- echo " Bill Seconds:\n";
- echo "</td>\n";
- echo "<td class='vtable' align='left'>\n";
- echo " <input class='formfld' type='text' name='billsec' maxlength='255' value=\"$billsec\">\n";
- echo "<br />\n";
- echo "\n";
- echo "</td>\n";
- echo "</tr>\n";
- echo "<tr>\n";
- echo "<td class='vncell' valign='top' align='left' nowrap>\n";
- echo " Hangup Cause:\n";
- echo "</td>\n";
- echo "<td class='vtable' align='left'>\n";
- echo " <input class='formfld' type='text' name='hangup_cause' maxlength='255' value=\"$hangup_cause\">\n";
- echo "<br />\n";
- echo "\n";
- echo "</td>\n";
- echo "</tr>\n";
- echo "<tr>\n";
- echo "<td class='vncell' valign='top' align='left' nowrap>\n";
- echo " UUID:\n";
- echo "</td>\n";
- echo "<td class='vtable' align='left'>\n";
- echo " <input class='formfld' type='text' name='uuid' maxlength='255' value=\"$uuid\">\n";
- echo "<br />\n";
- echo "\n";
- echo "</td>\n";
- echo "</tr>\n";
- echo "<tr>\n";
- echo "<td class='vncell' valign='top' align='left' nowrap>\n";
- echo " Bleg UUID:\n";
- echo "</td>\n";
- echo "<td class='vtable' align='left'>\n";
- echo " <input class='formfld' type='text' name='bleg_uuid' maxlength='255' value=\"$bleg_uuid\">\n";
- echo "<br />\n";
- echo "\n";
- echo "</td>\n";
- echo "</tr>\n";
- echo "<tr>\n";
- echo "<td class='vncell' valign='top' align='left' nowrap>\n";
- echo " Account Code:\n";
- echo "</td>\n";
- echo "<td class='vtable' align='left'>\n";
- echo " <input class='formfld' type='text' name='accountcode' maxlength='255' value=\"$accountcode\">\n";
- echo "<br />\n";
- echo "\n";
- echo "</td>\n";
- echo "</tr>\n";
- echo "<tr>\n";
- echo "<td class='vncell' valign='top' align='left' nowrap>\n";
- echo " Read Codec:\n";
- echo "</td>\n";
- echo "<td class='vtable' align='left'>\n";
- echo " <input class='formfld' type='text' name='read_codec' maxlength='255' value=\"$read_codec\">\n";
- echo "<br />\n";
- echo "\n";
- echo "</td>\n";
- echo "</tr>\n";
- echo "<tr>\n";
- echo "<td class='vncell' valign='top' align='left' nowrap>\n";
- echo " Write Codec:\n";
- echo "</td>\n";
- echo "<td class='vtable' align='left'>\n";
- echo " <input class='formfld' type='text' name='write_codec' maxlength='255' value=\"$write_codec\">\n";
- echo "<br />\n";
- echo "\n";
- echo "</td>\n";
- echo "</tr>\n";
- echo "<tr>\n";
- echo "<td class='vncell' valign='top' align='left' nowrap>\n";
- echo " Remote Media IP:\n";
- echo "</td>\n";
- echo "<td class='vtable' align='left'>\n";
- echo " <input class='formfld' type='text' name='remote_media_ip' maxlength='255' value=\"$remote_media_ip\">\n";
- echo "<br />\n";
- echo "\n";
- echo "</td>\n";
- echo "</tr>\n";
- echo "<tr>\n";
- echo "<td class='vncell' valign='top' align='left' nowrap>\n";
- echo " Network Addr:\n";
- echo "</td>\n";
- echo "<td class='vtable' align='left'>\n";
- echo " <input class='formfld' type='text' name='network_addr' maxlength='255' value=\"$network_addr\">\n";
- echo "<br />\n";
- echo "\n";
- echo "</td>\n";
- echo "</tr>\n";
- echo " <tr>\n";
- echo " <td colspan='2' align='right'>\n";
- if ($action == "update") {
- echo " <input type='hidden' name='cdr_id' value='$cdr_id'>\n";
- }
- //echo " <input type='submit' name='submit' class='btn' value='Save'>\n";
- echo " </td>\n";
- echo " </tr>";
- echo "</table>";
- echo "</form>";
- echo " </td>";
- echo " </tr>";
- echo "</table>";
- echo "</div>";
- require "resources/require.php";
- require_once "resources/footer.php";
- ?>
|