/** * 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 . * */ package com.cloud.api.commands; import java.util.ArrayList; import java.util.List; import java.util.Map; import org.apache.log4j.Logger; import com.cloud.api.BaseCmd; import com.cloud.api.Parameter; import com.cloud.api.ServerApiException; import com.cloud.network.security.NetworkGroupVO; import com.cloud.user.Account; import com.cloud.utils.Pair; public class CreateNetworkGroupCmd extends BaseCmd { public static final Logger s_logger = Logger.getLogger(CreateNetworkGroupCmd.class.getName()); private static final String s_name = "createnetworkgroupresponse"; private static final List> s_properties = new ArrayList>(); static { //s_properties.add(new Pair(BaseCmd.Properties.USER_ID, Boolean.FALSE)); s_properties.add(new Pair(BaseCmd.Properties.ACCOUNT_OBJ, Boolean.FALSE)); s_properties.add(new Pair(BaseCmd.Properties.ACCOUNT, Boolean.FALSE)); s_properties.add(new Pair(BaseCmd.Properties.DESCRIPTION, Boolean.FALSE)); s_properties.add(new Pair(BaseCmd.Properties.DOMAIN_ID, Boolean.FALSE)); s_properties.add(new Pair(BaseCmd.Properties.NAME, Boolean.TRUE)); } ///////////////////////////////////////////////////// //////////////// API parameters ///////////////////// ///////////////////////////////////////////////////// @Parameter(name="account", type=CommandType.STRING) private String accountName; @Parameter(name="description", type=CommandType.STRING) private String description; @Parameter(name="domainid", type=CommandType.LONG) private Long domainId; @Parameter(name="name", type=CommandType.STRING, required=true) private String networkGroupName; ///////////////////////////////////////////////////// /////////////////// Accessors /////////////////////// ///////////////////////////////////////////////////// public String getAccountName() { return accountName; } public String getDescription() { return description; } public Long getDomainId() { return domainId; } public String getNetworkGroupName() { return networkGroupName; } ///////////////////////////////////////////////////// /////////////// API Implementation/////////////////// ///////////////////////////////////////////////////// public String getName() { return s_name; } public List> getProperties() { return s_properties; } @Override public List> execute(Map params) { Account account = (Account)params.get(BaseCmd.Properties.ACCOUNT_OBJ.getName()); Long domainId = (Long)params.get(BaseCmd.Properties.DOMAIN_ID.getName()); //Long userId = (Long)params.get(BaseCmd.Properties.USER_ID.getName()); String accountName = (String)params.get(BaseCmd.Properties.ACCOUNT.getName()); String name = (String)params.get(BaseCmd.Properties.NAME.getName()); String description = (String)params.get(BaseCmd.Properties.DESCRIPTION.getName()); Long accountId = null; if (account != null) { if (isAdmin(account.getType())) { if (domainId != null) { if (!getManagementServer().isChildDomain(account.getDomainId(), domainId)) { throw new ServerApiException(BaseCmd.ACCOUNT_ERROR, "Unable to create network group in domain " + domainId + ", permission denied."); } } else { // the admin must be creating the network group if (account != null) { accountId = account.getId(); domainId = account.getDomainId(); accountName = account.getAccountName(); } } } else { accountId = account.getId(); domainId = account.getDomainId(); accountName = account.getAccountName(); } } if (accountId == null) { if ((accountName != null) && (domainId != null)) { Account userAccount = getManagementServer().findActiveAccount(accountName, domainId); if (userAccount != null) { accountId = userAccount.getId(); accountName = userAccount.getAccountName(); } else { throw new ServerApiException(BaseCmd.ACCOUNT_ERROR, "could not find account " + accountName + " in domain " + domainId); } } } if (accountId == null) { throw new ServerApiException(BaseCmd.ACCOUNT_ERROR, "Unable to create network group, no account specified."); } boolean isNameInUse = getManagementServer().isNetworkSecurityGroupNameInUse(domainId, accountId, name); if (isNameInUse) { throw new ServerApiException(BaseCmd.PARAM_ERROR, "Unable to create network group, a group with name " + name + " already exisits."); } NetworkGroupVO networkGroup = getManagementServer().createNetworkGroup(name, description, domainId, accountId, accountName); List> embeddedObject = new ArrayList>(); List> returnValues = new ArrayList>(); returnValues.add(new Pair(BaseCmd.Properties.ID.getName(), networkGroup.getId().toString())); returnValues.add(new Pair(BaseCmd.Properties.NAME.getName(), networkGroup.getName())); returnValues.add(new Pair(BaseCmd.Properties.DESCRIPTION.getName(), networkGroup.getDescription())); Account accountTemp = getManagementServer().findAccountById(networkGroup.getAccountId()); if (accountTemp != null) { returnValues.add(new Pair(BaseCmd.Properties.ACCOUNT.getName(), accountTemp.getAccountName())); returnValues.add(new Pair(BaseCmd.Properties.DOMAIN_ID.getName(), accountTemp.getDomainId())); returnValues.add(new Pair(BaseCmd.Properties.DOMAIN.getName(), getManagementServer().findDomainIdById(accountTemp.getDomainId()).getName())); } embeddedObject.add(new Pair("networkgroup", new Object[] { returnValues } )); return embeddedObject; } }