]> source.dussan.org Git - archiva.git/blob
ab298b08c3ac6854a54c278f253beb6584416d33
[archiva.git] /
1 package org.apache.archiva.redback.integration.mail;
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.redback.keys.AuthenticationKey;
23 import org.apache.velocity.VelocityContext;
24 import org.apache.velocity.app.VelocityEngine;
25 import org.apache.velocity.exception.MethodInvocationException;
26 import org.apache.velocity.exception.ParseErrorException;
27 import org.apache.velocity.exception.ResourceNotFoundException;
28 import org.apache.archiva.redback.configuration.UserConfiguration;
29 import org.slf4j.Logger;
30 import org.slf4j.LoggerFactory;
31 import org.springframework.stereotype.Service;
32
33 import javax.inject.Inject;
34 import javax.inject.Named;
35 import java.io.StringWriter;
36 import java.text.SimpleDateFormat;
37 import java.util.Locale;
38
39 /**
40  * Mail generator component implementation using velocity.
41  *
42  * @author <a href="mailto:brett@apache.org">Brett Porter</a>
43  * @version $Id$
44  */
45 @Service( "mailGenerator#velocity" )
46 public class VelocityMailGenerator
47     implements MailGenerator
48 {
49     private Logger log = LoggerFactory.getLogger( VelocityMailGenerator.class );
50
51     @Inject
52     @Named( value = "userConfiguration" )
53     private UserConfiguration config;
54
55     // FIXME use the spring directly 
56     @Inject
57     @Named( value = "velocityEngine#redback" )
58     private VelocityEngine velocityEngine;
59
60     public String generateMail( String templateName, AuthenticationKey authkey, String baseUrl )
61     {
62         VelocityContext context = createVelocityContext( authkey, baseUrl );
63
64         String packageName = getClass().getPackage().getName().replace( '.', '/' );
65         String templateFile = packageName + "/template/" + templateName + ".vm";
66
67         StringWriter writer = new StringWriter();
68
69         try
70         {
71             velocityEngine.mergeTemplate( templateFile, context, writer );
72         }
73         catch ( ResourceNotFoundException e )
74         {
75             log.error( "No such template: '{}'.", templateFile );
76         }
77         catch ( ParseErrorException e )
78         {
79             log.error( "Unable to generate email for template '" + templateFile + "': " + e.getMessage(), e );
80         }
81         catch ( MethodInvocationException e )
82         {
83             log.error( "Unable to generate email for template '" + templateFile + "': " + e.getMessage(), e );
84         }
85         catch ( Exception e )
86         {
87             log.error( "Unable to generate email for template '" + templateFile + "': " + e.getMessage(), e );
88         }
89
90         return writer.getBuffer().toString();
91     }
92
93     private VelocityContext createVelocityContext( AuthenticationKey authkey, String appUrl )
94     {
95         VelocityContext context = new VelocityContext();
96
97         context.put( "applicationUrl", config.getString( "application.url", appUrl ) );
98
99         String feedback = config.getString( "email.feedback.path" );
100
101         if ( feedback != null )
102         {
103             if ( feedback.startsWith( "/" ) )
104             {
105                 feedback = appUrl + feedback;
106             }
107
108             context.put( "feedback", feedback );
109         }
110
111         context.put( "urlPath", config.getString( "email.url.path", "security/login!login.action" ) );
112
113         context.put( "authkey", authkey.getKey() );
114
115         context.put( "accountId", authkey.getForPrincipal() );
116
117         SimpleDateFormat dateformatter = new SimpleDateFormat( config.getString( "application.timestamp" ), Locale.US );
118
119         context.put( "requestedOn", dateformatter.format( authkey.getDateCreated() ) );
120
121         if ( authkey.getDateExpires() != null )
122         {
123             context.put( "expiresOn", dateformatter.format( authkey.getDateExpires() ) );
124         }
125         else
126         {
127             context.put( "expiresOn", "(does not expire)" );
128         }
129         return context;
130     }
131
132
133     public UserConfiguration getConfig()
134     {
135         return config;
136     }
137
138     public void setConfig( UserConfiguration config )
139     {
140         this.config = config;
141     }
142
143     public VelocityEngine getVelocityEngine()
144     {
145         return velocityEngine;
146     }
147
148     public void setVelocityEngine( VelocityEngine velocityEngine )
149     {
150         this.velocityEngine = velocityEngine;
151     }
152 }