]> source.dussan.org Git - archiva.git/blob
35f5de74fa251527eacc0ff26ddd0e07b9ae6044
[archiva.git] /
1 package org.apache.maven.repository.manager.web.action;
2
3 /*
4  * Copyright 2005-2006 The Apache Software Foundation.
5  *
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
10  *      http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  */
18
19 import com.opensymphony.xwork.ActionSupport;
20 import org.apache.maven.artifact.repository.ArtifactRepository;
21 import org.apache.maven.artifact.repository.ArtifactRepositoryFactory;
22 import org.apache.maven.artifact.repository.layout.ArtifactRepositoryLayout;
23 import org.apache.maven.repository.configuration.Configuration;
24 import org.apache.maven.repository.configuration.ConfigurationStore;
25 import org.apache.maven.repository.configuration.ConfigurationStoreException;
26 import org.apache.maven.repository.indexing.ArtifactRepositoryIndex;
27 import org.apache.maven.repository.indexing.RepositoryIndexException;
28 import org.apache.maven.repository.indexing.RepositoryIndexSearchException;
29 import org.apache.maven.repository.indexing.RepositoryIndexSearchLayer;
30 import org.apache.maven.repository.indexing.RepositoryIndexingFactory;
31
32 import java.io.File;
33 import java.net.MalformedURLException;
34 import java.util.List;
35 import java.util.Map;
36
37 /**
38  * Searches for searchString in all indexed fields.
39  *
40  * @plexus.component role="com.opensymphony.xwork.Action" role-hint="quickSearchAction"
41  */
42 public class QuickSearchAction
43     extends ActionSupport
44 {
45     /**
46      * Query string.
47      */
48     private String q;
49
50     /**
51      * Search results.
52      */
53     private List searchResult;
54
55     /**
56      * @plexus.requirement
57      */
58     private RepositoryIndexingFactory factory;
59
60     /**
61      * @plexus.requirement
62      */
63     private RepositoryIndexSearchLayer searchLayer;
64
65     /**
66      * @plexus.requirement
67      */
68     private ArtifactRepositoryFactory repositoryFactory;
69
70     /**
71      * @plexus.requirement role="org.apache.maven.artifact.repository.layout.ArtifactRepositoryLayout"
72      */
73     private Map repositoryLayouts;
74
75     /**
76      * @plexus.requirement
77      */
78     private ConfigurationStore configurationStore;
79
80     public String execute()
81         throws MalformedURLException, RepositoryIndexException, RepositoryIndexSearchException,
82         ConfigurationStoreException
83     {
84         // TODO: give action message if indexing is in progress
85
86         // TODO: return zero results if index doesn't yet exist
87
88         assert q != null && q.length() != 0;
89
90         Configuration configuration = configurationStore.getConfigurationFromStore();
91         File indexPath = new File( configuration.getIndexPath() );
92
93         ArtifactRepository repository = getDefaultRepository( configuration );
94
95         ArtifactRepositoryIndex index = factory.createArtifactRepositoryIndex( indexPath, repository );
96
97         searchResult = searchLayer.searchGeneral( q, index );
98
99         return SUCCESS;
100     }
101
102     private ArtifactRepository getDefaultRepository( Configuration configuration )
103         throws MalformedURLException
104     {
105         // TODO: [!] repository should only have been instantiated once
106         File repositoryDirectory = new File( configuration.getRepositoryDirectory() );
107         String repoDir = repositoryDirectory.toURI().toURL().toString();
108
109         ArtifactRepositoryLayout layout =
110             (ArtifactRepositoryLayout) repositoryLayouts.get( configuration.getRepositoryLayout() );
111         return repositoryFactory.createArtifactRepository( "test", repoDir, layout, null, null );
112     }
113
114     public String doInput()
115     {
116         return INPUT;
117     }
118
119     public String getQ()
120     {
121         return q;
122     }
123
124     public void setQ( String q )
125     {
126         this.q = q;
127     }
128
129     public List getSearchResult()
130     {
131         return searchResult;
132     }
133
134 }