Renamed 45 ASP files to follow lowercase concatenated naming convention: - Direct handlers: save_machine_direct.asp -> savemachinedirect.asp - USB files: checkin_usb.asp -> checkinusb.asp - API files: api_usb.asp -> apiusb.asp - Map files: network_map.asp -> networkmap.asp - Printer files: printer_lookup.asp -> printerlookup.asp Also: - Updated 84+ internal references across all ASP and JS files - Deleted 6 test/duplicate files (editmacine.asp, test_*.asp) - Updated production migration guide with filename changes - Added rename scripts for Linux (bash) and Windows (PowerShell)
417 lines
20 KiB
Plaintext
417 lines
20 KiB
Plaintext
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<!--#include file="./includes/header.asp"-->
|
|
<!--#include file="./includes/sql.asp"-->
|
|
<title>Add Application</title>
|
|
</head>
|
|
|
|
<%
|
|
theme = Request.Cookies("theme")
|
|
IF theme = "" THEN
|
|
theme="bg-theme1"
|
|
END IF
|
|
|
|
' Check for error messages
|
|
Dim errorType, errorMsg
|
|
errorType = Request.QueryString("error")
|
|
errorMsg = Request.QueryString("msg")
|
|
%>
|
|
|
|
<body class="bg-theme <%Response.Write(theme)%>">
|
|
|
|
<!-- start loader -->
|
|
<div id="pageloader-overlay" class="visible incoming"><div class="loader-wrapper-outer"><div class="loader-wrapper-inner" ><div class="loader"></div></div></div></div>
|
|
<!-- end loader -->
|
|
|
|
<!-- Start wrapper-->
|
|
<div id="wrapper">
|
|
<!--#include file="./includes/leftsidebar.asp"-->
|
|
<!--Start topbar header-->
|
|
<!--#include file="./includes/topbarheader.asp"-->
|
|
<!--End topbar header-->
|
|
<div class="clearfix"></div>
|
|
|
|
<div class="content-wrapper">
|
|
<div class="container-fluid">
|
|
|
|
<div class="row mt-3">
|
|
<div class="col-lg-8 offset-lg-2">
|
|
<div class="card">
|
|
<div class="card-body">
|
|
<div style="display:flex; justify-content:space-between; align-items:center; margin-bottom:20px;">
|
|
<h5 class="card-title" style="margin:0;">
|
|
<i class="zmdi zmdi-plus-circle"></i> Add New Application
|
|
</h5>
|
|
<a href="./displayapplications.asp" class="btn btn-sm btn-secondary">
|
|
<i class="zmdi zmdi-arrow-left"></i> Back to Applications
|
|
</a>
|
|
</div>
|
|
|
|
<%
|
|
If errorType <> "" Then
|
|
If errorType = "INVALID_INPUT" Then
|
|
Response.Write("<div class='alert alert-danger'><i class='zmdi zmdi-close-circle'></i> <strong>Invalid Input!</strong> Please check your data and try again.</div>")
|
|
ElseIf errorType = "INVALID_ID" Then
|
|
Response.Write("<div class='alert alert-danger'><i class='zmdi zmdi-close-circle'></i> <strong>Invalid ID!</strong> Selected support team is invalid.</div>")
|
|
ElseIf errorType = "DATABASE_ERROR" Then
|
|
Response.Write("<div class='alert alert-danger'><i class='zmdi zmdi-close-circle'></i> <strong>Database Error:</strong> " & Server.HTMLEncode(errorMsg) & "</div>")
|
|
End If
|
|
End If
|
|
%>
|
|
|
|
<form method="post" action="./saveapplicationdirect.asp">
|
|
|
|
<div class="form-group">
|
|
<label for="appname">Application Name <span class="text-danger">*</span></label>
|
|
<input type="text" class="form-control" id="appname" name="appname"
|
|
required maxlength="50" autofocus
|
|
placeholder="Enter application name">
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<label for="appdescription">Description</label>
|
|
<input type="text" class="form-control" id="appdescription" name="appdescription"
|
|
maxlength="255"
|
|
placeholder="Short description of the application">
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<label for="supportteamid">Support Team <span class="text-danger">*</span></label>
|
|
<div class="input-group">
|
|
<select class="form-control" id="supportteamid" name="supportteamid" required>
|
|
<option value="">-- Select Support Team --</option>
|
|
<%
|
|
Dim strSupportSQL, rsSupportTeams
|
|
strSupportSQL = "SELECT supporteamid, teamname FROM supportteams WHERE isactive=1 ORDER BY teamname ASC"
|
|
Set rsSupportTeams = objConn.Execute(strSupportSQL)
|
|
|
|
While Not rsSupportTeams.EOF
|
|
Response.Write("<option value='" & rsSupportTeams("supporteamid") & "'>")
|
|
Response.Write(Server.HTMLEncode(rsSupportTeams("teamname")))
|
|
Response.Write("</option>" & vbCrLf)
|
|
rsSupportTeams.MoveNext
|
|
Wend
|
|
rsSupportTeams.Close
|
|
Set rsSupportTeams = Nothing
|
|
%>
|
|
<option value="new">+ Add New Support Team</option>
|
|
</select>
|
|
<div class="input-group-append">
|
|
<button type="button" class="btn btn-info" id="addSupportTeamBtn">
|
|
<i class="zmdi zmdi-plus"></i> New
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Hidden section for adding new support team -->
|
|
<div id="newSupportTeamSection" class="new-support-team-section" style="display:none; padding:15px; background:rgba(255,255,255,0.03); border:1px solid rgba(255,255,255,0.1); border-radius:5px; margin-bottom:15px;">
|
|
<h6 class="mb-3"><i class="zmdi zmdi-plus-circle"></i> New Support Team</h6>
|
|
<div class="form-group">
|
|
<label for="newsupportteamname">Team Name</label>
|
|
<input type="text" class="form-control" id="newsupportteamname" name="newsupportteamname"
|
|
maxlength="50" placeholder="e.g., IT Support, Engineering">
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="newsupportteamurl">Team URL</label>
|
|
<input type="text" class="form-control" id="newsupportteamurl" name="newsupportteamurl"
|
|
maxlength="512" placeholder="e.g., Service Now URL or team page">
|
|
<small class="form-text text-muted">
|
|
Optional - Link to Service Now page or team website
|
|
</small>
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="newappownerid">App Owner</label>
|
|
<div class="input-group">
|
|
<select class="form-control" id="newappownerid" name="newappownerid">
|
|
<option value="">-- Select App Owner --</option>
|
|
<%
|
|
Dim strAppOwnerSQL, rsAppOwners
|
|
strAppOwnerSQL = "SELECT appownerid, appowner FROM appowners WHERE isactive=1 ORDER BY appowner ASC"
|
|
Set rsAppOwners = objConn.Execute(strAppOwnerSQL)
|
|
|
|
While Not rsAppOwners.EOF
|
|
Response.Write("<option value='" & rsAppOwners("appownerid") & "'>")
|
|
Response.Write(Server.HTMLEncode(rsAppOwners("appowner")))
|
|
Response.Write("</option>" & vbCrLf)
|
|
rsAppOwners.MoveNext
|
|
Wend
|
|
rsAppOwners.Close
|
|
Set rsAppOwners = Nothing
|
|
%>
|
|
<option value="new">+ Add New App Owner</option>
|
|
</select>
|
|
<div class="input-group-append">
|
|
<button type="button" class="btn btn-info btn-sm" id="addAppOwnerBtn">
|
|
<i class="zmdi zmdi-plus"></i> New
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Hidden section for adding new app owner -->
|
|
<div id="newAppOwnerSection" style="display:none; padding:10px; background:rgba(255,255,255,0.05); border:1px solid rgba(255,255,255,0.15); border-radius:3px; margin-bottom:10px;">
|
|
<h6 class="mb-2" style="font-size:0.9rem;"><i class="zmdi zmdi-account"></i> New App Owner</h6>
|
|
<div class="form-group mb-2">
|
|
<label for="newappownername" style="font-size:0.85rem;">Name</label>
|
|
<input type="text" class="form-control form-control-sm" id="newappownername" name="newappownername"
|
|
maxlength="50" placeholder="e.g., John Smith">
|
|
</div>
|
|
<div class="form-group mb-2">
|
|
<label for="newappownersso" style="font-size:0.85rem;">SSO</label>
|
|
<input type="text" class="form-control form-control-sm" id="newappownersso" name="newappownersso"
|
|
maxlength="50" placeholder="e.g., jsmith">
|
|
</div>
|
|
<button type="button" class="btn btn-sm btn-secondary btn-sm" id="cancelNewAppOwner">
|
|
<i class="zmdi zmdi-close"></i> Cancel
|
|
</button>
|
|
</div>
|
|
<button type="button" class="btn btn-sm btn-secondary" id="cancelNewSupportTeam">
|
|
<i class="zmdi zmdi-close"></i> Cancel
|
|
</button>
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<label for="applicationnotes">Application Notes</label>
|
|
<textarea class="form-control" id="applicationnotes" name="applicationnotes"
|
|
rows="4" maxlength="512"
|
|
placeholder="Detailed notes about the application..."></textarea>
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<label for="applicationlink">Application Link</label>
|
|
<input type="text" class="form-control" id="applicationlink" name="applicationlink"
|
|
maxlength="512"
|
|
placeholder="https://app.example.com or application://...">
|
|
<small class="form-text text-muted">
|
|
Direct URL to launch or access the application
|
|
</small>
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<label for="installpath">Installation Path/URL</label>
|
|
<input type="text" class="form-control" id="installpath" name="installpath"
|
|
maxlength="255"
|
|
placeholder="\\server\share\installer.exe or http://...">
|
|
<small class="form-text text-muted">
|
|
Network path to installation files or download URL
|
|
</small>
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<label for="documentationpath">Documentation Path/URL</label>
|
|
<input type="text" class="form-control" id="documentationpath" name="documentationpath"
|
|
maxlength="512"
|
|
placeholder="\\server\docs or http://docs.example.com">
|
|
<small class="form-text text-muted">
|
|
Network path to documentation or documentation website URL
|
|
</small>
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<label for="image">Image Filename</label>
|
|
<input type="text" class="form-control" id="image" name="image"
|
|
maxlength="255"
|
|
placeholder="app-logo.png">
|
|
<small class="form-text text-muted">
|
|
Place image file in <code>./images/applications/</code> folder. Leave blank for default icon.
|
|
</small>
|
|
</div>
|
|
|
|
<div class="row">
|
|
<div class="col-md-6">
|
|
<h6 class="mt-3 mb-3">Application Flags</h6>
|
|
|
|
<div class="form-group">
|
|
<div class="custom-control custom-checkbox">
|
|
<input type="checkbox" class="custom-control-input"
|
|
id="isinstallable" name="isinstallable" value="1">
|
|
<label class="custom-control-label" for="isinstallable">
|
|
<strong>Is Installable</strong>
|
|
<small class="d-block text-muted">Has installation files available</small>
|
|
</label>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<div class="custom-control custom-checkbox">
|
|
<input type="checkbox" class="custom-control-input"
|
|
id="isprinter" name="isprinter" value="1">
|
|
<label class="custom-control-label" for="isprinter">
|
|
<strong>Printer Application</strong>
|
|
<small class="d-block text-muted">Related to printer functionality</small>
|
|
</label>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<div class="custom-control custom-checkbox">
|
|
<input type="checkbox" class="custom-control-input"
|
|
id="islicenced" name="islicenced" value="1">
|
|
<label class="custom-control-label" for="islicenced">
|
|
<strong>Requires License</strong>
|
|
<small class="d-block text-muted">Application requires licensing</small>
|
|
</label>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="col-md-6">
|
|
<h6 class="mt-3 mb-3">Visibility</h6>
|
|
|
|
<div class="form-group">
|
|
<div class="custom-control custom-checkbox">
|
|
<input type="checkbox" class="custom-control-input"
|
|
id="isactive" name="isactive" value="1" checked>
|
|
<label class="custom-control-label" for="isactive">
|
|
<strong>Active</strong>
|
|
<small class="d-block text-muted">Application is currently in use</small>
|
|
</label>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<div class="custom-control custom-checkbox">
|
|
<input type="checkbox" class="custom-control-input"
|
|
id="ishidden" name="ishidden" value="1">
|
|
<label class="custom-control-label" for="ishidden">
|
|
<strong>Hidden</strong>
|
|
<small class="d-block text-muted">Hide from public listings</small>
|
|
</label>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<hr class="mt-4 mb-4">
|
|
|
|
<div class="form-group text-right">
|
|
<button type="submit" class="btn btn-primary btn-lg">
|
|
<i class="zmdi zmdi-check"></i> Create Application
|
|
</button>
|
|
<a href="./displayapplications.asp" class="btn btn-secondary btn-lg">
|
|
<i class="zmdi zmdi-close"></i> Cancel
|
|
</a>
|
|
</div>
|
|
</form>
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<!-- End container-fluid-->
|
|
</div><!--End content-wrapper-->
|
|
|
|
<!--Start Back To Top Button-->
|
|
<a href="javaScript:void();" class="back-to-top"><i class="fa fa-angle-double-up"></i> </a>
|
|
<!--End Back To Top Button-->
|
|
|
|
<!--Start footer-->
|
|
<footer class="footer">
|
|
<div class="container">
|
|
<div class="text-center">
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
<!--End footer-->
|
|
</div>
|
|
<!--End wrapper-->
|
|
|
|
|
|
<!-- Bootstrap core JavaScript-->
|
|
<script src="assets/js/jquery.min.js"></script>
|
|
<script src="assets/js/popper.min.js"></script>
|
|
<script src="assets/js/bootstrap.min.js"></script>
|
|
|
|
<!-- simplebar js -->
|
|
<script src="assets/plugins/simplebar/js/simplebar.js"></script>
|
|
<!-- sidebar-menu js -->
|
|
<script src="assets/js/sidebar-menu.js"></script>
|
|
|
|
<!-- Custom scripts -->
|
|
<script src="assets/js/app-script.js"></script>
|
|
|
|
<script>
|
|
$(document).ready(function() {
|
|
// Show/hide new support team section
|
|
$('#addSupportTeamBtn, #supportteamid').on('change click', function() {
|
|
if ($('#supportteamid').val() === 'new' || $(this).attr('id') === 'addSupportTeamBtn') {
|
|
$('#supportteamid').val('new');
|
|
$('#newSupportTeamSection').slideDown();
|
|
$('#newsupportteamname').prop('required', true);
|
|
$('#newappownerid').prop('required', true);
|
|
}
|
|
});
|
|
|
|
$('#cancelNewSupportTeam').on('click', function() {
|
|
$('#newSupportTeamSection').slideUp();
|
|
$('#supportteamid').val('');
|
|
$('#newsupportteamname').val('').prop('required', false);
|
|
$('#newsupportteamurl').val('');
|
|
$('#newappownerid').val('').prop('required', false);
|
|
// Also hide and clear app owner section
|
|
$('#newAppOwnerSection').hide();
|
|
$('#newappownername').val('').prop('required', false);
|
|
$('#newappownersso').val('').prop('required', false);
|
|
});
|
|
|
|
// Show/hide new app owner section (nested within support team)
|
|
$('#addAppOwnerBtn, #newappownerid').on('change click', function() {
|
|
if ($('#newappownerid').val() === 'new' || $(this).attr('id') === 'addAppOwnerBtn') {
|
|
$('#newappownerid').val('new');
|
|
$('#newAppOwnerSection').slideDown();
|
|
$('#newappownername').prop('required', true);
|
|
$('#newappownersso').prop('required', true);
|
|
}
|
|
});
|
|
|
|
$('#cancelNewAppOwner').on('click', function() {
|
|
$('#newAppOwnerSection').slideUp();
|
|
$('#newappownerid').val('');
|
|
$('#newappownername').val('').prop('required', false);
|
|
$('#newappownersso').val('').prop('required', false);
|
|
});
|
|
|
|
// Form validation
|
|
$('form').on('submit', function(e) {
|
|
// If adding new support team, make sure fields are filled
|
|
if ($('#supportteamid').val() === 'new') {
|
|
if ($('#newsupportteamname').val().trim() === '') {
|
|
e.preventDefault();
|
|
alert('Please enter a support team name or select an existing one');
|
|
$('#newsupportteamname').focus();
|
|
return false;
|
|
}
|
|
|
|
// Check if adding new app owner within new support team
|
|
if ($('#newappownerid').val() === 'new') {
|
|
if ($('#newappownername').val().trim() === '') {
|
|
e.preventDefault();
|
|
alert('Please enter an app owner name or select an existing one');
|
|
$('#newappownername').focus();
|
|
return false;
|
|
}
|
|
if ($('#newappownersso').val().trim() === '') {
|
|
e.preventDefault();
|
|
alert('Please enter an SSO for the new app owner');
|
|
$('#newappownersso').focus();
|
|
return false;
|
|
}
|
|
} else if ($('#newappownerid').val() === '') {
|
|
e.preventDefault();
|
|
alert('Please select an app owner for the new support team');
|
|
$('#newappownerid').focus();
|
|
return false;
|
|
}
|
|
}
|
|
});
|
|
});
|
|
</script>
|
|
|
|
</body>
|
|
</html>
|
|
|
|
<% objConn.Close %>
|