Package org.sonatype.nexus.proxy.maven.metadata

Source Code of org.sonatype.nexus.proxy.maven.metadata.ArtifactDirMetadataProcessor

/*
* 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.proxy.maven.metadata;

import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.util.ArrayList;
import java.util.Collection;
import java.util.List;

import org.sonatype.nexus.proxy.maven.metadata.operations.AddVersionOperation;
import org.sonatype.nexus.proxy.maven.metadata.operations.MetadataBuilder;
import org.sonatype.nexus.proxy.maven.metadata.operations.MetadataException;
import org.sonatype.nexus.proxy.maven.metadata.operations.MetadataOperation;
import org.sonatype.nexus.proxy.maven.metadata.operations.ModelVersionUtility;
import org.sonatype.nexus.proxy.maven.metadata.operations.StringOperand;

import org.apache.maven.artifact.repository.metadata.Metadata;

/**
* Process maven metadata in artifactId directory
*
* @author juven
*/
public class ArtifactDirMetadataProcessor
    extends AbstractMetadataProcessor
{
  public ArtifactDirMetadataProcessor(AbstractMetadataHelper metadataHelper) {
    super(metadataHelper);
  }

  @Override
  public void processMetadata(String path)
      throws IOException
  {
    Metadata md = createMetadata(path);

    ByteArrayOutputStream outputStream = new ByteArrayOutputStream();

    MetadataBuilder.write(md, outputStream);

    String mdString = outputStream.toString();

    outputStream.close();

    metadataHelper.store(mdString, path + AbstractMetadataHelper.METADATA_SUFFIX);
  }

  private Metadata createMetadata(String path)
      throws IOException
  {
    try {
      Metadata md = new Metadata();

      md.setGroupId(calculateGroupId(path));

      md.setArtifactId(calculateArtifactId(path));

      versioning(md, metadataHelper.gaData.get(path));

      ModelVersionUtility.setModelVersion(md, ModelVersionUtility.LATEST_MODEL_VERSION);

      return md;
    }
    catch (MetadataException e) {
      throw new IOException(e);
    }
  }

  private String calculateGroupId(String path) {
    return path.substring(1, path.lastIndexOf('/')).replace('/', '.');
  }

  private String calculateArtifactId(String path) {
    return path.substring(path.lastIndexOf('/') + 1);
  }

  @Override
  public boolean shouldProcessMetadata(String path) {
    Collection<String> versions = metadataHelper.gaData.get(path);

    if (versions != null && !versions.isEmpty()) {
      return true;
    }

    return false;
  }

  void versioning(Metadata metadata, Collection<String> versions)
      throws MetadataException
  {
    List<MetadataOperation> ops = new ArrayList<MetadataOperation>();

    for (String version : versions) {
      ops.add(new AddVersionOperation(new StringOperand(ModelVersionUtility.LATEST_MODEL_VERSION, version)));
    }

    MetadataBuilder.changeMetadata(metadata, ops);
  }

  @Override
  public void postProcessMetadata(String path) {
    metadataHelper.gaData.remove(path);
  }

  @Override
  protected boolean isMetadataCorrect(Metadata oldMd, String path)
      throws IOException
  {
    Metadata md = createMetadata(path);

    if (oldMd.getVersioning().getRelease() == null) {
      oldMd.getVersioning().setRelease("");
    }

    if (md.getVersioning().getRelease() == null) {
      md.getVersioning().setRelease("");
    }

    if (oldMd.getVersioning().getLatest() == null) {
      return false;
    }

    if (oldMd.getVersioning().getVersions() == null) {
      return false;
    }

    if (oldMd.getArtifactId().equals(md.getArtifactId()) && oldMd.getGroupId().equals(md.getGroupId())
        && oldMd.getVersioning().getLatest().equals(md.getVersioning().getLatest())
        && oldMd.getVersioning().getRelease().equals(md.getVersioning().getRelease())
        && oldMd.getVersioning().getVersions().equals(md.getVersioning().getVersions())) {
      return true;
    }

    return false;
  }

}
TOP

Related Classes of org.sonatype.nexus.proxy.maven.metadata.ArtifactDirMetadataProcessor

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.