]> source.dussan.org Git - archiva.git/blob
d944893aaad4fde847c4c21f72243b6a09fe2e67
[archiva.git] /
1 package org.apache.archiva.rest.services;
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.archiva.indexer.search.RepositorySearch;
23 import org.apache.archiva.indexer.search.RepositorySearchException;
24 import org.apache.archiva.indexer.search.SearchFields;
25 import org.apache.archiva.indexer.search.SearchResultHit;
26 import org.apache.archiva.indexer.search.SearchResultLimits;
27 import org.apache.archiva.indexer.search.SearchResults;
28 import org.apache.archiva.maven2.model.Artifact;
29 import org.apache.archiva.rest.api.model.Dependency;
30 import org.apache.archiva.rest.api.model.GroupIdList;
31 import org.apache.archiva.rest.api.model.SearchRequest;
32 import org.apache.archiva.rest.api.model.StringList;
33 import org.apache.archiva.rest.api.services.ArchivaRestServiceException;
34 import org.apache.archiva.rest.api.services.SearchService;
35 import org.apache.commons.collections.ListUtils;
36 import org.apache.commons.lang.StringUtils;
37 import org.springframework.stereotype.Service;
38
39 import javax.inject.Inject;
40 import java.util.ArrayList;
41 import java.util.Collections;
42 import java.util.List;
43
44 /**
45  * @author Olivier Lamy
46  */
47 @Service( "searchService#rest" )
48 public class DefaultSearchService
49     extends AbstractRestService
50     implements SearchService
51 {
52
53     @Inject
54     private RepositorySearch repositorySearch;
55
56     @Override
57     public List<Artifact> quickSearch( String queryString )
58         throws ArchivaRestServiceException
59     {
60         if ( StringUtils.isBlank( queryString ) )
61         {
62             return Collections.emptyList();
63         }
64
65         SearchResultLimits limits = new SearchResultLimits( 0 );
66         try
67         {
68             SearchResults searchResults =
69                 repositorySearch.search( getPrincipal(), getObservableRepos(), queryString, limits,
70                                          Collections.<String>emptyList() );
71             return getArtifacts( searchResults );
72
73         }
74         catch ( RepositorySearchException e )
75         {
76             log.error( e.getMessage(), e );
77             throw new ArchivaRestServiceException( e.getMessage(), e );
78         }
79     }
80
81     @Override
82     public List<Artifact> quickSearchWithRepositories( SearchRequest searchRequest )
83         throws ArchivaRestServiceException
84     {
85         String queryString = searchRequest.getQueryTerms();
86         if ( StringUtils.isBlank( queryString ) )
87         {
88             return Collections.emptyList();
89         }
90         List<String> repositories = searchRequest.getRepositories();
91         if ( repositories == null || repositories.isEmpty() )
92         {
93             repositories = getObservableRepos();
94         }
95         SearchResultLimits limits =
96             new SearchResultLimits( searchRequest.getPageSize(), searchRequest.getSelectedPage() );
97         try
98         {
99             SearchResults searchResults = repositorySearch.search( getPrincipal(), repositories, queryString, limits,
100                                                                    Collections.<String>emptyList() );
101             return getArtifacts( searchResults );
102
103         }
104         catch ( RepositorySearchException e )
105         {
106             log.error( e.getMessage(), e );
107             throw new ArchivaRestServiceException( e.getMessage(), e );
108         }
109     }
110
111     @Override
112     public List<Artifact> getArtifactVersions( String groupId, String artifactId, String packaging )
113         throws ArchivaRestServiceException
114     {
115         if ( StringUtils.isBlank( groupId ) || StringUtils.isBlank( artifactId ) )
116         {
117             return Collections.emptyList();
118         }
119         SearchFields searchField = new SearchFields();
120         searchField.setGroupId( groupId );
121         searchField.setArtifactId( artifactId );
122         searchField.setPackaging( StringUtils.isBlank( packaging ) ? "jar" : packaging );
123         searchField.setRepositories( getObservableRepos() );
124
125         try
126         {
127             SearchResults searchResults = repositorySearch.search( getPrincipal(), searchField, null );
128             return getArtifacts( searchResults );
129         }
130         catch ( RepositorySearchException e )
131         {
132             log.error( e.getMessage(), e );
133             throw new ArchivaRestServiceException( e.getMessage(), e );
134         }
135     }
136
137     @Override
138     public List<Artifact> searchArtifacts( SearchRequest searchRequest )
139         throws ArchivaRestServiceException
140     {
141         if ( searchRequest == null )
142         {
143             return Collections.emptyList();
144         }
145         SearchFields searchField = getModelMapper().map( searchRequest, SearchFields.class );
146         SearchResultLimits limits = new SearchResultLimits( 0 );
147         limits.setPageSize( searchRequest.getPageSize() );
148
149         // if no repos set we use ones available for the user
150         if ( searchField.getRepositories() == null || searchField.getRepositories().isEmpty() )
151         {
152             searchField.setRepositories( getObservableRepos() );
153         }
154
155         try
156         {
157             SearchResults searchResults = repositorySearch.search( getPrincipal(), searchField, limits );
158             return getArtifacts( searchResults );
159         }
160         catch ( RepositorySearchException e )
161         {
162             log.error( e.getMessage(), e );
163             throw new ArchivaRestServiceException( e.getMessage(), e );
164         }
165     }
166
167     @Override
168     public GroupIdList getAllGroupIds( List<String> selectedRepos )
169         throws ArchivaRestServiceException
170     {
171         List<String> observableRepos = getObservableRepos();
172         List<String> repos = ListUtils.intersection( observableRepos, selectedRepos );
173         if ( repos == null || repos.isEmpty() )
174         {
175             return new GroupIdList( Collections.<String>emptyList() );
176         }
177         try
178         {
179             return new GroupIdList( new ArrayList<>( repositorySearch.getAllGroupIds( getPrincipal(), repos ) ) );
180         }
181         catch ( RepositorySearchException e )
182         {
183             log.error( e.getMessage(), e );
184             throw new ArchivaRestServiceException( e.getMessage(), e );
185         }
186
187     }
188
189     public List<Dependency> getDependencies( String groupId, String artifactId, String version )
190         throws ArchivaRestServiceException
191     {
192         return null;  //To change body of implemented methods use File | Settings | File Templates.
193     }
194
195     public List<Artifact> getArtifactByChecksum( String checksum )
196         throws ArchivaRestServiceException
197     {
198         return null;  //To change body of implemented methods use File | Settings | File Templates.
199     }
200
201     @Override
202     public StringList getObservablesRepoIds()
203         throws ArchivaRestServiceException
204     {
205         return new StringList( getObservableRepos() );
206     }
207
208     //-------------------------------------
209     // internal
210     //-------------------------------------
211     protected List<Artifact> getArtifacts( SearchResults searchResults )
212         throws ArchivaRestServiceException
213     {
214
215         if ( searchResults == null || searchResults.isEmpty() )
216         {
217             return Collections.emptyList();
218         }
219         List<Artifact> artifacts = new ArrayList<>( searchResults.getReturnedHitsCount() );
220         for ( SearchResultHit hit : searchResults.getHits() )
221         {
222             // duplicate Artifact one per available version
223             if ( hit.getVersions().size() > 0 )
224             {
225                 for ( String version : hit.getVersions() )
226                 {
227
228                     Artifact versionned = getModelMapper().map( hit, Artifact.class );
229
230                     if ( StringUtils.isNotBlank( version ) )
231                     {
232                         versionned.setVersion( version );
233                         versionned.setUrl( getArtifactUrl( versionned ) );
234
235                         artifacts.add( versionned );
236
237                     }
238                 }
239             }
240         }
241         return artifacts;
242     }
243
244
245 }