| /** |
| * 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 routerGetSearchParams() {
|
| 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);
|
| }
|
|
|
| if ($advancedSearchPopup.find("#adv_search_domain_li").css("display") != "none") {
|
| var domainId = $advancedSearchPopup.find("#adv_search_domain").val();
|
| if (domainId!=null && domainId.length > 0)
|
| moreCriteria.push("&domainid="+domainId);
|
| }
|
|
|
| if ($advancedSearchPopup.find("#adv_search_account_li").css("display") != "none"
|
| && $advancedSearchPopup.find("#adv_search_account").hasClass("textwatermark") == false) {
|
| var account = $advancedSearchPopup.find("#adv_search_account").val();
|
| if (account!=null && account.length > 0)
|
| moreCriteria.push("&account="+account);
|
| }
|
| }
|
|
|
| return moreCriteria.join("");
|
| } |
| |
| function afterLoadRouterJSP() { |
| |
| } |
| |
| function routerToMidmenu(jsonObj, $midmenuItem1) { |
| $midmenuItem1.attr("id", getMidmenuId(jsonObj)); |
| $midmenuItem1.data("jsonObj", jsonObj); |
| |
| $midmenuItem1.find("#first_row").text(jsonObj.name.substring(0,25)); |
| $midmenuItem1.find("#second_row").text(fromdb(jsonObj.publicip).substring(0,25)); |
| updateVmStateInMidMenu(jsonObj, $midmenuItem1); |
| }
|
|
|
| function routerToRightPanel($midmenuItem1) {
|
| copyActionInfoFromMidMenuToRightPanel($midmenuItem1);
|
| $("#right_panel_content").data("$midmenuItem1", $midmenuItem1);
|
| routerJsonToDetailsTab();
|
| }
|
|
|
| function routerJsonToDetailsTab() {
|
| var $midmenuItem1 = $("#right_panel_content").data("$midmenuItem1");
|
| if($midmenuItem1 == null) {
|
| routerClearDetailsTab();
|
| return;
|
| }
|
|
|
| var jsonObj = $midmenuItem1.data("jsonObj");
|
| if(jsonObj == null) {
|
| routerClearDetailsTab();
|
| 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));
|
|
|
| setVmStateInRightPanel(fromdb(jsonObj.state), $thisTab.find("#state"));
|
| $thisTab.find("#ipAddress").text(fromdb(jsonObj.publicip));
|
| $thisTab.find("#zonename").text(fromdb(jsonObj.zonename));
|
| $thisTab.find("#name").text(fromdb(jsonObj.name));
|
| $thisTab.find("#publicip").text(fromdb(jsonObj.publicip));
|
| $thisTab.find("#privateip").text(fromdb(jsonObj.privateip));
|
| $thisTab.find("#guestipaddress").text(fromdb(jsonObj.guestipaddress));
|
| $thisTab.find("#hostname").text(fromdb(jsonObj.hostname));
|
| $thisTab.find("#networkdomain").text(fromdb(jsonObj.networkdomain));
|
| $thisTab.find("#domain").text(fromdb(jsonObj.domain));
|
| $thisTab.find("#account").text(fromdb(jsonObj.account));
|
| setDateField(jsonObj.created, $thisTab.find("#created"));
|
|
|
| resetViewConsoleAction(jsonObj, $thisTab);
|
|
|
| //***** actions (begin) *****
|
| var $actionMenu = $("#right_panel_content #tab_content_details #action_link #action_menu");
|
| $actionMenu.find("#action_list").empty();
|
| var noAvailableActions = true;
|
|
|
| if (jsonObj.state == 'Running') {
|
| buildActionLinkForTab("label.action.stop.router", routerActionMap, $actionMenu, $midmenuItem1, $thisTab);
|
| buildActionLinkForTab("label.action.reboot.router", routerActionMap, $actionMenu, $midmenuItem1, $thisTab);
|
| noAvailableActions = false;
|
| }
|
| else if (jsonObj.state == 'Stopped') {
|
| buildActionLinkForTab("label.action.start.router", routerActionMap, $actionMenu, $midmenuItem1, $thisTab);
|
| noAvailableActions = false;
|
| }
|
|
|
| // no available actions
|
| if(noAvailableActions == true) {
|
| $actionMenu.find("#action_list").append($("#no_available_actions").clone().show());
|
| }
|
| //***** actions (end) *****
|
|
|
| $thisTab.find("#tab_spinning_wheel").hide();
|
| $thisTab.find("#tab_container").show();
|
| } |
| |
| function routerClearDetailsTab() {
|
| var $thisTab = $("#right_panel_content").find("#tab_content_details");
|
| $thisTab.find("#grid_header_title").text("");
|
| setVmStateInRightPanel(null, $thisTab.find("#state"));
|
| $thisTab.find("#ipAddress").text("");
|
| $thisTab.find("#zonename").text("");
|
| $thisTab.find("#name").text("");
|
| $thisTab.find("#publicip").text("");
|
| $thisTab.find("#privateip").text("");
|
| $thisTab.find("#guestipaddress").text("");
|
| $thisTab.find("#hostname").text("");
|
| $thisTab.find("#networkdomain").text("");
|
| $thisTab.find("#domain").text("");
|
| $thisTab.find("#account").text("");
|
| $thisTab.find("#created").text("");
|
| resetViewConsoleAction(null, $thisTab);
|
|
|
| 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 doStartRouter($actionLink, $detailsTab, $midmenuItem1) { |
| $("#dialog_confirmation")
|
| .text(dictionary["message.action.start.router"])
|
| .dialog('option', 'buttons', {
|
| "Confirm": function() {
|
| $(this).dialog("close");
|
|
|
| var jsonObj = $midmenuItem1.data("jsonObj");
|
| var id = jsonObj.id;
|
| var apiCommand = "command=startRouter&id="+id;
|
| doActionToTab(id, $actionLink, apiCommand, $midmenuItem1, $detailsTab);
|
| },
|
| "Cancel": function() {
|
| $(this).dialog("close");
|
|
|
| }
|
| }).dialog("open"); |
| } |
| |
| function doStopRouter($actionLink, $detailsTab, $midmenuItem1) { |
| $("#dialog_confirmation")
|
| .text(dictionary["message.action.stop.router"])
|
| .dialog('option', 'buttons', {
|
| "Confirm": function() {
|
| $(this).dialog("close");
|
|
|
| var jsonObj = $midmenuItem1.data("jsonObj");
|
| var id = jsonObj.id;
|
| var apiCommand = "command=stopRouter&id="+id;
|
| doActionToTab(id, $actionLink, apiCommand, $midmenuItem1, $detailsTab);
|
| },
|
| "Cancel": function() {
|
| $(this).dialog("close");
|
|
|
| }
|
| }).dialog("open"); |
| } |
| |
| function doRebootRouter($actionLink, $detailsTab, $midmenuItem1) { |
| $("#dialog_confirmation")
|
| .text(dictionary["message.action.reboot.router"])
|
| .dialog('option', 'buttons', {
|
| "Confirm": function() {
|
| $(this).dialog("close");
|
|
|
| var jsonObj = $midmenuItem1.data("jsonObj");
|
| var id = jsonObj.id;
|
| var apiCommand = "command=rebootRouter&id="+id;
|
| doActionToTab(id, $actionLink, apiCommand, $midmenuItem1, $detailsTab);
|
| },
|
| "Cancel": function() {
|
| $(this).dialog("close");
|
|
|
| }
|
| }).dialog("open"); |
| } |
| |
| var routerActionMap = { |
| "label.action.start.router": { |
| isAsyncJob: true, |
| asyncJobResponse: "startrouterresponse", |
| inProcessText: "label.action.start.router.processing", |
| dialogBeforeActionFn : doStartRouter, |
| afterActionSeccessFn: function(json, $midmenuItem1, id) { |
| var item = json.queryasyncjobresultresponse.jobresult.domainrouter; |
| routerToMidmenu(item, $midmenuItem1); |
| } |
| }, |
| "label.action.stop.router": { |
| isAsyncJob: true, |
| asyncJobResponse: "stoprouterresponse", |
| inProcessText: "label.action.stop.router.processing", |
| dialogBeforeActionFn : doStopRouter, |
| afterActionSeccessFn: function(json, $midmenuItem1, id) { |
| var item = json.queryasyncjobresultresponse.jobresult.domainrouter; |
| routerToMidmenu(item, $midmenuItem1); |
| } |
| }, |
| "label.action.reboot.router": { |
| isAsyncJob: true, |
| asyncJobResponse: "rebootrouterresponse", |
| inProcessText: "label.action.reboot.router.processing", |
| dialogBeforeActionFn : doRebootRouter, |
| afterActionSeccessFn: function(json, $midmenuItem1, id) { |
| var item = json.queryasyncjobresultresponse.jobresult.domainrouter; |
| routerToMidmenu(item, $midmenuItem1); |
| } |
| } |
| } |