2 * FreenetSone - WebInterface.java - Copyright © 2010 David Roden
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.
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.
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/>.
18 package net.pterodactylus.sone.web;
20 import java.io.InputStream;
21 import java.io.InputStreamReader;
22 import java.io.Reader;
23 import java.io.StringReader;
24 import java.io.UnsupportedEncodingException;
25 import java.util.ArrayList;
26 import java.util.Collection;
27 import java.util.Collections;
28 import java.util.HashMap;
29 import java.util.HashSet;
30 import java.util.List;
33 import java.util.UUID;
34 import java.util.logging.Level;
35 import java.util.logging.Logger;
37 import net.pterodactylus.sone.core.Core;
38 import net.pterodactylus.sone.core.CoreListener;
39 import net.pterodactylus.sone.data.Album;
40 import net.pterodactylus.sone.data.Post;
41 import net.pterodactylus.sone.data.Reply;
42 import net.pterodactylus.sone.data.Sone;
43 import net.pterodactylus.sone.freenet.L10nFilter;
44 import net.pterodactylus.sone.freenet.wot.Identity;
45 import net.pterodactylus.sone.freenet.wot.Trust;
46 import net.pterodactylus.sone.main.SonePlugin;
47 import net.pterodactylus.sone.notify.ListNotification;
48 import net.pterodactylus.sone.template.AlbumAccessor;
49 import net.pterodactylus.sone.template.CollectionAccessor;
50 import net.pterodactylus.sone.template.CssClassNameFilter;
51 import net.pterodactylus.sone.template.GetPagePlugin;
52 import net.pterodactylus.sone.template.IdentityAccessor;
53 import net.pterodactylus.sone.template.JavascriptFilter;
54 import net.pterodactylus.sone.template.NotificationManagerAccessor;
55 import net.pterodactylus.sone.template.ParserFilter;
56 import net.pterodactylus.sone.template.PostAccessor;
57 import net.pterodactylus.sone.template.ReplyAccessor;
58 import net.pterodactylus.sone.template.RequestChangeFilter;
59 import net.pterodactylus.sone.template.SoneAccessor;
60 import net.pterodactylus.sone.template.SubstringFilter;
61 import net.pterodactylus.sone.template.TrustAccessor;
62 import net.pterodactylus.sone.template.UnknownDateFilter;
63 import net.pterodactylus.sone.web.ajax.BookmarkAjaxPage;
64 import net.pterodactylus.sone.web.ajax.CreatePostAjaxPage;
65 import net.pterodactylus.sone.web.ajax.CreateReplyAjaxPage;
66 import net.pterodactylus.sone.web.ajax.DeletePostAjaxPage;
67 import net.pterodactylus.sone.web.ajax.DeleteProfileFieldAjaxPage;
68 import net.pterodactylus.sone.web.ajax.DeleteReplyAjaxPage;
69 import net.pterodactylus.sone.web.ajax.DismissNotificationAjaxPage;
70 import net.pterodactylus.sone.web.ajax.DistrustAjaxPage;
71 import net.pterodactylus.sone.web.ajax.EditProfileFieldAjaxPage;
72 import net.pterodactylus.sone.web.ajax.FollowSoneAjaxPage;
73 import net.pterodactylus.sone.web.ajax.GetLikesAjaxPage;
74 import net.pterodactylus.sone.web.ajax.GetPostAjaxPage;
75 import net.pterodactylus.sone.web.ajax.GetReplyAjaxPage;
76 import net.pterodactylus.sone.web.ajax.GetStatusAjaxPage;
77 import net.pterodactylus.sone.web.ajax.GetTranslationPage;
78 import net.pterodactylus.sone.web.ajax.LikeAjaxPage;
79 import net.pterodactylus.sone.web.ajax.LockSoneAjaxPage;
80 import net.pterodactylus.sone.web.ajax.MarkAsKnownAjaxPage;
81 import net.pterodactylus.sone.web.ajax.MoveProfileFieldAjaxPage;
82 import net.pterodactylus.sone.web.ajax.TrustAjaxPage;
83 import net.pterodactylus.sone.web.ajax.UnbookmarkAjaxPage;
84 import net.pterodactylus.sone.web.ajax.UnfollowSoneAjaxPage;
85 import net.pterodactylus.sone.web.ajax.UnlikeAjaxPage;
86 import net.pterodactylus.sone.web.ajax.UnlockSoneAjaxPage;
87 import net.pterodactylus.sone.web.ajax.UntrustAjaxPage;
88 import net.pterodactylus.sone.web.page.PageToadlet;
89 import net.pterodactylus.sone.web.page.PageToadletFactory;
90 import net.pterodactylus.sone.web.page.StaticPage;
91 import net.pterodactylus.util.cache.Cache;
92 import net.pterodactylus.util.cache.CacheException;
93 import net.pterodactylus.util.cache.CacheItem;
94 import net.pterodactylus.util.cache.DefaultCacheItem;
95 import net.pterodactylus.util.cache.MemoryCache;
96 import net.pterodactylus.util.cache.ValueRetriever;
97 import net.pterodactylus.util.logging.Logging;
98 import net.pterodactylus.util.notify.Notification;
99 import net.pterodactylus.util.notify.NotificationManager;
100 import net.pterodactylus.util.notify.TemplateNotification;
101 import net.pterodactylus.util.template.CollectionSortFilter;
102 import net.pterodactylus.util.template.DateFilter;
103 import net.pterodactylus.util.template.FormatFilter;
104 import net.pterodactylus.util.template.HtmlFilter;
105 import net.pterodactylus.util.template.MatchFilter;
106 import net.pterodactylus.util.template.PaginationPlugin;
107 import net.pterodactylus.util.template.Provider;
108 import net.pterodactylus.util.template.ReflectionAccessor;
109 import net.pterodactylus.util.template.ReplaceFilter;
110 import net.pterodactylus.util.template.StoreFilter;
111 import net.pterodactylus.util.template.Template;
112 import net.pterodactylus.util.template.TemplateContext;
113 import net.pterodactylus.util.template.TemplateContextFactory;
114 import net.pterodactylus.util.template.TemplateException;
115 import net.pterodactylus.util.template.TemplateParser;
116 import net.pterodactylus.util.template.XmlFilter;
117 import net.pterodactylus.util.thread.Ticker;
118 import net.pterodactylus.util.version.Version;
119 import freenet.clients.http.SessionManager;
120 import freenet.clients.http.SessionManager.Session;
121 import freenet.clients.http.ToadletContainer;
122 import freenet.clients.http.ToadletContext;
123 import freenet.l10n.BaseL10n;
126 * Bundles functionality that a web interface of a Freenet plugin needs, e.g.
127 * references to l10n helpers.
129 * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
131 public class WebInterface implements CoreListener {
134 private static final Logger logger = Logging.getLogger(WebInterface.class);
136 /** The notification manager. */
137 private final NotificationManager notificationManager = new NotificationManager();
139 /** The Sone plugin. */
140 private final SonePlugin sonePlugin;
142 /** The registered toadlets. */
143 private final List<PageToadlet> pageToadlets = new ArrayList<PageToadlet>();
145 /** The form password. */
146 private final String formPassword;
148 /** The template context factory. */
149 private final TemplateContextFactory templateContextFactory;
151 /** The “new Sone” notification. */
152 private final ListNotification<Sone> newSoneNotification;
154 /** The “new post” notification. */
155 private final ListNotification<Post> newPostNotification;
157 /** The “new reply” notification. */
158 private final ListNotification<Reply> newReplyNotification;
160 /** The “rescuing Sone” notification. */
161 private final ListNotification<Sone> rescuingSonesNotification;
163 /** The “Sone rescued” notification. */
164 private final ListNotification<Sone> sonesRescuedNotification;
166 /** Sone locked notification ticker objects. */
167 private final Map<Sone, Object> lockedSonesTickerObjects = Collections.synchronizedMap(new HashMap<Sone, Object>());
169 /** The “Sone locked” notification. */
170 private final ListNotification<Sone> lockedSonesNotification;
172 /** The “new version” notification. */
173 private final TemplateNotification newVersionNotification;
176 * Creates a new web interface.
181 @SuppressWarnings("synthetic-access")
182 public WebInterface(SonePlugin sonePlugin) {
183 this.sonePlugin = sonePlugin;
184 formPassword = sonePlugin.pluginRespirator().getToadletContainer().getFormPassword();
186 templateContextFactory = new TemplateContextFactory();
187 templateContextFactory.addAccessor(Object.class, new ReflectionAccessor());
188 templateContextFactory.addAccessor(Collection.class, new CollectionAccessor());
189 templateContextFactory.addAccessor(Sone.class, new SoneAccessor(getCore()));
190 templateContextFactory.addAccessor(Post.class, new PostAccessor(getCore()));
191 templateContextFactory.addAccessor(Reply.class, new ReplyAccessor(getCore()));
192 templateContextFactory.addAccessor(Album.class, new AlbumAccessor());
193 templateContextFactory.addAccessor(Identity.class, new IdentityAccessor(getCore()));
194 templateContextFactory.addAccessor(NotificationManager.class, new NotificationManagerAccessor());
195 templateContextFactory.addAccessor(Trust.class, new TrustAccessor());
196 templateContextFactory.addFilter("date", new DateFilter());
197 templateContextFactory.addFilter("html", new HtmlFilter());
198 templateContextFactory.addFilter("replace", new ReplaceFilter());
199 templateContextFactory.addFilter("store", new StoreFilter());
200 templateContextFactory.addFilter("l10n", new L10nFilter(getL10n()));
201 templateContextFactory.addFilter("substring", new SubstringFilter());
202 templateContextFactory.addFilter("xml", new XmlFilter());
203 templateContextFactory.addFilter("change", new RequestChangeFilter());
204 templateContextFactory.addFilter("match", new MatchFilter());
205 templateContextFactory.addFilter("css", new CssClassNameFilter());
206 templateContextFactory.addFilter("js", new JavascriptFilter());
207 templateContextFactory.addFilter("parse", new ParserFilter(getCore(), templateContextFactory));
208 templateContextFactory.addFilter("unknown", new UnknownDateFilter(getL10n(), "View.Sone.Text.UnknownDate"));
209 templateContextFactory.addFilter("format", new FormatFilter());
210 templateContextFactory.addFilter("sort", new CollectionSortFilter());
211 templateContextFactory.addPlugin("getpage", new GetPagePlugin());
212 templateContextFactory.addPlugin("paginate", new PaginationPlugin());
213 templateContextFactory.addProvider(Provider.TEMPLATE_CONTEXT_PROVIDER);
214 templateContextFactory.addProvider(new ClassPathTemplateProvider());
215 templateContextFactory.addTemplateObject("formPassword", formPassword);
217 /* create notifications. */
218 Template newSoneNotificationTemplate = TemplateParser.parse(createReader("/templates/notify/newSoneNotification.html"));
219 newSoneNotification = new ListNotification<Sone>("new-sone-notification", "sones", newSoneNotificationTemplate);
221 Template newPostNotificationTemplate = TemplateParser.parse(createReader("/templates/notify/newPostNotification.html"));
222 newPostNotification = new ListNotification<Post>("new-post-notification", "posts", newPostNotificationTemplate);
224 Template newReplyNotificationTemplate = TemplateParser.parse(createReader("/templates/notify/newReplyNotification.html"));
225 newReplyNotification = new ListNotification<Reply>("new-replies-notification", "replies", newReplyNotificationTemplate);
227 Template rescuingSonesTemplate = TemplateParser.parse(createReader("/templates/notify/rescuingSonesNotification.html"));
228 rescuingSonesNotification = new ListNotification<Sone>("sones-being-rescued-notification", "sones", rescuingSonesTemplate);
230 Template sonesRescuedTemplate = TemplateParser.parse(createReader("/templates/notify/sonesRescuedNotification.html"));
231 sonesRescuedNotification = new ListNotification<Sone>("sones-rescued-notification", "sones", sonesRescuedTemplate);
233 Template lockedSonesTemplate = TemplateParser.parse(createReader("/templates/notify/lockedSonesNotification.html"));
234 lockedSonesNotification = new ListNotification<Sone>("sones-locked-notification", "sones", lockedSonesTemplate);
236 Template newVersionTemplate = TemplateParser.parse(createReader("/templates/notify/newVersionNotification.html"));
237 newVersionNotification = new TemplateNotification("new-version-notification", newVersionTemplate);
245 * Returns the Sone core used by the Sone plugin.
247 * @return The Sone core
249 public Core getCore() {
250 return sonePlugin.core();
254 * Returns the template context factory of the web interface.
256 * @return The template context factory
258 public TemplateContextFactory getTemplateContextFactory() {
259 return templateContextFactory;
263 * Returns the current session, creating a new session if there is no
266 * @param toadletContenxt
267 * The toadlet context
268 * @return The current session, or {@code null} if there is no current
271 public Session getCurrentSession(ToadletContext toadletContenxt) {
272 return getCurrentSession(toadletContenxt, true);
276 * Returns the current session, creating a new session if there is no
277 * current session and {@code create} is {@code true}.
279 * @param toadletContenxt
280 * The toadlet context
282 * {@code true} to create a new session if there is no current
283 * session, {@code false} otherwise
284 * @return The current session, or {@code null} if there is no current
287 public Session getCurrentSession(ToadletContext toadletContenxt, boolean create) {
288 Session session = getSessionManager().useSession(toadletContenxt);
289 if (create && (session == null)) {
290 session = getSessionManager().createSession(UUID.randomUUID().toString(), toadletContenxt);
296 * Returns the currently logged in Sone.
298 * @param toadletContext
299 * The toadlet context
300 * @return The currently logged in Sone, or {@code null} if no Sone is
301 * currently logged in
303 public Sone getCurrentSone(ToadletContext toadletContext) {
304 return getCurrentSone(toadletContext, true);
308 * Returns the currently logged in Sone.
310 * @param toadletContext
311 * The toadlet context
313 * {@code true} to create a new session if no session exists,
314 * {@code false} to not create a new session
315 * @return The currently logged in Sone, or {@code null} if no Sone is
316 * currently logged in
318 public Sone getCurrentSone(ToadletContext toadletContext, boolean create) {
319 Set<Sone> localSones = getCore().getLocalSones();
320 if (localSones.size() == 1) {
321 return localSones.iterator().next();
323 return getCurrentSone(getCurrentSession(toadletContext, create));
327 * Returns the currently logged in Sone.
331 * @return The currently logged in Sone, or {@code null} if no Sone is
332 * currently logged in
334 public Sone getCurrentSone(Session session) {
335 if (session == null) {
338 String soneId = (String) session.getAttribute("Sone.CurrentSone");
339 if (soneId == null) {
342 return getCore().getLocalSone(soneId, false);
346 * Sets the currently logged in Sone.
348 * @param toadletContext
349 * The toadlet context
351 * The Sone to set as currently logged in
353 public void setCurrentSone(ToadletContext toadletContext, Sone sone) {
354 Session session = getCurrentSession(toadletContext);
356 session.removeAttribute("Sone.CurrentSone");
358 session.setAttribute("Sone.CurrentSone", sone.getId());
363 * Returns the notification manager.
365 * @return The notification manager
367 public NotificationManager getNotifications() {
368 return notificationManager;
372 * Returns the l10n helper of the node.
374 * @return The node’s l10n helper
376 public BaseL10n getL10n() {
377 return sonePlugin.l10n().getBase();
381 * Returns the session manager of the node.
383 * @return The node’s session manager
385 public SessionManager getSessionManager() {
386 return sonePlugin.pluginRespirator().getSessionManager("Sone");
390 * Returns the node’s form password.
392 * @return The form password
394 public String getFormPassword() {
399 * Returns the posts that have been announced as new in the
400 * {@link #newPostNotification}.
402 * @return The new posts
404 public Set<Post> getNewPosts() {
405 return new HashSet<Post>(newPostNotification.getElements());
409 * Returns the replies that have been announced as new in the
410 * {@link #newReplyNotification}.
412 * @return The new replies
414 public Set<Reply> getNewReplies() {
415 return new HashSet<Reply>(newReplyNotification.getElements());
419 * Sets whether the current start of the plugin is the first start. It is
420 * considered a first start if the configuration file does not exist.
423 * {@code true} if no configuration file existed when Sone was
424 * loaded, {@code false} otherwise
426 public void setFirstStart(boolean firstStart) {
428 Template firstStartNotificationTemplate = TemplateParser.parse(createReader("/templates/notify/firstStartNotification.html"));
429 Notification firstStartNotification = new TemplateNotification("first-start-notification", firstStartNotificationTemplate);
430 notificationManager.addNotification(firstStartNotification);
435 * Sets whether Sone was started with a fresh configuration file.
438 * {@code true} if Sone was started with a fresh configuration,
439 * {@code false} if the existing configuration could be read
441 public void setNewConfig(boolean newConfig) {
442 if (newConfig && !hasFirstStartNotification()) {
443 Template configNotReadNotificationTemplate = TemplateParser.parse(createReader("/templates/notify/configNotReadNotification.html"));
444 Notification configNotReadNotification = new TemplateNotification("config-not-read-notification", configNotReadNotificationTemplate);
445 notificationManager.addNotification(configNotReadNotification);
454 * Returns whether the first start notification is currently displayed.
456 * @return {@code true} if the first-start notification is currently
457 * displayed, {@code false} otherwise
459 private boolean hasFirstStartNotification() {
460 return notificationManager.getNotification("first-start-notification") != null;
468 * Starts the web interface and registers all toadlets.
470 public void start() {
473 /* notification templates. */
474 Template startupNotificationTemplate = TemplateParser.parse(createReader("/templates/notify/startupNotification.html"));
476 final TemplateNotification startupNotification = new TemplateNotification("startup-notification", startupNotificationTemplate);
477 notificationManager.addNotification(startupNotification);
479 Ticker.getInstance().registerEvent(System.currentTimeMillis() + (120 * 1000), new Runnable() {
483 startupNotification.dismiss();
485 }, "Sone Startup Notification Remover");
487 Template wotMissingNotificationTemplate = TemplateParser.parse(createReader("/templates/notify/wotMissingNotification.html"));
488 final TemplateNotification wotMissingNotification = new TemplateNotification("wot-missing-notification", wotMissingNotificationTemplate);
489 Ticker.getInstance().registerEvent(System.currentTimeMillis() + (15 * 1000), new Runnable() {
492 @SuppressWarnings("synthetic-access")
494 if (getCore().getIdentityManager().isConnected()) {
495 wotMissingNotification.dismiss();
497 notificationManager.addNotification(wotMissingNotification);
499 Ticker.getInstance().registerEvent(System.currentTimeMillis() + (15 * 1000), this, "Sone WoT Connector Checker");
502 }, "Sone WoT Connector Checker");
506 * Stops the web interface and unregisters all toadlets.
509 unregisterToadlets();
510 Ticker.getInstance().stop();
518 * Register all toadlets.
520 private void registerToadlets() {
521 Template emptyTemplate = TemplateParser.parse(new StringReader(""));
522 Template loginTemplate = TemplateParser.parse(createReader("/templates/login.html"));
523 Template indexTemplate = TemplateParser.parse(createReader("/templates/index.html"));
524 Template knownSonesTemplate = TemplateParser.parse(createReader("/templates/knownSones.html"));
525 Template createSoneTemplate = TemplateParser.parse(createReader("/templates/createSone.html"));
526 Template createPostTemplate = TemplateParser.parse(createReader("/templates/createPost.html"));
527 Template createReplyTemplate = TemplateParser.parse(createReader("/templates/createReply.html"));
528 Template bookmarksTemplate = TemplateParser.parse(createReader("/templates/bookmarks.html"));
529 Template editProfileTemplate = TemplateParser.parse(createReader("/templates/editProfile.html"));
530 Template editProfileFieldTemplate = TemplateParser.parse(createReader("/templates/editProfileField.html"));
531 Template deleteProfileFieldTemplate = TemplateParser.parse(createReader("/templates/deleteProfileField.html"));
532 Template viewSoneTemplate = TemplateParser.parse(createReader("/templates/viewSone.html"));
533 Template viewPostTemplate = TemplateParser.parse(createReader("/templates/viewPost.html"));
534 Template deletePostTemplate = TemplateParser.parse(createReader("/templates/deletePost.html"));
535 Template deleteReplyTemplate = TemplateParser.parse(createReader("/templates/deleteReply.html"));
536 Template deleteSoneTemplate = TemplateParser.parse(createReader("/templates/deleteSone.html"));
537 Template imageBrowserTemplate = TemplateParser.parse(createReader("/templates/imageBrowser.html"));
538 Template createAlbumTemplate = TemplateParser.parse(createReader("/templates/createAlbum.html"));
539 Template noPermissionTemplate = TemplateParser.parse(createReader("/templates/noPermission.html"));
540 Template optionsTemplate = TemplateParser.parse(createReader("/templates/options.html"));
541 Template aboutTemplate = TemplateParser.parse(createReader("/templates/about.html"));
542 Template invalidTemplate = TemplateParser.parse(createReader("/templates/invalid.html"));
543 Template postTemplate = TemplateParser.parse(createReader("/templates/include/viewPost.html"));
544 Template replyTemplate = TemplateParser.parse(createReader("/templates/include/viewReply.html"));
546 PageToadletFactory pageToadletFactory = new PageToadletFactory(sonePlugin.pluginRespirator().getHLSimpleClient(), "/Sone/");
547 pageToadlets.add(pageToadletFactory.createPageToadlet(new IndexPage(indexTemplate, this), "Index"));
548 pageToadlets.add(pageToadletFactory.createPageToadlet(new CreateSonePage(createSoneTemplate, this), "CreateSone"));
549 pageToadlets.add(pageToadletFactory.createPageToadlet(new KnownSonesPage(knownSonesTemplate, this), "KnownSones"));
550 pageToadlets.add(pageToadletFactory.createPageToadlet(new EditProfilePage(editProfileTemplate, this), "EditProfile"));
551 pageToadlets.add(pageToadletFactory.createPageToadlet(new EditProfileFieldPage(editProfileFieldTemplate, this)));
552 pageToadlets.add(pageToadletFactory.createPageToadlet(new DeleteProfileFieldPage(deleteProfileFieldTemplate, this)));
553 pageToadlets.add(pageToadletFactory.createPageToadlet(new CreatePostPage(createPostTemplate, this)));
554 pageToadlets.add(pageToadletFactory.createPageToadlet(new CreateReplyPage(createReplyTemplate, this)));
555 pageToadlets.add(pageToadletFactory.createPageToadlet(new ViewSonePage(viewSoneTemplate, this)));
556 pageToadlets.add(pageToadletFactory.createPageToadlet(new ViewPostPage(viewPostTemplate, this)));
557 pageToadlets.add(pageToadletFactory.createPageToadlet(new LikePage(emptyTemplate, this)));
558 pageToadlets.add(pageToadletFactory.createPageToadlet(new UnlikePage(emptyTemplate, this)));
559 pageToadlets.add(pageToadletFactory.createPageToadlet(new DeletePostPage(deletePostTemplate, this)));
560 pageToadlets.add(pageToadletFactory.createPageToadlet(new DeleteReplyPage(deleteReplyTemplate, this)));
561 pageToadlets.add(pageToadletFactory.createPageToadlet(new LockSonePage(emptyTemplate, this)));
562 pageToadlets.add(pageToadletFactory.createPageToadlet(new UnlockSonePage(emptyTemplate, this)));
563 pageToadlets.add(pageToadletFactory.createPageToadlet(new FollowSonePage(emptyTemplate, this)));
564 pageToadlets.add(pageToadletFactory.createPageToadlet(new UnfollowSonePage(emptyTemplate, this)));
565 pageToadlets.add(pageToadletFactory.createPageToadlet(new ImageBrowserPage(imageBrowserTemplate, this), "ImageBrowser"));
566 pageToadlets.add(pageToadletFactory.createPageToadlet(new CreateAlbumPage(createAlbumTemplate, this)));
567 pageToadlets.add(pageToadletFactory.createPageToadlet(new TrustPage(emptyTemplate, this)));
568 pageToadlets.add(pageToadletFactory.createPageToadlet(new DistrustPage(emptyTemplate, this)));
569 pageToadlets.add(pageToadletFactory.createPageToadlet(new UntrustPage(emptyTemplate, this)));
570 pageToadlets.add(pageToadletFactory.createPageToadlet(new MarkAsKnownPage(emptyTemplate, this)));
571 pageToadlets.add(pageToadletFactory.createPageToadlet(new BookmarkPage(emptyTemplate, this)));
572 pageToadlets.add(pageToadletFactory.createPageToadlet(new UnbookmarkPage(emptyTemplate, this)));
573 pageToadlets.add(pageToadletFactory.createPageToadlet(new BookmarksPage(bookmarksTemplate, this), "Bookmarks"));
574 pageToadlets.add(pageToadletFactory.createPageToadlet(new DeleteSonePage(deleteSoneTemplate, this), "DeleteSone"));
575 pageToadlets.add(pageToadletFactory.createPageToadlet(new LoginPage(loginTemplate, this), "Login"));
576 pageToadlets.add(pageToadletFactory.createPageToadlet(new LogoutPage(emptyTemplate, this), "Logout"));
577 pageToadlets.add(pageToadletFactory.createPageToadlet(new OptionsPage(optionsTemplate, this), "Options"));
578 pageToadlets.add(pageToadletFactory.createPageToadlet(new AboutPage(aboutTemplate, this, SonePlugin.VERSION), "About"));
579 pageToadlets.add(pageToadletFactory.createPageToadlet(new SoneTemplatePage("noPermission.html", noPermissionTemplate, "Page.NoPermission.Title", this)));
580 pageToadlets.add(pageToadletFactory.createPageToadlet(new DismissNotificationPage(emptyTemplate, this)));
581 pageToadlets.add(pageToadletFactory.createPageToadlet(new SoneTemplatePage("invalid.html", invalidTemplate, "Page.Invalid.Title", this)));
582 pageToadlets.add(pageToadletFactory.createPageToadlet(new StaticPage("css/", "/static/css/", "text/css")));
583 pageToadlets.add(pageToadletFactory.createPageToadlet(new StaticPage("javascript/", "/static/javascript/", "text/javascript")));
584 pageToadlets.add(pageToadletFactory.createPageToadlet(new StaticPage("images/", "/static/images/", "image/png")));
585 pageToadlets.add(pageToadletFactory.createPageToadlet(new GetTranslationPage(this)));
586 pageToadlets.add(pageToadletFactory.createPageToadlet(new GetStatusAjaxPage(this)));
587 pageToadlets.add(pageToadletFactory.createPageToadlet(new DismissNotificationAjaxPage(this)));
588 pageToadlets.add(pageToadletFactory.createPageToadlet(new CreatePostAjaxPage(this)));
589 pageToadlets.add(pageToadletFactory.createPageToadlet(new CreateReplyAjaxPage(this)));
590 pageToadlets.add(pageToadletFactory.createPageToadlet(new GetReplyAjaxPage(this, replyTemplate)));
591 pageToadlets.add(pageToadletFactory.createPageToadlet(new GetPostAjaxPage(this, postTemplate)));
592 pageToadlets.add(pageToadletFactory.createPageToadlet(new MarkAsKnownAjaxPage(this)));
593 pageToadlets.add(pageToadletFactory.createPageToadlet(new DeletePostAjaxPage(this)));
594 pageToadlets.add(pageToadletFactory.createPageToadlet(new DeleteReplyAjaxPage(this)));
595 pageToadlets.add(pageToadletFactory.createPageToadlet(new LockSoneAjaxPage(this)));
596 pageToadlets.add(pageToadletFactory.createPageToadlet(new UnlockSoneAjaxPage(this)));
597 pageToadlets.add(pageToadletFactory.createPageToadlet(new FollowSoneAjaxPage(this)));
598 pageToadlets.add(pageToadletFactory.createPageToadlet(new UnfollowSoneAjaxPage(this)));
599 pageToadlets.add(pageToadletFactory.createPageToadlet(new TrustAjaxPage(this)));
600 pageToadlets.add(pageToadletFactory.createPageToadlet(new DistrustAjaxPage(this)));
601 pageToadlets.add(pageToadletFactory.createPageToadlet(new UntrustAjaxPage(this)));
602 pageToadlets.add(pageToadletFactory.createPageToadlet(new LikeAjaxPage(this)));
603 pageToadlets.add(pageToadletFactory.createPageToadlet(new UnlikeAjaxPage(this)));
604 pageToadlets.add(pageToadletFactory.createPageToadlet(new GetLikesAjaxPage(this)));
605 pageToadlets.add(pageToadletFactory.createPageToadlet(new BookmarkAjaxPage(this)));
606 pageToadlets.add(pageToadletFactory.createPageToadlet(new UnbookmarkAjaxPage(this)));
607 pageToadlets.add(pageToadletFactory.createPageToadlet(new EditProfileFieldAjaxPage(this)));
608 pageToadlets.add(pageToadletFactory.createPageToadlet(new DeleteProfileFieldAjaxPage(this)));
609 pageToadlets.add(pageToadletFactory.createPageToadlet(new MoveProfileFieldAjaxPage(this)));
611 ToadletContainer toadletContainer = sonePlugin.pluginRespirator().getToadletContainer();
612 toadletContainer.getPageMaker().addNavigationCategory("/Sone/index.html", "Navigation.Menu.Name", "Navigation.Menu.Tooltip", sonePlugin);
613 for (PageToadlet toadlet : pageToadlets) {
614 String menuName = toadlet.getMenuName();
615 if (menuName != null) {
616 toadletContainer.register(toadlet, "Navigation.Menu.Name", toadlet.path(), true, "Navigation.Menu.Item." + menuName + ".Name", "Navigation.Menu.Item." + menuName + ".Tooltip", false, toadlet);
618 toadletContainer.register(toadlet, null, toadlet.path(), true, false);
624 * Unregisters all toadlets.
626 private void unregisterToadlets() {
627 ToadletContainer toadletContainer = sonePlugin.pluginRespirator().getToadletContainer();
628 for (PageToadlet pageToadlet : pageToadlets) {
629 toadletContainer.unregister(pageToadlet);
631 toadletContainer.getPageMaker().removeNavigationCategory("Navigation.Menu.Name");
635 * Creates a {@link Reader} from the {@link InputStream} for the resource
636 * with the given name.
638 * @param resourceName
639 * The name of the resource
640 * @return A {@link Reader} for the resource
642 private Reader createReader(String resourceName) {
644 return new InputStreamReader(getClass().getResourceAsStream(resourceName), "UTF-8");
645 } catch (UnsupportedEncodingException uee1) {
646 System.out.println(" fail.");
652 // CORELISTENER METHODS
659 public void rescuingSone(Sone sone) {
660 rescuingSonesNotification.add(sone);
661 notificationManager.addNotification(rescuingSonesNotification);
668 public void rescuedSone(Sone sone) {
669 rescuingSonesNotification.remove(sone);
670 sonesRescuedNotification.add(sone);
671 notificationManager.addNotification(sonesRescuedNotification);
678 public void newSoneFound(Sone sone) {
679 newSoneNotification.add(sone);
680 if (!hasFirstStartNotification()) {
681 notificationManager.addNotification(newSoneNotification);
689 public void newPostFound(Post post) {
690 newPostNotification.add(post);
691 if (!hasFirstStartNotification()) {
692 notificationManager.addNotification(newPostNotification);
694 getCore().markPostKnown(post);
702 public void newReplyFound(Reply reply) {
703 if (reply.getPost().getSone() == null) {
706 newReplyNotification.add(reply);
707 if (!hasFirstStartNotification()) {
708 notificationManager.addNotification(newReplyNotification);
710 getCore().markReplyKnown(reply);
718 public void markSoneKnown(Sone sone) {
719 newSoneNotification.remove(sone);
726 public void markPostKnown(Post post) {
727 newPostNotification.remove(post);
734 public void markReplyKnown(Reply reply) {
735 newReplyNotification.remove(reply);
742 public void postRemoved(Post post) {
743 newPostNotification.remove(post);
750 public void replyRemoved(Reply reply) {
751 newReplyNotification.remove(reply);
758 public void soneLocked(final Sone sone) {
759 Object tickerObject = Ticker.getInstance().registerEvent(System.currentTimeMillis() + (5 * 60) * 1000, new Runnable() {
762 @SuppressWarnings("synthetic-access")
764 lockedSonesNotification.add(sone);
765 lockedSonesTickerObjects.remove(sone);
766 notificationManager.addNotification(lockedSonesNotification);
768 }, "Sone Locked Notification");
769 lockedSonesTickerObjects.put(sone, tickerObject);
776 public void soneUnlocked(Sone sone) {
777 lockedSonesNotification.remove(sone);
778 Ticker.getInstance().deregisterEvent(lockedSonesTickerObjects.remove(sone));
785 public void updateFound(Version version, long releaseTime, long latestEdition) {
786 newVersionNotification.getTemplateContext().set("latestVersion", version);
787 newVersionNotification.getTemplateContext().set("latestEdition", latestEdition);
788 newVersionNotification.getTemplateContext().set("releaseTime", releaseTime);
789 notificationManager.addNotification(newVersionNotification);
793 * Template provider implementation that uses
794 * {@link WebInterface#createReader(String)} to load templates for
797 * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
799 private class ClassPathTemplateProvider implements Provider {
801 /** Cache for templates. */
802 private final Cache<String, Template> templateCache = new MemoryCache<String, Template>(new ValueRetriever<String, Template>() {
805 @SuppressWarnings("synthetic-access")
806 public CacheItem<Template> retrieve(String key) throws CacheException {
807 Template template = findTemplate(key);
808 if (template != null) {
809 return new DefaultCacheItem<Template>(template);
819 @SuppressWarnings("synthetic-access")
820 public Template getTemplate(TemplateContext templateContext, String templateName) {
822 return templateCache.get(templateName);
823 } catch (CacheException ce1) {
824 logger.log(Level.WARNING, "Could not get template for " + templateName + "!", ce1);
830 * Locates a template in the class path.
832 * @param templateName
833 * The name of the template to load
834 * @return The loaded template, or {@code null} if no template could be
837 @SuppressWarnings("synthetic-access")
838 private Template findTemplate(String templateName) {
839 Reader templateReader = createReader("/templates/" + templateName);
840 if (templateReader == null) {
843 Template template = null;
845 template = TemplateParser.parse(templateReader);
846 } catch (TemplateException te1) {
847 logger.log(Level.WARNING, "Could not parse template “" + templateName + "” for inclusion!", te1);