2011-08-24 15:09:28 +00:00
/ * *
* Execute when the DOM is fully loaded
* /
$ ( document ) . ready ( function ( ) {
// Load utility scripts
} ) ;
/ * *
* Constructor
*
* @ return Nothing
* /
var bladePlugin = function ( ) {
} ;
2011-10-12 18:27:12 +00:00
/ * *
* Clone node ( service page )
*
* @ param node
* Node to clone
* @ return Nothing
* /
bladePlugin . prototype . serviceClone = function ( node ) {
} ;
2011-09-30 18:29:27 +00:00
/ * *
* Load provision page ( service page )
*
* @ param tabId
* Tab ID where page will reside
* @ return Nothing
* /
bladePlugin . prototype . loadServiceProvisionPage = function ( tabId ) {
} ;
/ * *
* Show node inventory ( service page )
*
* @ param data
* Data from HTTP request
* @ return Nothing
* /
bladePlugin . prototype . loadServiceInventory = function ( data ) {
} ;
2011-08-24 15:09:28 +00:00
/ * *
* Load node inventory
*
* @ param data
* Data from HTTP request
* @ return Nothing
* /
bladePlugin . prototype . loadInventory = function ( data ) {
var args = data . msg . split ( ',' ) ;
var tabId = args [ 0 ] . replace ( 'out=' , '' ) ;
var node = args [ 1 ] . replace ( 'node=' , '' ) ;
// Get node inventory
var inv = data . rsp ;
// Remove loader
$ ( '#' + tabId ) . find ( 'img' ) . remove ( ) ;
// Create division to hold inventory
var invDivId = tabId + 'Inventory' ;
var invDiv = $ ( '<div></div>' ) ;
// Create a fieldset
var fieldSet = $ ( '<fieldset></fieldset>' ) ;
var legend = $ ( '<legend>Hardware</legend>' ) ;
fieldSet . append ( legend ) ;
var oList = $ ( '<ol></ol>' ) ;
fieldSet . append ( oList ) ;
invDiv . append ( fieldSet ) ;
// Loop through each line
var item ;
for ( var k = 0 ; k < inv . length ; k ++ ) {
// Remove node name in front
var str = inv [ k ] . replace ( node + ': ' , '' ) ;
str = jQuery . trim ( str ) ;
// Append the string to a list
item = $ ( '<li></li>' ) ;
item . append ( str ) ;
oList . append ( item ) ;
}
// Append to inventory form
$ ( '#' + tabId ) . append ( invDiv ) ;
} ;
/ * *
* Load clone page
*
* @ param node
* Source node to clone
* @ return Nothing
* /
bladePlugin . prototype . loadClonePage = function ( node ) {
// Get nodes tab
var tab = getNodesTab ( ) ;
var newTabId = node + 'CloneTab' ;
// If there is no existing clone tab
if ( ! $ ( '#' + newTabId ) . length ) {
// Create info bar
var infoBar = createInfoBar ( 'Not supported' ) ;
// Create clone form
var cloneForm = $ ( '<div class="form"></div>' ) ;
cloneForm . append ( infoBar ) ;
// Add clone tab
tab . add ( newTabId , 'Clone' , cloneForm , true ) ;
}
tab . select ( newTabId ) ;
} ;
/ * *
* Load provision page
*
* @ param tabId
* The provision tab ID
* @ return Nothing
* /
bladePlugin . prototype . loadProvisionPage = function ( tabId ) {
// Get OS image names
$ . ajax ( {
url : 'lib/cmd.php' ,
dataType : 'json' ,
data : {
cmd : 'tabdump' ,
tgt : '' ,
args : 'osimage' ,
msg : ''
} ,
success : setOSImageCookies
} ) ;
// Get groups
$ . ajax ( {
url : 'lib/cmd.php' ,
dataType : 'json' ,
data : {
cmd : 'extnoderange' ,
tgt : '/.*' ,
args : 'subgroups' ,
msg : ''
} ,
success : setGroupsCookies
} ) ;
// Get provision tab instance
var inst = tabId . replace ( 'bladeProvisionTab' , '' ) ;
// Create provision form
var provForm = $ ( '<div class="form"></div>' ) ;
// Create info bar
var infoBar = createInfoBar ( 'Provision a blade. This will install an operating system onto the blade.' ) ;
provForm . append ( infoBar ) ;
// Append to provision tab
$ ( '#' + tabId ) . append ( provForm ) ;
// Create provision existing node division
var provExisting = createBladeProvisionExisting ( inst ) ;
provForm . append ( provExisting ) ;
} ;
/ * *
* Load resources
*
* @ return Nothing
* /
bladePlugin . prototype . loadResources = function ( ) {
// Get resource tab ID
var tabId = 'bladeResourceTab' ;
// Remove loader
$ ( '#' + tabId ) . find ( 'img' ) . remove ( ) ;
// Create info bar
var infoBar = createInfoBar ( 'Under construction' ) ;
// Create resource form
var resrcForm = $ ( '<div class="form"></div>' ) ;
resrcForm . append ( infoBar ) ;
$ ( '#' + tabId ) . append ( resrcForm ) ;
} ;
/ * *
* Add node range
*
* @ return Nothing
* /
bladePlugin . prototype . addNode = function ( ) {
2011-12-01 05:58:22 +00:00
var addNodeForm = $ ( '<div id="addBladeCenter" class="form"></div>' ) ;
var info = createInfoBar ( 'Add a BladeCenter node' ) ;
addNodeForm . append ( info ) ;
2011-09-12 19:47:26 +00:00
2011-12-01 05:58:22 +00:00
var typeFS = $ ( '<fieldset></fieldset>' ) ;
var typeLegend = $ ( '<legend>Type</legend>' ) ;
typeFS . append ( typeLegend ) ;
addNodeForm . append ( typeFS ) ;
var nodeFS = $ ( '<fieldset id="nodeAttrs"></fieldset>' ) ;
var nodeLegend = $ ( '<legend>Node</legend>' ) ;
nodeFS . append ( nodeLegend ) ;
addNodeForm . append ( nodeFS ) ;
typeFS . append ( '<div>' +
'<label>Node type:</label>' +
'<select id="typeSelect">' +
'<option value="mm">AMM</option>' +
'<option value="blade">Blade</option>' +
'<option value="scanmm">Blade by scan</option>' +
'</select>' +
'</div>' ) ;
typeFS . find ( '#typeSelect' ) . bind ( 'change' , function ( ) {
// Remove any existing warnings
$ ( '#addBladeCenter .ui-state-error' ) . remove ( ) ;
nodeFS . find ( 'div' ) . remove ( ) ;
var addMethod = $ ( this ) . val ( ) ;
switch ( addMethod ) {
2011-09-21 07:11:31 +00:00
case 'mm' :
2011-12-01 05:58:22 +00:00
nodeFS . append ( '<div><label>AMM name: </label><input id="ammName" type="text"/></div>' ) ;
nodeFS . append ( '<div><label>Username: </label><input type="text"></div>' ) ;
nodeFS . append ( '<div><label>Password: </label><input type="text"></div>' ) ;
nodeFS . append ( '<div><label>AMM IP: </label><input id="ammIp" type="text"/></div>' ) ;
2011-09-21 07:11:31 +00:00
break ;
case 'blade' :
2011-12-01 05:58:22 +00:00
nodeFS . append ( '<div><label>Blade name: </label><input id="bladeName" type="text"/></input></div>' ) ;
nodeFS . append ( '<div><label>Blade group: </label><input id="bladeGroup" type="text"/></input></div>' ) ;
nodeFS . append ( '<div><label>Blade ID: </label><input id="bladeId" type="text"/t></div>' ) ;
nodeFS . append ( '<div><label>Blade series: </label>JS <input type="radio" name="series" value="js"/> LS<input type="radio" name="series" value="ls"/></div>' ) ;
nodeFS . append ( '<div><label style="vertical-align: middle;">Blade MPA: </label><select id="mpaSelect"></select><div>' ) ;
2011-09-21 07:11:31 +00:00
break ;
case 'scanmm' :
2011-12-01 05:58:22 +00:00
nodeFS . append ( '<div><label style="vertical-align: middle;">Blade MPA: </label><select id="mpaSelect"></select></div>' ) ;
2011-09-21 07:11:31 +00:00
break ;
}
2011-12-01 05:58:22 +00:00
// Change dialog width
2011-09-21 07:11:31 +00:00
if ( $ ( this ) . val ( ) == 'scanmm' ) {
2011-12-01 05:58:22 +00:00
$ ( '#addBladeCenter' ) . dialog ( 'option' , 'width' , '650' ) ;
2011-09-21 07:11:31 +00:00
} else {
2011-12-01 05:58:22 +00:00
$ ( '#addBladeCenter' ) . dialog ( 'option' , 'width' , '400' ) ;
2011-09-21 07:11:31 +00:00
}
2011-12-01 05:58:22 +00:00
// If MM node, return directly
2011-09-21 07:11:31 +00:00
if ( $ ( this ) . val ( ) == 'mm' ) {
return ;
}
2011-12-01 05:58:22 +00:00
// Get all MM nodes from server side
nodeFS . find ( 'select:eq(0)' ) . after ( createLoader ( ) ) ;
2011-08-24 15:09:28 +00:00
2011-09-21 07:11:31 +00:00
$ . ajax ( {
url : 'lib/cmd.php' ,
dataType : 'json' ,
data : {
cmd : 'lsdef' ,
tgt : '' ,
args : '-t;node;-w;mgt==blade;-w;id==0' ,
2011-12-01 05:58:22 +00:00
msg : addMethod
2011-09-21 07:11:31 +00:00
} ,
success : function ( data ) {
var position = 0 ;
var tempStr = '' ;
var options = '' ;
2011-12-01 05:58:22 +00:00
// Remove the loading image
nodeFS . find ( 'img' ) . remove ( ) ;
2011-08-24 15:09:28 +00:00
2011-12-01 05:58:22 +00:00
// Check return result
if ( data . rsp . length < 1 ) {
$ ( '#addBladeCenter' ) . prepend ( createWarnBar ( 'Please define MM node first!' ) ) ;
2011-09-21 07:11:31 +00:00
return ;
}
2011-08-24 15:09:28 +00:00
2011-12-01 05:58:22 +00:00
// Add all MM nodes to select
2011-09-21 07:11:31 +00:00
for ( var i in data . rsp ) {
tempStr = data . rsp [ i ] ;
position = tempStr . indexOf ( ' ' ) ;
tempStr = tempStr . substring ( 0 , position ) ;
options += '<option value="' + tempStr + '">' + tempStr + '</option>' ;
}
2011-08-24 15:09:28 +00:00
2011-12-01 05:58:22 +00:00
nodeFS . find ( 'select:eq(0)' ) . append ( options ) ;
2011-09-21 07:11:31 +00:00
2011-12-01 05:58:22 +00:00
// If adding node by rscan, we should add the scan button
if ( data . msg != 'scanmm' ) {
2011-09-21 07:11:31 +00:00
return ;
}
2011-12-01 05:58:22 +00:00
var scan = createButton ( 'Scan' ) ;
scan . bind ( 'click' , function ( ) {
var mmName = nodeFS . find ( 'select:eq(0)' ) . val ( ) ;
nodeFS . prepend ( createLoader ( ) ) ;
$ ( '#nodeAttrs button' ) . attr ( 'disabled' , 'disabled' ) ;
2011-09-21 07:11:31 +00:00
$ . ajax ( {
url : 'lib/cmd.php' ,
dataType : 'json' ,
data : {
cmd : 'rscan' ,
2011-12-01 05:58:22 +00:00
tgt : mmName ,
2011-09-21 07:11:31 +00:00
args : '' ,
msg : ''
} ,
success : function ( data ) {
showScanMmResult ( data . rsp [ 0 ] ) ;
}
} ) ;
} ) ;
2011-12-01 05:58:22 +00:00
nodeFS . find ( 'select:eq(0)' ) . after ( scan ) ;
2011-09-21 07:11:31 +00:00
}
} ) ;
} ) ;
2011-08-24 15:09:28 +00:00
2011-12-01 05:58:22 +00:00
addNodeForm . dialog ( {
2011-08-24 15:09:28 +00:00
modal : true ,
width : 400 ,
2011-09-28 21:38:12 +00:00
title : 'Add node' ,
2011-08-24 15:09:28 +00:00
open : function ( event , ui ) {
2011-09-21 07:11:31 +00:00
$ ( ".ui-dialog-titlebar-close" ) . hide ( ) ;
2011-08-24 15:09:28 +00:00
} ,
2011-12-01 05:58:22 +00:00
close : function ( ) {
$ ( this ) . remove ( ) ;
} ,
2011-08-24 15:09:28 +00:00
buttons : {
'Ok' : function ( ) {
2011-12-01 05:58:22 +00:00
// Remove any existing warnings
$ ( '#addBladeCenter .ui-state-error' ) . remove ( ) ;
var addMethod = $ ( '#typeSelect' ) . val ( ) ;
2011-08-24 15:09:28 +00:00
2011-09-21 07:11:31 +00:00
if ( addMethod == "mm" ) {
2011-08-24 15:09:28 +00:00
addMmNode ( ) ;
2011-12-01 05:58:22 +00:00
} else if ( addMethod == "blade" ) {
2011-08-24 15:09:28 +00:00
addBladeNode ( ) ;
2011-12-01 05:58:22 +00:00
} else {
2011-09-21 07:11:31 +00:00
addMmScanNode ( ) ;
}
2011-08-24 15:09:28 +00:00
} ,
'Cancel' : function ( ) {
$ ( this ) . remove ( ) ;
}
}
} ) ;
2011-09-21 07:11:31 +00:00
2011-12-01 05:58:22 +00:00
addNodeForm . find ( '#typeSelect' ) . trigger ( 'change' ) ;
2011-08-24 15:09:28 +00:00
} ;
2011-09-12 19:47:26 +00:00
/ * *
* Add AMM node
*
* @ return Nothing
* /
2011-08-24 15:09:28 +00:00
function addMmNode ( ) {
2011-09-21 07:11:31 +00:00
var argsTmp = '' ;
2011-12-01 05:58:22 +00:00
var errorMsg = '' ;
2011-08-24 15:09:28 +00:00
2011-12-01 05:58:22 +00:00
$ ( '#addBladeCenter input' ) . each ( function ( ) {
if ( ! $ ( this ) . val ( ) ) {
errorMsg = 'Please provide a value for each missing field.' ;
2011-09-21 07:11:31 +00:00
}
2011-12-01 05:58:22 +00:00
2011-09-21 07:11:31 +00:00
argsTmp += $ ( this ) . val ( ) + ',' ;
} ) ;
2011-12-01 05:58:22 +00:00
if ( errorMsg ) {
// Add warning message
$ ( '#addBladeCenter' ) . prepend ( createWarnBar ( errorMsg ) ) ;
2011-09-21 07:11:31 +00:00
return ;
}
argsTmp = argsTmp . substring ( 0 , argsTmp . length - 1 ) ;
2011-12-01 05:58:22 +00:00
// Add the loader
$ ( '#addBladeCenter' ) . prepend ( createLoader ( ) ) ;
2011-08-24 15:09:28 +00:00
$ ( '.ui-dialog-buttonpane .ui-button' ) . attr ( 'disabled' , true ) ;
$ . ajax ( {
url : 'lib/cmd.php' ,
dataType : 'json' ,
data : {
2011-09-21 07:11:31 +00:00
cmd : 'webrun' ,
2011-08-24 15:09:28 +00:00
tgt : '' ,
2011-09-21 07:11:31 +00:00
args : 'addnode;mm;' + argsTmp ,
2011-08-24 15:09:28 +00:00
msg : ''
} ,
success : function ( data ) {
2011-12-01 05:58:22 +00:00
$ ( '#addBladeCenter' ) . find ( 'img' ) . remove ( ) ;
var info = createInfoBar ( 'Successfully added MM node.' ) ;
$ ( '#addBladeCenter' ) . prepend ( info ) ;
$ ( '#addBladeCenter' ) . dialog ( "option" , "buttons" , {
"Close" : function ( ) {
$ ( '#addBladeCenter' ) . dialog ( 'close' ) ;
2011-09-21 07:11:31 +00:00
$ ( '.selectgroup' ) . trigger ( 'click' ) ;
2011-08-24 15:09:28 +00:00
}
} ) ;
}
} ) ;
}
2011-09-12 19:47:26 +00:00
/ * *
* Add blade node
*
* @ return Nothing
* /
2011-08-24 15:09:28 +00:00
function addBladeNode ( ) {
2011-12-01 05:58:22 +00:00
var name = $ ( '#addBladeCenter #bladeName' ) . val ( ) ;
var group = $ ( '#addBladeCenter #bladeGroup' ) . val ( ) ;
var id = $ ( '#addBladeCenter #bladeId' ) . val ( ) ;
var series = $ ( "#addBladeCenter #bladeNode :checked" ) . val ( ) ;
var mpa = $ ( '#addBladeCenter #mpaSelect' ) . val ( ) ;
2011-09-21 07:11:31 +00:00
var argsTmp = '-t;node;-o;' + name + ';id=' + id +
';nodetype=osi;groups=' + group + ';mgt=blade;mpa=' + mpa + ';serialflow=hard' ;
2011-08-24 15:09:28 +00:00
if ( series != 'js' ) {
2011-09-21 07:11:31 +00:00
argsTmp += ';serialspeed=19200;serialport=1' ;
2011-08-24 15:09:28 +00:00
}
2011-09-21 07:11:31 +00:00
if ( ( ! name ) || ( ! group ) || ( ! id ) || ( ! mpa ) ) {
2011-12-01 05:58:22 +00:00
$ ( '#addBladeCenter' ) . prepend ( createWarnBar ( "Please provide a value for each missing field." ) ) ;
2011-08-24 15:09:28 +00:00
return ;
}
2011-12-01 05:58:22 +00:00
// Add loader and disable buttons
$ ( '#addBladeCenter' ) . prepend ( createLoader ( ) ) ;
2011-08-24 15:09:28 +00:00
$ ( '.ui-dialog-buttonpane .ui-button' ) . attr ( 'disabled' , true ) ;
$ . ajax ( {
url : 'lib/cmd.php' ,
dataType : 'json' ,
data : {
cmd : 'chdef' ,
tgt : '' ,
2011-09-21 07:11:31 +00:00
args : argsTmp ,
2011-08-24 15:09:28 +00:00
msg : ''
} ,
success : function ( data ) {
2011-12-01 05:58:22 +00:00
$ ( '#addBladeCenter' ) . find ( 'img' ) . remove ( ) ;
2011-09-21 07:11:31 +00:00
var messages = data . rsp ;
var notes = "" ;
2011-12-01 05:58:22 +00:00
for ( var i = 0 ; i < messages . length ; i ++ ) {
notes += messages [ i ] + " " ;
2011-08-24 15:09:28 +00:00
}
2011-09-21 07:11:31 +00:00
2011-12-01 05:58:22 +00:00
$ ( '#addBladeCenter' ) . prepend ( createInfoBar ( notes ) ) ;
$ ( '#addBladeCenter' ) . dialog ( "option" , "buttons" , {
"Close" : function ( ) {
$ ( '#addBladeCenter' ) . remove ( ) ;
2011-08-24 15:09:28 +00:00
}
} ) ;
}
} ) ;
2011-09-21 07:11:31 +00:00
}
2011-08-24 15:09:28 +00:00
2011-12-01 05:58:22 +00:00
/ * *
* Show rscan results
*
* @ param rscanResults
* Results from rscan of blade MPA
* @ return Nothing
* /
function showScanMmResult ( rscanResults ) {
var results = $ ( '<div style="height: 300px; overflow: auto;" id="scan_results"></div>' ) ;
var rscanTable = $ ( '<table></table>' ) ;
var regex = /\S+/g ;
2011-09-21 07:11:31 +00:00
var line = '' ;
2011-12-01 05:58:22 +00:00
var column = 0 ;
2011-09-21 07:11:31 +00:00
2011-12-01 05:58:22 +00:00
$ ( '#nodeAttrs #scan_results' ) . remove ( ) ;
$ ( '#nodeAttrs img' ) . remove ( ) ;
$ ( '#nodeAttrs button' ) . attr ( 'disabled' , '' ) ;
if ( ! rscanResults ) {
2011-09-21 07:11:31 +00:00
return ;
}
2011-12-01 05:58:22 +00:00
var rows = rscanResults . split ( "\n" ) ;
2011-09-21 07:11:31 +00:00
if ( rows . length < 2 ) {
2011-12-01 05:58:22 +00:00
results . append ( createWarnBar ( rows [ 0 ] ) ) ;
$ ( '#nodeAttrs' ) . append ( results ) ;
2011-09-21 07:11:31 +00:00
return ;
}
2011-12-01 05:58:22 +00:00
// Add the table header
var fields = rows [ 0 ] . match ( regex ) ;
column = fields . length ;
row = '<tr><td><input type="checkbox" onclick="selectAllRscanNode(this)"></td>' ;
2011-09-21 07:11:31 +00:00
for ( var i in fields ) {
2011-12-01 05:58:22 +00:00
row += '<td>' + fields [ i ] + '</td>' ;
2011-09-21 07:11:31 +00:00
}
2011-12-01 05:58:22 +00:00
rscanTable . append ( row ) ;
2011-09-21 07:11:31 +00:00
2011-12-01 05:58:22 +00:00
// Add the tbody
for ( var i = 1 ; i < rows . length ; i ++ ) {
2011-09-21 07:11:31 +00:00
line = rows [ i ] ;
2011-12-01 05:58:22 +00:00
if ( ! line ) {
2011-09-21 07:11:31 +00:00
continue ;
}
2011-12-01 05:58:22 +00:00
var fields = line . match ( regex ) ;
2011-09-21 07:11:31 +00:00
if ( 'mm' == fields [ 0 ] ) {
continue ;
}
2011-12-01 05:58:22 +00:00
row = '<tr><td><input type="checkbox" name="' + fields [ 1 ] + '"></td>' ;
2011-09-21 07:11:31 +00:00
2011-12-01 05:58:22 +00:00
for ( var j = 0 ; j < column ; j ++ ) {
row += '<td>' ;
if ( fields [ j ] ) {
if ( j == 1 ) {
row += '<input value="' + fields [ j ] + '">' ;
} else {
row += fields [ j ] ;
2011-09-23 06:22:37 +00:00
}
2011-09-21 07:11:31 +00:00
}
2011-12-01 05:58:22 +00:00
row += '</td>' ;
2011-09-21 07:11:31 +00:00
}
2011-12-01 05:58:22 +00:00
row += '</tr>' ;
rscanTable . append ( row ) ;
2011-09-21 07:11:31 +00:00
}
2011-12-01 05:58:22 +00:00
results . append ( rscanTable ) ;
$ ( '#nodeAttrs' ) . prepend ( results ) ;
2011-08-24 15:09:28 +00:00
}
2011-09-21 07:11:31 +00:00
function addMmScanNode ( ) {
2011-12-01 05:58:22 +00:00
// Get the MM name
var mmName = $ ( '#nodeAttrs select' ) . val ( ) ;
var nodeName = '' ;
$ ( '#nodeAttrs :checked' ) . each ( function ( ) {
if ( $ ( this ) . attr ( 'name' ) ) {
nodeName += $ ( this ) . attr ( 'name' ) + ',' ;
nodeName += $ ( this ) . parents ( 'tr' ) . find ( 'input' ) . eq ( 1 ) . val ( ) + ',' ;
2011-09-21 07:11:31 +00:00
}
} ) ;
2011-12-01 05:58:22 +00:00
if ( ! nodeName ) {
2011-09-21 07:11:31 +00:00
alert ( 'You should select nodes first!' ) ;
return ;
}
2011-12-01 05:58:22 +00:00
// Disabled the button
2011-09-21 07:11:31 +00:00
$ ( '.ui-dialog-buttonpane button' ) . attr ( 'disabled' , 'disabled' ) ;
2011-12-01 05:58:22 +00:00
nodeName = nodeName . substr ( 0 , nodeName . length - 1 ) ;
$ ( '#nodeAttrs' ) . append ( createLoader ( ) ) ;
// Send the add request
2011-09-21 07:11:31 +00:00
$ . ajax ( {
url : 'lib/cmd.php' ,
dataType : 'json' ,
data : {
cmd : 'webrun' ,
tgt : '' ,
2011-12-01 05:58:22 +00:00
args : 'addnode;node;' + mmName + ',' + nodeName ,
2011-09-21 07:11:31 +00:00
msg : ''
} ,
success : function ( data ) {
2011-12-01 05:58:22 +00:00
// Refresh the area on the right side
$ ( '#addBladeCenter' ) . dialog ( 'close' ) ;
2011-09-21 07:11:31 +00:00
$ ( '.selectgroup' ) . trigger ( 'click' ) ;
}
} ) ;
}
2011-12-01 05:58:22 +00:00
2011-08-24 15:09:28 +00:00
/ * *
* Create provision existing node division
*
* @ param inst
* Provision tab instance
* @ return Provision existing node division
* /
function createBladeProvisionExisting ( inst ) {
// Create provision existing division
var provExisting = $ ( '<div></div>' ) ;
2011-12-19 05:03:27 +00:00
// Create VM fieldset
var nodeFS = $ ( '<fieldset></fieldset>' ) ;
var nodeLegend = $ ( '<legend>Node</legend>' ) ;
nodeFS . append ( nodeLegend ) ;
var nodeAttr = $ ( '<div style="display: inline-table; vertical-align: middle; width: 85%; margin-left: 10px;"></div>' ) ;
nodeFS . append ( $ ( '<div style="display: inline-table; vertical-align: middle;"><img src="images/provision/computer.png"></img></div>' ) ) ;
nodeFS . append ( nodeAttr ) ;
// Create image fieldset
var imgFS = $ ( '<fieldset></fieldset>' ) ;
var imgLegend = $ ( '<legend>Image</legend>' ) ;
imgFS . append ( imgLegend ) ;
var imgAttr = $ ( '<div style="display: inline-table; vertical-align: middle;"></div>' ) ;
imgFS . append ( $ ( '<div style="display: inline-table; vertical-align: middle;"><img src="images/provision/operating_system.png"></img></div>' ) ) ;
imgFS . append ( imgAttr ) ;
provExisting . append ( nodeFS , imgFS ) ;
2011-08-24 15:09:28 +00:00
// Create group input
var group = $ ( '<div></div>' ) ;
var groupLabel = $ ( '<label for="provType">Group:</label>' ) ;
group . append ( groupLabel ) ;
// Turn on auto complete for group
var dTableDivId = 'bladeNodesDatatableDIV' + inst ; // Division ID where nodes datatable will be appended
var groupNames = $ . cookie ( 'groups' ) ;
if ( groupNames ) {
// Split group names into an array
var tmp = groupNames . split ( ',' ) ;
// Create drop down for groups
var groupSelect = $ ( '<select></select>' ) ;
groupSelect . append ( '<option></option>' ) ;
for ( var i in tmp ) {
// Add group into drop down
var opt = $ ( '<option value="' + tmp [ i ] + '">' + tmp [ i ] + '</option>' ) ;
groupSelect . append ( opt ) ;
}
group . append ( groupSelect ) ;
// Create node datatable
groupSelect . change ( function ( ) {
// Get group selected
var thisGroup = $ ( this ) . val ( ) ;
// If a valid group is selected
if ( thisGroup ) {
createNodesDatatable ( thisGroup , dTableDivId ) ;
} // End of if (thisGroup)
} ) ;
} else {
// If no groups are cookied
var groupInput = $ ( '<input type="text" name="group"/>' ) ;
group . append ( groupInput ) ;
}
2011-12-19 05:03:27 +00:00
nodeAttr . append ( group ) ;
2011-08-24 15:09:28 +00:00
// Create node input
var node = $ ( '<div></div>' ) ;
var nodeLabel = $ ( '<label for="nodeName">Nodes:</label>' ) ;
var nodeDatatable = $ ( '<div id="' + dTableDivId + '" style="display: inline-block; max-width: 800px;"><p>Select a group to view its nodes</p></div>' ) ;
node . append ( nodeLabel ) ;
node . append ( nodeDatatable ) ;
2011-12-19 05:03:27 +00:00
nodeAttr . append ( node ) ;
2011-08-24 15:09:28 +00:00
// Create boot method drop down
var method = $ ( '<div></div>' ) ;
var methodLabel = $ ( '<label for="method">Boot method:</label>' ) ;
var methodSelect = $ ( '<select id="bootMethod" name="bootMethod"></select>' ) ;
methodSelect . append ( '<option value=""></option>'
+ '<option value="boot">boot</option>'
+ '<option value="install">install</option>'
+ '<option value="iscsiboot">iscsiboot</option>'
+ '<option value="netboot">netboot</option>'
+ '<option value="statelite">statelite</option>'
) ;
method . append ( methodLabel ) ;
method . append ( methodSelect ) ;
2011-12-19 05:03:27 +00:00
imgAttr . append ( method ) ;
2011-08-24 15:09:28 +00:00
// Create operating system input
var os = $ ( '<div></div>' ) ;
var osLabel = $ ( '<label for="os">Operating system:</label>' ) ;
var osInput = $ ( '<input type="text" name="os"/>' ) ;
osInput . one ( 'focus' , function ( ) {
var tmp = $ . cookie ( 'osvers' ) ;
if ( tmp ) {
// Turn on auto complete
$ ( this ) . autocomplete ( {
source : tmp . split ( ',' )
} ) ;
}
} ) ;
os . append ( osLabel ) ;
os . append ( osInput ) ;
2011-12-19 05:03:27 +00:00
imgAttr . append ( os ) ;
2011-08-24 15:09:28 +00:00
// Create architecture input
var arch = $ ( '<div></div>' ) ;
var archLabel = $ ( '<label for="arch">Architecture:</label>' ) ;
var archInput = $ ( '<input type="text" name="arch"/>' ) ;
archInput . one ( 'focus' , function ( ) {
var tmp = $ . cookie ( 'osarchs' ) ;
if ( tmp ) {
// Turn on auto complete
$ ( this ) . autocomplete ( {
source : tmp . split ( ',' )
} ) ;
}
} ) ;
arch . append ( archLabel ) ;
arch . append ( archInput ) ;
2011-12-19 05:03:27 +00:00
imgAttr . append ( arch ) ;
2011-08-24 15:09:28 +00:00
// Create profile input
var profile = $ ( '<div></div>' ) ;
var profileLabel = $ ( '<label for="profile">Profile:</label>' ) ;
var profileInput = $ ( '<input type="text" name="profile"/>' ) ;
profileInput . one ( 'focus' , function ( ) {
var tmp = $ . cookie ( 'profiles' ) ;
if ( tmp ) {
// Turn on auto complete
$ ( this ) . autocomplete ( {
source : tmp . split ( ',' )
} ) ;
}
} ) ;
profile . append ( profileLabel ) ;
profile . append ( profileInput ) ;
2011-12-19 05:03:27 +00:00
imgAttr . append ( profile ) ;
2011-08-24 15:09:28 +00:00
/ * *
* Provision existing
* /
var provisionBtn = createButton ( 'Provision' ) ;
provisionBtn . bind ( 'click' , function ( event ) {
// Remove any warning messages
$ ( this ) . parents ( '.ui-tabs-panel' ) . find ( '.ui-state-error' ) . remove ( ) ;
var ready = true ;
var errorMessage = '' ;
// Get provision tab ID
var thisTabId = 'bladeProvisionTab' + inst ;
// Get nodes that were checked
var dTableId = 'bladeNodesDatatable' + inst ;
var tgts = getNodesChecked ( dTableId ) ;
if ( ! tgts ) {
errorMessage += 'You need to select a node. ' ;
ready = false ;
}
// Check booth method
var boot = $ ( '#' + thisTabId + ' select[name=bootMethod]' ) ;
if ( ! boot . val ( ) ) {
errorMessage += 'You need to select a boot method. ' ;
boot . css ( 'border' , 'solid #FF0000 1px' ) ;
ready = false ;
} else {
boot . css ( 'border' , 'solid #BDBDBD 1px' ) ;
}
// Check operating system image
var os = $ ( '#' + thisTabId + ' input[name=os]' ) ;
if ( ! os . val ( ) ) {
errorMessage += 'You need to select a operating system image. ' ;
os . css ( 'border' , 'solid #FF0000 1px' ) ;
ready = false ;
} else {
os . css ( 'border' , 'solid #BDBDBD 1px' ) ;
}
// Check architecture
var arch = $ ( '#' + thisTabId + ' input[name=arch]' ) ;
if ( ! arch . val ( ) ) {
errorMessage += 'You need to select an architecture. ' ;
arch . css ( 'border' , 'solid #FF0000 1px' ) ;
ready = false ;
} else {
arch . css ( 'border' , 'solid #BDBDBD 1px' ) ;
}
// Check profile
var profile = $ ( '#' + thisTabId + ' input[name=profile]' ) ;
if ( ! profile . val ( ) ) {
errorMessage += 'You need to select a profile. ' ;
profile . css ( 'border' , 'solid #FF0000 1px' ) ;
ready = false ;
} else {
profile . css ( 'border' , 'solid #BDBDBD 1px' ) ;
}
// If all inputs are valid, ready to provision
if ( ready ) {
// Disable provision button
$ ( this ) . attr ( 'disabled' , 'true' ) ;
// Prepend status bar
var statBar = createStatusBar ( 'bladeProvisionStatBar' + inst ) ;
statBar . append ( createLoader ( '' ) ) ;
statBar . prependTo ( $ ( '#' + thisTabId ) ) ;
// Disable all inputs
var inputs = $ ( '#' + thisTabId + ' input' ) ;
inputs . attr ( 'disabled' , 'disabled' ) ;
// Disable all selects
var selects = $ ( '#' + thisTabId + ' select' ) ;
selects . attr ( 'disabled' , 'disabled' ) ;
/ * *
* ( 1 ) Set operating system
* /
$ . ajax ( {
url : 'lib/cmd.php' ,
dataType : 'json' ,
data : {
cmd : 'nodeadd' ,
tgt : '' ,
2011-08-24 16:08:49 +00:00
args : tgts + ';noderes.netboot=xnba;nodetype.os=' + os . val ( ) + ';nodetype.arch=' + arch . val ( ) + ';nodetype.profile=' + profile . val ( ) + ';nodetype.provmethod=' + boot . val ( ) ,
2011-08-24 15:09:28 +00:00
msg : 'cmd=nodeadd;out=' + inst
} ,
success : updateBladeProvisionExistingStatus
} ) ;
} else {
// Show warning message
var warn = createWarnBar ( errorMessage ) ;
warn . prependTo ( $ ( this ) . parent ( ) . parent ( ) ) ;
}
} ) ;
provExisting . append ( provisionBtn ) ;
return provExisting ;
}
/ * *
* Update the provision existing node status
*
* @ param data
* Data returned from HTTP request
* @ return Nothing
* /
function updateBladeProvisionExistingStatus ( data ) {
// Get ajax response
var rsp = data . rsp ;
var args = data . msg . split ( ';' ) ;
// Get command invoked
var cmd = args [ 0 ] . replace ( 'cmd=' , '' ) ;
// Get provision tab instance
var inst = args [ 1 ] . replace ( 'out=' , '' ) ;
// Get provision tab and status bar ID
var statBarId = 'bladeProvisionStatBar' + inst ;
var tabId = 'bladeProvisionTab' + inst ;
/ * *
* ( 2 ) Remote install
* /
if ( cmd == 'nodeadd' ) {
// Write ajax response to status bar
var prg = writeRsp ( rsp , '' ) ;
$ ( '#' + statBarId ) . find ( 'div' ) . append ( prg ) ;
// Get parameters
var os = $ ( '#' + tabId + ' input[name="os"]' ) . val ( ) ;
var profile = $ ( '#' + tabId + ' input[name="profile"]' ) . val ( ) ;
var arch = $ ( '#' + tabId + ' input[name="arch"]' ) . val ( ) ;
// Get nodes that were checked
var dTableId = 'bladeNodesDatatable' + inst ;
var tgts = getNodesChecked ( dTableId ) ;
// Begin installation
$ . ajax ( {
url : 'lib/cmd.php' ,
dataType : 'json' ,
data : {
cmd : 'rbootseq' ,
tgt : tgts ,
args : 'net,hd' ,
msg : 'cmd=rbootseq;out=' + inst
} ,
success : updateBladeProvisionExistingStatus
} ) ;
}
/ * *
* ( 3 ) Prepare node for boot
* /
if ( cmd == 'nodeadd' ) {
// Get provision method
var bootMethod = $ ( '#' + tabId + ' select[name=bootMethod]' ) . val ( ) ;
// Get nodes that were checked
var dTableId = 'bladeNodesDatatable' + inst ;
var tgts = getNodesChecked ( dTableId ) ;
// Prepare node for boot
$ . ajax ( {
url : 'lib/cmd.php' ,
dataType : 'json' ,
data : {
cmd : 'nodeset' ,
tgt : tgts ,
args : bootMethod ,
msg : 'cmd=nodeset;out=' + inst
} ,
success : updateBladeProvisionExistingStatus
} ) ;
}
/ * *
* ( 4 ) Power on node
* /
if ( cmd == 'nodeset' ) {
var prg = writeRsp ( rsp , '' ) ;
$ ( '#' + statBarId ) . find ( 'div' ) . append ( prg ) ;
// Get nodes that were checked
var dTableId = 'bladeNodesDatatable' + inst ;
var tgts = getNodesChecked ( dTableId ) ;
// Prepare node for boot
$ . ajax ( {
url : 'lib/cmd.php' ,
dataType : 'json' ,
data : {
cmd : 'rpower' ,
tgt : tgts ,
args : 'boot' ,
msg : 'cmd=rpower;out=' + inst
} ,
success : updateBladeProvisionExistingStatus
} ) ;
}
/ * *
* ( 5 ) Done
* /
else if ( cmd == 'rpower' ) {
// Write ajax response to status bar
var prg = writeRsp ( rsp , '' ) ;
$ ( '#' + statBarId ) . find ( 'div' ) . append ( prg ) ;
$ ( '#' + statBarId ) . find ( 'img' ) . remove ( ) ;
// If installation was successful
if ( prg . html ( ) . indexOf ( 'Error' ) == - 1 ) {
$ ( '#' + statBarId ) . find ( 'div' ) . append ( '<pre>It will take several minutes before the nodes are up and ready. Use rcons to monitor the status of the install.</pre>' ) ;
}
}
}