1 package org.apache.maven.archiva.webdav;
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
12 * http://www.apache.org/licenses/LICENSE-2.0
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
23 import java.io.FileNotFoundException;
24 import java.io.FileReader;
25 import java.io.IOException;
26 import java.util.ArrayList;
27 import java.util.HashMap;
28 import java.util.List;
31 import javax.servlet.http.HttpServletResponse;
33 import org.apache.commons.io.FileUtils;
34 import org.apache.commons.lang.StringUtils;
35 import org.apache.jackrabbit.webdav.DavException;
36 import org.apache.jackrabbit.webdav.DavResource;
37 import org.apache.jackrabbit.webdav.DavResourceFactory;
38 import org.apache.jackrabbit.webdav.DavResourceLocator;
39 import org.apache.jackrabbit.webdav.DavServletRequest;
40 import org.apache.jackrabbit.webdav.DavServletResponse;
41 import org.apache.jackrabbit.webdav.DavSession;
42 import org.apache.jackrabbit.webdav.lock.LockManager;
43 import org.apache.jackrabbit.webdav.lock.SimpleLockManager;
44 import org.apache.maven.archiva.common.utils.PathUtil;
45 import org.apache.maven.archiva.configuration.ArchivaConfiguration;
46 import org.apache.maven.archiva.configuration.RepositoryGroupConfiguration;
47 import org.apache.maven.archiva.model.ArchivaRepositoryMetadata;
48 import org.apache.maven.archiva.model.ArtifactReference;
49 import org.apache.maven.archiva.model.ProjectReference;
50 import org.apache.maven.archiva.model.VersionedReference;
51 import org.apache.maven.archiva.policies.ProxyDownloadException;
52 import org.apache.maven.archiva.proxy.RepositoryProxyConnectors;
53 import org.apache.maven.archiva.repository.ManagedRepositoryContent;
54 import org.apache.maven.archiva.repository.RepositoryContentFactory;
55 import org.apache.maven.archiva.repository.RepositoryException;
56 import org.apache.maven.archiva.repository.RepositoryNotFoundException;
57 import org.apache.maven.archiva.repository.audit.AuditEvent;
58 import org.apache.maven.archiva.repository.audit.AuditListener;
59 import org.apache.maven.archiva.repository.audit.Auditable;
60 import org.apache.maven.archiva.repository.content.RepositoryRequest;
61 import org.apache.maven.archiva.repository.layout.LayoutException;
62 import org.apache.maven.archiva.repository.metadata.MetadataTools;
63 import org.apache.maven.archiva.repository.metadata.RepositoryMetadataException;
64 import org.apache.maven.archiva.repository.metadata.RepositoryMetadataMerge;
65 import org.apache.maven.archiva.repository.metadata.RepositoryMetadataReader;
66 import org.apache.maven.archiva.repository.metadata.RepositoryMetadataWriter;
67 import org.apache.maven.archiva.repository.scanner.RepositoryContentConsumers;
68 import org.apache.maven.archiva.security.ArchivaXworkUser;
69 import org.apache.maven.archiva.security.ServletAuthenticator;
70 import org.apache.maven.archiva.webdav.util.MimeTypes;
71 import org.apache.maven.archiva.webdav.util.RepositoryPathUtil;
72 import org.apache.maven.archiva.webdav.util.WebdavMethodUtil;
73 import org.apache.maven.model.DistributionManagement;
74 import org.apache.maven.model.Model;
75 import org.apache.maven.model.Relocation;
76 import org.apache.maven.model.io.xpp3.MavenXpp3Reader;
77 import org.codehaus.plexus.digest.ChecksumFile;
78 import org.codehaus.plexus.digest.Digester;
79 import org.codehaus.plexus.digest.DigesterException;
80 import org.codehaus.plexus.redback.authentication.AuthenticationException;
81 import org.codehaus.plexus.redback.authentication.AuthenticationResult;
82 import org.codehaus.plexus.redback.authorization.AuthorizationException;
83 import org.codehaus.plexus.redback.authorization.UnauthorizedException;
84 import org.codehaus.plexus.redback.policy.AccountLockedException;
85 import org.codehaus.plexus.redback.policy.MustChangePasswordException;
86 import org.codehaus.plexus.redback.system.SecuritySession;
87 import org.codehaus.plexus.redback.system.SecuritySystemConstants;
88 import org.codehaus.plexus.redback.xwork.filter.authentication.HttpAuthenticator;
89 import org.codehaus.plexus.util.xml.pull.XmlPullParserException;
90 import org.slf4j.Logger;
91 import org.slf4j.LoggerFactory;
93 import com.opensymphony.xwork.ActionContext;
96 * @author <a href="mailto:james@atlassian.com">James William Dumay</a>
97 * @plexus.component role="org.apache.maven.archiva.webdav.ArchivaDavResourceFactory"
99 public class ArchivaDavResourceFactory
100 implements DavResourceFactory, Auditable
102 private static final String PROXIED_SUFFIX = " (proxied)";
104 private static final String HTTP_PUT_METHOD = "PUT";
106 private Logger log = LoggerFactory.getLogger( ArchivaDavResourceFactory.class );
109 * @plexus.requirement role="org.apache.maven.archiva.repository.audit.AuditListener"
111 private List<AuditListener> auditListeners = new ArrayList<AuditListener>();
114 * @plexus.requirement
116 private RepositoryContentFactory repositoryFactory;
119 * @plexus.requirement
121 private RepositoryRequest repositoryRequest;
124 * @plexus.requirement role-hint="default"
126 private RepositoryProxyConnectors connectors;
129 * @plexus.requirement
131 private MetadataTools metadataTools;
134 * @plexus.requirement
136 private MimeTypes mimeTypes;
139 * @plexus.requirement
141 private ArchivaConfiguration archivaConfiguration;
144 * @plexus.requirement
146 private ServletAuthenticator servletAuth;
149 * @plexus.requirement role-hint="basic"
151 private HttpAuthenticator httpAuth;
154 * Lock Manager - use simple implementation from JackRabbit
156 private final LockManager lockManager = new SimpleLockManager();
159 * @plexus.requirement
161 private RepositoryContentConsumers consumers;
164 * @plexus.requirement
166 private ChecksumFile checksum;
169 * @plexus.requirement role-hint="sha1"
171 private Digester digestSha1;
174 * @plexus.requirement role-hint="md5";
176 private Digester digestMd5;
178 public DavResource createResource( final DavResourceLocator locator, final DavServletRequest request,
179 final DavServletResponse response )
182 checkLocatorIsInstanceOfRepositoryLocator( locator );
183 ArchivaDavResourceLocator archivaLocator = (ArchivaDavResourceLocator) locator;
185 RepositoryGroupConfiguration repoGroupConfig =
186 archivaConfiguration.getConfiguration().getRepositoryGroupsAsMap().get( archivaLocator.getRepositoryId() );
187 List<String> repositories = new ArrayList<String>();
189 boolean isGet = WebdavMethodUtil.isReadMethod( request.getMethod() );
190 boolean isPut = WebdavMethodUtil.isWriteMethod( request.getMethod() );
192 if ( repoGroupConfig != null )
194 if( WebdavMethodUtil.isWriteMethod( request.getMethod() ) )
196 throw new DavException( HttpServletResponse.SC_METHOD_NOT_ALLOWED,
197 "Write method not allowed for repository groups." );
199 repositories.addAll( repoGroupConfig.getRepositories() );
201 // handle browse requests for virtual repos
202 if ( RepositoryPathUtil.getLogicalResource( locator.getResourcePath() ).endsWith( "/" ) )
204 return getResource( request, repositories, archivaLocator );
209 repositories.add( archivaLocator.getRepositoryId() );
212 //MRM-419 - Windows Webdav support. Should not 404 if there is no content.
213 if (StringUtils.isEmpty(archivaLocator.getRepositoryId()))
215 throw new DavException(HttpServletResponse.SC_NO_CONTENT);
218 List<DavResource> availableResources = new ArrayList<DavResource>();
219 List<String> resourcesInAbsolutePath = new ArrayList<String>();
220 DavException e = null;
222 for ( String repositoryId : repositories )
224 ManagedRepositoryContent managedRepository = null;
228 managedRepository = getManagedRepository( repositoryId );
230 catch ( DavException de )
232 throw new DavException( HttpServletResponse.SC_NOT_FOUND, "Invalid managed repository <" +
233 repositoryId + ">" );
236 DavResource resource = null;
238 if ( !locator.getResourcePath().startsWith( ArchivaDavResource.HIDDEN_PATH_PREFIX ) )
240 if ( managedRepository != null )
244 if( isAuthorized( request, repositoryId ) )
246 LogicalResource logicalResource =
247 new LogicalResource( RepositoryPathUtil.getLogicalResource( locator.getResourcePath() ) );
251 resource = doGet( managedRepository, request, archivaLocator, logicalResource );
256 resource = doPut( managedRepository, request, archivaLocator, logicalResource );
260 catch ( DavException de )
266 if( resource == null )
268 e = new DavException( HttpServletResponse.SC_NOT_FOUND, "Resource does not exist" );
272 availableResources.add( resource );
274 String logicalResource = RepositoryPathUtil.getLogicalResource( locator.getResourcePath() );
275 resourcesInAbsolutePath.add( managedRepository.getRepoRoot() + logicalResource );
280 e = new DavException( HttpServletResponse.SC_NOT_FOUND, "Repository does not exist" );
285 if ( availableResources.isEmpty() )
290 String requestedResource = request.getRequestURI();
292 // MRM-872 : merge all available metadata
293 // merge metadata only when requested via the repo group
294 if ( ( repositoryRequest.isMetadata( requestedResource ) || ( requestedResource.endsWith( "metadata.xml.sha1" ) || requestedResource.endsWith( "metadata.xml.md5" ) ) ) &&
295 repoGroupConfig != null )
297 // this should only be at the project level not version level!
298 if( isProjectReference( requestedResource ) )
300 String artifactId = StringUtils.substringBeforeLast( requestedResource.replace( '\\', '/' ), "/" );
301 artifactId = StringUtils.substringAfterLast( artifactId, "/" );
303 ArchivaDavResource res = ( ArchivaDavResource ) availableResources.get( 0 );
304 String filePath = StringUtils.substringBeforeLast( res.getLocalResource().getAbsolutePath().replace( '\\', '/' ), "/" );
305 filePath = filePath + "/maven-metadata-" + repoGroupConfig.getId() + ".xml";
307 // for MRM-872 handle checksums of the merged metadata files
308 if( repositoryRequest.isSupportFile( requestedResource ) )
310 File metadataChecksum = new File( filePath + "."
311 + StringUtils.substringAfterLast( requestedResource, "." ) );
312 if( metadataChecksum.exists() )
314 LogicalResource logicalResource =
315 new LogicalResource( RepositoryPathUtil.getLogicalResource( locator.getResourcePath() ) );
317 ArchivaDavResource metadataChecksumResource =
318 new ArchivaDavResource( metadataChecksum.getAbsolutePath(), logicalResource.getPath(), null,
319 request.getRemoteAddr(), request.getDavSession(), archivaLocator, this,
320 mimeTypes, auditListeners, consumers );
321 availableResources.add( 0, metadataChecksumResource );
325 { // merge the metadata of all repos under group
326 ArchivaRepositoryMetadata mergedMetadata = new ArchivaRepositoryMetadata();
327 for ( String resourceAbsPath : resourcesInAbsolutePath )
331 File metadataFile = new File( resourceAbsPath );
332 ArchivaRepositoryMetadata repoMetadata = RepositoryMetadataReader.read( metadataFile );
333 mergedMetadata = RepositoryMetadataMerge.merge( mergedMetadata, repoMetadata );
335 catch ( RepositoryMetadataException r )
337 throw new DavException( HttpServletResponse.SC_INTERNAL_SERVER_ERROR,
338 "Error occurred while reading metadata file." );
344 File resourceFile = writeMergedMetadataToFile( mergedMetadata, filePath );
346 LogicalResource logicalResource =
347 new LogicalResource( RepositoryPathUtil.getLogicalResource( locator.getResourcePath() ) );
349 ArchivaDavResource metadataResource =
350 new ArchivaDavResource( resourceFile.getAbsolutePath(), logicalResource.getPath(), null,
351 request.getRemoteAddr(), request.getDavSession(), archivaLocator, this,
352 mimeTypes, auditListeners, consumers );
353 availableResources.add( 0, metadataResource );
355 catch ( RepositoryMetadataException r )
357 throw new DavException( HttpServletResponse.SC_INTERNAL_SERVER_ERROR,
358 "Error occurred while writing metadata file." );
360 catch ( IOException ie )
362 throw new DavException( HttpServletResponse.SC_INTERNAL_SERVER_ERROR,
363 "Error occurred while generating checksum files." );
365 catch ( DigesterException de )
367 throw new DavException( HttpServletResponse.SC_INTERNAL_SERVER_ERROR,
368 "Error occurred while generating checksum files." );
374 DavResource resource = availableResources.get( 0 );
375 setHeaders(response, locator, resource );
377 // compatibility with MRM-440 to ensure browsing the repository works ok
378 if ( resource.isCollection() && !request.getRequestURI().endsWith("/" ) )
380 throw new BrowserRedirectException( resource.getHref() );
382 resource.addLockManager(lockManager);
386 public DavResource createResource( final DavResourceLocator locator, final DavSession davSession )
389 checkLocatorIsInstanceOfRepositoryLocator( locator );
390 ArchivaDavResourceLocator archivaLocator = (ArchivaDavResourceLocator) locator;
392 DavResource resource = null;
393 if ( !locator.getResourcePath().startsWith( ArchivaDavResource.HIDDEN_PATH_PREFIX ) )
395 ManagedRepositoryContent managedRepository = getManagedRepository( archivaLocator.getRepositoryId() );
396 String logicalResource = RepositoryPathUtil.getLogicalResource( locator.getResourcePath() );
397 File resourceFile = new File( managedRepository.getRepoRoot(), logicalResource );
399 new ArchivaDavResource( resourceFile.getAbsolutePath(), logicalResource,
400 managedRepository.getRepository(), davSession, archivaLocator, this, mimeTypes,
401 auditListeners, consumers );
403 resource.addLockManager(lockManager);
407 private DavResource doGet( ManagedRepositoryContent managedRepository, DavServletRequest request,
408 ArchivaDavResourceLocator locator, LogicalResource logicalResource )
411 File resourceFile = new File( managedRepository.getRepoRoot(), logicalResource.getPath() );
412 ArchivaDavResource resource =
413 new ArchivaDavResource( resourceFile.getAbsolutePath(), logicalResource.getPath(),
414 managedRepository.getRepository(), request.getRemoteAddr(),
415 request.getDavSession(), locator, this, mimeTypes, auditListeners, consumers );
417 if ( !resource.isCollection() )
419 boolean previouslyExisted = resourceFile.exists();
421 // At this point the incoming request can either be in default or
422 // legacy layout format.
423 boolean fromProxy = fetchContentFromProxies( managedRepository, request, logicalResource );
427 // Perform an adjustment of the resource to the managed
428 // repository expected path.
429 String localResourcePath =
430 repositoryRequest.toNativePath( logicalResource.getPath(), managedRepository );
431 resourceFile = new File( managedRepository.getRepoRoot(), localResourcePath );
433 catch ( LayoutException e )
435 if ( previouslyExisted )
439 throw new DavException( HttpServletResponse.SC_NOT_FOUND, e );
442 // Attempt to fetch the resource from any defined proxy.
445 String repositoryId = locator.getRepositoryId();
446 String event = ( previouslyExisted ? AuditEvent.MODIFY_FILE : AuditEvent.CREATE_FILE ) + PROXIED_SUFFIX;
447 triggerAuditEvent( request.getRemoteAddr(), repositoryId, logicalResource.getPath(), event );
450 if ( !resourceFile.exists() )
457 new ArchivaDavResource( resourceFile.getAbsolutePath(), logicalResource.getPath(),
458 managedRepository.getRepository(), request.getRemoteAddr(),
459 request.getDavSession(), locator, this, mimeTypes, auditListeners,
466 private DavResource doPut( ManagedRepositoryContent managedRepository, DavServletRequest request,
467 ArchivaDavResourceLocator locator, LogicalResource logicalResource )
471 * Create parent directories that don't exist when writing a file This actually makes this implementation not
472 * compliant to the WebDAV RFC - but we have enough knowledge about how the collection is being used to do this
473 * reasonably and some versions of Maven's WebDAV don't correctly create the collections themselves.
476 File rootDirectory = new File( managedRepository.getRepoRoot() );
477 File destDir = new File( rootDirectory, logicalResource.getPath() ).getParentFile();
478 if ( request.getMethod().equals(HTTP_PUT_METHOD) && !destDir.exists() )
481 String relPath = PathUtil.getRelative( rootDirectory.getAbsolutePath(), destDir );
482 triggerAuditEvent( request.getRemoteAddr(), logicalResource.getPath(), relPath, AuditEvent.CREATE_DIR );
485 File resourceFile = new File( managedRepository.getRepoRoot(), logicalResource.getPath() );
487 return new ArchivaDavResource( resourceFile.getAbsolutePath(), logicalResource.getPath(),
488 managedRepository.getRepository(), request.getRemoteAddr(),
489 request.getDavSession(), locator, this, mimeTypes, auditListeners, consumers );
492 private boolean fetchContentFromProxies( ManagedRepositoryContent managedRepository, DavServletRequest request,
493 LogicalResource resource )
496 if ( repositoryRequest.isSupportFile( resource.getPath() ) )
498 // Checksums are fetched with artifact / metadata.
500 // Need to adjust the path for the checksum resource.
504 // Is it a Metadata resource?
505 if ( repositoryRequest.isDefault( resource.getPath() ) && repositoryRequest.isMetadata( resource.getPath() ) )
507 return fetchMetadataFromProxies( managedRepository, request, resource );
510 // Not any of the above? Then it's gotta be an artifact reference.
513 // Get the artifact reference in a layout neutral way.
514 ArtifactReference artifact = repositoryRequest.toArtifactReference( resource.getPath() );
516 if ( artifact != null )
518 applyServerSideRelocation( managedRepository, artifact );
520 File proxiedFile = connectors.fetchFromProxies( managedRepository, artifact );
522 resource.setPath( managedRepository.toPath( artifact ) );
524 return ( proxiedFile != null );
527 catch ( LayoutException e )
531 catch ( ProxyDownloadException e )
533 log.error( e.getMessage(), e );
534 throw new DavException( HttpServletResponse.SC_INTERNAL_SERVER_ERROR, "Unable to fetch artifact resource." );
539 private boolean fetchMetadataFromProxies( ManagedRepositoryContent managedRepository, DavServletRequest request,
540 LogicalResource resource )
543 ProjectReference project;
544 VersionedReference versioned;
549 versioned = metadataTools.toVersionedReference( resource.getPath() );
550 if ( versioned != null )
552 connectors.fetchFromProxies( managedRepository, versioned );
556 catch ( RepositoryMetadataException e )
563 project = metadataTools.toProjectReference( resource.getPath() );
564 if ( project != null )
566 connectors.fetchFromProxies( managedRepository, project );
570 catch ( RepositoryMetadataException e )
579 * A relocation capable client will request the POM prior to the artifact, and will then read meta-data and do
580 * client side relocation. A simplier client (like maven 1) will only request the artifact and not use the
583 * For such clients, archiva does server-side relocation by reading itself the <relocation> element in
584 * metadatas and serving the expected artifact.
586 protected void applyServerSideRelocation( ManagedRepositoryContent managedRepository, ArtifactReference artifact )
587 throws ProxyDownloadException
589 if ( "pom".equals( artifact.getType() ) )
594 // Build the artifact POM reference
595 ArtifactReference pomReference = new ArtifactReference();
596 pomReference.setGroupId( artifact.getGroupId() );
597 pomReference.setArtifactId( artifact.getArtifactId() );
598 pomReference.setVersion( artifact.getVersion() );
599 pomReference.setType( "pom" );
601 // Get the artifact POM from proxied repositories if needed
602 connectors.fetchFromProxies( managedRepository, pomReference );
604 // Open and read the POM from the managed repo
605 File pom = managedRepository.toFile( pomReference );
614 Model model = new MavenXpp3Reader().read( new FileReader( pom ) );
615 DistributionManagement dist = model.getDistributionManagement();
618 Relocation relocation = dist.getRelocation();
619 if ( relocation != null )
621 // artifact is relocated : update the repositoryPath
622 if ( relocation.getGroupId() != null )
624 artifact.setGroupId( relocation.getGroupId() );
626 if ( relocation.getArtifactId() != null )
628 artifact.setArtifactId( relocation.getArtifactId() );
630 if ( relocation.getVersion() != null )
632 artifact.setVersion( relocation.getVersion() );
637 catch ( FileNotFoundException e )
639 // Artifact has no POM in repo : ignore
641 catch ( IOException e )
643 // Unable to read POM : ignore.
645 catch ( XmlPullParserException e )
647 // Invalid POM : ignore
652 private void triggerAuditEvent( String remoteIP, String repositoryId, String resource, String action )
654 String activePrincipal = ArchivaXworkUser.getActivePrincipal( ActionContext.getContext().getSession() );
655 AuditEvent event = new AuditEvent( repositoryId, activePrincipal, resource, action );
656 event.setRemoteIP( remoteIP );
658 for ( AuditListener listener : auditListeners )
660 listener.auditEvent( event );
664 public void addAuditListener( AuditListener listener )
666 this.auditListeners.add( listener );
669 public void clearAuditListeners()
671 this.auditListeners.clear();
674 public void removeAuditListener( AuditListener listener )
676 this.auditListeners.remove( listener );
679 private void setHeaders( DavServletResponse response, DavResourceLocator locator, DavResource resource )
681 // [MRM-503] - Metadata file need Pragma:no-cache response
683 if ( locator.getResourcePath().endsWith( "/maven-metadata.xml" ) )
685 response.addHeader( "Pragma", "no-cache" );
686 response.addHeader( "Cache-Control", "no-cache" );
689 //We need to specify this so connecting wagons can work correctly
690 response.addDateHeader("last-modified", resource.getModificationTime());
692 // TODO: [MRM-524] determine http caching options for other types of files (artifacts, sha1, md5, snapshots)
695 private ManagedRepositoryContent getManagedRepository( String respositoryId )
698 if ( respositoryId != null )
702 return repositoryFactory.getManagedRepositoryContent( respositoryId );
704 catch ( RepositoryNotFoundException e )
706 throw new DavException( HttpServletResponse.SC_NOT_FOUND, e );
708 catch ( RepositoryException e )
710 throw new DavException( HttpServletResponse.SC_NOT_FOUND, e );
716 private void checkLocatorIsInstanceOfRepositoryLocator( DavResourceLocator locator )
719 if ( !( locator instanceof RepositoryLocator ) )
721 throw new DavException( HttpServletResponse.SC_INTERNAL_SERVER_ERROR,
722 "Locator does not implement RepositoryLocator" );
726 class LogicalResource
730 public LogicalResource( String path )
735 public String getPath()
740 public void setPath( String path )
746 protected boolean isAuthorized( DavServletRequest request, String repositoryId )
751 AuthenticationResult result = httpAuth.getAuthenticationResult( request, null );
752 SecuritySession securitySession = httpAuth.getSecuritySession();
754 return servletAuth.isAuthenticated( request, result ) &&
755 servletAuth.isAuthorized( request, securitySession, repositoryId,
756 WebdavMethodUtil.isWriteMethod( request.getMethod() ) );
758 catch ( AuthenticationException e )
760 throw new UnauthorizedDavException( repositoryId, "You are not authenticated" );
762 catch ( MustChangePasswordException e )
764 throw new UnauthorizedDavException( repositoryId, "You must change your password." );
766 catch ( AccountLockedException e )
768 throw new UnauthorizedDavException( repositoryId, "User account is locked." );
770 catch ( AuthorizationException e )
772 throw new DavException( HttpServletResponse.SC_INTERNAL_SERVER_ERROR,
773 "Fatal Authorization Subsystem Error." );
775 catch ( UnauthorizedException e )
777 throw new UnauthorizedDavException( repositoryId, e.getMessage() );
781 private DavResource getResource( DavServletRequest request, List<String> repositories, ArchivaDavResourceLocator locator )
784 List<File> mergedRepositoryContents = new ArrayList<File>();
785 LogicalResource logicalResource =
786 new LogicalResource( RepositoryPathUtil.getLogicalResource( locator.getResourcePath() ) );
789 // if the current user logged in has permission to any of the repositories, allow user to
790 // browse the repo group but displaying only the repositories which the user has permission to access.
791 // otherwise, prompt for authentication.
793 // put the current session in the session map which will be passed to ArchivaXworkUser
794 Map<String, Object> sessionMap = new HashMap<String, Object>();
795 if( request.getSession().getAttribute( SecuritySystemConstants.SECURITY_SESSION_KEY ) != null )
797 sessionMap.put( SecuritySystemConstants.SECURITY_SESSION_KEY,
798 request.getSession().getAttribute( SecuritySystemConstants.SECURITY_SESSION_KEY ) );
801 String activePrincipal = ArchivaXworkUser.getActivePrincipal( sessionMap );
802 boolean allow = isAllowedToContinue( request, repositories, activePrincipal );
806 for( String repository : repositories )
808 // for prompted authentication
809 if( httpAuth.getSecuritySession() != null )
813 if( isAuthorized( request, repository ) )
815 getResource( locator, mergedRepositoryContents, logicalResource, repository );
818 catch ( DavException e )
825 // for the current user logged in
828 if( servletAuth.isAuthorizedToAccessVirtualRepository( activePrincipal, repository ) )
830 getResource( locator, mergedRepositoryContents, logicalResource, repository );
833 catch ( UnauthorizedException e )
842 throw new UnauthorizedDavException( locator.getRepositoryId(), "User not authorized." );
845 ArchivaVirtualDavResource resource =
846 new ArchivaVirtualDavResource( mergedRepositoryContents, logicalResource.getPath(), mimeTypes, locator, this );
848 // compatibility with MRM-440 to ensure browsing the repository group works ok
849 if ( resource.isCollection() && !request.getRequestURI().endsWith("/" ) )
851 throw new BrowserRedirectException( resource.getHref() );
857 private void getResource( ArchivaDavResourceLocator locator, List<File> mergedRepositoryContents,
858 LogicalResource logicalResource, String repository )
861 ManagedRepositoryContent managedRepository = null;
865 managedRepository = getManagedRepository( repository );
867 catch ( DavException de )
869 throw new DavException( HttpServletResponse.SC_NOT_FOUND, "Invalid managed repository <" +
873 if ( !locator.getResourcePath().startsWith( ArchivaVirtualDavResource.HIDDEN_PATH_PREFIX ) )
875 if( managedRepository != null )
877 File resourceFile = new File( managedRepository.getRepoRoot(), logicalResource.getPath() );
878 if( resourceFile.exists() )
880 mergedRepositoryContents.add( resourceFile );
887 * Check if the current user is authorized to access any of the repos
890 * @param repositories
891 * @param activePrincipal
894 private boolean isAllowedToContinue( DavServletRequest request, List<String> repositories, String activePrincipal )
896 boolean allow = false;
899 // if securitySession != null, it means that the user was prompted for authentication
900 if( httpAuth.getSecuritySession() != null )
902 for( String repository : repositories )
906 if( isAuthorized( request, repository ) )
912 catch( DavException e )
920 for( String repository : repositories )
924 if( servletAuth.isAuthorizedToAccessVirtualRepository( activePrincipal, repository ) )
930 catch ( UnauthorizedException e )
940 private File writeMergedMetadataToFile( ArchivaRepositoryMetadata mergedMetadata, String outputFilename )
941 throws RepositoryMetadataException, DigesterException, IOException
943 File outputFile = new File( outputFilename );
944 if( outputFile.exists() )
946 FileUtils.deleteQuietly( outputFile );
949 outputFile.getParentFile().mkdirs();
950 RepositoryMetadataWriter.write( mergedMetadata, outputFile );
952 createChecksumFile( outputFilename, digestSha1 );
953 createChecksumFile( outputFilename, digestMd5 );
958 private void createChecksumFile( String path, Digester digester )
959 throws DigesterException, IOException
961 File checksumFile = new File( path + digester.getFilenameExtension() );
962 if ( !checksumFile.exists() )
964 FileUtils.deleteQuietly( checksumFile );
965 checksum.createChecksum( new File( path ), digester );
967 else if ( !checksumFile.isFile() )
969 log.error( "Checksum file is not a file." );
973 private boolean isProjectReference( String requestedResource )
977 VersionedReference versionRef = metadataTools.toVersionedReference( requestedResource );
980 catch ( RepositoryMetadataException re )