mirror of
https://github.com/itflow-org/itflow
synced 2026-03-20 20:54:50 +00:00
Add multi-select to networks, certificates and domains.
Fix multi-select count bug
This commit is contained in:
@@ -78,7 +78,7 @@ $num_rows = mysqli_fetch_row(mysqli_query($mysqli, "SELECT FOUND_ROWS()"));
|
|||||||
<tr>
|
<tr>
|
||||||
<td class="pr-0">
|
<td class="pr-0">
|
||||||
<div class="form-check">
|
<div class="form-check">
|
||||||
<input class="form-check-input" type="checkbox" onclick="checkAll(this)">
|
<input class="form-check-input" id="selectAllCheckbox" type="checkbox" onclick="checkAll(this)">
|
||||||
</div>
|
</div>
|
||||||
</td>
|
</td>
|
||||||
<th><a class="text-secondary" href="?<?php echo $url_query_strings_sort; ?>&sort=certificate_name&order=<?php echo $disp; ?>">Name</a></th>
|
<th><a class="text-secondary" href="?<?php echo $url_query_strings_sort; ?>&sort=certificate_name&order=<?php echo $disp; ?>">Name</a></th>
|
||||||
@@ -104,6 +104,7 @@ $num_rows = mysqli_fetch_row(mysqli_query($mysqli, "SELECT FOUND_ROWS()"));
|
|||||||
<td class="pr-0">
|
<td class="pr-0">
|
||||||
<div class="form-check">
|
<div class="form-check">
|
||||||
<input class="form-check-input" type="checkbox" name="certificate_ids[]" value="<?php echo $certificate_id ?>">
|
<input class="form-check-input" type="checkbox" name="certificate_ids[]" value="<?php echo $certificate_id ?>">
|
||||||
|
<input type="hidden" name="client_id" value="<?php echo $client_id; ?>">
|
||||||
</div>
|
</div>
|
||||||
</td>
|
</td>
|
||||||
|
|
||||||
|
|||||||
@@ -52,15 +52,36 @@ $num_rows = mysqli_fetch_row(mysqli_query($mysqli, "SELECT FOUND_ROWS()"));
|
|||||||
|
|
||||||
<div class="col-md-8">
|
<div class="col-md-8">
|
||||||
<div class="float-right">
|
<div class="float-right">
|
||||||
|
<div class="dropdown" id="multiActionButton" hidden>
|
||||||
|
<button class="btn btn-default dropdown-toggle" type="button" data-toggle="dropdown">
|
||||||
|
<i class="fas fa-fw fa-list mr-2"></i>Selected (<span id="selectedCount">0</span>)
|
||||||
|
</button>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
<button class="dropdown-item text-danger text-bold"
|
||||||
|
type="submit" form="multi_actions" name="bulk_delete_domains">
|
||||||
|
<i class="fas fa-fw fa-trash mr-2"></i>Delete
|
||||||
|
</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
</form>
|
</form>
|
||||||
<hr>
|
<hr>
|
||||||
<div class="table-responsive-sm">
|
<div class="table-responsive-sm">
|
||||||
|
|
||||||
|
<form id="multi_actions" action="post.php" method="post">
|
||||||
|
<input type="hidden" name="csrf_token" value="<?php echo $_SESSION['csrf_token'] ?>">
|
||||||
|
|
||||||
<table class="table table-striped table-borderless table-hover">
|
<table class="table table-striped table-borderless table-hover">
|
||||||
<thead class="text-dark <?php if ($num_rows[0] == 0) { echo "d-none"; } ?>">
|
<thead class="text-dark <?php if ($num_rows[0] == 0) { echo "d-none"; } ?>">
|
||||||
<tr>
|
<tr>
|
||||||
|
<td class="pr-0">
|
||||||
|
<div class="form-check">
|
||||||
|
<input class="form-check-input" id="selectAllCheckbox" type="checkbox" onclick="checkAll(this)">
|
||||||
|
</div>
|
||||||
|
</td>
|
||||||
<th><a class="text-secondary" href="?<?php echo $url_query_strings_sort; ?>&sort=domain_name&order=<?php echo $disp; ?>">Domain</a></th>
|
<th><a class="text-secondary" href="?<?php echo $url_query_strings_sort; ?>&sort=domain_name&order=<?php echo $disp; ?>">Domain</a></th>
|
||||||
<th><a class="text-secondary" href="?<?php echo $url_query_strings_sort; ?>&sort=vendor_name&order=<?php echo $disp; ?>">Registrar</a></th>
|
<th><a class="text-secondary" href="?<?php echo $url_query_strings_sort; ?>&sort=vendor_name&order=<?php echo $disp; ?>">Registrar</a></th>
|
||||||
<th>Web Host</th>
|
<th>Web Host</th>
|
||||||
@@ -92,6 +113,12 @@ $num_rows = mysqli_fetch_row(mysqli_query($mysqli, "SELECT FOUND_ROWS()"));
|
|||||||
|
|
||||||
?>
|
?>
|
||||||
<tr>
|
<tr>
|
||||||
|
<td class="pr-0">
|
||||||
|
<div class="form-check">
|
||||||
|
<input class="form-check-input" type="checkbox" name="domain_ids[]" value="<?php echo $domain_id ?>">
|
||||||
|
<input type="hidden" name="client_id" value="<?php echo $client_id; ?>">
|
||||||
|
</div>
|
||||||
|
</td>
|
||||||
<td><a class="text-dark" href="#" data-toggle="modal" onclick="populateDomainEditModal(<?php echo $client_id, ",", $domain_id ?>)" data-target="#editDomainModal"><?php echo $domain_name; ?></a></td>
|
<td><a class="text-dark" href="#" data-toggle="modal" onclick="populateDomainEditModal(<?php echo $client_id, ",", $domain_id ?>)" data-target="#editDomainModal"><?php echo $domain_name; ?></a></td>
|
||||||
<td><?php echo $domain_registrar_name; ?></td>
|
<td><?php echo $domain_registrar_name; ?></td>
|
||||||
<td><?php echo $domain_webhost_name; ?></td>
|
<td><?php echo $domain_webhost_name; ?></td>
|
||||||
@@ -128,12 +155,13 @@ $num_rows = mysqli_fetch_row(mysqli_query($mysqli, "SELECT FOUND_ROWS()"));
|
|||||||
|
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
|
</form>
|
||||||
</div>
|
</div>
|
||||||
<?php require_once "pagination.php";
|
<?php require_once "pagination.php";
|
||||||
?>
|
?>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<script src="js/domain_edit_modal.js"></script>
|
|
||||||
|
|
||||||
<?php
|
<?php
|
||||||
require_once "client_domain_edit_modal.php";
|
require_once "client_domain_edit_modal.php";
|
||||||
@@ -141,6 +169,10 @@ require_once "client_domain_edit_modal.php";
|
|||||||
require_once "client_domain_add_modal.php";
|
require_once "client_domain_add_modal.php";
|
||||||
|
|
||||||
require_once "client_domain_export_modal.php";
|
require_once "client_domain_export_modal.php";
|
||||||
|
?>
|
||||||
|
|
||||||
require_once "footer.php";
|
<script src="js/domain_edit_modal.js"></script>
|
||||||
|
<script src="js/multi_actions.js"></script>
|
||||||
|
|
||||||
|
<?php require_once "footer.php";
|
||||||
|
|
||||||
|
|||||||
@@ -56,7 +56,17 @@ $num_rows = mysqli_fetch_row(mysqli_query($mysqli, "SELECT FOUND_ROWS()"));
|
|||||||
|
|
||||||
<div class="col-md-8">
|
<div class="col-md-8">
|
||||||
<div class="float-right">
|
<div class="float-right">
|
||||||
|
<div class="dropdown" id="multiActionButton" hidden>
|
||||||
|
<button class="btn btn-default dropdown-toggle" type="button" data-toggle="dropdown">
|
||||||
|
<i class="fas fa-fw fa-list mr-2"></i>Selected (<span id="selectedCount">0</span>)
|
||||||
|
</button>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
<button class="dropdown-item text-danger text-bold"
|
||||||
|
type="submit" form="multi_actions" name="bulk_delete_networks">
|
||||||
|
<i class="fas fa-fw fa-trash mr-2"></i>Delete
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -64,9 +74,18 @@ $num_rows = mysqli_fetch_row(mysqli_query($mysqli, "SELECT FOUND_ROWS()"));
|
|||||||
</form>
|
</form>
|
||||||
<hr>
|
<hr>
|
||||||
<div class="table-responsive-sm">
|
<div class="table-responsive-sm">
|
||||||
|
|
||||||
|
<form id="multi_actions" action="post.php" method="post">
|
||||||
|
<input type="hidden" name="csrf_token" value="<?php echo $_SESSION['csrf_token'] ?>">
|
||||||
|
|
||||||
<table class="table table-striped table-borderless table-hover">
|
<table class="table table-striped table-borderless table-hover">
|
||||||
<thead class="text-dark <?php if ($num_rows[0] == 0) { echo "d-none"; } ?>">
|
<thead class="text-dark <?php if ($num_rows[0] == 0) { echo "d-none"; } ?>">
|
||||||
<tr>
|
<tr>
|
||||||
|
<td class="pr-0">
|
||||||
|
<div class="form-check">
|
||||||
|
<input class="form-check-input" id="selectAllCheckbox" type="checkbox" onclick="checkAll(this)">
|
||||||
|
</div>
|
||||||
|
</td>
|
||||||
<th><a class="text-secondary" href="?<?php echo $url_query_strings_sb; ?>&sort=network_name&order=<?php echo $disp; ?>">Name</a></th>
|
<th><a class="text-secondary" href="?<?php echo $url_query_strings_sb; ?>&sort=network_name&order=<?php echo $disp; ?>">Name</a></th>
|
||||||
<th><a class="text-secondary" href="?<?php echo $url_query_strings_sb; ?>&sort=network_vlan&order=<?php echo $disp; ?>">vLAN</a></th>
|
<th><a class="text-secondary" href="?<?php echo $url_query_strings_sb; ?>&sort=network_vlan&order=<?php echo $disp; ?>">vLAN</a></th>
|
||||||
<th><a class="text-secondary" href="?<?php echo $url_query_strings_sb; ?>&sort=network&order=<?php echo $disp; ?>">Network</a></th>
|
<th><a class="text-secondary" href="?<?php echo $url_query_strings_sb; ?>&sort=network&order=<?php echo $disp; ?>">Network</a></th>
|
||||||
@@ -106,6 +125,12 @@ $num_rows = mysqli_fetch_row(mysqli_query($mysqli, "SELECT FOUND_ROWS()"));
|
|||||||
|
|
||||||
?>
|
?>
|
||||||
<tr>
|
<tr>
|
||||||
|
<td class="pr-0">
|
||||||
|
<div class="form-check">
|
||||||
|
<input class="form-check-input" type="checkbox" name="network_ids[]" value="<?php echo $network_id ?>">
|
||||||
|
<input type="hidden" name="client_id" value="<?php echo $client_id; ?>">
|
||||||
|
</div>
|
||||||
|
</td>
|
||||||
<th>
|
<th>
|
||||||
<i class="fa fa-fw fa-network-wired text-secondary"></i>
|
<i class="fa fa-fw fa-network-wired text-secondary"></i>
|
||||||
<a class="text-dark" href="#" data-toggle="modal" onclick="populateNetworkEditModal(<?php echo $client_id, ",", $network_id ?>)"
|
<a class="text-dark" href="#" data-toggle="modal" onclick="populateNetworkEditModal(<?php echo $client_id, ",", $network_id ?>)"
|
||||||
@@ -145,6 +170,8 @@ $num_rows = mysqli_fetch_row(mysqli_query($mysqli, "SELECT FOUND_ROWS()"));
|
|||||||
|
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
|
</form>
|
||||||
</div>
|
</div>
|
||||||
<?php require_once "pagination.php";
|
<?php require_once "pagination.php";
|
||||||
?>
|
?>
|
||||||
@@ -163,6 +190,7 @@ require_once "client_network_export_modal.php";
|
|||||||
?>
|
?>
|
||||||
|
|
||||||
<script src="js/network_edit_modal.js"></script>
|
<script src="js/network_edit_modal.js"></script>
|
||||||
|
<script src="js/multi_actions.js"></script>
|
||||||
|
|
||||||
<?php
|
<?php
|
||||||
require_once "footer.php";
|
require_once "footer.php";
|
||||||
|
|||||||
@@ -1,6 +1,10 @@
|
|||||||
var checkboxes = document.querySelectorAll('form input[type="checkbox"]');
|
// Allow selecting and editing multiple records at once
|
||||||
|
|
||||||
|
var form = document.getElementById("multi_actions"); // Get the form element by its id
|
||||||
|
var checkboxes = form.querySelectorAll('input[type="checkbox"]');
|
||||||
var selectedCount = document.getElementById("selectedCount");
|
var selectedCount = document.getElementById("selectedCount");
|
||||||
|
|
||||||
|
|
||||||
for (var i = 0; i < checkboxes.length; i++) {
|
for (var i = 0; i < checkboxes.length; i++) {
|
||||||
checkboxes[i].addEventListener("click", updateSelectedCount);
|
checkboxes[i].addEventListener("click", updateSelectedCount);
|
||||||
}
|
}
|
||||||
@@ -9,9 +13,11 @@ function updateSelectedCount() {
|
|||||||
var count = 0;
|
var count = 0;
|
||||||
for (var i = 0; i < checkboxes.length; i++) {
|
for (var i = 0; i < checkboxes.length; i++) {
|
||||||
if (checkboxes[i].checked) {
|
if (checkboxes[i].checked) {
|
||||||
|
if (checkboxes[i] !== document.getElementById("selectAllCheckbox") && checkboxes[i].checked) {
|
||||||
count++;
|
count++;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
selectedCount.textContent = count;
|
selectedCount.textContent = count;
|
||||||
if (count > 0) {
|
if (count > 0) {
|
||||||
document.getElementById("multiActionButton").hidden = false;
|
document.getElementById("multiActionButton").hidden = false;
|
||||||
|
|||||||
@@ -141,6 +141,7 @@ if (isset($_POST['bulk_delete_certificates'])) {
|
|||||||
|
|
||||||
$count = 0; // Default 0
|
$count = 0; // Default 0
|
||||||
$certificate_ids = $_POST['certificate_ids']; // Get array of cert IDs to be deleted
|
$certificate_ids = $_POST['certificate_ids']; // Get array of cert IDs to be deleted
|
||||||
|
$client_id = intval($_POST['client_id']);
|
||||||
|
|
||||||
if (!empty($certificate_ids)) {
|
if (!empty($certificate_ids)) {
|
||||||
|
|
||||||
@@ -148,14 +149,14 @@ if (isset($_POST['bulk_delete_certificates'])) {
|
|||||||
foreach ($certificate_ids as $certificate_id) {
|
foreach ($certificate_ids as $certificate_id) {
|
||||||
|
|
||||||
$certificate_id = intval($certificate_id);
|
$certificate_id = intval($certificate_id);
|
||||||
mysqli_query($mysqli, "DELETE FROM certificates WHERE certificate_id = $certificate_id");
|
mysqli_query($mysqli, "DELETE FROM certificates WHERE certificate_id = $certificate_id AND certificate_client_id = $client_id");
|
||||||
mysqli_query($mysqli, "INSERT INTO logs SET log_type = 'Certificate', log_action = 'Delete', log_description = '$session_name deleted certificate (bulk)', log_ip = '$session_ip', log_user_agent = '$session_user_agent', log_user_id = $session_user_id, log_entity_id = $certificate_id");
|
mysqli_query($mysqli, "INSERT INTO logs SET log_type = 'Certificate', log_action = 'Delete', log_description = '$session_name deleted a certificate (bulk)', log_ip = '$session_ip', log_user_agent = '$session_user_agent', log_client_id = $client_id, log_user_id = $session_user_id, log_entity_id = $certificate_id");
|
||||||
|
|
||||||
$count++;
|
$count++;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Logging
|
// Logging
|
||||||
mysqli_query($mysqli, "INSERT INTO logs SET log_type = 'Certificate', log_action = 'Delete', log_description = '$session_name bulk deleted $count certificates', log_ip = '$session_ip', log_user_agent = '$session_user_agent', log_user_id = $session_user_id");
|
mysqli_query($mysqli, "INSERT INTO logs SET log_type = 'Certificate', log_action = 'Delete', log_description = '$session_name bulk deleted $count certificates', log_ip = '$session_ip', log_user_agent = '$session_user_agent', log_client_id = $client_id, log_user_id = $session_user_id");
|
||||||
|
|
||||||
$_SESSION['alert_message'] = "Deleted $count certificate(s)";
|
$_SESSION['alert_message'] = "Deleted $count certificate(s)";
|
||||||
|
|
||||||
|
|||||||
@@ -124,6 +124,36 @@ if (isset($_GET['delete_domain'])) {
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (isset($_POST['bulk_delete_domains'])) {
|
||||||
|
validateAdminRole();
|
||||||
|
validateCSRFToken($_POST['csrf_token']);
|
||||||
|
|
||||||
|
$count = 0; // Default 0
|
||||||
|
$domain_ids = $_POST['domain_ids']; // Get array of domain IDs to be deleted
|
||||||
|
$client_id = intval($_POST['client_id']);
|
||||||
|
|
||||||
|
if (!empty($domain_ids)) {
|
||||||
|
|
||||||
|
// Cycle through array and delete each domain
|
||||||
|
foreach ($domain_ids as $domain_id) {
|
||||||
|
|
||||||
|
$domain_id = intval($domain_id);
|
||||||
|
mysqli_query($mysqli, "DELETE FROM domains WHERE domain_id = $domain_id AND domain_client_id = $client_id");
|
||||||
|
mysqli_query($mysqli, "INSERT INTO logs SET log_type = 'Domain', log_action = 'Delete', log_description = '$session_name deleted a domain (bulk)', log_ip = '$session_ip', log_user_agent = '$session_user_agent', log_client_id = $client_id, log_user_id = $session_user_id, log_entity_id = $domain_id");
|
||||||
|
|
||||||
|
$count++;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Logging
|
||||||
|
mysqli_query($mysqli, "INSERT INTO logs SET log_type = 'Domain', log_action = 'Delete', log_description = '$session_name bulk deleted $count domains', log_ip = '$session_ip', log_user_agent = '$session_user_agent', log_client_id = $client_id, log_user_id = $session_user_id");
|
||||||
|
|
||||||
|
$_SESSION['alert_message'] = "Deleted $count certificate(s)";
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
header("Location: " . $_SERVER["HTTP_REFERER"]);
|
||||||
|
}
|
||||||
|
|
||||||
if (isset($_POST['export_client_domains_csv'])) {
|
if (isset($_POST['export_client_domains_csv'])) {
|
||||||
|
|
||||||
validateTechRole();
|
validateTechRole();
|
||||||
|
|||||||
@@ -102,6 +102,36 @@ if (isset($_GET['delete_network'])) {
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (isset($_POST['bulk_delete_networks'])) {
|
||||||
|
validateAdminRole();
|
||||||
|
validateCSRFToken($_POST['csrf_token']);
|
||||||
|
|
||||||
|
$count = 0; // Default 0
|
||||||
|
$network_ids = $_POST['network_ids']; // Get array of network IDs to be deleted
|
||||||
|
$client_id = intval($_POST['client_id']);
|
||||||
|
|
||||||
|
if (!empty($network_ids)) {
|
||||||
|
|
||||||
|
// Cycle through array and delete each network
|
||||||
|
foreach ($network_ids as $network_id) {
|
||||||
|
|
||||||
|
$network_id = intval($network_id);
|
||||||
|
mysqli_query($mysqli, "DELETE FROM networks WHERE network_id = $network_id AND network_client_id = $client_id");
|
||||||
|
mysqli_query($mysqli, "INSERT INTO logs SET log_type = 'Network', log_action = 'Delete', log_description = '$session_name deleted a network (bulk)', log_ip = '$session_ip', log_user_agent = '$session_user_agent', log_client_id = $client_id, log_user_id = $session_user_id, log_entity_id = $network_id");
|
||||||
|
|
||||||
|
$count++;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Logging
|
||||||
|
mysqli_query($mysqli, "INSERT INTO logs SET log_type = 'Certificate', log_action = 'Network', log_description = '$session_name bulk deleted $count networks', log_ip = '$session_ip', log_user_agent = '$session_user_agent', log_client_id = $client_id, log_user_id = $session_user_id");
|
||||||
|
|
||||||
|
$_SESSION['alert_message'] = "Deleted $count network(s)";
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
header("Location: " . $_SERVER["HTTP_REFERER"]);
|
||||||
|
}
|
||||||
|
|
||||||
if (isset($_POST['export_client_networks_csv'])) {
|
if (isset($_POST['export_client_networks_csv'])) {
|
||||||
|
|
||||||
validateTechRole();
|
validateTechRole();
|
||||||
|
|||||||
@@ -79,7 +79,7 @@ $num_rows = mysqli_fetch_row(mysqli_query($mysqli, "SELECT FOUND_ROWS()"));
|
|||||||
<tr>
|
<tr>
|
||||||
<td class="pr-0">
|
<td class="pr-0">
|
||||||
<div class="form-check">
|
<div class="form-check">
|
||||||
<input class="form-check-input" type="checkbox" onclick="checkAll(this)">
|
<input class="form-check-input" id="selectAllCheckbox" type="checkbox" onclick="checkAll(this)">
|
||||||
</div>
|
</div>
|
||||||
</td>
|
</td>
|
||||||
<th><a class="text-dark">Client</a></th>
|
<th><a class="text-dark">Client</a></th>
|
||||||
|
|||||||
Reference in New Issue
Block a user