]> source.dussan.org Git - archiva.git/commitdiff
[MRM-138] remove old directories and proxy mapper
authorBrett Porter <brett@apache.org>
Tue, 15 Aug 2006 01:21:59 +0000 (01:21 +0000)
committerBrett Porter <brett@apache.org>
Tue, 15 Aug 2006 01:21:59 +0000 (01:21 +0000)
git-svn-id: https://svn.apache.org/repos/asf/maven/repository-manager/trunk@431479 13f79535-47bb-0310-9956-ffa450edef68

maven-repository-webapp/src/main/java/org/apache/maven/repository/proxy/web/actionmapper/RepositoryProxyActionMapper.java [deleted file]
maven-repository-webapp/src/test/java/org/apache/maven/repository/proxy/web/actionmapper/test/RepositoryProxyActionMapperTest.java [deleted file]

diff --git a/maven-repository-webapp/src/main/java/org/apache/maven/repository/proxy/web/actionmapper/RepositoryProxyActionMapper.java b/maven-repository-webapp/src/main/java/org/apache/maven/repository/proxy/web/actionmapper/RepositoryProxyActionMapper.java
deleted file mode 100644 (file)
index addd6da..0000000
+++ /dev/null
@@ -1,136 +0,0 @@
-package org.apache.maven.repository.proxy.web.actionmapper;
-
-/*
- * Copyright 2005-2006 The Apache Software Foundation.
- *
- * 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 com.opensymphony.webwork.dispatcher.mapper.ActionMapping;
-import com.opensymphony.webwork.dispatcher.mapper.DefaultActionMapper;
-import org.apache.commons.logging.Log;
-import org.apache.commons.logging.LogFactory;
-
-import javax.servlet.http.HttpServletRequest;
-import java.io.FileInputStream;
-import java.io.IOException;
-import java.net.URL;
-import java.util.HashMap;
-import java.util.Properties;
-
-/**
- * @todo remove this!
- */
-public class RepositoryProxyActionMapper
-    extends DefaultActionMapper
-{
-    /**
-     * logger instance
-     */
-    protected static final Log log = LogFactory.getLog( RepositoryProxyActionMapper.class );
-
-    private static final String configFileName = "maven-proxy-complete.conf";
-
-    private static final String defaultProxyAction = "proxy";
-
-    /**
-     * the keyword that will be checked on the http request to determine if proxy
-     * is requested
-     * <p/>
-     * the default prefix is "/proxy/"
-     */
-    private String prefix = "/proxy/";
-
-    private String requestedArtifact;
-
-    String configFile = null;
-
-    public String getPrefix()
-    {
-        return prefix;
-    }
-
-    public String getRequestedArtifact()
-    {
-        return requestedArtifact;
-    }
-
-    public ActionMapping getDefaultActionMapping( HttpServletRequest request )
-    {
-        ActionMapping mapping = super.getMapping( request );
-
-        return mapping;
-    }
-
-    public void setConfigfile( String fileName )
-    {
-        configFile = fileName;
-    }
-
-    /**
-     * only process the request that matches the prefix all other request
-     * will be hand over to the default action mapper
-     * <p/>
-     * if the configuration file is missing the request will also be channeled
-     * to the default action mapper
-     */
-    public ActionMapping getMapping( HttpServletRequest request )
-    {
-        Properties config = new Properties();
-        String uri = request.getServletPath();
-        URL configURL = getClass().getClassLoader().getResource( configFileName );
-
-        if ( ( configURL != null ) && ( configFile == null ) )
-        {
-            configFile = configURL.getFile();
-            log.info( configFile );
-        }
-
-        try
-        {
-            config.load( new FileInputStream( configFile ) );
-        }
-        catch ( IOException ex )
-        {
-            log.info( "[config error] " + ex.getMessage() );
-            return getDefaultActionMapping( request );
-        }
-
-        if ( config.getProperty( "prefix" ) != null )
-        {
-            prefix = "/" + config.getProperty( "prefix" ) + "/";
-        }
-
-        log.info( "prefix : " + prefix );
-
-        if ( uri.startsWith( prefix ) )
-        {
-            requestedArtifact = uri.substring( prefix.length() );
-
-            if ( ( requestedArtifact == null ) || ( requestedArtifact.length() < 0 ) )
-            {
-                return getDefaultActionMapping( request );
-            }
-
-            HashMap parameterMap = new HashMap();
-
-            parameterMap.put( "requestedFile", requestedArtifact );
-            parameterMap.put( "configFile", configFile );
-
-            return new ActionMapping( defaultProxyAction, "/", "", parameterMap );
-        }
-
-        return getDefaultActionMapping( request );
-    }
-
-}
diff --git a/maven-repository-webapp/src/test/java/org/apache/maven/repository/proxy/web/actionmapper/test/RepositoryProxyActionMapperTest.java b/maven-repository-webapp/src/test/java/org/apache/maven/repository/proxy/web/actionmapper/test/RepositoryProxyActionMapperTest.java
deleted file mode 100644 (file)
index 4288a90..0000000
+++ /dev/null
@@ -1,77 +0,0 @@
-package org.apache.maven.repository.proxy.web.actionmapper.test;
-
-/*
- * Copyright 2005-2006 The Apache Software Foundation.
- *
- * 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 com.opensymphony.webwork.dispatcher.mapper.ActionMapping;
-import org.apache.maven.repository.proxy.web.action.test.stub.HttpServletRequestStub;
-import org.apache.maven.repository.proxy.web.actionmapper.RepositoryProxyActionMapper;
-import org.codehaus.plexus.PlexusTestCase;
-
-public class RepositoryProxyActionMapperTest
-    extends PlexusTestCase
-{
-    RepositoryProxyActionMapper actionMapper;
-
-    public void setUp()
-        throws Exception
-    {
-        actionMapper = new RepositoryProxyActionMapper();
-    }
-
-    // TODO: uncomment once we know how to make the default action mapper work using stubs
-    //    public void testDefaultActionMapping()
-    //    throws Exception
-    //    {
-    //        ActionMapping mapping = actionMapper.getMapping( new DefaultActionMapperRequestStub() );
-    //
-    //        String expectedNamespace = "test";
-    //        String expectedName = "test";
-    //
-    //        assertNotNull( "ActionMapping is null", mapping );
-    //        assertNotNull( "namespace is null", mapping.getNamespace() );
-    //        assertNotNull( "name is null", mapping.getName() );
-    //        assertTrue( "invalid namespace: " + mapping.getNamespace(), mapping.getNamespace().equals( expectedNamespace ) );
-    //        assertTrue( "invalid name: " + mapping.getName(), mapping.getName().equals( expectedName ) );
-    //    }
-
-    public void testRepositoryProxyActionMapping()
-        throws Exception
-    {
-        String testDir = getBasedir() + "/target/test-classes/unit/proxy-test";
-
-        actionMapper.setConfigfile( testDir + "/maven-proxy-complete.conf" );
-
-        ActionMapping mapping = actionMapper.getMapping( new HttpServletRequestStub() );
-        String expectedName = "proxy";
-        String expectedFile = "org/sometest/artifact-0.0.jar";
-
-        assertNotNull( "ActionMapping is null", mapping );
-        assertNotNull( "name is null", mapping.getName() );
-
-        String mappingName = mapping.getName();
-        String requestedFile = (String) mapping.getParams().get( "requestedFile" );
-
-        assertTrue( "invalid name: " + mappingName, mappingName.equals( expectedName ) );
-        assertTrue( "invalid parameter: " + requestedFile, requestedFile.equals( expectedFile ) );
-    }
-
-    public void tearDown()
-        throws Exception
-    {
-        // do nothing
-    }
-}