mirror of https://github.com/itflow-org/itflow
369 lines
24 KiB
PHP
369 lines
24 KiB
PHP
<?php include("inc_all_client.php");
|
|
|
|
//Get Asset Counts
|
|
//All Asset Count
|
|
$row = mysqli_fetch_assoc(mysqli_query($mysqli, "SELECT COUNT(*) AS count FROM assets WHERE asset_archived_at IS NULL AND asset_client_id = $client_id"));
|
|
$all_count = $row['count'];
|
|
//Workstation Count
|
|
$row = mysqli_fetch_assoc(mysqli_query($mysqli, "SELECT COUNT(*) AS count FROM assets WHERE (asset_type = 'laptop' OR asset_type = 'desktop')
|
|
AND asset_archived_at IS NULL AND asset_client_id = $client_id"));
|
|
$workstation_count = $row['count'];
|
|
|
|
//Server Count
|
|
$row = mysqli_fetch_assoc(mysqli_query($mysqli, "SELECT COUNT(*) AS count FROM assets WHERE (asset_type = 'server')
|
|
AND asset_archived_at IS NULL AND asset_client_id = $client_id"));
|
|
$server_count = $row['count'];
|
|
|
|
//Virtual Server Count
|
|
$row = mysqli_fetch_assoc(mysqli_query($mysqli, "SELECT COUNT(*) AS count FROM assets WHERE (asset_type = 'virtual machine')
|
|
AND asset_archived_at IS NULL AND asset_client_id = $client_id"));
|
|
$virtual_count = $row['count'];
|
|
|
|
//Network Device Count
|
|
$row = mysqli_fetch_assoc(mysqli_query($mysqli, "SELECT COUNT(*) AS count FROM assets WHERE (asset_type = 'Firewall/Router' OR asset_type = 'switch' OR asset_type = 'access point')
|
|
AND asset_archived_at IS NULL AND asset_client_id = $client_id"));
|
|
$network_count = $row['count'];
|
|
|
|
//Other Count
|
|
$row = mysqli_fetch_assoc(mysqli_query($mysqli, "SELECT COUNT(*) AS count FROM assets WHERE (asset_type NOT LIKE 'laptop' AND asset_type NOT LIKE 'desktop' AND asset_type NOT LIKE 'server' AND asset_type NOT LIKE 'virtual machine' AND asset_type NOT LIKE 'firewall/router' AND asset_type NOT LIKE 'switch' AND asset_type NOT LIKE 'access point')
|
|
AND asset_archived_at IS NULL AND asset_client_id = $client_id"));
|
|
$other_count = $row['count'];
|
|
|
|
if (!empty($_GET['sb'])) {
|
|
$sb = strip_tags(mysqli_real_escape_string($mysqli,$_GET['sb']));
|
|
} else {
|
|
$sb = "asset_name";
|
|
}
|
|
|
|
//Asset Type from GET
|
|
if (isset($_GET['type']) && ($_GET['type']) == 'workstation') {
|
|
$type_query = "asset_type = 'desktop' OR asset_type = 'laptop'";
|
|
} elseif (isset($_GET['type']) && ($_GET['type']) == 'server') {
|
|
$type_query = "asset_type = 'server'";
|
|
} elseif (isset($_GET['type']) && ($_GET['type']) == 'virtual') {
|
|
$type_query = "asset_type = 'Virtual Machine'";
|
|
} elseif (isset($_GET['type']) && ($_GET['type']) == 'network') {
|
|
$type_query = "asset_type = 'Firewall/Router' OR asset_type = 'Switch' OR asset_type = 'Access Point'";
|
|
} elseif (isset($_GET['type']) && ($_GET['type']) == 'other') {
|
|
$type_query = "asset_type NOT LIKE 'laptop' AND asset_type NOT LIKE 'desktop' AND asset_type NOT LIKE 'server' AND asset_type NOT LIKE 'virtual machine' AND asset_type NOT LIKE 'firewall/router' AND asset_type NOT LIKE 'switch' AND asset_type NOT LIKE 'access point'";
|
|
} else {
|
|
$type_query = "asset_type LIKE '%'";
|
|
$_GET['type'] = '';
|
|
}
|
|
|
|
//Rebuild URL
|
|
$url_query_strings_sb = http_build_query(array_merge($_GET,array('sb' => $sb, 'o' => $o)));
|
|
|
|
$sql = mysqli_query($mysqli, "SELECT SQL_CALC_FOUND_ROWS * FROM assets
|
|
LEFT JOIN contacts ON asset_contact_id = contact_id
|
|
LEFT JOIN locations ON asset_location_id = location_id
|
|
LEFT JOIN logins ON login_asset_id = asset_id
|
|
WHERE asset_client_id = $client_id
|
|
AND asset_archived_at IS NULL
|
|
AND (asset_name LIKE '%$q%' OR asset_type LIKE '%$q%' OR asset_ip LIKE '%$q%' OR asset_make LIKE '%$q%' OR asset_model LIKE '%$q%' OR asset_serial LIKE '%$q%' OR asset_os LIKE '%$q%' OR contact_name LIKE '%$q%' OR location_name LIKE '%$q%')
|
|
AND ($type_query)
|
|
ORDER BY $sb $o LIMIT $record_from, $record_to"
|
|
);
|
|
|
|
$num_rows = mysqli_fetch_row(mysqli_query($mysqli, "SELECT FOUND_ROWS()"));
|
|
|
|
?>
|
|
|
|
<div class="card card-dark">
|
|
<div class="card-header py-2">
|
|
<h3 class="card-title mt-2"><i class="fa fa-fw fa-desktop"></i> Assets</h3>
|
|
<div class="card-tools">
|
|
<button type="button" class="btn btn-primary" data-toggle="modal" data-target="#addAssetModal"><i class="fas fa-fw fa-plus"></i> New <?php if (!empty($_GET['type'])) { echo ucwords(strip_tags(htmlentities($_GET['type']))); }else{ echo "Asset"; } ?></button>
|
|
</div>
|
|
</div>
|
|
<div class="card-body">
|
|
<form autocomplete="off">
|
|
<input type="hidden" name="client_id" value="<?php echo $client_id; ?>">
|
|
<input type="hidden" name="type" value="<?php echo strip_tags(htmlentities($_GET['type'])); ?>">
|
|
<div class="row">
|
|
|
|
<div class="col-md-4">
|
|
<div class="input-group mb-3 mb-md-0">
|
|
<input type="search" class="form-control" name="q" value="<?php if (isset($q)) { echo strip_tags(htmlentities($q)); } ?>" placeholder="Search <?php if (!empty($_GET['type'])) { echo ucwords(strip_tags(htmlentities($_GET['type']))); }else{ echo "Asset"; } ?>s">
|
|
<div class="input-group-append">
|
|
<button class="btn btn-dark"><i class="fa fa-search"></i></button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="col-sm-6">
|
|
<div class="btn-group btn-group-lg">
|
|
<a href="?<?php echo $url_query_strings_sb; ?>&type=" class="btn <?php if ($_GET['type'] == 'all' || empty($_GET['type'])) { echo 'btn-primary'; }else{ echo 'btn-default'; } ?>">All Assets <span class="right badge badge-light"><?php echo $all_count; ?></span></a>
|
|
<?php
|
|
if ($workstation_count > 0) { ?>
|
|
<a href="?<?php echo $url_query_strings_sb; ?>&type=workstation" class="btn <?php if ($_GET['type'] == 'workstation') { echo 'btn-primary'; }else{ echo 'btn-default'; } ?>"><i class="fa fa-fw fa-desktop"></i> Workstations <span class="right badge badge-light"><?php echo $workstation_count; ?></span></a>
|
|
<?php
|
|
} ?>
|
|
<?php
|
|
if ($server_count > 0) { ?>
|
|
<a href="?<?php echo $url_query_strings_sb; ?>&type=server" class="btn <?php if ($_GET['type'] == 'server') { echo 'btn-primary'; }else{ echo 'btn-default'; } ?>"><i class="fa fa-fw fa-server"></i> Servers <span class="right badge badge-light"><?php echo $server_count; ?></span></a>
|
|
<?php
|
|
} ?>
|
|
<?php
|
|
if ($virtual_count > 0) { ?>
|
|
<a href="?<?php echo $url_query_strings_sb; ?>&type=virtual" class="btn <?php if ($_GET['type'] == 'virtual') { echo 'btn-primary'; }else{ echo 'btn-default'; } ?>"><i class="fa fa-fw fa-cloud"></i> Virtual <span class="right badge badge-light"><?php echo $virtual_count; ?></span></a>
|
|
<?php
|
|
} ?>
|
|
<?php
|
|
if ($network_count > 0) { ?>
|
|
<a href="?<?php echo $url_query_strings_sb; ?>&type=network" class="btn <?php if ($_GET['type'] == 'network') { echo 'btn-primary'; }else{ echo 'btn-default'; } ?>"><i class="fa fa-fw fa-network-wired"></i> Network <span class="right badge badge-light"><?php echo $network_count; ?></span></a>
|
|
<?php
|
|
} ?>
|
|
<?php
|
|
if ($network_count > 0) { ?>
|
|
<a href="?<?php echo $url_query_strings_sb; ?>&type=other" class="btn <?php if ($_GET['type'] == 'other') { echo 'btn-primary'; }else{ echo 'btn-default'; } ?>"><i class="fa fa-fw fa-tag"></i> Other <span class="right badge badge-light"><?php echo $other_count; ?></span></a>
|
|
<?php
|
|
} ?>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="col-md-2">
|
|
<div class="float-right">
|
|
<a href="post.php?export_client_assets_csv=<?php echo $client_id; ?>" class="btn btn-default"><i class="fa fa-fw fa-download"></i> Export</a>
|
|
<button type="button" class="btn btn-default" data-toggle="modal" data-target="#importAssetModal"><i class="fa fa-fw fa-upload"></i> Import</button>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
</form>
|
|
<hr>
|
|
<div class="table-responsive">
|
|
<table class="table border table-hover">
|
|
<thead class="thead-light <?php if ($num_rows[0] == 0) { echo "d-none"; } ?>">
|
|
<tr>
|
|
<th><a class="text-secondary" href="?<?php echo $url_query_strings_sb; ?>&sb=asset_name&o=<?php echo $disp; ?>">Name</a></th>
|
|
<?php if ($_GET['type'] !== 'virtual' && $_GET['type'] !== 'servers') { ?>
|
|
<th><a class="text-secondary" href="?<?php echo $url_query_strings_sb; ?>&sb=asset_type&o=<?php echo $disp; ?>">Type</a></th>
|
|
<?php } ?>
|
|
<?php if ($_GET['type'] !== 'virtual') { ?>
|
|
<th><a class="text-secondary" href="?<?php echo $url_query_strings_sb; ?>&sb=asset_make&o=<?php echo $disp; ?>">Make/Model</a></th>
|
|
<?php } ?>
|
|
<?php if ($_GET['type'] !== 'virtual') { ?>
|
|
<th><a class="text-secondary" href="?<?php echo $url_query_strings_sb; ?>&sb=asset_serial&o=<?php echo $disp; ?>">Serial Number</a></th>
|
|
<?php } ?>
|
|
<?php if ($_GET['type'] !== 'network' && $_GET['type'] !== 'other') { ?>
|
|
<th><a class="text-secondary" href="?<?php echo $url_query_strings_sb; ?>&sb=asset_os&o=<?php echo $disp; ?>">Operating System</a></th>
|
|
<?php } ?>
|
|
<th><a class="text-secondary" href="?<?php echo $url_query_strings_sb; ?>&sb=asset_install_date&o=<?php echo $disp; ?>">Install Date</a></th>
|
|
<?php if ($_GET['type'] !== 'network' && $_GET['type'] !== 'servers' && $_GET['type'] !== 'other') { ?>
|
|
<th><a class="text-secondary" href="?<?php echo $url_query_strings_sb; ?>&sb=contact_name&o=<?php echo $disp; ?>">Assigned To</a></th>
|
|
<?php } ?>
|
|
<th><a class="text-secondary" href="?<?php echo $url_query_strings_sb; ?>&sb=location_name&o=<?php echo $disp; ?>">Location</a></th>
|
|
<th><a class="text-secondary" href="?<?php echo $url_query_strings_sb; ?>&sb=asset_status&o=<?php echo $disp; ?>">Status</a></th>
|
|
<th class="text-center">Action</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<?php
|
|
|
|
while ($row = mysqli_fetch_array($sql)) {
|
|
$asset_id = $row['asset_id'];
|
|
$asset_type = htmlentities($row['asset_type']);
|
|
$asset_name = htmlentities($row['asset_name']);
|
|
$asset_make = htmlentities($row['asset_make']);
|
|
$asset_model = htmlentities($row['asset_model']);
|
|
$asset_serial = htmlentities($row['asset_serial']);
|
|
if (empty($asset_serial)) {
|
|
$asset_serial_display = "-";
|
|
}else{
|
|
$asset_serial_display = $asset_serial;
|
|
}
|
|
$asset_os = htmlentities($row['asset_os']);
|
|
if (empty($asset_os)) {
|
|
$asset_os_display = "-";
|
|
}else{
|
|
$asset_os_display = $asset_os;
|
|
}
|
|
$asset_ip = htmlentities($row['asset_ip']);
|
|
if (empty($asset_ip)) {
|
|
$asset_ip_display = "-";
|
|
}else{
|
|
$asset_ip_display = "$asset_ip<button class='btn btn-sm' data-clipboard-text='$asset_ip'><i class='far fa-copy text-secondary'></i></button>";
|
|
}
|
|
$asset_mac = htmlentities($row['asset_mac']);
|
|
$asset_status = htmlentities($row['asset_status']);
|
|
$asset_purchase_date = $row['asset_purchase_date'];
|
|
$asset_warranty_expire = $row['asset_warranty_expire'];
|
|
$asset_install_date = $row['asset_install_date'];
|
|
if (empty($asset_install_date)) {
|
|
$asset_install_date_display = "-";
|
|
}else{
|
|
$asset_install_date_display = $asset_install_date;
|
|
}
|
|
$asset_notes = htmlentities($row['asset_notes']);
|
|
$asset_created_at = $row['asset_created_at'];
|
|
$asset_vendor_id = $row['asset_vendor_id'];
|
|
$asset_location_id = $row['asset_location_id'];
|
|
$asset_contact_id = $row['asset_contact_id'];
|
|
$asset_network_id = $row['asset_network_id'];
|
|
|
|
if ($asset_type == 'Laptop') {
|
|
$device_icon = "laptop";
|
|
}elseif ($asset_type == 'Desktop') {
|
|
$device_icon = "desktop";
|
|
}elseif ($asset_type == 'Server') {
|
|
$device_icon = "server";
|
|
}elseif ($asset_type == 'Printer') {
|
|
$device_icon = "print";
|
|
}elseif ($asset_type == 'Camera') {
|
|
$device_icon = "video";
|
|
}elseif ($asset_type == 'Switch' || $asset_type == 'Firewall/Router') {
|
|
$device_icon = "network-wired";
|
|
}elseif ($asset_type == 'Access Point') {
|
|
$device_icon = "wifi";
|
|
}elseif ($asset_type == 'Phone') {
|
|
$device_icon = "phone";
|
|
}elseif ($asset_type == 'Mobile Phone') {
|
|
$device_icon = "mobile-alt";
|
|
}elseif ($asset_type == 'Tablet') {
|
|
$device_icon = "tablet-alt";
|
|
}elseif ($asset_type == 'TV') {
|
|
$device_icon = "tv";
|
|
}elseif ($asset_type == 'Virtual Machine') {
|
|
$device_icon = "cloud";
|
|
}else{
|
|
$device_icon = "tag";
|
|
}
|
|
|
|
$contact_name = $row['contact_name'];
|
|
if (empty($contact_name)) {
|
|
$contact_name = "-";
|
|
}
|
|
|
|
$location_name = $row['location_name'];
|
|
if (empty($location_name)) {
|
|
$location_name = "-";
|
|
}
|
|
|
|
$login_id = $row['login_id'];
|
|
$login_username = htmlentities($row['login_username']);
|
|
$login_password = htmlentities(decryptLoginEntry($row['login_password']));
|
|
|
|
// Related tickets
|
|
$sql_tickets = mysqli_query($mysqli, "SELECT * FROM tickets WHERE ticket_asset_id = $asset_id ORDER BY ticket_number DESC");
|
|
$ticket_count = mysqli_num_rows($sql_tickets);
|
|
|
|
// Related Documents
|
|
$sql_related_documents = mysqli_query($mysqli, "SELECT * FROM documents, asset_documents WHERE documents.document_id = asset_documents.document_id AND document_archived_at IS NULL AND asset_documents.asset_id = $asset_id ORDER BY documents.document_name DESC");
|
|
$document_count = mysqli_num_rows($sql_related_documents);
|
|
|
|
|
|
// Related File
|
|
$sql_related_files = mysqli_query($mysqli, "SELECT * FROM files, asset_files WHERE files.file_id = asset_files.file_id AND asset_files.asset_id = $asset_id ORDER BY files.file_name DESC");
|
|
$file_count = mysqli_num_rows($sql_related_files);
|
|
|
|
?>
|
|
<tr>
|
|
<th>
|
|
<i class="fa fa-fw text-secondary fa-<?php echo $device_icon; ?> mr-2"></i>
|
|
<a class="text-secondary" href="#" data-toggle="modal" data-target="#editAssetModal<?php echo $asset_id; ?>"><?php echo $asset_name; ?></a>
|
|
<?php
|
|
if ($login_id > 0) {
|
|
?>
|
|
<button type="button" class="btn btn-link btn-sm" data-toggle="modal" data-target="#viewPasswordModal<?php echo $login_id; ?>"><i class="fas fa-key text-dark"></i></button>
|
|
|
|
<div class="modal" id="viewPasswordModal<?php echo $login_id; ?>" tabindex="-1">
|
|
<div class="modal-dialog modal-sm">
|
|
<div class="modal-content bg-dark">
|
|
<div class="modal-header">
|
|
<h5 class="modal-title"><i class="fa fa-fw fa-key mr-2"></i><?php echo $asset_name; ?></h5>
|
|
<button type="button" class="close text-white" data-dismiss="modal">
|
|
<span>×</span>
|
|
</button>
|
|
</div>
|
|
<div class="modal-body bg-white">
|
|
<div class="form-group">
|
|
<div class="input-group">
|
|
<div class="input-group-prepend">
|
|
<span class="input-group-text"><i class="fa fa-user"></i></span>
|
|
</div>
|
|
<input type="text" class="form-control" value="<?php echo $login_username; ?>" readonly>
|
|
</div>
|
|
</div>
|
|
<div class="form-group">
|
|
<div class="input-group">
|
|
<div class="input-group-prepend">
|
|
<span class="input-group-text"><i class="fa fa-lock"></i></span>
|
|
</div>
|
|
<input type="text" class="form-control" value="<?php echo $login_password; ?>" readonly>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<?php
|
|
}
|
|
?>
|
|
|
|
</th>
|
|
<?php if ($_GET['type'] !== 'virtual' && $_GET['type'] !== 'servers') { ?>
|
|
<td><?php echo $asset_type; ?></td>
|
|
<?php } ?>
|
|
<?php if ($_GET['type'] !== 'virtual') { ?>
|
|
<td><?php echo "$asset_make $asset_model"; ?></td>
|
|
<?php } ?>
|
|
<?php if ($_GET['type'] !== 'virtual') { ?>
|
|
<td><?php echo $asset_serial_display; ?></td>
|
|
<?php } ?>
|
|
<?php if ($_GET['type'] !== 'network' && $_GET['type'] !== 'other') { ?>
|
|
<td><?php echo $asset_os_display; ?></td>
|
|
<?php } ?>
|
|
<td><?php echo $asset_install_date_display; ?></td>
|
|
<?php if ($_GET['type'] !== 'network' && $_GET['type'] !== 'other' && $_GET['type'] !== 'servers') { ?>
|
|
<td><?php echo $contact_name; ?></td>
|
|
<?php } ?>
|
|
<td><?php echo $location_name; ?></td>
|
|
<td><?php echo $asset_status; ?></td>
|
|
<td>
|
|
<div class="dropdown dropleft text-center">
|
|
<button class="btn btn-secondary btn-sm" type="button" data-toggle="dropdown"><i class="fas fa-ellipsis-h"></i></button>
|
|
<div class="dropdown-menu">
|
|
<a class="dropdown-item" href="#" data-toggle="modal" data-target="#addAssetInterfaceModal<?php echo $asset_id; ?>">Interfaces</a>
|
|
<a class="dropdown-item" href="#" data-toggle="modal" data-target="#editAssetModal<?php echo $asset_id; ?>">Edit</a>
|
|
<a class="dropdown-item" href="#" data-toggle="modal" data-target="#copyAssetModal<?php echo $asset_id; ?>">Copy</a>
|
|
<?php if ($document_count > 0) { ?>
|
|
<a class="dropdown-item" href="#" data-toggle="modal" data-target="#assetDocumentsModal<?php echo $asset_id; ?>">Documents (<?php echo $document_count; ?>)</a>
|
|
<?php } ?>
|
|
<?php if ($ticket_count > 0) { ?>
|
|
<a class="dropdown-item" href="#" data-toggle="modal" data-target="#assetTicketsModal<?php echo $asset_id; ?>">Tickets (<?php echo $ticket_count; ?>)</a>
|
|
<?php } ?>
|
|
<?php if ($session_user_role == 3) { ?>
|
|
<div class="dropdown-divider"></div>
|
|
<a class="dropdown-item text-danger" href="post.php?archive_asset=<?php echo $asset_id; ?>">Archive</a>
|
|
<a class="dropdown-item text-danger" href="post.php?delete_asset=<?php echo $asset_id; ?>">Delete</a>
|
|
<?php } ?>
|
|
</div>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
|
|
<?php
|
|
|
|
include("client_asset_edit_modal.php");
|
|
include("client_asset_copy_modal.php");
|
|
include("client_asset_tickets_modal.php");
|
|
include("client_asset_interface_add_modal.php");
|
|
}
|
|
|
|
?>
|
|
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
<?php include("pagination.php"); ?>
|
|
</div>
|
|
</div>
|
|
|
|
<?php
|
|
include("client_asset_add_modal.php");
|
|
include("client_asset_import_modal.php");
|
|
?>
|
|
|
|
<?php include("footer.php"); ?>
|