Package br.com.ingenieux.mojo.beanstalk.config

Source Code of br.com.ingenieux.mojo.beanstalk.config.CreateConfigurationTemplateMojo

package br.com.ingenieux.mojo.beanstalk.config;

/*
* 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.
*/

import java.util.Arrays;

import org.apache.commons.lang.StringUtils;
import org.apache.maven.plugin.MojoExecutionException;
import org.apache.maven.plugin.MojoFailureException;

import br.com.ingenieux.mojo.beanstalk.AbstractBeanstalkMojo;
import br.com.ingenieux.mojo.beanstalk.ConfigurationTemplate;

import com.amazonaws.services.elasticbeanstalk.model.CreateConfigurationTemplateRequest;
import com.amazonaws.services.elasticbeanstalk.model.CreateConfigurationTemplateResult;

/**
* Describes Available Configuration Templates
*
* @goal create-configuration-templates
*
* @author Aldrin Leal
*/
public class CreateConfigurationTemplateMojo extends AbstractBeanstalkMojo {
  /**
   * Beanstalk Application Name
   *
   * @parameter expression="${beanstalk.applicationName}"
   *            default-value="${project.artifactId}"
   * @required
   */
  String applicationName;

  /**
   * Configuration Template Name (Optional)
   *
   * @parameter expression="${beanstalk.configurationTemplate}"
   */
  String configurationTemplate;
 
  /**
   * Configuration Templates
   *
   * @parameter
   */
  ConfigurationTemplate[] configurationTemplates;
 
  @Override
  protected Object executeInternal() throws MojoExecutionException,
      MojoFailureException {
//    DescribeApplicationsRequest req = new DescribeApplicationsRequest()
//        .withApplicationNames(applicationName);
    boolean bConfigurationTemplateDefined = StringUtils
        .isNotBlank(configurationTemplate);
   
    if (bConfigurationTemplateDefined) {
      return createConfiguration(configurationTemplate);
    } else {
      for (ConfigurationTemplate template : configurationTemplates)
        createConfiguration(template.getId());
    }
   
    return null;
  }

  CreateConfigurationTemplateResult createConfiguration(String templateName) {
    ConfigurationTemplate template = getConfigurationTemplate(templateName);
   
    CreateConfigurationTemplateRequest req = new CreateConfigurationTemplateRequest(applicationName, templateName);
   
    req.setSolutionStackName(template.getSolutionStack());
    req.setOptionSettings(Arrays.asList(template.getOptionSettings()));
   
    return service.createConfigurationTemplate(req);
  }

  private ConfigurationTemplate getConfigurationTemplate(String id) {
    for (ConfigurationTemplate template : configurationTemplates)
      if (id.equals(template.getId()))
        return template;
   
    return null;
  }
}
TOP

Related Classes of br.com.ingenieux.mojo.beanstalk.config.CreateConfigurationTemplateMojo

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.