From: Olivier Lamy Date: Mon, 13 Oct 2014 05:35:00 +0000 (+1100) Subject: no need to lookup those beans for each request X-Git-Tag: archiva-2.2.0~82 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=4e331298e4abdaf9e571cd34c7f31de67ee5a835;p=archiva.git no need to lookup those beans for each request --- diff --git a/archiva-modules/archiva-web/archiva-rss/src/main/java/org/apache/archiva/rss/processor/NewVersionsOfArtifactRssFeedProcessor.java b/archiva-modules/archiva-web/archiva-rss/src/main/java/org/apache/archiva/rss/processor/NewVersionsOfArtifactRssFeedProcessor.java index c6b046696..f9c24bd5c 100644 --- a/archiva-modules/archiva-web/archiva-rss/src/main/java/org/apache/archiva/rss/processor/NewVersionsOfArtifactRssFeedProcessor.java +++ b/archiva-modules/archiva-web/archiva-rss/src/main/java/org/apache/archiva/rss/processor/NewVersionsOfArtifactRssFeedProcessor.java @@ -54,9 +54,6 @@ public class NewVersionsOfArtifactRssFeedProcessor private static final String desc = "These are the new versions of artifact "; - /** - * - */ @Inject private RssFeedGenerator generator; diff --git a/archiva-modules/archiva-web/archiva-web-common/src/main/java/org/apache/archiva/web/rss/RssFeedServlet.java b/archiva-modules/archiva-web/archiva-web-common/src/main/java/org/apache/archiva/web/rss/RssFeedServlet.java index bc26d3642..958ad28e7 100644 --- a/archiva-modules/archiva-web/archiva-web-common/src/main/java/org/apache/archiva/web/rss/RssFeedServlet.java +++ b/archiva-modules/archiva-web/archiva-web-common/src/main/java/org/apache/archiva/web/rss/RssFeedServlet.java @@ -25,8 +25,13 @@ import com.sun.syndication.io.SyndFeedOutput; import org.apache.archiva.metadata.repository.RepositorySession; import org.apache.archiva.metadata.repository.RepositorySessionFactory; import org.apache.archiva.redback.authentication.AuthenticationException; +import org.apache.archiva.redback.authentication.AuthenticationResult; +import org.apache.archiva.redback.authorization.AuthorizationException; +import org.apache.archiva.redback.authorization.UnauthorizedException; +import org.apache.archiva.redback.integration.filter.authentication.HttpAuthenticator; import org.apache.archiva.redback.policy.AccountLockedException; import org.apache.archiva.redback.policy.MustChangePasswordException; +import org.apache.archiva.redback.system.SecuritySession; import org.apache.archiva.redback.users.UserManager; import org.apache.archiva.redback.users.UserNotFoundException; import org.apache.archiva.rss.processor.RssFeedProcessor; @@ -40,11 +45,6 @@ import org.apache.commons.codec.Decoder; import org.apache.commons.codec.DecoderException; import org.apache.commons.codec.binary.Base64; import org.apache.commons.lang.StringUtils; -import org.apache.archiva.redback.authentication.AuthenticationResult; -import org.apache.archiva.redback.authorization.AuthorizationException; -import org.apache.archiva.redback.authorization.UnauthorizedException; -import org.apache.archiva.redback.system.SecuritySession; -import org.apache.archiva.redback.integration.filter.authentication.HttpAuthenticator; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.web.context.WebApplicationContext; @@ -86,6 +86,10 @@ public class RssFeedServlet private HttpAuthenticator httpAuth; + private RssFeedProcessor newArtifactsprocessor; + + private RssFeedProcessor newVersionsprocessor; + /** * FIXME: this could be multiple implementations and needs to be configured. */ @@ -102,6 +106,9 @@ public class RssFeedServlet httpAuth = wac.getBean( "httpAuthenticator#basic", HttpAuthenticator.class ); // TODO: what if there are other types? repositorySessionFactory = wac.getBean( "repositorySessionFactory", RepositorySessionFactory.class ); + + newArtifactsprocessor = wac.getBean( "rssFeedProcessor#new-artifacts", RssFeedProcessor.class ); + newVersionsprocessor = wac.getBean( "rssFeedProcessor#new-versions", RssFeedProcessor.class ); } @Override @@ -141,14 +148,14 @@ public class RssFeedServlet if ( repoId != null ) { // new artifacts in repo feed request - processor = wac.getBean( "rssFeedProcessor#new-artifacts", RssFeedProcessor.class ); + processor = newArtifactsprocessor; map.put( RssFeedProcessor.KEY_REPO_ID, repoId ); } else if ( ( groupId != null ) && ( artifactId != null ) ) { // TODO: this only works for guest - we could pass in the list of repos // new versions of artifact feed request - processor = wac.getBean( "rssFeedProcessor#new-versions", RssFeedProcessor.class ); + processor = newVersionsprocessor; map.put( RssFeedProcessor.KEY_GROUP_ID, groupId ); map.put( RssFeedProcessor.KEY_ARTIFACT_ID, artifactId ); } @@ -296,20 +303,22 @@ public class RssFeedServlet AuthenticationResult result = httpAuth.getAuthenticationResult( req, null ); SecuritySession securitySession = httpAuth.getSecuritySession( req.getSession( true ) ); - if ( servletAuth.isAuthenticated( req, result ) && servletAuth.isAuthorized( req, securitySession, - repoId, - ArchivaRoleConstants.OPERATION_REPOSITORY_ACCESS ) ) + if ( servletAuth.isAuthenticated( req, result ) // + && servletAuth.isAuthorized( req, // + securitySession, // + repoId, // + ArchivaRoleConstants.OPERATION_REPOSITORY_ACCESS ) ) { return true; } } catch ( AuthorizationException e ) { - + log.debug( "AuthorizationException for repoId: {}", repoId ); } catch ( UnauthorizedException e ) { - + log.debug( "UnauthorizedException for repoId: {}", repoId ); } }