Package org.sonatype.nexus.repositories.metadata

Source Code of org.sonatype.nexus.repositories.metadata.NexusRepositoryMetadataContentGenerator

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

import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.io.InputStream;

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

import org.sonatype.nexus.proxy.IllegalOperationException;
import org.sonatype.nexus.proxy.ItemNotFoundException;
import org.sonatype.nexus.proxy.LocalStorageException;
import org.sonatype.nexus.proxy.StorageException;
import org.sonatype.nexus.proxy.item.ContentGenerator;
import org.sonatype.nexus.proxy.item.ContentLocator;
import org.sonatype.nexus.proxy.item.StorageFileItem;
import org.sonatype.nexus.proxy.item.StringContentLocator;
import org.sonatype.nexus.proxy.repository.Repository;
import org.sonatype.nexus.util.io.StreamSupport;
import org.sonatype.nexus.web.BaseUrlHolder;

@Named(NexusRepositoryMetadataContentGenerator.ID)
@Singleton
public class NexusRepositoryMetadataContentGenerator
    implements ContentGenerator
{
  public static final String ID = "NexusRepositoryMetadataContentGenerator";

  @Override
  public String getGeneratorId() {
    return ID;
  }

  @Override
  public ContentLocator generateContent(Repository repository, String path, StorageFileItem item)
      throws IllegalOperationException, ItemNotFoundException, StorageException
  {
    ByteArrayOutputStream bos = new ByteArrayOutputStream();
    try (final InputStream is = item.getInputStream()) {
      StreamSupport.copy(is, bos, StreamSupport.BUFFER_SIZE);
      String body = new String(bos.toByteArray(), "UTF-8");
      StringContentLocator result = null;
      if (BaseUrlHolder.isSet()) {
        result = new StringContentLocator(body.replace("@rootUrl@", BaseUrlHolder.get()));
      }
      else {
        result = new StringContentLocator(body.replace("@rootUrl@", ""));
      }
      return result;
    }
    catch (IOException e) {
      throw new LocalStorageException(e);
    }
  }
}
TOP

Related Classes of org.sonatype.nexus.repositories.metadata.NexusRepositoryMetadataContentGenerator

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.