Files
fusionpbx/app/database_transactions/database_transaction_edit.php
frytimo d7bbcd89f5 Use magic constant dir (#6711)
* use magic constant __DIR__

* use magic constant __DIR__

* use magic constant __DIR__

* use magic constant __DIR__

* use magic constant __DIR__

* use magic constant __DIR__

* use magic constant __DIR__

* use magic constant __DIR__

* use magic constant __DIR__

* use magic constant __DIR__

* use magic constant __DIR__

* use magic constant __DIR__

* use magic constant __DIR__

* use magic constant __DIR__

* use magic constant __DIR__

* use magic constant __DIR__

* use magic constant __DIR__

* use magic constant __DIR__

* use magic constant __DIR__

* use magic constant __DIR__

* use magic constant __DIR__

* use magic constant __DIR__

* use magic constant __DIR__

* use magic constant __DIR__

* use magic constant __DIR__

* use magic constant __DIR__

* use magic constant __DIR__

* use magic constant __DIR__

* use magic constant __DIR__

* use magic constant __DIR__

* use magic constant __DIR__

* use magic constant __DIR__

* use magic constant __DIR__

* use magic constant __DIR__

* use magic constant __DIR__

* use magic constant __DIR__

* use magic constant __DIR__

* use magic constant __DIR__

* use magic constant __DIR__

* use magic constant __DIR__

* use magic constant __DIR__

* use magic constant __DIR__

* use magic constant __DIR__

* use magic constant __DIR__

* use magic constant __DIR__

* use magic constant __DIR__

* use magic constant __DIR__

* use magic constant __DIR__

* use magic constant __DIR__

* use magic constant __DIR__

* use magic constant __DIR__

* use magic constant __DIR__

* use magic constant __DIR__

* use magic constant __DIR__

* use magic constant __DIR__

* use magic constant __DIR__

* use magic constant __DIR__

* use magic constant __DIR__

* use magic constant __DIR__

* use magic constant __DIR__

* use magic constant __DIR__

* use magic constant __DIR__

* use magic constant __DIR__

* use magic constant __DIR__

* use magic constant __DIR__ to load only functions.php

* replace spaces with tab character

* update dirname command to use levels instead of nesting

* use magic constant __DIR__

* update dirname command to use levels instead of nesting

* Update access_control_edit.php

* Update access_control_import.php

* Update access_controls.php

* Update dnd.php

* Update access_controls_reload.php

* Update call_center_agents.php

* Update call_center_agents.php

* Update fax_queue.php

* Update login.php

* Update pdo.php

* Update pdo_vm.php

* Update switch.php

* Update index.php

* Update css.php

* Update v_mailto.php

* Update fax_to_email.php

---------

Co-authored-by: FusionPBX <markjcrane@gmail.com>
2023-06-15 11:28:23 -06:00

456 lines
14 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) 2016 - 2020
the Initial Developer. All Rights Reserved.
Contributor(s):
Mark J Crane <markjcrane@fusionpbx.com>
*/
//includes files
require_once dirname(__DIR__, 2) . "/resources/require.php";
require_once "resources/check_auth.php";
//check permissions
if (permission_exists('database_transaction_add') || permission_exists('database_transaction_edit')) {
//access granted
}
else {
echo "access denied";
exit;
}
//add multi-lingual support
$language = new text;
$text = $language->get();
//set default values
$search = '';
$action = '';
$page = 0;
$user_uuid = '';
$app_name = '';
$app_uuid = '';
$domain_name = '';
$username = '';
$transaction_code = '';
$transaction_address = '';
//set the variables
if (!empty($_GET["id"]) && is_uuid($_GET["id"])) {
$database_transaction_uuid = $_GET["id"];
$search = $_GET['search'] ?? '';
$page = $_GET['page'] ?? 0;
$action = $_GET['action'] ?? '';
}
//pre-populate the form
if (!empty($_GET["id"]) && empty($_POST["persistformvar"])) {
$sql = "select ";
$sql .= "t.database_transaction_uuid, d.domain_name, u.username, t.user_uuid, t.app_name, t.app_uuid, ";
$sql .= "t.transaction_code, t.transaction_address, t.transaction_type, t.transaction_date, ";
$sql .= "t.transaction_old, t.transaction_new, t.transaction_result ";
$sql .= "from v_database_transactions as t, v_domains as d, v_users as u ";
$sql .= "where t.domain_uuid = :domain_uuid ";
$sql .= "and t.database_transaction_uuid = :database_transaction_uuid ";
$sql .= "and t.user_uuid = u.user_uuid ";
$sql .= "and t.domain_uuid = d.domain_uuid ";
$parameters['domain_uuid'] = $domain_uuid;
$parameters['database_transaction_uuid'] = $database_transaction_uuid;
$database = new database;
$row = $database->select($sql, $parameters, 'row');
if (!empty($row)) {
$user_uuid = $row["user_uuid"];
$app_name = $row["app_name"];
$app_uuid = $row["app_uuid"];
$domain_name = $row["domain_name"];
$username = $row["username"];
$transaction_code = $row["transaction_code"];
$transaction_address = $row["transaction_address"];
$transaction_type = $row["transaction_type"];
$transaction_date = $row["transaction_date"];
$transaction_old = $row["transaction_old"];
$transaction_new = $row["transaction_new"];
$transaction_result = $row["transaction_result"];
}
unset($sql, $parameters, $row);
}
//undo the transaction
if ($action == 'undo' && ($transaction_type == 'delete' || $transaction_type == 'update')) {
//get the array
$array = json_decode($transaction_old, true);
//save to the data
$database = new database;
$database->app_name = $app_name;
$database->app_uuid = $app_uuid;
$database->save($array);
$message = $database->message;
//redirect the user
$_SESSION["message"] = $text['message-update'];
header("Location: database_transactions.php?".(!empty($search) ? "&search=".urlencode($search) : null).(!empty($page) ? "&page=".urlencode($page) : null));
}
//get the type if not provided
if (empty($transaction_type)) {
if (empty($transaction_old) || $transaction_old == null || $transaction_old == "null") {
$transaction_type = 'add';
}
else {
$transaction_type = 'update';
}
}
//include the header
$document['title'] = $text['title-database_transaction'];
require_once "resources/header.php";
//show the content
echo "<div class='action_bar' id='action_bar'>\n";
echo " <div class='heading'><b>".$text['title-database_transaction']."</b></div>\n";
echo " <div class='actions'>\n";
echo button::create(['type'=>'button','label'=>$text['button-back'],'icon'=>$_SESSION['theme']['button_icon_back'],'id'=>'btn_back','link'=>'database_transactions.php?'.(!empty($search) ? "&search=".urlencode($search) : null).(is_numeric($page) ? "&page=".urlencode($page) : null)]);
if ($transaction_type == 'delete' || $transaction_type == 'update') {
echo button::create(['type'=>'button','label'=>$text['button-undo'],'icon'=>'undo-alt','id'=>'btn_save','style'=>'margin-left: 15px;','link'=>'database_transaction_edit.php?id='.urlencode($database_transaction_uuid).'&action=undo'.(!empty($search) ? "&search=".urlencode($search) : null).(is_numeric($page) ? "&page=".urlencode($page) : null)]);
}
echo " </div>\n";
echo " <div style='clear: both;'></div>\n";
echo "</div>\n";
echo "<table width='400' border='0' cellpadding='0' cellspacing='0'>\n";
echo "<td valign='top'>\n";
echo " <table>\n";
echo " <tr>\n";
echo " <th valign='top' align='left' nowrap='nowrap'>\n";
echo " ".$text['label-app_name']."\n";
echo " </th>\n";
echo " <td class='vtable' align='left'>\n";
echo " ".escape($app_name)."\n";
echo " </td>\n";
echo " </tr>\n";
echo " <tr>\n";
echo " <th valign='top' align='left' nowrap='nowrap'>\n";
echo " ".$text['label-user_uuid']."\n";
echo " </th>\n";
echo " <td class='vtable' align='left'>\n";
echo " ".escape($username)."\n";
echo " </td>\n";
echo " </tr>\n";
echo " </table>\n";
echo "</td>\n";
echo "<td valign='top'>\n";
echo " <table border='0'>\n";
echo " <tr>\n";
echo " <th valign='top' align='left' nowrap='nowrap'>\n";
echo " ".$text['label-transaction_code']."\n";
echo " </th>\n";
echo " <td class='vtable' align='left'>\n";
echo " ".escape($transaction_code)."\n";
echo " </td>\n";
echo " </tr>\n";
echo " <tr>\n";
echo " <th valign='top' align='left' nowrap='nowrap'>\n";
echo " ".$text['label-transaction_address']."\n";
echo " </th>\n";
echo " <td class='vtable' align='left'>\n";
echo " ".escape($transaction_address)."\n";
echo " </td>\n";
echo " </tr>\n";
echo " </table>\n";
echo "</td>\n";
echo "<td valign='top'>\n";
echo " <table border='0'>\n";
echo " <tr>\n";
echo " <th valign='top' align='left' nowrap='nowrap'>\n";
echo " ".$text['label-transaction_type']."\n";
echo " </th>\n";
echo " <td class='vtable' align='left'>\n";
echo " ".escape($transaction_type)."\n";
echo " </td>\n";
echo " </tr>\n";
echo " <tr>\n";
echo " <th width='10%' valign='top' align='left' nowrap='nowrap'>\n";
echo " ".$text['label-domain']."\n";
echo " </th>\n";
echo " <td width='90%' aclass='vtable' align='left'>\n";
echo " ".escape($domain_name);
echo " </td>\n";
echo " </tr>\n";
echo " </table>\n";
echo "</td>\n";
echo "</tr>\n";
echo "</table>\n";
if (!empty($_REQUEST["debug"]) && $_REQUEST["debug"] == "true") {
echo "<table width='50%' border='0' cellpadding='0' cellspacing='0'>\n";
echo "<tr>\n";
echo "<th valign='top' align='left' nowrap='nowrap'>\n";
echo " ".$text['label-transaction_old']."\n";
echo "</th>\n";
echo "<td class='vtable' align='left'>\n";
echo " <textarea name='transaction_old' style='width: 100%; height: 80px;'>".escape($transaction_old)."</textarea>\n";
echo "</td>\n";
echo "</tr>\n";
echo "<tr>\n";
echo "<th valign='top' align='left' nowrap='nowrap'>\n";
echo " ".$text['label-transaction_new']."\n";
echo "</th>\n";
echo "<td class='vtable' align='left'>\n";
echo " <textarea name='transaction_new' style='width: 100%; height: 80px;'>".escape($transaction_new)."</textarea>\n";
echo "</td>\n";
echo "</tr>\n";
echo "<tr>\n";
echo "<th valign='top' align='left' nowrap='nowrap'>\n";
echo " ".$text['label-transaction_result']."\n";
echo "</th>\n";
echo "<td class='vtable' align='left'>\n";
echo " <textarea name='transaction_result' style='width: 100%; height: 80px;'>".escape($transaction_result)."</textarea>\n";
echo "</td>\n";
echo "</tr>\n";
echo "</table>";
}
//define the array _difference function
//this adds old and new values to the array
function array_difference($array1, $array2) {
$array = array();
if (is_array($array1)) {
foreach ($array1 as $key => $value) {
if (is_array($array2[$key])) {
if (isset($array1[$key]) && isset($array2[$key])) {
$array[$key] = array_difference($array1[$key], $array2[$key]);
}
}
else {
$array[$key]['old'] = $value;
}
}
}
if (is_array($array2)) {
foreach ($array2 as $key => $value) {
if (is_array($value)) {
if (isset($array1[$key]) && isset($array2[$key])) {
$array[$key] = array_difference($array1[$key], $array2[$key]);
}
}
else {
$array[$key]['new'] = $value;
}
}
}
return $array;
}
//show the content from the difference array as a list
function show_difference($array) {
//loop through the array
foreach ($array as $key => $value) {
if (!empty($value) && !isset($value['old']) && !isset($value['new'])) {
if (!is_numeric($key)) {
//get the table name
$_SESSION['name'] = $key;
}
else {
//get the row id
$_SESSION['row'] = $key;
}
$array = show_difference($value);
}
else {
//set the variables
$old = $value['old'] ?? '';
$new = $value['new'] ?? '';
//determine if the value has changed
if (strval($old) == strval($new) && isset($old)) {
$color = "#000000";
}
else {
$color = "#ff0000";
}
//set the table header
if (!empty($_SESSION['previous_name']) && $_SESSION['previous_name'] !== $_SESSION['name'] || !empty($_SESSION['previous_row']) && $_SESSION['previous_row'] !== $_SESSION['row']) {
echo str_replace("<th>name</th>","<th>".$_SESSION['name']."</th>",$_SESSION['table_header']);
//echo $_SESSION['table_header'];
}
$_SESSION['previous_name'] = $_SESSION['name'];
$_SESSION['previous_row'] = $_SESSION['row'];
//show the results
echo "<tr class='list-row' style='color: $color;'>\n";
echo " <td class=\"vtable\" style='color: $color;'>".escape($key)."</td>\n";
echo " <td class=\"vtable\" style='color: $color;'>".escape($old)."</td>\n";
echo " <td class=\"vtable\" style='color: $color;'>".escape($new)."</td>";
echo "</tr>\n";
//echo "</table>\n";
}
unset($key,$old,$new,$value);
}
}
//decode the json to arrays
$before = json_decode($transaction_old ?? '', true);
$after = json_decode($transaction_new ?? '', true);
//unset the sessions
unset($_SESSION['previous_name']);
unset($_SESSION['previous_row']);
//show the add
if ($transaction_type == "add") {
//multiple dimensional array into a 2 dimensional array
if (!empty($after)) {
$x = 0;
foreach ($after as $key => $value) {
$id = 0;
foreach ($value as $row) {
$sub_id = 0;
foreach ($row as $sub_key => $val) {
if (!empty($val) && is_array($val)) {
foreach ($val as $sub_row) {
if (!empty($sub_row) && is_array($sub_row)) {
foreach ($sub_row as $k => $v) {
$array[$x]['schema'] = $sub_key;
$array[$x]['row'] = $sub_id;
$array[$x]['name'] = $k;
$array[$x]['value'] = htmlentities($v ?? '');
$x++;
}
$sub_id++;
}
}
}
else {
$array[$x]['schema'] = $key;
$array[$x]['row'] = $id;
$array[$x]['name'] = $sub_key;
$array[$x]['value'] = htmlentities($val);
$x++;
}
}
$id++;
}
}
}
echo "<br />\n";
echo "<table width='100%'>\n";
if (!empty($array)) {
$previous_schema = null;
foreach ($array as $row) {
if ($row['schema'] !== $previous_schema || $row['row'] !== $previous_row) {
echo "<tr><td colspan='4'>&nbsp;</td></tr>\n";
echo "<tr>\n";
echo " <th>".escape($row['schema'])."</th>\n";
echo " <th>value</th>\n";
echo "</tr>\n";
}
echo "<tr class='list-row'>\n";
echo " <td class=\"vtable\" style='color: #000000;'>".escape($row['name'])."</td>\n";
echo " <td class=\"vtable\" style='color: #ff0000;'>".escape($row['value'])."</td>\n";
echo "</tr>\n";
$previous_schema = $row['schema'];
$previous_row = $row['row'];
}
echo "</table>\n";
}
/*
if (!empty($after)) {
//create the table header
$array = array_difference(null, $after, 1);
$table_header = "<tr><td colspan='5'>&nbsp;</td></tr>\n";
$table_header .= "<tr>\n";
$table_header .= " <th>name</th>\n";
$table_header .= " <th>&nbsp;</th>\n";
$table_header .= " <th>new</th>\n";
$table_header .= "</tr>\n";
$_SESSION['table_header'] = $table_header;
//show the difference
echo "<table border='0' cellpadding='3'>\n";
show_difference($array);
echo "</table>\n";
}
*/
}
//show the update
if ($transaction_type == "update") {
if (count($before) > 0 && count($after) > 0) {
//create the table header
$array = array_difference($before, $after, 1);
$table_header = "<tr><td colspan='5'>&nbsp;</td></tr>\n";
$table_header .= "<tr>\n";
$table_header .= " <th>name</th>\n";
$table_header .= " <th>old</th>\n";
$table_header .= " <th>new</th>\n";
$table_header .= "</tr>\n";
$_SESSION['table_header'] = $table_header;
//show the difference
echo "<br />\n";
echo "<table width='100%'>\n";
show_difference($array);
echo "</table>\n";
}
}
//show the delete
if ($transaction_type == "delete") {
echo "<br /><br />\n";
echo "<table width='100%'>\n";
if (!empty($before)) {
foreach ($before as $table_name => $rows) {
echo " <tr>\n";
echo " <th>".escape($table_name)."</th><th>&nbsp;</th>\n";
echo " </tr>\n";
foreach ($rows as $row) {
foreach ($row as $key => $value) {
echo " <tr class='list-row'>\n";
echo " <td>".escape($key)."</td><td>".escape($value)."</td>\n";
echo " </tr>\n";
}
echo " <tr>\n";
echo " <td colspan='3'><br /><br /></td>\n";
echo " </tr>\n";
}
}
}
}
echo "</table>\n";
//add a few lines at the end
echo "<br /><br />\n";
//include the footer
require_once "resources/footer.php";
?>