/**
* Copyright 2014 Microsoft Open Technologies Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.microsoftopentechnologies.intellij.serviceexplorer.azure.vm;
import com.microsoftopentechnologies.intellij.helpers.azure.AzureCmdException;
import com.microsoftopentechnologies.intellij.helpers.azure.AzureRestAPIManager;
import com.microsoftopentechnologies.intellij.helpers.azure.sdk.AzureSDKManagerImpl;
import com.microsoftopentechnologies.intellij.model.Subscription;
import com.microsoftopentechnologies.intellij.model.vm.VirtualMachine;
import com.microsoftopentechnologies.intellij.serviceexplorer.Node;
import com.microsoftopentechnologies.intellij.serviceexplorer.NodeActionEvent;
import com.microsoftopentechnologies.intellij.serviceexplorer.NodeActionListener;
import com.microsoftopentechnologies.intellij.wizards.createvm.CreateVMWizard;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
public class VMServiceModule extends Node {
private static final String VM_SERVICE_MODULE_ID = VMServiceModule.class.getName();
private static final String ICON_PATH = "virtualmachines.png";
private static final String BASE_MODULE_NAME = "Virtual Machines";
public VMServiceModule(Node parent) {
super(VM_SERVICE_MODULE_ID, BASE_MODULE_NAME, parent, ICON_PATH, true);
}
@Override
protected void refreshItems() throws AzureCmdException {
// remove all child nodes
removeAllChildNodes();
// load all VMs
ArrayList<Subscription> subscriptionList = AzureRestAPIManager.getManager().getSubscriptionList();
if(subscriptionList != null) {
for (Subscription subscription : subscriptionList) {
List<VirtualMachine> virtualMachines = AzureSDKManagerImpl.getManager().getVirtualMachines(subscription.getId().toString());
for (VirtualMachine vm : virtualMachines) {
addChildNode(new VMNode(this, vm));
}
}
}
}
@Override
protected Map<String, Class<? extends NodeActionListener>> initActions() {
addAction("Create VM", new CreateVMAction());
return null;
}
public class CreateVMAction extends NodeActionListener {
@Override
public void actionPerformed(NodeActionEvent e) {
CreateVMWizard createVMWizard = new CreateVMWizard((VMServiceModule) e.getAction().getNode());
createVMWizard.show();
}
}
}