/** * Execute when the DOM is fully loaded */ $(document).ready(function() { // Load utility scripts }); /** * Constructor * * @return Nothing */ var hmcPlugin = function() { }; /** * Load node inventory * * @param data * Data from HTTP request * @return Nothing */ hmcPlugin.prototype.loadInventory = function(data) { // Get arguments var args = data.msg.split(','); // Get tab ID var tabId = args[0].replace('out=', ''); // Get node 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 = $('
'); // Loop through each line var fieldSet, legend, oList, item; for (var k = 0; k < inv.length; k++) { // Remove node name in front var str = inv[k].replace(node + ': ', ''); str = jQuery.trim(str); // If string is a header if (str.indexOf('I/O Bus Information') > -1 || str.indexOf('Machine Configuration Info') > -1) { // Create a fieldset fieldSet = $('
'); legend = $('' + str + ''); fieldSet.append(legend); oList = $('
    '); fieldSet.append(oList); invDiv.append(fieldSet); } else { // If no fieldset is defined if (!fieldSet) { // Define general fieldset fieldSet = $('
    '); legend = $('General'); fieldSet.append(legend); oList = $('
      '); fieldSet.append(oList); invDiv.append(fieldSet); } // Append the string to a list item = $('
    1. '); item.append(str); oList.append(item); } } // Append to inventory form $('#' + tabId).append(invDiv); }; /** * Load clone page * * @param node * Source node to clone * @return Nothing */ hmcPlugin.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 status bar and hide it var statBarId = node + 'CloneStatusBar'; var statBar = $('
      ').hide(); // Create info bar var infoBar = createInfoBar('Under construction'); // Create clone form var cloneForm = $('
      '); cloneForm.append(statBar); 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 */ hmcPlugin.prototype.loadProvisionPage = function(tabId) { // Get OS image names if (!$.cookie('imagenames')) { $.ajax({ url : 'lib/cmd.php', dataType : 'json', data : { cmd : 'tabdump', tgt : '', args : 'osimage', msg : '' }, success : setOSImageCookies }); } // Get groups if (!$.cookie('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('hmcProvisionTab', ''); // Create provision form var provForm = $('
      '); // Create status bar var statBar = createStatusBar('statBar').hide(); provForm.append(statBar); // Create loader var loader = createLoader('loader').hide(); statBar.find('div').append(loader); // Create info bar var infoBar = createInfoBar('Provision a node on System p.'); provForm.append(infoBar); // Append to provision tab $('#' + tabId).append(provForm); // Create provision type drop down provForm.append('
      '); /** * Create provision existing node division */ provForm.append(createHmcProvisionExisting(inst)); var hmcProvisionBtn = createButton('Provision'); hmcProvisionBtn.bind('click', function(event) { // Remove any warning messages var tempTab = $(this).parent().parent(); tempTab.find('.ui-state-error').remove(); var ready = true; var errMsg = ''; var tempNodes = ''; // Get nodes that were checked tempNodes = getCheckedByObj(tempTab.find('table')); if ('' == tempNodes) { errMsg += 'You need to select a node.
      '; ready = false; } else { tempNodes = tempNodes.substr(0, tempNodes.length - 1); } // If all inputs are valid, ready to provision if (ready) { // Disable provision button $(this).attr('disabled', 'true'); // Show loader tempTab.find('#statBar').show(); tempTab.find('#loader').show(); // Disable all selects, input and checkbox tempTab.find('input').attr('disabled', 'disabled'); // Get operating system image var os = tempTab.find('#osname').val(); var arch = tempTab.find('#arch').val(); var profile = tempTab.find('#pro').val(); /** * (1) Set operating system */ $.ajax({ url : 'lib/cmd.php', dataType : 'json', data : { cmd : 'nodeadd', tgt : '', args : tempNodes + ';noderes.netboot=yaboot;nodetype.os=' + os + ';nodetype.arch=' + arch + ';nodetype.profile=' + profile, msg : 'cmd=nodeadd;out=' + tempTab.attr('id') }, success : pProvisionExisting }); } else { // Show warning message var warn = createWarnBar(errMsg); warn.prependTo(tempTab); } }); provForm.append(hmcProvisionBtn); // Update the node table on group select provForm.find('#groupname').bind('change', function() { var groupName = $(this).val(); var nodeArea = $('#hmcSelectNodesTable' + inst); nodeArea.empty(); if (!groupName) { nodeArea.html('Select a group to view its nodes'); return; } nodeArea.append(createLoader()); createNodesArea(groupName, 'hmcSelectNodesTable' + inst); }); }; /** * Load resources * * @return Nothing */ hmcPlugin.prototype.loadResources = function() { // Get resource tab ID var tabId = 'hmcResourceTab'; // Remove loader $('#' + tabId).find('img').remove(); // Create info bar var infoBar = createInfoBar('Under construction'); // Create resource form var resrcForm = $('
      '); resrcForm.append(infoBar); $('#' + tabId).append(resrcForm); }; /** * Add node range * * @return Nothing */ hmcPlugin.prototype.addNode = function() { openDialog('info', 'Under construction'); }; /** * Create hmc provision existing form * * @return: Form content */ function createHmcProvisionExisting(inst) { // Create the group area var strGroup = '
      '; var groupNames = $.cookie('groups'); if (groupNames) { strGroup += ''; } else { strGroup += ''; } strGroup += '
      '; // Create nodes area var strNodes = '
      Select a group to view its nodes
      '; // Create boot method var strBoot = '
      '; // Create operating system var strOs = '
      '; var osName = $.cookie('osvers'); if (osName) { strOs += ''; } else { strOs += ''; } strOs += '
      '; // Create architecture var strArch = '
      '; var archName = $.cookie('osarchs'); if ('' != archName) { strArch += ''; } else { strArch += ''; } strArch += '
      '; // Create profile var strPro = '
      '; var proName = $.cookie('profiles'); if ('' != proName) { strPro += ''; } else { strPro += ''; } strPro += '
      '; var strRet = strGroup + strNodes + strBoot + strOs + strArch + strPro; return strRet; } /** * Refresh the nodes area base on group selected * * @return Nothing */ function createNodesArea(groupName, areaId) { // Get group nodes $.ajax({ url : 'lib/cmd.php', dataType : 'json', data : { cmd : 'nodels', tgt : groupName, args : '', msg : areaId }, /** * Create nodes datatable * * @param data * Data returned from HTTP request * @return Nothing */ success : function(data) { var areaObj = $('#' + data.msg); var nodes = data.rsp; var index; var showStr = ''; showStr += ''; for (index in nodes) { var node = nodes[index][0]; if ('' == node) { continue; } showStr += ''; } showStr += '
      Node
      ' + node + '
      '; areaObj.empty().append(showStr); if (index > 10) { areaObj.css('height', '300px'); } else { areaObj.css('height', 'auto'); } } // End of function(data) }); } /** * Provision for existing system p node * * @return Nothing */ function pProvisionExisting(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 tabId = args[1].replace('out=', ''); // Get tab obj var tempTab = $('#' + tabId); /** * (2) Prepare node for boot */ if (cmd == 'nodeadd') { // Get operating system var bootMethod = tempTab.find('#boot').val(); // Get nodes that were checked var tgts = getCheckedByObj(tempTab.find('table')); // Prepare node for boot $.ajax({ url : 'lib/cmd.php', dataType : 'json', data : { cmd : 'nodeset', tgt : tgts, args : bootMethod, msg : 'cmd=nodeset;out=' + tabId }, success : pProvisionExisting }); } /** * (3) Boot node from network */ else if (cmd == 'nodeset') { // Write ajax response to status bar var prg = writeRsp(rsp, ''); tempTab.find('#statBar div').append(prg); // If there was an error, do not continue if (prg.html().indexOf('Error') > -1) { tempTab.find('#loader').remove(); return; } // Get nodes that were checked var tgts = getCheckedByObj(tempTab.find('table')); // Boot node from network $.ajax({ url : 'lib/cmd.php', dataType : 'json', data : { cmd : 'rnetboot', tgt : tgts, args : '', msg : 'cmd=rnetboot;out=' + tabId }, success : pProvisionExisting }); } /** * (4) Done */ else if (cmd == 'rnetboot') { // Write ajax response to status bar var prg = writeRsp(rsp, ''); tempTab.find('#statBar div').append(prg); tempTab.find('#loader').remove(); } } /** * Get all select elements' name in the obj * * @return All nodes name, seperate by ',' */ function getCheckedByObj(obj) { var tempStr = ''; // Get nodes that were checked obj.find('input:checked').each(function() { if ($(this).attr('name')) { tempStr += $(this).attr('name') + ','; } }); if ('' != tempStr) { tempStr = tempStr.substr(0, tempStr.length - 1); } return tempStr; }