]> source.dussan.org Git - archiva.git/blob
7b92f4865f76f8ed3d5dec45a2543a930b87893c
[archiva.git] /
1 package org.apache.archiva.rest.services;
2 /*
3  * Licensed to the Apache Software Foundation (ASF) under one
4  * or more contributor license agreements.  See the NOTICE file
5  * distributed with this work for additional information
6  * regarding copyright ownership.  The ASF licenses this file
7  * to you under the Apache License, Version 2.0 (the
8  * "License"); you may not use this file except in compliance
9  * with the License.  You may obtain a copy of the License at
10  *
11  *   http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing,
14  * software distributed under the License is distributed on an
15  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16  * KIND, either express or implied.  See the License for the
17  * specific language governing permissions and limitations
18  * under the License.
19  */
20
21 import org.apache.archiva.admin.model.AuditInformation;
22 import org.apache.archiva.audit.AuditEvent;
23 import org.apache.archiva.audit.AuditListener;
24 import org.apache.archiva.metadata.repository.RepositorySessionFactory;
25 import org.apache.archiva.security.AccessDeniedException;
26 import org.apache.archiva.security.ArchivaSecurityException;
27 import org.apache.archiva.security.PrincipalNotFoundException;
28 import org.apache.archiva.security.UserRepositories;
29 import org.apache.commons.lang.StringUtils;
30 import org.codehaus.plexus.redback.users.User;
31 import org.codehaus.plexus.redback.users.UserManager;
32 import org.codehaus.redback.rest.services.RedbackAuthenticationThreadLocal;
33 import org.codehaus.redback.rest.services.RedbackRequestInformation;
34 import org.slf4j.Logger;
35 import org.slf4j.LoggerFactory;
36 import org.springframework.context.ApplicationContext;
37
38 import javax.inject.Inject;
39 import javax.inject.Named;
40 import javax.servlet.http.HttpServletRequest;
41 import javax.ws.rs.core.Context;
42 import java.util.ArrayList;
43 import java.util.Collections;
44 import java.util.HashMap;
45 import java.util.List;
46 import java.util.Map;
47
48 /**
49  * abstract class with common utilities methods
50  *
51  * @author Olivier Lamy
52  * @since 1.4-M1
53  */
54 public abstract class AbstractRestService
55 {
56
57     protected Logger log = LoggerFactory.getLogger( getClass() );
58
59     @Inject
60     private List<AuditListener> auditListeners = new ArrayList<AuditListener>();
61
62     @Inject
63     protected UserRepositories userRepositories;
64
65
66     @Inject
67     @Named( value = "repositorySessionFactory" )
68     protected RepositorySessionFactory repositorySessionFactory;
69
70     @Context
71     protected HttpServletRequest httpServletRequest;
72
73     protected AuditInformation getAuditInformation()
74     {
75         RedbackRequestInformation redbackRequestInformation = RedbackAuthenticationThreadLocal.get();
76         User user = redbackRequestInformation == null ? null : redbackRequestInformation.getUser();
77         String remoteAddr = redbackRequestInformation == null ? null : redbackRequestInformation.getRemoteAddr();
78         return new AuditInformation( user, remoteAddr );
79     }
80
81     public List<AuditListener> getAuditListeners()
82     {
83         return auditListeners;
84     }
85
86     public void setAuditListeners( List<AuditListener> auditListeners )
87     {
88         this.auditListeners = auditListeners;
89     }
90
91     protected List<String> getObservableRepos()
92     {
93         try
94         {
95             List<String> ids = userRepositories.getObservableRepositoryIds( getPrincipal() );
96             return ids == null ? Collections.<String>emptyList() : ids;
97         }
98         catch ( PrincipalNotFoundException e )
99         {
100             log.warn( e.getMessage(), e );
101         }
102         catch ( AccessDeniedException e )
103         {
104             log.warn( e.getMessage(), e );
105         }
106         catch ( ArchivaSecurityException e )
107         {
108             log.warn( e.getMessage(), e );
109         }
110         return Collections.emptyList();
111     }
112
113     protected String getPrincipal()
114     {
115         RedbackRequestInformation redbackRequestInformation = RedbackAuthenticationThreadLocal.get();
116
117         return redbackRequestInformation == null
118             ? UserManager.GUEST_USERNAME
119             : ( redbackRequestInformation.getUser() == null
120                 ? UserManager.GUEST_USERNAME
121                 : redbackRequestInformation.getUser().getUsername() );
122     }
123
124     protected String getBaseUrl( HttpServletRequest req )
125     {
126         return req.getScheme() + "://" + req.getServerName() + ( req.getServerPort() == 80
127             ? ""
128             : ":" + req.getServerPort() ) + req.getContextPath();
129     }
130
131     protected <T> Map<String, T> getBeansOfType( ApplicationContext applicationContext, Class<T> clazz )
132     {
133         //TODO do some caching here !!!
134         // olamy : with plexus we get only roleHint
135         // as per convention we named spring bean role#hint remove role# if exists
136         Map<String, T> springBeans = applicationContext.getBeansOfType( clazz );
137
138         Map<String, T> beans = new HashMap<String, T>( springBeans.size() );
139
140         for ( Map.Entry<String, T> entry : springBeans.entrySet() )
141         {
142             String key = StringUtils.substringAfterLast( entry.getKey(), "#" );
143             beans.put( key, entry.getValue() );
144         }
145         return beans;
146     }
147
148     protected void triggerAuditEvent( String repositoryId, String filePath, String action )
149     {
150         AuditEvent auditEvent = new AuditEvent();
151         auditEvent.setAction( action );
152         auditEvent.setRepositoryId( repositoryId );
153         auditEvent.setResource( filePath );
154         AuditInformation auditInformation = getAuditInformation();
155         auditEvent.setUserId( auditInformation.getUser() == null ? "" : auditInformation.getUser().getUsername() );
156         auditEvent.setRemoteIP( auditInformation.getRemoteAddr() );
157         for ( AuditListener auditListener : getAuditListeners() )
158         {
159             auditListener.auditEvent( auditEvent );
160         }
161     }
162 }