diff options
author | Timoney, Daniel (dt5972) <dtimoney@att.com> | 2017-02-15 10:37:53 -0500 |
---|---|---|
committer | Timoney, Daniel (dt5972) <dtimoney@att.com> | 2017-02-15 10:40:37 -0500 |
commit | 324ee36fe31763e507b422ab0a88e4230045e205 (patch) | |
tree | d0b04520f6657601c918ce63fd27575977624187 /admportal/views/sdnfc | |
parent | f0c97e8db427481e28c0a16b789bc73801b35e47 (diff) |
Initial commit for OpenECOMP SDN-C OA&M
Change-Id: I7ab579fd0d206bf356f36d52dcdf4f71f1fa2680
Signed-off-by: Timoney, Daniel (dt5972) <dtimoney@att.com>
Former-commit-id: 2a9f0edd09581f907e62ec4689b5ac94dd5382ba
Diffstat (limited to 'admportal/views/sdnfc')
-rw-r--r-- | admportal/views/sdnfc/viewTables.ejs | 102 | ||||
-rw-r--r-- | admportal/views/sdnfc/vrrCredentials.ejs | 223 |
2 files changed, 325 insertions, 0 deletions
diff --git a/admportal/views/sdnfc/viewTables.ejs b/admportal/views/sdnfc/viewTables.ejs new file mode 100644 index 00000000..b950d8f9 --- /dev/null +++ b/admportal/views/sdnfc/viewTables.ejs @@ -0,0 +1,102 @@ +<!DOCTYPE html> +<html lang="en"> +<head> + +<meta charset="UTF-8" /> +<meta http-equiv="X-UA-Compatible" content="IE=edge"> +<% include ../partials/head %> +<% include ../partials/header %> +<script type="text/javascript" src="/javascripts/admportal.js" async></script> +<title>SDN-FC AdminPortal</title> +<script class="init"> + $(document).ready(function() { + $('#viewTables').DataTable( { + "order": [[ 0, "asc" ]] + } ); +} ); +</script> +</head> + +<body> + +<div class="well well-sm"> +<h3>View Database Tables +</div> + +<% if ( typeof result != 'undefined' ) { + if (result.code.length > 0) { + if ( result.code == 'success' ) { %> + <div class='alert alert-success' role='alert'> + <% + for ( x in result.msg ){ %> + <div><%= result.msg[x] %></div> + <% } %> + </div> + <% } else { %> + <div class='alert alert-danger' role='danger'> + <% + for ( x in result.msg ){ %> + <div><%= result.msg[x] %></div> + <% } %> + </div> + <% } %> + <% } %> +<% } %> + +<% if( typeof privilege != 'undefined'){ + var priv = privilege.privilege; +} else { + var priv = 'A'; +} %> + +<!-- Single button --> +<nav class="navbar navbar-default"> +<div class="container-fluid"> +<div class="navbar-header"> + +<div class="btn-group"> + <button type="button" class="btn btn-primary dropdown-toggle navbar-btn" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"> + Table <span class="caret"></span> + </button> + <ul class="dropdown-menu" role="menu"> + <% for ( var i in vtables ){ %> + <li><a href="/sdnfc/getTables?tableName=<%= vtables[i] %>"><%= vtables[i] %></a></li> + <% } %> + </ul> +</div> +</div> +</div> +</nav> + +<% if (displayTable) { %> +<div class="container-fluid"> + <table id="viewTables" class="table table-hover table-condensed"> + <caption class="text-primary"><%= fields[0].table %></caption> + <thead> + <tr> + <% fields.forEach( function(field) { %> + <th><%= field.name %></th> + <% }); %> + </tr> + </thead> + + <tbody> + <% for ( var x in rows ){ %> + <tr> + <% for ( var j in rows[x] ){ %> + <td><%= rows[x][j] %></td> + <% } %> + </tr> + <% } %> + </tbody> + </table> +</div> +<% } %> + +<footer> + <% include ../partials/footer %> +</footer> + +</body> +</html> + diff --git a/admportal/views/sdnfc/vrrCredentials.ejs b/admportal/views/sdnfc/vrrCredentials.ejs new file mode 100644 index 00000000..85c9e956 --- /dev/null +++ b/admportal/views/sdnfc/vrrCredentials.ejs @@ -0,0 +1,223 @@ +<!DOCTYPE html> +<html lang="en"> +<head> + <meta charset="UTF-8" /> + <meta http-equiv="X-UA-Compatible" content="IE=edge"> + <% include ../partials/head %> + <% include ../partials/header %> + <script type="text/javascript" src="/javascripts/admportal.js" async></script> + <title>SDN-FC AdminPortal</title> +<script class="init"> + $(document).ready(function() { + $('#vrr_credentials').DataTable( { + "order": [[ 0, "asc" ]] + } ); +} ); +</script> + +</head> +<body> + +<div class="well well-sm"> +<h3>VRR Credentials</h3> +</div> + +<% if ( typeof result != 'undefined' ) { + if (result.code.length > 0) { + if ( result.code == 'success' ) { %> + <div class='alert alert-success' role='alert'> + <% + for ( x in result.msg ){ %> + <div><%= result.msg[x] %></div> + <% } %> + </div> + <% } else { %> + <div class='alert alert-danger' role='danger'> + <% + for ( x in result.msg ){ %> + <div><%= result.msg[x] %></div> + <% } %> + </div> + <% } %> + <% } %> +<% } %> + +<% if( typeof privilege != 'undefined'){ + var priv = privilege.privilege; +} else { + var priv = 'A'; +} %> + + +<div class="container-fluid"> + + <% if(priv == 'A'){ %> + <div class="actions" style="padding:15px 0px;"> + <button class="btn btn-primary" data-toggle="modal" data-target="#add_vrr_credentials"> + Add VRR Credentials + </button> + </div> + <% } %> + + <table id="vrr_CREDENTIALS" class="table table-hover table-condensed"> + <thead> + <tr> + <th>*Server Name</th> + <th>*IP Address</th> + <th>*Username</th> + <th>*Password</th> + <% if(priv == 'A'){ %> + <th>Action</th> + <% } %> + </tr> + </thead> + <tbody> + <% rows.forEach( function(row) { %> + <tr> + <td><%= row.server_name %></td> + <td><%= row.ip_address %></td> + <td><%= row.username %></td> + <td>*****</td> + <% if(priv == 'A') { %> + <td> + <button type="button" class="btn btn-default btn-xs" + onclick="updateVrrCredentials('<%= row.server_name %>', '<%= row.ip_address %>', '<%= row.username %>','<%= row.password %>');">Update</button> + <button type="button" class="btn btn-default btn-xs" + onclick="deleteVrrCredentials('<%= row.server_name %>');">Delete</button> + </td> + <% } %> + </tr> + <% }); %> + </tbody> + </table> + +</div> + +<% include ../partials/vrr_credentials %> +<footer> + <% include ../partials/footer %> +</footer> + +<script type="text/javascript"> +function submitVrrCredentials(form) +{ + var errorMsg=''; + var server_name = ''; + var ip_address = ''; + var username = ''; + var password = ''; + var confirm_password = ''; + + if ( form.name == 'addForm' ) + { + server_name = form.nf_server_name; + ip_address = form.nf_ip_address; + username = form.nf_username; + password = form.nf_password; + confirm_password = form.nf_confirm_password; + + if ( (server_name.value == null) || (server_name.value == "") || isblank(server_name.value) ) + { + errorMsg += 'Server Name is required.<br>'; + } + if ( (ip_address.value == null) || (ip_address.value == "") || isblank(ip_address.value) ) + { + errorMsg += 'IP Address is required.<br>'; + } + if ( (password.value == null) || (password.value == "") || isblank(password.value) ) + { + errorMsg += 'Password is required.<br>'; + } + if ( (confirm_password.value == null) || (confirm_password.value == "") || isblank(confirm_password.value) ) + { + errorMsg += 'Confirm Password is required.<br>'; + } + if( errorMsg.length > 0 ) { + bootbox.alert(errorMsg); + return; + } + if ( password.value != confirm_password.value ) + { + bootbox.alert('Passwords do not match.'); + return; + } + } + else + { + server_name = form.uf_server_name; + ip_address = form.uf_ip_address; + username = form.uf_username; + password = form.uf_password; + confirm_password = form.uf_confirm_password; + + if ( (server_name.value == null) || (server_name.value == "") || isblank(server_name.value) ) + { + errorMsg += 'Server Name is required.<br>'; + } + if ( (ip_address.value == null) || (ip_address.value == "") || isblank(ip_address.value) ) + { + errorMsg += 'IP Address is required.<br>'; + } + if ( (password.value == null) || (password.value == "") || isblank(password.value) ) + { + errorMsg += 'Password is required.<br>'; + } + if ( (confirm_password.value == null) || (confirm_password.value == "") || isblank(confirm_password.value) ) + { + errorMsg += 'Confirm Password is required.<br>'; + } + if( errorMsg.length > 0 ) { + bootbox.alert(errorMsg); + return; + } + + if ( password.value != confirm_password.value ) + { + bootbox.alert('Passwords do not match.'); + return; + } + } + form.submit(); +} + +function updateVrrCredentials(server_name,ip_address,username,password) { + + document.getElementById('uf_server_name').value=server_name; + document.getElementById('uf_key_server_name').value=server_name; + document.getElementById('uf_ip_address').value=ip_address; + document.getElementById('uf_username').value=username; + document.getElementById('uf_password').value=password; + document.getElementById('uf_confirm_password').value=password; + + $('#update_vrr_credentials').modal('show'); +} + +function deleteVrrCredentials(server_name) { + + var url_string = encodeURI("/sdnfc/deleteVrrCredentials?server_name=" + server_name); + + bootbox.confirm({ + message: "Are you sure you want to delete VRR Credential [ " + server_name + " ]", + callback: function(result) { + if ( result ) + { + location.assign(url_string); + } + return; + }, + buttons: { + cancel: { + label: "Cancel" + }, + confirm: { + label: "Yes" + } + } + }); +} + +</script> + +</body> +</html> + |