mirror of
https://github.com/apache/cloudstack.git
synced 2025-10-26 08:42:29 +01:00
315 lines
13 KiB
JavaScript
315 lines
13 KiB
JavaScript
/**
|
|
* Copyright (C) 2010 Cloud.com, Inc. All rights reserved.
|
|
*
|
|
* This software is licensed under the GNU General Public License v3 or later.
|
|
*
|
|
* It is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or any later version.
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*
|
|
*/
|
|
|
|
function systemVmGetSearchParams() {
|
|
var moreCriteria = [];
|
|
|
|
var searchInput = $("#basic_search").find("#search_input").val();
|
|
if (searchInput != null && searchInput.length > 0) {
|
|
moreCriteria.push("&keyword="+todb(searchInput));
|
|
}
|
|
|
|
var $advancedSearchPopup = getAdvancedSearchPopupInSearchContainer();
|
|
if ($advancedSearchPopup.length > 0 && $advancedSearchPopup.css("display") != "none" ) {
|
|
var state = $advancedSearchPopup.find("#adv_search_state").val();
|
|
if (state!=null && state.length > 0)
|
|
moreCriteria.push("&state="+todb(state));
|
|
|
|
var zone = $advancedSearchPopup.find("#adv_search_zone").val();
|
|
if (zone!=null && zone.length > 0)
|
|
moreCriteria.push("&zoneId="+zone);
|
|
|
|
if ($advancedSearchPopup.find("#adv_search_pod_li").css("display") != "none") {
|
|
var pod = $advancedSearchPopup.find("#adv_search_pod").val();
|
|
if (pod!=null && pod.length > 0)
|
|
moreCriteria.push("&podId="+pod);
|
|
}
|
|
}
|
|
|
|
return moreCriteria.join("");
|
|
}
|
|
|
|
function afterLoadSystemVmJSP($midmenuItem1) {
|
|
|
|
}
|
|
|
|
function systemvmToMidmenu(jsonObj, $midmenuItem1) {
|
|
$midmenuItem1.attr("id", getMidmenuId(jsonObj));
|
|
$midmenuItem1.data("jsonObj", jsonObj);
|
|
|
|
var $iconContainer = $midmenuItem1.find("#icon_container").show();
|
|
$iconContainer.find("#icon").attr("src", "images/midmenuicon_resource_systemvm.png");
|
|
|
|
$midmenuItem1.find("#first_row").text(fromdb(jsonObj.name).substring(0,25));
|
|
$midmenuItem1.find("#second_row").text(fromdb(jsonObj.publicip));
|
|
|
|
updateVmStateInMidMenu(jsonObj, $midmenuItem1);
|
|
}
|
|
|
|
function systemvmToRightPanel($midmenuItem1) {
|
|
copyActionInfoFromMidMenuToRightPanel($midmenuItem1);
|
|
$("#right_panel_content").data("$midmenuItem1", $midmenuItem1);
|
|
systemvmJsonToDetailsTab();
|
|
}
|
|
|
|
function systemvmJsonToDetailsTab() {
|
|
var $midmenuItem1 = $("#right_panel_content").data("$midmenuItem1");
|
|
if($midmenuItem1 == null) {
|
|
systemvmClearDetailsTab();
|
|
return;
|
|
}
|
|
|
|
var jsonObj = $midmenuItem1.data("jsonObj");
|
|
if(jsonObj == null) {
|
|
systemvmClearDetailsTab();
|
|
return;
|
|
}
|
|
|
|
var $thisTab = $("#right_panel_content").find("#tab_content_details");
|
|
$thisTab.find("#tab_container").hide();
|
|
$thisTab.find("#tab_spinning_wheel").show();
|
|
|
|
$thisTab.find("#grid_header_title").text(fromdb(jsonObj.name));
|
|
|
|
resetViewConsoleAction(jsonObj, $thisTab);
|
|
setVmStateInRightPanel(fromdb(jsonObj.state), $thisTab.find("#state"));
|
|
$thisTab.find("#ipAddress").text(fromdb(jsonObj.publicip));
|
|
|
|
$thisTab.find("#state").text(fromdb(jsonObj.state));
|
|
$thisTab.find("#systemvmtype").text(toSystemVMTypeText(jsonObj.systemvmtype));
|
|
$thisTab.find("#zonename").text(fromdb(jsonObj.zonename));
|
|
$thisTab.find("#id").text(fromdb(jsonObj.id));
|
|
$thisTab.find("#name").text(fromdb(jsonObj.name));
|
|
$thisTab.find("#publicip").text(fromdb(jsonObj.publicip));
|
|
$thisTab.find("#privateip").text(fromdb(jsonObj.privateip));
|
|
$thisTab.find("#hostname").text(fromdb(jsonObj.hostname));
|
|
$thisTab.find("#gateway").text(fromdb(jsonObj.gateway));
|
|
$thisTab.find("#created").text(fromdb(jsonObj.created));
|
|
|
|
if(jsonObj.systemvmtype == "consoleproxy") {
|
|
$thisTab.find("#activeviewersessions").text(fromdb(jsonObj.activeviewersessions));
|
|
$thisTab.find("#activeviewersessions_container").show();
|
|
}
|
|
else { //jsonObj.systemvmtype == "secondarystoragevm"
|
|
$thisTab.find("#activeviewersessions").text("");
|
|
$thisTab.find("#activeviewersessions_container").hide();
|
|
}
|
|
|
|
//actions ***
|
|
var $actionLink = $thisTab.find("#action_link");
|
|
bindActionLink($actionLink);
|
|
/*
|
|
$actionLink.bind("mouseover", function(event) {
|
|
$(this).find("#action_menu").show();
|
|
return false;
|
|
});
|
|
$actionLink.bind("mouseout", function(event) {
|
|
var $thisElement = $(this)[0];
|
|
var relatedTarget1 = event.relatedTarget;
|
|
while(relatedTarget1 != null && relatedTarget1.nodeName != "BODY" && relatedTarget1 != $thisElement) {
|
|
relatedTarget1 = relatedTarget1.parentNode;
|
|
}
|
|
if(relatedTarget1 == $thisElement) {
|
|
return;
|
|
}
|
|
|
|
$(this).find("#action_menu").hide();
|
|
return false;
|
|
});
|
|
*/
|
|
|
|
var $actionMenu = $actionLink.find("#action_menu");
|
|
$actionMenu.find("#action_list").empty();
|
|
var noAvailableActions = true;
|
|
|
|
if (jsonObj.state == 'Running') {
|
|
buildActionLinkForTab("label.action.stop.systemvm", systemVmActionMap, $actionMenu, $midmenuItem1, $thisTab);
|
|
buildActionLinkForTab("label.action.reboot.systemvm", systemVmActionMap, $actionMenu, $midmenuItem1, $thisTab);
|
|
buildActionLinkForTab("label.action.destroy.systemvm", systemVmActionMap, $actionMenu, $midmenuItem1, $thisTab);
|
|
noAvailableActions = false;
|
|
}
|
|
else if (jsonObj.state == 'Stopped') {
|
|
buildActionLinkForTab("label.action.start.systemvm", systemVmActionMap, $actionMenu, $midmenuItem1, $thisTab);
|
|
buildActionLinkForTab("label.action.destroy.systemvm", systemVmActionMap, $actionMenu, $midmenuItem1, $thisTab);
|
|
noAvailableActions = false;
|
|
}
|
|
else if (jsonObj.state == 'Error') {
|
|
buildActionLinkForTab("label.action.destroy.systemvm", systemVmActionMap, $actionMenu, $midmenuItem1, $thisTab);
|
|
noAvailableActions = false;
|
|
}
|
|
|
|
// no available actions
|
|
if(noAvailableActions == true) {
|
|
$actionMenu.find("#action_list").append($("#no_available_actions").clone().show());
|
|
}
|
|
|
|
$thisTab.find("#tab_spinning_wheel").hide();
|
|
$thisTab.find("#tab_container").show();
|
|
}
|
|
|
|
function systemvmClearDetailsTab() {
|
|
var $thisTab = $("#right_panel_content").find("#tab_content_details");
|
|
$thisTab.find("#grid_header_title").text(fromdb(jsonObj.name));
|
|
resetViewConsoleAction(null, $thisTab);
|
|
setVmStateInRightPanel(null, $thisTab.find("#state"));
|
|
$thisTab.find("#ipAddress").text(fromdb(jsonObj.publicip));
|
|
$thisTab.find("#state").text(fromdb(jsonObj.state));
|
|
$thisTab.find("#systemvmtype").text(toSystemVMTypeText(jsonObj.systemvmtype));
|
|
$thisTab.find("#zonename").text(fromdb(jsonObj.zonename));
|
|
$thisTab.find("#id").text(fromdb(jsonObj.id));
|
|
$thisTab.find("#name").text(fromdb(jsonObj.name));
|
|
$thisTab.find("#publicip").text(fromdb(jsonObj.publicip));
|
|
$thisTab.find("#privateip").text(fromdb(jsonObj.privateip));
|
|
$thisTab.find("#hostname").text(fromdb(jsonObj.hostname));
|
|
$thisTab.find("#gateway").text(fromdb(jsonObj.gateway));
|
|
$thisTab.find("#created").text(fromdb(jsonObj.created));
|
|
$thisTab.find("#activeviewersessions").text("");
|
|
|
|
var $actionMenu = $("#right_panel_content #tab_content_details #action_link #action_menu");
|
|
$actionMenu.find("#action_list").empty();
|
|
$actionMenu.find("#action_list").append($("#no_available_actions").clone().show());
|
|
}
|
|
|
|
function toSystemVMTypeText(value) {
|
|
var text = "";
|
|
if(value == "consoleproxy")
|
|
text = "Console Proxy VM";
|
|
else if(value == "secondarystoragevm")
|
|
text = "Secondary Storage VM";
|
|
return text;
|
|
}
|
|
|
|
var systemVmActionMap = {
|
|
"label.action.start.systemvm": {
|
|
isAsyncJob: true,
|
|
asyncJobResponse: "startsystemvmresponse",
|
|
inProcessText: "label.action.start.systemvm.processing",
|
|
dialogBeforeActionFn : doStartSystemVM,
|
|
afterActionSeccessFn: function(json, $midmenuItem1, id) {
|
|
var jsonObj = json.queryasyncjobresultresponse.jobresult.systemvm;
|
|
systemvmToMidmenu(jsonObj, $midmenuItem1);
|
|
}
|
|
},
|
|
"label.action.stop.systemvm": {
|
|
isAsyncJob: true,
|
|
asyncJobResponse: "stopsystemvmresponse",
|
|
inProcessText: "label.action.stop.systemvm.processing",
|
|
dialogBeforeActionFn : doStopSystemVM,
|
|
afterActionSeccessFn: function(json, $midmenuItem1, id) {
|
|
var jsonObj = json.queryasyncjobresultresponse.jobresult.systemvm;
|
|
systemvmToMidmenu(jsonObj, $midmenuItem1);
|
|
}
|
|
},
|
|
"label.action.reboot.systemvm": {
|
|
isAsyncJob: true,
|
|
asyncJobResponse: "rebootsystemvmresponse",
|
|
inProcessText: "label.action.reboot.systemvm.processing",
|
|
dialogBeforeActionFn : doRebootSystemVM,
|
|
afterActionSeccessFn: function(json, $midmenuItem1, id) {
|
|
var jsonObj = json.queryasyncjobresultresponse.jobresult.systemvm;
|
|
systemvmToMidmenu(jsonObj, $midmenuItem1);
|
|
}
|
|
},
|
|
"label.action.destroy.systemvm": {
|
|
isAsyncJob: true,
|
|
asyncJobResponse: "destroysystemvmresponse",
|
|
dialogBeforeActionFn : doDestroySystemVM,
|
|
inProcessText: "label.action.destroy.systemvm.processing",
|
|
afterActionSeccessFn: function(json, $midmenuItem1, id) {
|
|
$midmenuItem1.slideUp("slow", function() {
|
|
|
|
});
|
|
}
|
|
}
|
|
}
|
|
|
|
function doStartSystemVM($actionLink, $detailsTab, $midmenuItem1) {
|
|
$("#dialog_confirmation")
|
|
.text(dictionary["message.action.start.systemvm"])
|
|
.dialog('option', 'buttons', {
|
|
"Confirm": function() {
|
|
$(this).dialog("close");
|
|
|
|
var jsonObj = $midmenuItem1.data("jsonObj");
|
|
var id = jsonObj.id;
|
|
var apiCommand = "command=startSystemVm&id="+id;
|
|
doActionToTab(id, $actionLink, apiCommand, $midmenuItem1, $detailsTab);
|
|
},
|
|
"Cancel": function() {
|
|
$(this).dialog("close");
|
|
|
|
}
|
|
}).dialog("open");
|
|
}
|
|
|
|
function doStopSystemVM($actionLink, $detailsTab, $midmenuItem1) {
|
|
$("#dialog_confirmation")
|
|
.text(dictionary["message.action.stop.systemvm"])
|
|
.dialog('option', 'buttons', {
|
|
"Confirm": function() {
|
|
$(this).dialog("close");
|
|
|
|
var jsonObj = $midmenuItem1.data("jsonObj");
|
|
var id = jsonObj.id;
|
|
var apiCommand = "command=stopSystemVm&id="+id;
|
|
doActionToTab(id, $actionLink, apiCommand, $midmenuItem1, $detailsTab);
|
|
},
|
|
"Cancel": function() {
|
|
$(this).dialog("close");
|
|
|
|
}
|
|
}).dialog("open");
|
|
}
|
|
|
|
function doRebootSystemVM($actionLink, $detailsTab, $midmenuItem1) {
|
|
$("#dialog_confirmation")
|
|
.text(dictionary["message.action.reboot.systemvm"])
|
|
.dialog('option', 'buttons', {
|
|
"Confirm": function() {
|
|
$(this).dialog("close");
|
|
|
|
var jsonObj = $midmenuItem1.data("jsonObj");
|
|
var id = jsonObj.id;
|
|
var apiCommand = "command=rebootSystemVm&id="+id;
|
|
doActionToTab(id, $actionLink, apiCommand, $midmenuItem1, $detailsTab);
|
|
},
|
|
"Cancel": function() {
|
|
$(this).dialog("close");
|
|
|
|
}
|
|
}).dialog("open");
|
|
}
|
|
|
|
function doDestroySystemVM($actionLink, $detailsTab, $midmenuItem1) {
|
|
var jsonObj = $midmenuItem1.data("jsonObj");
|
|
var id = jsonObj.id;
|
|
|
|
$("#dialog_confirmation")
|
|
.text(dictionary["message.action.destroy.systemvm"])
|
|
.dialog('option', 'buttons', {
|
|
"Confirm": function() {
|
|
$(this).dialog("close");
|
|
var apiCommand = "command=destroySystemVm&id="+id;
|
|
doActionToTab(id, $actionLink, apiCommand, $midmenuItem1, $detailsTab);
|
|
},
|
|
"Cancel": function() {
|
|
$(this).dialog("close");
|
|
}
|
|
}).dialog("open");
|
|
}
|