All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.torquebox.mojo.rubygems.layout.DELETELayout Maven / Gradle / Ivy

The newest version!
/*
 * Sonatype Nexus (TM) Open Source Version
 * Copyright (c) 2008-present 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.torquebox.mojo.rubygems.layout;

import org.torquebox.mojo.rubygems.ApiV1File;
import org.torquebox.mojo.rubygems.ApiV2File;
import org.torquebox.mojo.rubygems.DependencyFile;
import org.torquebox.mojo.rubygems.GemFile;
import org.torquebox.mojo.rubygems.GemspecFile;
import org.torquebox.mojo.rubygems.CompactInfoFile;
import org.torquebox.mojo.rubygems.RubygemsGateway;
import org.torquebox.mojo.rubygems.SpecsIndexFile;
import org.torquebox.mojo.rubygems.SpecsIndexZippedFile;

/**
 * layout for HTTP DELETE request. allows to delete 
    *
  • SpecsIndexZippedFile
  • *
  • GemFile
  • *
  • GemspecFile
  • *
  • DependencyFile
  • *
*

* and disallows

    *
  • SpecsIndexFile
  • *
  • ApiV1File
  • *
* * @author christian */ public class DELETELayout extends NoopDefaultLayout { public DELETELayout(RubygemsGateway gateway, Storage store) { super(gateway, store); } @Override public SpecsIndexFile specsIndexFile(String name) { SpecsIndexFile file = super.specsIndexFile(name); file.markAsForbidden(); return file; } @Override public SpecsIndexZippedFile specsIndexZippedFile(String name) { SpecsIndexZippedFile file = super.specsIndexZippedFile(name); store.delete(file); return file; } @Override public ApiV1File apiV1File(String name) { ApiV1File file = super.apiV1File(name); file.markAsForbidden(); return file; } @Override public GemFile gemFile(String name, String version, String platform) { GemFile file = super.gemFile(name, version, platform); store.delete(file); return file; } @Override public GemFile gemFile(String name) { GemFile file = super.gemFile(name); store.delete(file); return file; } @Override public GemspecFile gemspecFile(String name, String version, String platform) { GemspecFile file = super.gemspecFile(name, version, platform); store.delete(file); return file; } @Override public GemspecFile gemspecFile(String name) { GemspecFile file = super.gemspecFile(name); store.delete(file); return file; } @Override @Deprecated public DependencyFile dependencyFile(String name) { DependencyFile file = super.dependencyFile(name); store.delete(file); return file; } @Override public ApiV2File rubygemsInfoV2(String name, String version) { ApiV2File file = super.rubygemsInfoV2(name, version); store.delete(file); return file; } @Override public CompactInfoFile compactInfo(String name) { CompactInfoFile file = super.compactInfo(name); store.delete(file); return file; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy