mirror of https://github.com/itflow-org/itflow
359 lines
17 KiB
PHP
359 lines
17 KiB
PHP
<?php
|
|
|
|
require_once '../../../includes/modal_header.php';
|
|
|
|
$service_id = intval($_GET['id']);
|
|
|
|
$sql = mysqli_query($mysqli, "SELECT * FROM services WHERE service_id = $service_id LIMIT 1");
|
|
|
|
$row = mysqli_fetch_array($sql);
|
|
$service_name = nullable_htmlentities($row['service_name']);
|
|
$service_description = nullable_htmlentities($row['service_description']);
|
|
$service_category = nullable_htmlentities($row['service_category']);
|
|
$service_importance = nullable_htmlentities($row['service_importance']);
|
|
$service_backup = nullable_htmlentities($row['service_backup']);
|
|
$service_notes = nullable_htmlentities($row['service_notes']);
|
|
$service_created_at = nullable_htmlentities($row['service_created_at']);
|
|
$service_updated_at = nullable_htmlentities($row['service_updated_at']);
|
|
$service_review_due = nullable_htmlentities($row['service_review_due']);
|
|
$client_id = intval($row['service_client_id']);
|
|
|
|
// Associated Assets (and their credentials/networks/locations)
|
|
$sql_assets = mysqli_query(
|
|
$mysqli,
|
|
"SELECT * FROM service_assets
|
|
LEFT JOIN assets ON service_assets.asset_id = assets.asset_id
|
|
LEFT JOIN asset_interfaces ON interface_asset_id = assets.asset_id AND interface_primary = 1
|
|
LEFT JOIN credentials ON service_assets.asset_id = credentials.credential_asset_id
|
|
LEFT JOIN networks ON interface_network_id = networks.network_id
|
|
LEFT JOIN locations ON assets.asset_location_id = locations.location_id
|
|
WHERE service_id = $service_id"
|
|
);
|
|
|
|
// Associated credentials
|
|
$sql_credentials = mysqli_query(
|
|
$mysqli,
|
|
"SELECT * FROM service_credentials
|
|
LEFT JOIN credentials ON service_credentials.credential_id = credentials.credential_id
|
|
WHERE service_id = $service_id"
|
|
);
|
|
|
|
// Associated Domains
|
|
$sql_domains = mysqli_query(
|
|
$mysqli,
|
|
"SELECT * FROM service_domains
|
|
LEFT JOIN domains ON service_domains.domain_id = domains.domain_id
|
|
WHERE service_id = $service_id"
|
|
);
|
|
// Associated Certificates
|
|
$sql_certificates = mysqli_query(
|
|
$mysqli,
|
|
"SELECT * FROM service_certificates
|
|
LEFT JOIN certificates ON service_certificates.certificate_id = certificates.certificate_id
|
|
WHERE service_id = $service_id"
|
|
);
|
|
|
|
// Associated URLs ---- REMOVED for now
|
|
//$sql_urls = mysqli_query($mysqli, "SELECT * FROM service_urls
|
|
//WHERE service_id = '$service_id'");
|
|
|
|
// Associated Vendors
|
|
$sql_vendors = mysqli_query(
|
|
$mysqli,
|
|
"SELECT * FROM service_vendors
|
|
LEFT JOIN vendors ON service_vendors.vendor_id = vendors.vendor_id
|
|
WHERE service_id = $service_id"
|
|
);
|
|
|
|
// Associated Contacts
|
|
$sql_contacts = mysqli_query(
|
|
$mysqli,
|
|
"SELECT * FROM service_contacts
|
|
LEFT JOIN contacts ON service_contacts.contact_id = contacts.contact_id
|
|
WHERE service_id = $service_id"
|
|
);
|
|
|
|
// Associated Documents
|
|
$sql_docs = mysqli_query(
|
|
$mysqli,
|
|
"SELECT * FROM service_documents
|
|
LEFT JOIN documents ON service_documents.document_id = documents.document_id
|
|
WHERE service_id = $service_id"
|
|
);
|
|
|
|
// Generate the HTML form content using output buffering.
|
|
ob_start();
|
|
?>
|
|
<div class="modal-header bg-dark">
|
|
<h5 class="modal-title text-white"><i class="fa fa-fw fa-stream mr-2"></i>Editing service: <strong><?php echo $service_name; ?></strong></h5>
|
|
<button type="button" class="close text-white" data-dismiss="modal">
|
|
<span aria-hidden="true">×</span>
|
|
</button>
|
|
</div>
|
|
|
|
<form action="post.php" method="post" autocomplete="off">
|
|
<input type="hidden" name="client_id" value="<?php echo $client_id ?>">
|
|
<input type="hidden" name="service_id" value="<?php echo $service_id ?>">
|
|
|
|
<div class="modal-body">
|
|
|
|
<ul class="nav nav-pills nav-justified mb-3">
|
|
<li class="nav-item">
|
|
<a class="nav-link active" data-toggle="pill" href="#pills-overview<?php echo $service_id ?>">Overview</a>
|
|
</li>
|
|
<li class="nav-item">
|
|
<a class="nav-link" data-toggle="pill" href="#pills-general<?php echo $service_id ?>">General</a>
|
|
</li>
|
|
<li class="nav-item">
|
|
<a class="nav-link" data-toggle="pill" href="#pills-assets<?php echo $service_id ?>">Assets</a>
|
|
</li>
|
|
</ul>
|
|
|
|
<hr>
|
|
|
|
<div class="tab-content" <?php if (lookupUserPermission('module_support') <= 1) { echo 'inert'; } ?>>
|
|
|
|
<div class="tab-pane fade show active" id="pills-overview<?php echo $service_id ?>">
|
|
|
|
<div class="form-group">
|
|
<label>Name <strong class="text-danger">*</strong></label>
|
|
<div class="input-group">
|
|
<div class="input-group-prepend">
|
|
<span class="input-group-text"><i class="fa fa-fw fa-stream"></i></span>
|
|
</div>
|
|
<input type="text" class="form-control" name="name" placeholder="Name of Service" maxlength="200" value="<?php echo $service_name ?>" required>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<label>Description <strong class="text-danger">*</strong></label>
|
|
<div class="input-group">
|
|
<div class="input-group-prepend">
|
|
<span class="input-group-text"><i class="fa fa-fw fa-info-circle"></i></span>
|
|
</div>
|
|
<input type="text" class="form-control" name="description" placeholder="Description of Service" maxlength="200" value="<?php echo $service_description ?>" required>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- //TODO: Integrate with company wide categories: /categories.php -->
|
|
<div class="form-group">
|
|
<label>Category</label>
|
|
<div class="input-group">
|
|
<div class="input-group-prepend">
|
|
<span class="input-group-text"><i class="fa fa-fw fa-info"></i></span>
|
|
</div>
|
|
<input type="text" class="form-control" name="category" placeholder="Category" maxlength="20" value="<?php echo $service_category ?>">
|
|
</div>
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<label>Importance</label>
|
|
<div class="input-group">
|
|
<div class="input-group-prepend">
|
|
<span class="input-group-text"><i class="fa fa-fw fa-thermometer-half"></i></span>
|
|
</div>
|
|
<select class="form-control select2" name="importance" required>
|
|
<option <?php if ($service_importance == 'Low') { echo "selected"; } ?> >Low</option>
|
|
<option <?php if ($service_importance == 'Medium') { echo "selected"; } ?> >Medium</option>
|
|
<option <?php if ($service_importance == 'High') { echo "selected"; } ?> >High</option>
|
|
</select>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<label>Backup</label>
|
|
<div class="input-group">
|
|
<div class="input-group-prepend">
|
|
<span class="input-group-text"><i class="fa fa-fw fa-hdd"></i></span>
|
|
</div>
|
|
<input type="text" class="form-control" name="backup" placeholder="Backup strategy" maxlength="200" value="<?php echo $service_backup ?>">
|
|
</div>
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<label>Notes</label>
|
|
<textarea class="form-control" rows="3" placeholder="Enter some notes" name="note"><?php echo $service_notes ?></textarea>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="tab-pane fade" id="pills-general<?php echo $service_id ?>">
|
|
|
|
<div class="form-group">
|
|
<label for="contacts">Contacts</label>
|
|
<select multiple class="form-control select2" name="contacts[]">
|
|
<?php
|
|
// Get just the currently selected contact IDs
|
|
$selected_ids = array_column(mysqli_fetch_all($sql_contacts, MYSQLI_ASSOC), "contact_id");
|
|
|
|
// Get all contacts
|
|
// NOTE: These are called $sql_all and $row_all for a reason - anything overwriting $sql or $row will break the current while loop we are in from client_services.php
|
|
|
|
$sql_all = mysqli_query($mysqli, "SELECT * FROM contacts WHERE (contact_archived_at > '$service_created_at' OR contact_archived_at IS NULL) AND contact_client_id = $client_id");
|
|
|
|
while ($row_all = mysqli_fetch_array($sql_all)) {
|
|
$contact_id = intval($row_all['contact_id']);
|
|
$contact_name = nullable_htmlentities($row_all['contact_name']);
|
|
|
|
if (in_array($contact_id, $selected_ids)) {
|
|
echo "<option value=\"$contact_id\" selected>$contact_name</option>";
|
|
}
|
|
else{
|
|
echo "<option value=\"$contact_id\">$contact_name</option>";
|
|
}
|
|
}
|
|
?>
|
|
</select>
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<label for="vendors">Vendors</label>
|
|
<select multiple class="form-control select2" name="vendors[]">
|
|
<?php
|
|
$selected_ids = array_column(mysqli_fetch_all($sql_vendors, MYSQLI_ASSOC), "vendor_id");
|
|
|
|
$sql_all = mysqli_query($mysqli, "SELECT * FROM vendors WHERE (vendor_archived_at > '$service_created_at' OR vendor_archived_at IS NULL) AND vendor_client_id = $client_id");
|
|
while ($row_all = mysqli_fetch_array($sql_all)) {
|
|
$vendor_id = intval($row_all['vendor_id']);
|
|
$vendor_name = nullable_htmlentities($row_all['vendor_name']);
|
|
|
|
if (in_array($vendor_id, $selected_ids)) {
|
|
echo "<option value=\"$vendor_id\" selected>$vendor_name</option>";
|
|
}
|
|
else{
|
|
echo "<option value=\"$vendor_id\">$vendor_name</option>";
|
|
}
|
|
}
|
|
?>
|
|
</select>
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<label for="documents">Documents</label>
|
|
<select multiple class="form-control select2" name="documents[]">
|
|
<?php
|
|
$selected_ids = array_column(mysqli_fetch_all($sql_docs, MYSQLI_ASSOC), "document_id");
|
|
|
|
$sql_all = mysqli_query($mysqli, "SELECT * FROM documents WHERE document_archived_at IS NULL AND document_client_id = $client_id");
|
|
while ($row_all = mysqli_fetch_array($sql_all)) {
|
|
$document_id = intval($row_all['document_id']);
|
|
$document_name = nullable_htmlentities($row_all['document_name']);
|
|
|
|
if (in_array($document_id, $selected_ids)) {
|
|
echo "<option value=\"$document_id\" selected>$document_name</option>";
|
|
}
|
|
else{
|
|
echo "<option value=\"$document_id\">$document_name</option>";
|
|
}
|
|
|
|
}
|
|
?>
|
|
</select>
|
|
</div>
|
|
|
|
<!-- TODO: Services related to other services -->
|
|
|
|
</div>
|
|
|
|
|
|
<div class="tab-pane fade" id="pills-assets<?php echo $service_id ?>">
|
|
|
|
<div class="form-group">
|
|
<label for="assets">Assets</label>
|
|
<select multiple class="form-control select2" name="assets[]">
|
|
<?php
|
|
$selected_ids = array_column(mysqli_fetch_all($sql_assets, MYSQLI_ASSOC), "asset_id");
|
|
|
|
$sql_all = mysqli_query($mysqli, "SELECT * FROM assets WHERE (asset_archived_at > '$service_created_at' OR asset_archived_at IS NULL) AND asset_client_id = $client_id");
|
|
while ($row_all = mysqli_fetch_array($sql_all)) {
|
|
$asset_id = intval($row_all['asset_id']);
|
|
$asset_name = nullable_htmlentities($row_all['asset_name']);
|
|
|
|
if (in_array($asset_id, $selected_ids)) {
|
|
echo "<option value=\"$asset_id\" selected>$asset_name</option>";
|
|
}
|
|
else{
|
|
echo "<option value=\"$asset_id\">$asset_name</option>";
|
|
}
|
|
}
|
|
?>
|
|
</select>
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<label for="credentials">Credentials</label>
|
|
<select multiple class="form-control select2" name="credentials[]">
|
|
<?php
|
|
$selected_ids = array_column(mysqli_fetch_all($sql_credentials, MYSQLI_ASSOC), "credential_id");
|
|
|
|
$sql_all = mysqli_query($mysqli, "SELECT * FROM credentials WHERE (credential_archived_at > '$service_created_at' OR credential_archived_at IS NULL) AND credential_client_id = $client_id");
|
|
while ($row_all = mysqli_fetch_array($sql_all)) {
|
|
$credential_id = intval($row_all['credential_id']);
|
|
$credential_name = nullable_htmlentities($row_all['credential_name']);
|
|
|
|
if (in_array($credential_id, $selected_ids)) {
|
|
echo "<option value=\"$credential_id\" selected>$credential_name</option>";
|
|
}
|
|
else{
|
|
echo "<option value=\"$credential_id\">$credential_name</option>";
|
|
}
|
|
}
|
|
?>
|
|
</select>
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<label for="domains">Domains</label>
|
|
<select multiple class="form-control select2" name="domains[]">
|
|
<?php
|
|
$selected_ids = array_column(mysqli_fetch_all($sql_domains, MYSQLI_ASSOC), "domain_id");
|
|
|
|
$sql_all = mysqli_query($mysqli, "SELECT * FROM domains WHERE (domain_archived_at > '$service_created_at' OR domain_archived_at IS NULL) AND domain_client_id = $client_id");
|
|
while ($row_all = mysqli_fetch_array($sql_all)) {
|
|
$domain_id = intval($row_all['domain_id']);
|
|
$domain_name = nullable_htmlentities($row_all['domain_name']);
|
|
|
|
if (in_array($domain_id, $selected_ids)) {
|
|
echo "<option value=\"$domain_id\" selected>$domain_name</option>";
|
|
}
|
|
else{
|
|
echo "<option value=\"$domain_id\">$domain_name</option>";
|
|
}
|
|
}
|
|
?>
|
|
</select>
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<label for="certificates">Certificates</label>
|
|
<select multiple class="form-control select2" name="certificates[]">
|
|
<?php
|
|
$selected_ids = array_column(mysqli_fetch_all($sql_certificates, MYSQLI_ASSOC), "certificate_id");
|
|
|
|
$sql_all = mysqli_query($mysqli, "SELECT * FROM certificates WHERE (certificate_archived_at > '$service_created_at' OR certificate_archived_at IS NULL) AND certificate_client_id = $client_id");
|
|
while ($row_all = mysqli_fetch_array($sql_all)) {
|
|
$cert_id = intval($row_all['certificate_id']);
|
|
$cert_name = nullable_htmlentities($row_all['certificate_name']);
|
|
|
|
if (in_array($cert_id, $selected_ids)) {
|
|
echo "<option value=\"$cert_id\" selected>$cert_name</option>";
|
|
}
|
|
else{
|
|
echo "<option value=\"$cert_id\">$cert_name</option>";
|
|
}
|
|
}
|
|
?>
|
|
</select>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
<div class="modal-footer">
|
|
<button type="submit" name="edit_service" class="btn btn-primary text-bold"><i class="fa fa-check mr-2"></i>Save</button>
|
|
<button type="button" class="btn btn-light" data-dismiss="modal"><i class="fa fa-times mr-2"></i>Cancel</button>
|
|
</div>
|
|
</form>
|
|
|
|
<?php
|
|
require_once '../../../includes/modal_footer.php';
|