| 1 | |
|
| 2 | |
|
| 3 | |
|
| 4 | |
|
| 5 | |
|
| 6 | |
|
| 7 | |
|
| 8 | |
|
| 9 | |
|
| 10 | |
|
| 11 | |
|
| 12 | |
|
| 13 | |
|
| 14 | |
|
| 15 | |
|
| 16 | |
|
| 17 | |
|
| 18 | |
|
| 19 | |
|
| 20 | |
|
| 21 | |
|
| 22 | |
|
| 23 | |
|
| 24 | |
|
| 25 | |
|
| 26 | |
|
| 27 | |
|
| 28 | |
|
| 29 | |
|
| 30 | |
|
| 31 | |
|
| 32 | |
package net.sourceforge.pebble.event.blogentry; |
| 33 | |
|
| 34 | |
import net.sourceforge.pebble.api.decorator.ContentDecoratorContext; |
| 35 | |
import net.sourceforge.pebble.api.event.blogentry.BlogEntryEvent; |
| 36 | |
import net.sourceforge.pebble.domain.Blog; |
| 37 | |
import net.sourceforge.pebble.domain.BlogEntry; |
| 38 | |
import net.sourceforge.pebble.util.MailUtils; |
| 39 | |
|
| 40 | |
import javax.mail.Session; |
| 41 | |
import java.text.SimpleDateFormat; |
| 42 | |
import java.util.List; |
| 43 | |
|
| 44 | |
|
| 45 | |
|
| 46 | |
|
| 47 | |
|
| 48 | |
|
| 49 | |
|
| 50 | 2720 | public class EmailSubscriptionListener extends BlogEntryListenerSupport { |
| 51 | |
|
| 52 | |
|
| 53 | |
private static final String EMAIL_ADDRESS_TOKEN = "EMAIL_ADDRESS"; |
| 54 | |
|
| 55 | |
|
| 56 | |
|
| 57 | |
|
| 58 | |
|
| 59 | |
|
| 60 | |
public void blogEntryPublished(BlogEntryEvent event) { |
| 61 | 28 | BlogEntry blogEntry = event.getBlogEntry(); |
| 62 | 28 | sendNotification((BlogEntry)blogEntry.clone()); |
| 63 | 28 | } |
| 64 | |
|
| 65 | |
private void sendNotification(BlogEntry blogEntry) { |
| 66 | 28 | Blog blog = blogEntry.getBlog(); |
| 67 | |
|
| 68 | |
|
| 69 | |
|
| 70 | 28 | ContentDecoratorContext context = new ContentDecoratorContext(); |
| 71 | 28 | context.setView(ContentDecoratorContext.DETAIL_VIEW); |
| 72 | 28 | context.setMedia(ContentDecoratorContext.EMAIL); |
| 73 | 28 | blog.getContentDecoratorChain().decorate(context, blogEntry); |
| 74 | |
|
| 75 | 28 | SimpleDateFormat sdf = new SimpleDateFormat("dd MMM yyyy HH:mm:ss z"); |
| 76 | 28 | sdf.setTimeZone(blog.getTimeZone()); |
| 77 | |
|
| 78 | 28 | String subject = MailUtils.getBlogEntryPrefix(blog) + " " + blogEntry.getTitle(); |
| 79 | |
|
| 80 | 28 | String message = "<a href=\"" + blogEntry.getLocalPermalink() + "\">Blog entry</a> posted by " + (blogEntry.getUser() != null ? blogEntry.getUser().getName() : blogEntry.getAuthor()) + " on " + sdf.format(blogEntry.getDate()); |
| 81 | 28 | message += "\n<br>"; |
| 82 | 28 | if (blogEntry.getExcerpt() != null && blogEntry.getExcerpt().trim().length() > 0) { |
| 83 | 4 | message += blogEntry.getExcerpt(); |
| 84 | |
} else { |
| 85 | 24 | message += blogEntry.getBody(); |
| 86 | |
} |
| 87 | 28 | message += "\n<br>"; |
| 88 | 28 | message += "<a href=\"" + blogEntry.getLocalPermalink() + "\">Permalink</a>"; |
| 89 | |
|
| 90 | 28 | message += " | "; |
| 91 | 28 | message += "<a href=\"" + blog.getUrl() + "unsubscribe.action?email=" + EMAIL_ADDRESS_TOKEN + "\">Opt-out</a>"; |
| 92 | |
|
| 93 | 28 | List<String> to = blog.getEmailSubscriptionList().getEmailAddresses(); |
| 94 | |
|
| 95 | |
|
| 96 | |
|
| 97 | |
try { |
| 98 | 28 | Session session = MailUtils.createSession(); |
| 99 | 0 | for (String emailAddress : to) { |
| 100 | |
|
| 101 | 0 | MailUtils.sendMail(session, blog, emailAddress, subject, |
| 102 | |
message.replaceAll(EMAIL_ADDRESS_TOKEN, emailAddress)); |
| 103 | |
} |
| 104 | 28 | } catch (Exception e) { |
| 105 | 28 | e.printStackTrace(); |
| 106 | 0 | } catch (NoClassDefFoundError e) { |
| 107 | |
|
| 108 | 0 | e.printStackTrace(); |
| 109 | 28 | } |
| 110 | 28 | } |
| 111 | |
|
| 112 | |
} |