]> source.dussan.org Git - archiva.git/blob
b289188ed3e568b124d0d524cbe141217bd5d812
[archiva.git] /
1 package org.apache.maven.archiva.web.repository;
2
3 /*
4  * Licensed to the Apache Software Foundation (ASF) under one
5  * or more contributor license agreements.  See the NOTICE file
6  * distributed with this work for additional information
7  * regarding copyright ownership.  The ASF licenses this file
8  * to you under the Apache License, Version 2.0 (the
9  * "License"); you may not use this file except in compliance
10  * with the License.  You may obtain a copy of the License at
11  *
12  *  http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing,
15  * software distributed under the License is distributed on an
16  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
17  * KIND, either express or implied.  See the License for the
18  * specific language governing permissions and limitations
19  * under the License.
20  */
21
22 import org.apache.maven.archiva.webdav.util.MimeTypes;
23 import org.codehaus.plexus.personality.plexus.lifecycle.phase.Initializable;
24 import org.codehaus.plexus.personality.plexus.lifecycle.phase.InitializationException;
25
26 import java.io.IOException;
27 import java.net.URL;
28
29 /**
30  * Custom Archiva MimeTypes loader for plexus-webdav's {@link MimeTypes} 
31  *
32  * @author <a href="mailto:joakime@apache.org">Joakim Erdfelt</a>
33  * @version $Id$
34  * @todo Support custom mime types from archiva-configuration.
35  * 
36  * @plexus.component role="org.apache.maven.archiva.web.repository.ArchivaMimeTypeLoader"
37  */
38 public class ArchivaMimeTypeLoader
39     implements Initializable
40 {
41     /**
42      * @plexus.requirement
43      */
44     private MimeTypes mimeTypes;
45
46     public void initialize()
47         throws InitializationException
48     {
49         // TODO: Make mime types loading configurable.
50         // Load the mime types from archiva location.
51         if ( mimeTypes.getMimeType( "sha1" ) == null )
52         {
53             URL url = this.getClass().getClassLoader().getResource( "/archiva-mime-types.txt" );
54             if ( url == null )
55             {
56                 url = this.getClass().getClassLoader().getResource( "archiva-mime-types.txt" );
57             }
58
59             if ( url != null )
60             {
61                 try
62                 {
63                     mimeTypes.load( url.openStream() );
64                 }
65                 catch ( IOException e )
66                 {
67                     throw new InitializationException( "Unable to load archiva-mime-types.txt : " + e.getMessage(), e );
68                 }
69             }
70         }
71     }
72 }