/** * Load update page */ function loadUpdatePage() { var repositoryDiv = $('
'); var rpmDiv = $('
'); var statusDiv = createStatusBar("update"); statusDiv.hide(); $('#updateTab').append(statusDiv); $('#updateTab').append('
'); $('#updateTab').append(repositoryDiv); $('#updateTab').append(rpmDiv); var infoBar = createInfoBar('Select the repository to use and the RPMs to update, then click Update.'); repositoryDiv.append(infoBar); repositoryDiv.append("
Repository
"); $.ajax( { url : 'lib/systemcmd.php', dataType : 'json', data : { cmd : 'ostype' }, success : showRepository }); rpmDiv.append("
"); $.ajax( { url : 'lib/systemcmd.php', dataType : 'json', data : { cmd : 'rpm -q xCAT-client perl-xCAT xCAT-server xCAT xCAT-rmc xCAT-UI' }, success : showRpmInfo }); } /** * Show the RPM repository (it can use the user's last choice and input) * * @param data Data returned from HTTP request */ function showRepository(data) { var develRepository = ""; var stableRepository = ""; var show = ""; // Get the corresponding repository by OS Type if (data.rsp == "aix") { // No repository exists for AIX on Sourceforge! develRepository = "http://xcat.sourceforge.net/aix/devel/xcat-core/"; stableRepository = "http://xcat.sourceforge.net/aix/xcat-core/"; } else { develRepository = "http://sourceforge.net/projects/xcat/files/yum/devel/xcat-core/"; stableRepository = "http://sourceforge.net/projects/xcat/files/yum/stable/xcat-core/"; } var repoList = $('
    '); // Display the Devel Repository, remember user's last selection show = show + "
  1. "; show = show + "Development: " + develRepository + "
  2. "; repoList.append(show); // Display the Stable Repository, remember user's last selection show = "
  3. "; show = show + "Stable: " + stableRepository + "
  4. "; repoList.append(show); // Display the Input Repository, remember user's last selection if (($.cookie('xcatrepository')) && ($.cookie('xcatrepository') != 1) && ($.cookie('xcatrepository') != 2)) { show = "
  5. Other: "; show += ""; } else { show = "
  6. Other: "; show += ""; } repoList.append(show); $('#repository fieldset').append(repoList); } /** * Show all xCAT RPMs * * @param data Data returned from HTTP request */ function showRpmInfo(data) { var rpms = null; var show = ""; var rpmNames = new Array("xCAT-client", "perl-xCAT", "xCAT-server", "xCAT", "xCAT-rmc", "xCAT-UI"); var temp = 0; if (null == data.rsp) { $('#rpm fieldset').append("Error getting RPMs!"); return; } rpms = data.rsp.split(/\n/); // No rpm installed, return if (1 > rpms.length) { $('#rpm fieldset').append("No RPMs installed!"); return; } // Clear the old data $('#rpm fieldset').children().remove(); $('#rpm fieldset').append("xCAT RPMs"); show = ""; show += ""; show += ""; show += ""; show += ""; for (temp = 0; temp < rpms.length; temp++) { // Empty line continue if (!rpms[temp]) { continue; } // The RPM is not installed, continue if (rpms[temp].indexOf("not") != -1) { continue; } // Show the version in table show += ""; show += ""; show += ""; show += ""; } show += "
    Package NameVersion
    " + rpmNames[temp] + "" + rpms[temp].substr(rpmNames[temp].length + 1) + "
    "; show += ""; $('#rpm fieldset').append(show); // Add the update button var updateButton = createButton('Update'); $('#rpm fieldset').append(updateButton); updateButton.bind('click', function() { updateRpm(); }); } /** * Select all checkboxes */ function updateSelectAll() { var check_status = $('#selectall').attr('checked'); $('input:checkbox').attr('checked', check_status); } /** * Update selected xCAT RPMs */ function updateRpm() { // Remove any warning messages $('#updateTab').find('.ui-state-error').remove(); var rpmPath = $('input[type=radio]:checked').val(); var rpmPathType = "0"; var rpms = ""; var temp = ""; if (undefined == rpmPath) { rpmPath = ""; } // Select other and we should use the value in the input if ("" == rpmPath) { // Store repo in a cookie rpmPath = $('#repositoryaddr').val(); rpmPathType = rpmPath; } else { if (-1 == rpmPath.toLowerCase().indexOf("devel")) { rpmPathType = "2"; } else { rpmPathType = "1"; } } $("input[type=checkbox]:checked").each(function() { temp = $(this).val(); if ("" == temp) { return true; } var pattern = new RegExp("^" + temp + ",|," + temp + ","); if (pattern.test(rpms)) { return true; } rpms = rpms + temp + ","; }); if (0 < rpms.length) { rpms = rpms.slice(0, -1); } // Check RPM and repository var errMsg = ''; if (!rpms) { errMsg = "Please select an RPM!
    "; } if (!rpmPath) { errMsg += "Please select or specify a repository!"; } if (!rpms || !rpmPath) { // Show warning message var warn = createWarnBar(errMsg); warn.prependTo($('#updateTab')); return; } // Remember users' choice and input $.cookie('xcatrepository', rpmPathType, { path : '/xcat', expires : 10 }); $('#update').show(); $('#update div').empty(); $('#update div').append("

    Updating " + rpms + " from " + rpmPath + "

    "); $('#update div').append(""); $('#rpm button').attr('disabled', 'true'); // Send the update command to server $.ajax( { url : 'lib/cmd.php', dataType : 'json', data : { cmd : 'webrun', tgt : '', args : 'update;' + rpms + ";" + rpmPath, msg : '' }, success : showUpdateResult }); } /** * Show the results of the RPM update * * @param data Data returned from HTTP request */ function showUpdateResult(data) { var temp = 0; $('#loadingpic').remove(); var resArray = data.rsp[0].split(/\n/); if (0 < resArray.length) { // Show last lines if (('' == resArray[resArray.length - 1]) && (resArray.length > 1)) { $('#update div').append('
    ' + resArray[resArray.length - 2] + '
    '); } else { $('#update div').append('
    ' + resArray[resArray.length - 1] + '
    '); } // Create link to show details $('#update div').append('
    Show details'); $('#update div a').css( { 'color' : '#0000FF', 'cursor' : 'pointer' }).bind('click', function() { // Toggle details and change text $('#resDetail').toggle(); if ($('#update div a').text() == 'Show details') { $('#update div a').text('Hide details'); } else { $('#update div a').text('Show details'); } }); var resDetail = $('
    ');
            resDetail.hide();
            $('#update div').append(resDetail);
            for (temp = 0; temp < resArray.length; temp++) {
                resDetail.append(resArray[temp] + '
    '); } } // Update the rpm info $.ajax( { url : 'lib/systemcmd.php', dataType : 'json', data : { cmd : 'rpm -q xCAT-client perl-xCAT xCAT-server xCAT xCAT-rmc xCAT-UI' }, success : showRpmInfo }); $('#rpm button').attr('disabled', ''); }