Add notification on a first start of Sone.
[Sone.git] / src / main / java / net / pterodactylus / sone / web / WebInterface.java
1 /*
2  * FreenetSone - WebInterface.java - Copyright © 2010 David Roden
3  *
4  * This program is free software: you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation, either version 3 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
16  */
17
18 package net.pterodactylus.sone.web;
19
20 import java.io.InputStream;
21 import java.io.InputStreamReader;
22 import java.io.Reader;
23 import java.io.UnsupportedEncodingException;
24 import java.util.ArrayList;
25 import java.util.Collection;
26 import java.util.HashSet;
27 import java.util.List;
28 import java.util.Set;
29 import java.util.logging.Level;
30 import java.util.logging.Logger;
31
32 import net.pterodactylus.sone.core.Core;
33 import net.pterodactylus.sone.core.CoreListener;
34 import net.pterodactylus.sone.data.Post;
35 import net.pterodactylus.sone.data.Reply;
36 import net.pterodactylus.sone.data.Sone;
37 import net.pterodactylus.sone.freenet.L10nFilter;
38 import net.pterodactylus.sone.freenet.wot.Identity;
39 import net.pterodactylus.sone.main.SonePlugin;
40 import net.pterodactylus.sone.notify.ListNotification;
41 import net.pterodactylus.sone.template.CollectionAccessor;
42 import net.pterodactylus.sone.template.CssClassNameFilter;
43 import net.pterodactylus.sone.template.GetPagePlugin;
44 import net.pterodactylus.sone.template.IdentityAccessor;
45 import net.pterodactylus.sone.template.NotificationManagerAccessor;
46 import net.pterodactylus.sone.template.PostAccessor;
47 import net.pterodactylus.sone.template.ReplyAccessor;
48 import net.pterodactylus.sone.template.RequestChangeFilter;
49 import net.pterodactylus.sone.template.SoneAccessor;
50 import net.pterodactylus.sone.template.SubstringFilter;
51 import net.pterodactylus.sone.web.ajax.CreatePostAjaxPage;
52 import net.pterodactylus.sone.web.ajax.CreateReplyAjaxPage;
53 import net.pterodactylus.sone.web.ajax.DeletePostAjaxPage;
54 import net.pterodactylus.sone.web.ajax.DeleteReplyAjaxPage;
55 import net.pterodactylus.sone.web.ajax.DismissNotificationAjaxPage;
56 import net.pterodactylus.sone.web.ajax.FollowSoneAjaxPage;
57 import net.pterodactylus.sone.web.ajax.GetLikesAjaxPage;
58 import net.pterodactylus.sone.web.ajax.GetPostAjaxPage;
59 import net.pterodactylus.sone.web.ajax.GetReplyAjaxPage;
60 import net.pterodactylus.sone.web.ajax.GetStatusAjaxPage;
61 import net.pterodactylus.sone.web.ajax.GetTranslationPage;
62 import net.pterodactylus.sone.web.ajax.LikeAjaxPage;
63 import net.pterodactylus.sone.web.ajax.LockSoneAjaxPage;
64 import net.pterodactylus.sone.web.ajax.MarkPostAsKnownPage;
65 import net.pterodactylus.sone.web.ajax.MarkReplyAsKnownPage;
66 import net.pterodactylus.sone.web.ajax.UnfollowSoneAjaxPage;
67 import net.pterodactylus.sone.web.ajax.UnlikeAjaxPage;
68 import net.pterodactylus.sone.web.ajax.UnlockSoneAjaxPage;
69 import net.pterodactylus.sone.web.page.PageToadlet;
70 import net.pterodactylus.sone.web.page.PageToadletFactory;
71 import net.pterodactylus.sone.web.page.StaticPage;
72 import net.pterodactylus.util.logging.Logging;
73 import net.pterodactylus.util.notify.Notification;
74 import net.pterodactylus.util.notify.NotificationManager;
75 import net.pterodactylus.util.notify.TemplateNotification;
76 import net.pterodactylus.util.template.DateFilter;
77 import net.pterodactylus.util.template.DefaultTemplateFactory;
78 import net.pterodactylus.util.template.MatchFilter;
79 import net.pterodactylus.util.template.PaginationPlugin;
80 import net.pterodactylus.util.template.ReflectionAccessor;
81 import net.pterodactylus.util.template.Template;
82 import net.pterodactylus.util.template.TemplateException;
83 import net.pterodactylus.util.template.TemplateFactory;
84 import net.pterodactylus.util.template.TemplateProvider;
85 import net.pterodactylus.util.template.XmlFilter;
86 import net.pterodactylus.util.thread.Ticker;
87 import freenet.clients.http.SessionManager;
88 import freenet.clients.http.ToadletContainer;
89 import freenet.l10n.BaseL10n;
90
91 /**
92  * Bundles functionality that a web interface of a Freenet plugin needs, e.g.
93  * references to l10n helpers.
94  *
95  * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
96  */
97 public class WebInterface implements CoreListener {
98
99         /** The logger. */
100         private static final Logger logger = Logging.getLogger(WebInterface.class);
101
102         /** The notification manager. */
103         private final NotificationManager notificationManager = new NotificationManager();
104
105         /** The Sone plugin. */
106         private final SonePlugin sonePlugin;
107
108         /** The registered toadlets. */
109         private final List<PageToadlet> pageToadlets = new ArrayList<PageToadlet>();
110
111         /** The form password. */
112         private final String formPassword;
113
114         /** The template factory. */
115         private DefaultTemplateFactory templateFactory;
116
117         /** The “new Sone” notification. */
118         private final ListNotification<Sone> newSoneNotification;
119
120         /** The “new post” notification. */
121         private final ListNotification<Post> newPostNotification;
122
123         /** The “new reply” notification. */
124         private final ListNotification<Reply> newReplyNotification;
125
126         /** The “rescuing Sone” notification. */
127         private final ListNotification<Sone> rescuingSonesNotification;
128
129         /** The “Sone rescued” notification. */
130         private final ListNotification<Sone> sonesRescuedNotification;
131
132         /**
133          * Creates a new web interface.
134          *
135          * @param sonePlugin
136          *            The Sone plugin
137          */
138         public WebInterface(SonePlugin sonePlugin) {
139                 this.sonePlugin = sonePlugin;
140                 formPassword = sonePlugin.pluginRespirator().getToadletContainer().getFormPassword();
141
142                 templateFactory = new DefaultTemplateFactory();
143                 templateFactory.addAccessor(Object.class, new ReflectionAccessor());
144                 templateFactory.addAccessor(Collection.class, new CollectionAccessor());
145                 templateFactory.addAccessor(Sone.class, new SoneAccessor(getCore()));
146                 templateFactory.addAccessor(Post.class, new PostAccessor(getCore(), templateFactory));
147                 templateFactory.addAccessor(Reply.class, new ReplyAccessor(getCore(), templateFactory));
148                 templateFactory.addAccessor(Identity.class, new IdentityAccessor(getCore()));
149                 templateFactory.addAccessor(NotificationManager.class, new NotificationManagerAccessor());
150                 templateFactory.addFilter("date", new DateFilter());
151                 templateFactory.addFilter("l10n", new L10nFilter(getL10n()));
152                 templateFactory.addFilter("substring", new SubstringFilter());
153                 templateFactory.addFilter("xml", new XmlFilter());
154                 templateFactory.addFilter("change", new RequestChangeFilter());
155                 templateFactory.addFilter("match", new MatchFilter());
156                 templateFactory.addFilter("css", new CssClassNameFilter());
157                 templateFactory.addPlugin("getpage", new GetPagePlugin());
158                 templateFactory.addPlugin("paginate", new PaginationPlugin());
159                 templateFactory.setTemplateProvider(new ClassPathTemplateProvider(templateFactory));
160                 templateFactory.addTemplateObject("formPassword", formPassword);
161
162                 /* create notifications. */
163                 Template newSoneNotificationTemplate = templateFactory.createTemplate(createReader("/templates/notify/newSoneNotification.html"));
164                 newSoneNotification = new ListNotification<Sone>("new-sone-notification", "sones", newSoneNotificationTemplate);
165
166                 Template newPostNotificationTemplate = templateFactory.createTemplate(createReader("/templates/notify/newPostNotification.html"));
167                 newPostNotification = new ListNotification<Post>("new-post-notification", "posts", newPostNotificationTemplate);
168
169                 Template newReplyNotificationTemplate = templateFactory.createTemplate(createReader("/templates/notify/newReplyNotification.html"));
170                 newReplyNotification = new ListNotification<Reply>("new-replies-notification", "replies", newReplyNotificationTemplate);
171
172                 Template rescuingSonesTemplate = templateFactory.createTemplate(createReader("/templates/notify/rescuingSonesNotification.html"));
173                 rescuingSonesNotification = new ListNotification<Sone>("sones-being-rescued-notification", "sones", rescuingSonesTemplate);
174
175                 Template sonesRescuedTemplate = templateFactory.createTemplate(createReader("/templates/notify/sonesRescuedNotification.html"));
176                 sonesRescuedNotification = new ListNotification<Sone>("sones-rescued-notification", "sones", sonesRescuedTemplate);
177         }
178
179         //
180         // ACCESSORS
181         //
182
183         /**
184          * Returns the Sone core used by the Sone plugin.
185          *
186          * @return The Sone core
187          */
188         public Core getCore() {
189                 return sonePlugin.core();
190         }
191
192         /**
193          * Returns the notification manager.
194          *
195          * @return The notification manager
196          */
197         public NotificationManager getNotifications() {
198                 return notificationManager;
199         }
200
201         /**
202          * Returns the l10n helper of the node.
203          *
204          * @return The node’s l10n helper
205          */
206         public BaseL10n getL10n() {
207                 return sonePlugin.l10n().getBase();
208         }
209
210         /**
211          * Returns the session manager of the node.
212          *
213          * @return The node’s session manager
214          */
215         public SessionManager getSessionManager() {
216                 return sonePlugin.pluginRespirator().getSessionManager("Sone");
217         }
218
219         /**
220          * Returns the node’s form password.
221          *
222          * @return The form password
223          */
224         public String getFormPassword() {
225                 return formPassword;
226         }
227
228         /**
229          * Returns the posts that have been announced as new in the
230          * {@link #newPostNotification}.
231          *
232          * @return The new posts
233          */
234         public Set<Post> getNewPosts() {
235                 return new HashSet<Post>(newPostNotification.getElements());
236         }
237
238         /**
239          * Returns the replies that have been announced as new in the
240          * {@link #newReplyNotification}.
241          *
242          * @return The new replies
243          */
244         public Set<Reply> getNewReplies() {
245                 return new HashSet<Reply>(newReplyNotification.getElements());
246         }
247
248         /**
249          * Sets whether the current start of the plugin is the first start. It is
250          * considered a first start if the configuration file does not exist.
251          *
252          * @param firstStart
253          *            {@code true} if no configuration file existed when Sone was
254          *            loaded, {@code false} otherwise
255          */
256         public void setFirstStart(boolean firstStart) {
257                 if (firstStart) {
258                         Template firstStartNotificationTemplate = new Template(createReader("/templates/notify/firstStartNotification.html"));
259                         Notification firstStartNotification = new TemplateNotification("first-start-notification", firstStartNotificationTemplate);
260                         notificationManager.addNotification(firstStartNotification);
261                 }
262         }
263
264         //
265         // ACTIONS
266         //
267
268         /**
269          * Starts the web interface and registers all toadlets.
270          */
271         public void start() {
272                 registerToadlets();
273
274                 /* notification templates. */
275                 Template startupNotificationTemplate = templateFactory.createTemplate(createReader("/templates/notify/startupNotification.html"));
276
277                 final TemplateNotification startupNotification = new TemplateNotification("startup-notification", startupNotificationTemplate);
278                 notificationManager.addNotification(startupNotification);
279
280                 Ticker.getInstance().registerEvent(System.currentTimeMillis() + (120 * 1000), new Runnable() {
281
282                         @Override
283                         public void run() {
284                                 startupNotification.dismiss();
285                         }
286                 }, "Sone Startup Notification Remover");
287
288                 Template wotMissingNotificationTemplate = templateFactory.createTemplate(createReader("/templates/notify/wotMissingNotification.html"));
289                 final TemplateNotification wotMissingNotification = new TemplateNotification("wot-missing-notification", wotMissingNotificationTemplate);
290                 Ticker.getInstance().registerEvent(System.currentTimeMillis() + (15 * 1000), new Runnable() {
291
292                         @Override
293                         @SuppressWarnings("synthetic-access")
294                         public void run() {
295                                 if (getCore().getIdentityManager().isConnected()) {
296                                         wotMissingNotification.dismiss();
297                                 } else {
298                                         notificationManager.addNotification(wotMissingNotification);
299                                 }
300                                 Ticker.getInstance().registerEvent(System.currentTimeMillis() + (15 * 1000), this, "Sone WoT Connector Checker");
301                         }
302
303                 }, "Sone WoT Connector Checker");
304         }
305
306         /**
307          * Stops the web interface and unregisters all toadlets.
308          */
309         public void stop() {
310                 unregisterToadlets();
311                 Ticker.getInstance().stop();
312         }
313
314         //
315         // PRIVATE METHODS
316         //
317
318         /**
319          * Register all toadlets.
320          */
321         private void registerToadlets() {
322                 Template loginTemplate = templateFactory.createTemplate(createReader("/templates/login.html"));
323                 Template indexTemplate = templateFactory.createTemplate(createReader("/templates/index.html"));
324                 Template knownSonesTemplate = templateFactory.createTemplate(createReader("/templates/knownSones.html"));
325                 Template createSoneTemplate = templateFactory.createTemplate(createReader("/templates/createSone.html"));
326                 Template createPostTemplate = templateFactory.createTemplate(createReader("/templates/createPost.html"));
327                 Template createReplyTemplate = templateFactory.createTemplate(createReader("/templates/createReply.html"));
328                 Template editProfileTemplate = templateFactory.createTemplate(createReader("/templates/editProfile.html"));
329                 Template viewSoneTemplate = templateFactory.createTemplate(createReader("/templates/viewSone.html"));
330                 Template viewPostTemplate = templateFactory.createTemplate(createReader("/templates/viewPost.html"));
331                 Template likePostTemplate = templateFactory.createTemplate(createReader("/templates/like.html"));
332                 Template unlikePostTemplate = templateFactory.createTemplate(createReader("/templates/unlike.html"));
333                 Template deletePostTemplate = templateFactory.createTemplate(createReader("/templates/deletePost.html"));
334                 Template deleteReplyTemplate = templateFactory.createTemplate(createReader("/templates/deleteReply.html"));
335                 Template lockSoneTemplate = templateFactory.createTemplate(createReader("/templates/lockSone.html"));
336                 Template unlockSoneTemplate = templateFactory.createTemplate(createReader("/templates/unlockSone.html"));
337                 Template followSoneTemplate = templateFactory.createTemplate(createReader("/templates/followSone.html"));
338                 Template unfollowSoneTemplate = templateFactory.createTemplate(createReader("/templates/unfollowSone.html"));
339                 Template deleteSoneTemplate = templateFactory.createTemplate(createReader("/templates/deleteSone.html"));
340                 Template noPermissionTemplate = templateFactory.createTemplate(createReader("/templates/noPermission.html"));
341                 Template dismissNotificationTemplate = templateFactory.createTemplate(createReader("/templates/dismissNotification.html"));
342                 Template logoutTemplate = templateFactory.createTemplate(createReader("/templates/logout.html"));
343                 Template optionsTemplate = templateFactory.createTemplate(createReader("/templates/options.html"));
344                 Template aboutTemplate = templateFactory.createTemplate(createReader("/templates/about.html"));
345                 Template postTemplate = templateFactory.createTemplate(createReader("/templates/include/viewPost.html"));
346                 Template replyTemplate = templateFactory.createTemplate(createReader("/templates/include/viewReply.html"));
347
348                 PageToadletFactory pageToadletFactory = new PageToadletFactory(sonePlugin.pluginRespirator().getHLSimpleClient(), "/Sone/");
349                 pageToadlets.add(pageToadletFactory.createPageToadlet(new IndexPage(indexTemplate, this), "Index"));
350                 pageToadlets.add(pageToadletFactory.createPageToadlet(new CreateSonePage(createSoneTemplate, this), "CreateSone"));
351                 pageToadlets.add(pageToadletFactory.createPageToadlet(new KnownSonesPage(knownSonesTemplate, this), "KnownSones"));
352                 pageToadlets.add(pageToadletFactory.createPageToadlet(new EditProfilePage(editProfileTemplate, this), "EditProfile"));
353                 pageToadlets.add(pageToadletFactory.createPageToadlet(new CreatePostPage(createPostTemplate, this)));
354                 pageToadlets.add(pageToadletFactory.createPageToadlet(new CreateReplyPage(createReplyTemplate, this)));
355                 pageToadlets.add(pageToadletFactory.createPageToadlet(new ViewSonePage(viewSoneTemplate, this)));
356                 pageToadlets.add(pageToadletFactory.createPageToadlet(new ViewPostPage(viewPostTemplate, this)));
357                 pageToadlets.add(pageToadletFactory.createPageToadlet(new LikePage(likePostTemplate, this)));
358                 pageToadlets.add(pageToadletFactory.createPageToadlet(new UnlikePage(unlikePostTemplate, this)));
359                 pageToadlets.add(pageToadletFactory.createPageToadlet(new DeletePostPage(deletePostTemplate, this)));
360                 pageToadlets.add(pageToadletFactory.createPageToadlet(new DeleteReplyPage(deleteReplyTemplate, this)));
361                 pageToadlets.add(pageToadletFactory.createPageToadlet(new LockSonePage(lockSoneTemplate, this)));
362                 pageToadlets.add(pageToadletFactory.createPageToadlet(new UnlockSonePage(unlockSoneTemplate, this)));
363                 pageToadlets.add(pageToadletFactory.createPageToadlet(new FollowSonePage(followSoneTemplate, this)));
364                 pageToadlets.add(pageToadletFactory.createPageToadlet(new UnfollowSonePage(unfollowSoneTemplate, this)));
365                 pageToadlets.add(pageToadletFactory.createPageToadlet(new DeleteSonePage(deleteSoneTemplate, this), "DeleteSone"));
366                 pageToadlets.add(pageToadletFactory.createPageToadlet(new LoginPage(loginTemplate, this), "Login"));
367                 pageToadlets.add(pageToadletFactory.createPageToadlet(new LogoutPage(logoutTemplate, this), "Logout"));
368                 pageToadlets.add(pageToadletFactory.createPageToadlet(new OptionsPage(optionsTemplate, this), "Options"));
369                 pageToadlets.add(pageToadletFactory.createPageToadlet(new AboutPage(aboutTemplate, this, SonePlugin.VERSION), "About"));
370                 pageToadlets.add(pageToadletFactory.createPageToadlet(new SoneTemplatePage("noPermission.html", noPermissionTemplate, "Page.NoPermission.Title", this)));
371                 pageToadlets.add(pageToadletFactory.createPageToadlet(new DismissNotificationPage(dismissNotificationTemplate, this)));
372                 pageToadlets.add(pageToadletFactory.createPageToadlet(new StaticPage("css/", "/static/css/", "text/css")));
373                 pageToadlets.add(pageToadletFactory.createPageToadlet(new StaticPage("javascript/", "/static/javascript/", "text/javascript")));
374                 pageToadlets.add(pageToadletFactory.createPageToadlet(new StaticPage("images/", "/static/images/", "image/png")));
375                 pageToadlets.add(pageToadletFactory.createPageToadlet(new GetTranslationPage(this)));
376                 pageToadlets.add(pageToadletFactory.createPageToadlet(new GetStatusAjaxPage(this)));
377                 pageToadlets.add(pageToadletFactory.createPageToadlet(new DismissNotificationAjaxPage(this)));
378                 pageToadlets.add(pageToadletFactory.createPageToadlet(new CreatePostAjaxPage(this)));
379                 pageToadlets.add(pageToadletFactory.createPageToadlet(new CreateReplyAjaxPage(this)));
380                 pageToadlets.add(pageToadletFactory.createPageToadlet(new GetReplyAjaxPage(this, replyTemplate)));
381                 pageToadlets.add(pageToadletFactory.createPageToadlet(new GetPostAjaxPage(this, postTemplate)));
382                 pageToadlets.add(pageToadletFactory.createPageToadlet(new MarkPostAsKnownPage(this)));
383                 pageToadlets.add(pageToadletFactory.createPageToadlet(new MarkReplyAsKnownPage(this)));
384                 pageToadlets.add(pageToadletFactory.createPageToadlet(new DeletePostAjaxPage(this)));
385                 pageToadlets.add(pageToadletFactory.createPageToadlet(new DeleteReplyAjaxPage(this)));
386                 pageToadlets.add(pageToadletFactory.createPageToadlet(new LockSoneAjaxPage(this)));
387                 pageToadlets.add(pageToadletFactory.createPageToadlet(new UnlockSoneAjaxPage(this)));
388                 pageToadlets.add(pageToadletFactory.createPageToadlet(new FollowSoneAjaxPage(this)));
389                 pageToadlets.add(pageToadletFactory.createPageToadlet(new UnfollowSoneAjaxPage(this)));
390                 pageToadlets.add(pageToadletFactory.createPageToadlet(new LikeAjaxPage(this)));
391                 pageToadlets.add(pageToadletFactory.createPageToadlet(new UnlikeAjaxPage(this)));
392                 pageToadlets.add(pageToadletFactory.createPageToadlet(new GetLikesAjaxPage(this)));
393
394                 ToadletContainer toadletContainer = sonePlugin.pluginRespirator().getToadletContainer();
395                 toadletContainer.getPageMaker().addNavigationCategory("/Sone/index.html", "Navigation.Menu.Name", "Navigation.Menu.Tooltip", sonePlugin);
396                 for (PageToadlet toadlet : pageToadlets) {
397                         String menuName = toadlet.getMenuName();
398                         if (menuName != null) {
399                                 toadletContainer.register(toadlet, "Navigation.Menu.Name", toadlet.path(), true, "Navigation.Menu.Item." + menuName + ".Name", "Navigation.Menu.Item." + menuName + ".Tooltip", false, toadlet);
400                         } else {
401                                 toadletContainer.register(toadlet, null, toadlet.path(), true, false);
402                         }
403                 }
404         }
405
406         /**
407          * Unregisters all toadlets.
408          */
409         private void unregisterToadlets() {
410                 ToadletContainer toadletContainer = sonePlugin.pluginRespirator().getToadletContainer();
411                 for (PageToadlet pageToadlet : pageToadlets) {
412                         toadletContainer.unregister(pageToadlet);
413                 }
414                 toadletContainer.getPageMaker().removeNavigationCategory("Navigation.Menu.Name");
415         }
416
417         /**
418          * Creates a {@link Reader} from the {@link InputStream} for the resource
419          * with the given name.
420          *
421          * @param resourceName
422          *            The name of the resource
423          * @return A {@link Reader} for the resource
424          */
425         private Reader createReader(String resourceName) {
426                 try {
427                         return new InputStreamReader(getClass().getResourceAsStream(resourceName), "UTF-8");
428                 } catch (UnsupportedEncodingException uee1) {
429                         return null;
430                 }
431         }
432
433         //
434         // CORELISTENER METHODS
435         //
436
437         /**
438          * {@inheritDoc}
439          */
440         @Override
441         public void rescuingSone(Sone sone) {
442                 rescuingSonesNotification.add(sone);
443                 notificationManager.addNotification(rescuingSonesNotification);
444         }
445
446         /**
447          * {@inheritDoc}
448          */
449         @Override
450         public void rescuedSone(Sone sone) {
451                 rescuingSonesNotification.remove(sone);
452                 sonesRescuedNotification.add(sone);
453                 notificationManager.addNotification(sonesRescuedNotification);
454         }
455
456         /**
457          * {@inheritDoc}
458          */
459         @Override
460         public void newSoneFound(Sone sone) {
461                 newSoneNotification.add(sone);
462                 notificationManager.addNotification(newSoneNotification);
463         }
464
465         /**
466          * {@inheritDoc}
467          */
468         @Override
469         public void newPostFound(Post post) {
470                 newPostNotification.add(post);
471                 notificationManager.addNotification(newPostNotification);
472         }
473
474         /**
475          * {@inheritDoc}
476          */
477         @Override
478         public void newReplyFound(Reply reply) {
479                 if (reply.getPost().getSone() == null) {
480                         return;
481                 }
482                 newReplyNotification.add(reply);
483                 notificationManager.addNotification(newReplyNotification);
484         }
485
486         /**
487          * {@inheritDoc}
488          */
489         @Override
490         public void markSoneKnown(Sone sone) {
491                 newSoneNotification.remove(sone);
492         }
493
494         /**
495          * {@inheritDoc}
496          */
497         @Override
498         public void markPostKnown(Post post) {
499                 newPostNotification.remove(post);
500         }
501
502         /**
503          * {@inheritDoc}
504          */
505         @Override
506         public void markReplyKnown(Reply reply) {
507                 newReplyNotification.remove(reply);
508         }
509
510         /**
511          * {@inheritDoc}
512          */
513         @Override
514         public void postRemoved(Post post) {
515                 /* TODO */
516         }
517
518         /**
519          * {@inheritDoc}
520          */
521         @Override
522         public void replyRemoved(Reply reply) {
523                 /* TODO */
524         }
525
526         /**
527          * Template provider implementation that uses
528          * {@link WebInterface#createReader(String)} to load templates for
529          * inclusion.
530          *
531          * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
532          */
533         private class ClassPathTemplateProvider implements TemplateProvider {
534
535                 /** The template factory. */
536                 @SuppressWarnings("hiding")
537                 private final TemplateFactory templateFactory;
538
539                 /**
540                  * Creates a new template provider that locates templates on the
541                  * classpath.
542                  *
543                  * @param templateFactory
544                  *            The template factory to create the templates
545                  */
546                 public ClassPathTemplateProvider(TemplateFactory templateFactory) {
547                         this.templateFactory = templateFactory;
548                 }
549
550                 /**
551                  * {@inheritDoc}
552                  */
553                 @Override
554                 @SuppressWarnings("synthetic-access")
555                 public Template getTemplate(String templateName) {
556                         Reader templateReader = createReader("/templates/" + templateName);
557                         if (templateReader == null) {
558                                 return null;
559                         }
560                         Template template = templateFactory.createTemplate(templateReader);
561                         try {
562                                 template.parse();
563                         } catch (TemplateException te1) {
564                                 logger.log(Level.WARNING, "Could not parse template “" + templateName + "” for inclusion!", te1);
565                         }
566                         return template;
567                 }
568
569         }
570
571 }