Package org.sonatype.nexus.configuration.application.upgrade

Source Code of org.sonatype.nexus.configuration.application.upgrade.Upgrade250to270

/*
* Sonatype Nexus (TM) Open Source Version
* Copyright (c) 2007-2014 Sonatype, Inc.
* All rights reserved. Includes the third-party code listed at http://links.sonatype.com/products/nexus/oss/attributions.
*
* This program and the accompanying materials are made available under the terms of the Eclipse Public License Version 1.0,
* which accompanies this distribution and is available at http://www.eclipse.org/legal/epl-v10.html.
*
* Sonatype Nexus (TM) Professional Version is available from Sonatype, Inc. "Sonatype" and "Sonatype Nexus" are trademarks
* of Sonatype, Inc. Apache Maven is a trademark of the Apache Software Foundation. M2eclipse is a trademark of the
* Eclipse Foundation. All other trademarks are the property of their respective owners.
*/
package org.sonatype.nexus.configuration.application.upgrade;

import java.io.File;
import java.io.FileReader;
import java.io.IOException;
import java.util.List;
import java.util.Map;

import javax.inject.Named;
import javax.inject.Singleton;

import org.sonatype.configuration.upgrade.ConfigurationIsCorruptedException;
import org.sonatype.configuration.upgrade.SingleVersionUpgrader;
import org.sonatype.configuration.upgrade.UpgradeMessage;
import org.sonatype.nexus.configuration.model.v2_7_0.CProps;
import org.sonatype.nexus.configuration.model.v2_7_0.CScheduledTask;
import org.sonatype.nexus.configuration.model.v2_7_0.CSmtpConfiguration;
import org.sonatype.nexus.configuration.model.v2_7_0.Configuration;
import org.sonatype.nexus.configuration.model.v2_7_0.upgrade.BasicVersionUpgrade;
import org.sonatype.nexus.tasks.EmptyTrashTaskDescriptor;
import org.sonatype.sisu.goodies.common.ComponentSupport;

import com.google.common.collect.Lists;
import com.google.common.collect.Maps;
import org.codehaus.plexus.util.xml.pull.XmlPullParserException;

/**
* Upgrades configuration model from version 2.5.0 to 2.7.0.
*
* @since 2.7.0
*/
@Singleton
@Named("2.5.0")
public class Upgrade250to270
    extends ComponentSupport
    implements SingleVersionUpgrader
{
  @Override
  public Object loadConfiguration(File file)
      throws IOException, ConfigurationIsCorruptedException
  {
    org.sonatype.nexus.configuration.model.v2_5_0.Configuration conf = null;

    try (FileReader fr = new FileReader(file)) {
      // reading without interpolation to preserve user settings as variables
      org.sonatype.nexus.configuration.model.v2_5_0.io.xpp3.NexusConfigurationXpp3Reader reader =
          new org.sonatype.nexus.configuration.model.v2_5_0.io.xpp3.NexusConfigurationXpp3Reader();

      conf = reader.read(fr);
    }
    catch (XmlPullParserException e) {
      throw new ConfigurationIsCorruptedException(file.getAbsolutePath(), e);
    }

    return conf;
  }

  @Override
  public void upgrade(UpgradeMessage message)
      throws ConfigurationIsCorruptedException
  {
    org.sonatype.nexus.configuration.model.v2_5_0.Configuration oldc =
        (org.sonatype.nexus.configuration.model.v2_5_0.Configuration) message.getConfiguration();

    BasicVersionUpgrade versionConverter = new BasicVersionUpgrade();

    Configuration newc = versionConverter.upgradeConfiguration(oldc);
    newc.setVersion(Configuration.MODEL_VERSION);

    upgradeEmptyTrashTaskConfiguration(newc);
    updateSmtpSslTlsSettings(newc);

    message.setModelVersion(Configuration.MODEL_VERSION);
    message.setConfiguration(newc);
  }

  /**
   * Performs upgrade for EmptyTrashTask tasks.
   *
   * @param conf the new model (2.7.0)
   * @see <a href="https://issues.sonatype.org/browse/NEXUS-4580">NEXUS-4580</a>
   */
  protected void upgradeEmptyTrashTaskConfiguration(final Configuration conf) {
    final List<CScheduledTask> tasks = conf.getTasks();
    for (CScheduledTask task : tasks) {
      if (EmptyTrashTaskDescriptor.ID.equals(task.getType())) {
        final Map<String, String> taskConfig = getMapFromConfigList(task.getProperties());
        if (!taskConfig.containsKey(EmptyTrashTaskDescriptor.REPO_OR_GROUP_FIELD_ID)) {
          taskConfig.put(EmptyTrashTaskDescriptor.REPO_OR_GROUP_FIELD_ID, "all_repo");
          task.setProperties(getConfigListFromMap(taskConfig));
        }
      }
    }
  }

  /**
   * Performs upgrade for SMTP SSL/TLS settings
   *
   * @param conf the new model (2.7.0)
   * @see <a href="https://issues.sonatype.org/browse/NEXUS-4997">NEXUS-4997</a>
   */
  protected void updateSmtpSslTlsSettings(final Configuration conf) {
    final CSmtpConfiguration smtp = conf.getSmtpConfiguration();
    if (smtp != null) {
      if (smtp.isSslEnabled() && smtp.isTlsEnabled()) {
        smtp.setSslEnabled(true);
        smtp.setTlsEnabled(false);
        log.warn(
            "SMTP related configuration change happened: both SSL and TLS was set, updated to use SSL only, assuming that SMTP server port is set to a port where remote SMTP server accepts SSL connections.");
      }
    }
  }

  // ==

  /**
   * {@link List} of {@link CProps} to {@link Map} converter, to ease handling of these thingies.
   */
  protected Map<String, String> getMapFromConfigList(List<CProps> list) {
    final Map<String, String> result = Maps.newHashMapWithExpectedSize(list.size());
    for (CProps props : list) {
      result.put(props.getKey(), props.getValue());
    }
    return result;
  }

  /**
   * {@link Map} to {@link List} of {@link CProps} converter, to ease handling of these thingies.
   */
  protected List<CProps> getConfigListFromMap(final Map<String, String> map) {
    final List<CProps> result = Lists.newArrayListWithExpectedSize(map.size());
    for (Map.Entry<String, String> entry : map.entrySet()) {
      final CProps cprop = new CProps();
      cprop.setKey(entry.getKey());
      cprop.setValue(entry.getValue());
      result.add(cprop);
    }
    return result;
  }
}
TOP

Related Classes of org.sonatype.nexus.configuration.application.upgrade.Upgrade250to270

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.