2 * Sone - WebInterface.java - Copyright © 2010–2013 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 static java.util.logging.Logger.getLogger;
21 import static net.pterodactylus.util.template.TemplateParser.parse;
23 import java.io.IOException;
24 import java.io.InputStream;
25 import java.io.InputStreamReader;
26 import java.io.Reader;
27 import java.io.StringReader;
28 import java.io.UnsupportedEncodingException;
29 import java.util.ArrayList;
30 import java.util.Collection;
31 import java.util.Collections;
32 import java.util.HashMap;
33 import java.util.HashSet;
34 import java.util.List;
37 import java.util.UUID;
38 import java.util.concurrent.Executors;
39 import java.util.concurrent.ScheduledExecutorService;
40 import java.util.concurrent.ScheduledFuture;
41 import java.util.concurrent.TimeUnit;
42 import java.util.logging.Level;
43 import java.util.logging.Logger;
45 import net.pterodactylus.sone.core.Core;
46 import net.pterodactylus.sone.core.event.ImageInsertAbortedEvent;
47 import net.pterodactylus.sone.core.event.ImageInsertFailedEvent;
48 import net.pterodactylus.sone.core.event.ImageInsertFinishedEvent;
49 import net.pterodactylus.sone.core.event.ImageInsertStartedEvent;
50 import net.pterodactylus.sone.core.event.MarkPostKnownEvent;
51 import net.pterodactylus.sone.core.event.MarkPostReplyKnownEvent;
52 import net.pterodactylus.sone.core.event.MarkSoneKnownEvent;
53 import net.pterodactylus.sone.core.event.NewPostFoundEvent;
54 import net.pterodactylus.sone.core.event.NewPostReplyFoundEvent;
55 import net.pterodactylus.sone.core.event.NewSoneFoundEvent;
56 import net.pterodactylus.sone.core.event.PostRemovedEvent;
57 import net.pterodactylus.sone.core.event.PostReplyRemovedEvent;
58 import net.pterodactylus.sone.core.event.SoneInsertAbortedEvent;
59 import net.pterodactylus.sone.core.event.SoneInsertedEvent;
60 import net.pterodactylus.sone.core.event.SoneInsertingEvent;
61 import net.pterodactylus.sone.core.event.SoneLockedEvent;
62 import net.pterodactylus.sone.core.event.SoneRemovedEvent;
63 import net.pterodactylus.sone.core.event.SoneUnlockedEvent;
64 import net.pterodactylus.sone.core.event.UpdateFoundEvent;
65 import net.pterodactylus.sone.data.Album;
66 import net.pterodactylus.sone.data.Image;
67 import net.pterodactylus.sone.data.Post;
68 import net.pterodactylus.sone.data.PostReply;
69 import net.pterodactylus.sone.data.Profile;
70 import net.pterodactylus.sone.data.Reply;
71 import net.pterodactylus.sone.data.Sone;
72 import net.pterodactylus.sone.freenet.L10nFilter;
73 import net.pterodactylus.sone.freenet.wot.Identity;
74 import net.pterodactylus.sone.freenet.wot.Trust;
75 import net.pterodactylus.sone.main.ReparseFilter;
76 import net.pterodactylus.sone.main.SonePlugin;
77 import net.pterodactylus.sone.notify.ListNotification;
78 import net.pterodactylus.sone.template.AlbumAccessor;
79 import net.pterodactylus.sone.template.CollectionAccessor;
80 import net.pterodactylus.sone.template.CssClassNameFilter;
81 import net.pterodactylus.sone.template.HttpRequestAccessor;
82 import net.pterodactylus.sone.template.IdentityAccessor;
83 import net.pterodactylus.sone.template.ImageAccessor;
84 import net.pterodactylus.sone.template.ImageLinkFilter;
85 import net.pterodactylus.sone.template.JavascriptFilter;
86 import net.pterodactylus.sone.template.ParserFilter;
87 import net.pterodactylus.sone.template.PostAccessor;
88 import net.pterodactylus.sone.template.ProfileAccessor;
89 import net.pterodactylus.sone.template.ReplyAccessor;
90 import net.pterodactylus.sone.template.ReplyGroupFilter;
91 import net.pterodactylus.sone.template.RequestChangeFilter;
92 import net.pterodactylus.sone.template.SoneAccessor;
93 import net.pterodactylus.sone.template.SubstringFilter;
94 import net.pterodactylus.sone.template.TrustAccessor;
95 import net.pterodactylus.sone.template.UniqueElementFilter;
96 import net.pterodactylus.sone.template.UnknownDateFilter;
97 import net.pterodactylus.sone.text.Part;
98 import net.pterodactylus.sone.text.SonePart;
99 import net.pterodactylus.sone.text.SoneTextParser;
100 import net.pterodactylus.sone.web.ajax.BookmarkAjaxPage;
101 import net.pterodactylus.sone.web.ajax.CreatePostAjaxPage;
102 import net.pterodactylus.sone.web.ajax.CreateReplyAjaxPage;
103 import net.pterodactylus.sone.web.ajax.DeletePostAjaxPage;
104 import net.pterodactylus.sone.web.ajax.DeleteProfileFieldAjaxPage;
105 import net.pterodactylus.sone.web.ajax.DeleteReplyAjaxPage;
106 import net.pterodactylus.sone.web.ajax.DismissNotificationAjaxPage;
107 import net.pterodactylus.sone.web.ajax.DistrustAjaxPage;
108 import net.pterodactylus.sone.web.ajax.EditAlbumAjaxPage;
109 import net.pterodactylus.sone.web.ajax.EditImageAjaxPage;
110 import net.pterodactylus.sone.web.ajax.EditProfileFieldAjaxPage;
111 import net.pterodactylus.sone.web.ajax.FollowSoneAjaxPage;
112 import net.pterodactylus.sone.web.ajax.GetLikesAjaxPage;
113 import net.pterodactylus.sone.web.ajax.GetNotificationsAjaxPage;
114 import net.pterodactylus.sone.web.ajax.GetPostAjaxPage;
115 import net.pterodactylus.sone.web.ajax.GetReplyAjaxPage;
116 import net.pterodactylus.sone.web.ajax.GetStatusAjaxPage;
117 import net.pterodactylus.sone.web.ajax.GetTimesAjaxPage;
118 import net.pterodactylus.sone.web.ajax.GetTranslationPage;
119 import net.pterodactylus.sone.web.ajax.LikeAjaxPage;
120 import net.pterodactylus.sone.web.ajax.LockSoneAjaxPage;
121 import net.pterodactylus.sone.web.ajax.MarkAsKnownAjaxPage;
122 import net.pterodactylus.sone.web.ajax.MoveProfileFieldAjaxPage;
123 import net.pterodactylus.sone.web.ajax.TrustAjaxPage;
124 import net.pterodactylus.sone.web.ajax.UnbookmarkAjaxPage;
125 import net.pterodactylus.sone.web.ajax.UnfollowSoneAjaxPage;
126 import net.pterodactylus.sone.web.ajax.UnlikeAjaxPage;
127 import net.pterodactylus.sone.web.ajax.UnlockSoneAjaxPage;
128 import net.pterodactylus.sone.web.ajax.UntrustAjaxPage;
129 import net.pterodactylus.sone.web.page.FreenetRequest;
130 import net.pterodactylus.sone.web.page.PageToadlet;
131 import net.pterodactylus.sone.web.page.PageToadletFactory;
132 import net.pterodactylus.util.io.Closer;
133 import net.pterodactylus.util.notify.Notification;
134 import net.pterodactylus.util.notify.NotificationManager;
135 import net.pterodactylus.util.notify.TemplateNotification;
136 import net.pterodactylus.util.template.ClassPathTemplateProvider;
137 import net.pterodactylus.util.template.CollectionSortFilter;
138 import net.pterodactylus.util.template.ContainsFilter;
139 import net.pterodactylus.util.template.DateFilter;
140 import net.pterodactylus.util.template.FormatFilter;
141 import net.pterodactylus.util.template.HtmlFilter;
142 import net.pterodactylus.util.template.MatchFilter;
143 import net.pterodactylus.util.template.ModFilter;
144 import net.pterodactylus.util.template.PaginationFilter;
145 import net.pterodactylus.util.template.ReflectionAccessor;
146 import net.pterodactylus.util.template.ReplaceFilter;
147 import net.pterodactylus.util.template.StoreFilter;
148 import net.pterodactylus.util.template.Template;
149 import net.pterodactylus.util.template.TemplateContextFactory;
150 import net.pterodactylus.util.template.TemplateProvider;
151 import net.pterodactylus.util.template.XmlFilter;
152 import net.pterodactylus.util.web.RedirectPage;
153 import net.pterodactylus.util.web.StaticPage;
154 import net.pterodactylus.util.web.TemplatePage;
156 import com.google.common.collect.Collections2;
157 import com.google.common.collect.ImmutableSet;
158 import com.google.common.eventbus.Subscribe;
159 import com.google.inject.Inject;
161 import freenet.clients.http.SessionManager;
162 import freenet.clients.http.SessionManager.Session;
163 import freenet.clients.http.ToadletContainer;
164 import freenet.clients.http.ToadletContext;
165 import freenet.l10n.BaseL10n;
166 import freenet.support.api.HTTPRequest;
169 * Bundles functionality that a web interface of a Freenet plugin needs, e.g.
170 * references to l10n helpers.
172 * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
174 public class WebInterface {
177 private static final Logger logger = getLogger(WebInterface.class.getName());
179 /** The notification manager. */
180 private final NotificationManager notificationManager = new NotificationManager();
182 /** The Sone plugin. */
183 private final SonePlugin sonePlugin;
185 /** The registered toadlets. */
186 private final List<PageToadlet> pageToadlets = new ArrayList<PageToadlet>();
188 /** The form password. */
189 private final String formPassword;
191 /** The template context factory. */
192 private final TemplateContextFactory templateContextFactory;
194 /** The Sone text parser. */
195 private final SoneTextParser soneTextParser;
197 /** The parser filter. */
198 private final ParserFilter parserFilter;
200 /** The “new Sone” notification. */
201 private final ListNotification<Sone> newSoneNotification;
203 /** The “new post” notification. */
204 private final ListNotification<Post> newPostNotification;
206 /** The “new reply” notification. */
207 private final ListNotification<PostReply> newReplyNotification;
209 /** The invisible “local post” notification. */
210 private final ListNotification<Post> localPostNotification;
212 /** The invisible “local reply” notification. */
213 private final ListNotification<PostReply> localReplyNotification;
215 /** The “you have been mentioned” notification. */
216 private final ListNotification<Post> mentionNotification;
218 /** Notifications for sone inserts. */
219 private final Map<Sone, TemplateNotification> soneInsertNotifications = new HashMap<Sone, TemplateNotification>();
221 /** Sone locked notification ticker objects. */
222 private final Map<Sone, ScheduledFuture<?>> lockedSonesTickerObjects = Collections.synchronizedMap(new HashMap<Sone, ScheduledFuture<?>>());
224 /** The “Sone locked” notification. */
225 private final ListNotification<Sone> lockedSonesNotification;
227 /** The “new version” notification. */
228 private final TemplateNotification newVersionNotification;
230 /** The “inserting images” notification. */
231 private final ListNotification<Image> insertingImagesNotification;
233 /** The “inserted images” notification. */
234 private final ListNotification<Image> insertedImagesNotification;
236 /** The “image insert failed” notification. */
237 private final ListNotification<Image> imageInsertFailedNotification;
239 /** Scheduled executor for time-based notifications. */
240 private final ScheduledExecutorService ticker = Executors.newScheduledThreadPool(1);
243 * Creates a new web interface.
249 public WebInterface(SonePlugin sonePlugin) {
250 this.sonePlugin = sonePlugin;
251 formPassword = sonePlugin.pluginRespirator().getToadletContainer().getFormPassword();
252 soneTextParser = new SoneTextParser(getCore(), getCore());
254 templateContextFactory = new TemplateContextFactory();
255 templateContextFactory.addAccessor(Object.class, new ReflectionAccessor());
256 templateContextFactory.addAccessor(Collection.class, new CollectionAccessor());
257 templateContextFactory.addAccessor(Sone.class, new SoneAccessor(getCore()));
258 templateContextFactory.addAccessor(Post.class, new PostAccessor(getCore()));
259 templateContextFactory.addAccessor(Reply.class, new ReplyAccessor(getCore()));
260 templateContextFactory.addAccessor(Album.class, new AlbumAccessor());
261 templateContextFactory.addAccessor(Image.class, new ImageAccessor());
262 templateContextFactory.addAccessor(Identity.class, new IdentityAccessor(getCore()));
263 templateContextFactory.addAccessor(Trust.class, new TrustAccessor());
264 templateContextFactory.addAccessor(HTTPRequest.class, new HttpRequestAccessor());
265 templateContextFactory.addAccessor(Profile.class, new ProfileAccessor(getCore()));
266 templateContextFactory.addFilter("date", new DateFilter());
267 templateContextFactory.addFilter("html", new HtmlFilter());
268 templateContextFactory.addFilter("replace", new ReplaceFilter());
269 templateContextFactory.addFilter("store", new StoreFilter());
270 templateContextFactory.addFilter("l10n", new L10nFilter(this));
271 templateContextFactory.addFilter("substring", new SubstringFilter());
272 templateContextFactory.addFilter("xml", new XmlFilter());
273 templateContextFactory.addFilter("change", new RequestChangeFilter());
274 templateContextFactory.addFilter("match", new MatchFilter());
275 templateContextFactory.addFilter("css", new CssClassNameFilter());
276 templateContextFactory.addFilter("js", new JavascriptFilter());
277 templateContextFactory.addFilter("parse", parserFilter = new ParserFilter(getCore(), templateContextFactory, soneTextParser));
278 templateContextFactory.addFilter("reparse", new ReparseFilter());
279 templateContextFactory.addFilter("unknown", new UnknownDateFilter(getL10n(), "View.Sone.Text.UnknownDate"));
280 templateContextFactory.addFilter("format", new FormatFilter());
281 templateContextFactory.addFilter("sort", new CollectionSortFilter());
282 templateContextFactory.addFilter("image-link", new ImageLinkFilter(getCore(), templateContextFactory));
283 templateContextFactory.addFilter("replyGroup", new ReplyGroupFilter());
284 templateContextFactory.addFilter("in", new ContainsFilter());
285 templateContextFactory.addFilter("unique", new UniqueElementFilter());
286 templateContextFactory.addFilter("mod", new ModFilter());
287 templateContextFactory.addFilter("paginate", new PaginationFilter());
288 templateContextFactory.addProvider(TemplateProvider.TEMPLATE_CONTEXT_PROVIDER);
289 templateContextFactory.addProvider(new ClassPathTemplateProvider(WebInterface.class, "/templates/"));
290 templateContextFactory.addTemplateObject("webInterface", this);
291 templateContextFactory.addTemplateObject("formPassword", formPassword);
293 /* create notifications. */
294 Template newSoneNotificationTemplate = parseTemplate("/templates/notify/newSoneNotification.html");
295 newSoneNotification = new ListNotification<Sone>("new-sone-notification", "sones", newSoneNotificationTemplate, false);
297 Template newPostNotificationTemplate = parseTemplate("/templates/notify/newPostNotification.html");
298 newPostNotification = new ListNotification<Post>("new-post-notification", "posts", newPostNotificationTemplate, false);
300 Template localPostNotificationTemplate = parseTemplate("/templates/notify/newPostNotification.html");
301 localPostNotification = new ListNotification<Post>("local-post-notification", "posts", localPostNotificationTemplate, false);
303 Template newReplyNotificationTemplate = parseTemplate("/templates/notify/newReplyNotification.html");
304 newReplyNotification = new ListNotification<PostReply>("new-reply-notification", "replies", newReplyNotificationTemplate, false);
306 Template localReplyNotificationTemplate = parseTemplate("/templates/notify/newReplyNotification.html");
307 localReplyNotification = new ListNotification<PostReply>("local-reply-notification", "replies", localReplyNotificationTemplate, false);
309 Template mentionNotificationTemplate = parseTemplate("/templates/notify/mentionNotification.html");
310 mentionNotification = new ListNotification<Post>("mention-notification", "posts", mentionNotificationTemplate, false);
312 Template lockedSonesTemplate = parseTemplate("/templates/notify/lockedSonesNotification.html");
313 lockedSonesNotification = new ListNotification<Sone>("sones-locked-notification", "sones", lockedSonesTemplate);
315 Template newVersionTemplate = parseTemplate("/templates/notify/newVersionNotification.html");
316 newVersionNotification = new TemplateNotification("new-version-notification", newVersionTemplate);
318 Template insertingImagesTemplate = parseTemplate("/templates/notify/inserting-images-notification.html");
319 insertingImagesNotification = new ListNotification<Image>("inserting-images-notification", "images", insertingImagesTemplate);
321 Template insertedImagesTemplate = parseTemplate("/templates/notify/inserted-images-notification.html");
322 insertedImagesNotification = new ListNotification<Image>("inserted-images-notification", "images", insertedImagesTemplate);
324 Template imageInsertFailedTemplate = parseTemplate("/templates/notify/image-insert-failed-notification.html");
325 imageInsertFailedNotification = new ListNotification<Image>("image-insert-failed-notification", "images", imageInsertFailedTemplate);
328 private Template parseTemplate(String resourceName) {
329 InputStream templateInputStream = null;
330 Reader reader = null;
332 templateInputStream = getClass().getResourceAsStream(resourceName);
333 reader = new InputStreamReader(templateInputStream, "UTF-8");
334 return parse(reader);
335 } catch (UnsupportedEncodingException uee1) {
336 throw new RuntimeException("UTF-8 not supported.");
338 Closer.close(reader);
339 Closer.close(templateInputStream);
348 * Returns the Sone core used by the Sone plugin.
350 * @return The Sone core
352 public Core getCore() {
353 return sonePlugin.core();
357 * Returns the template context factory of the web interface.
359 * @return The template context factory
361 public TemplateContextFactory getTemplateContextFactory() {
362 return templateContextFactory;
366 * Returns the current session, creating a new session if there is no
369 * @param toadletContenxt
370 * The toadlet context
371 * @return The current session, or {@code null} if there is no current
374 public Session getCurrentSession(ToadletContext toadletContenxt) {
375 return getCurrentSession(toadletContenxt, true);
379 * Returns the current session, creating a new session if there is no
380 * current session and {@code create} is {@code true}.
382 * @param toadletContenxt
383 * The toadlet context
385 * {@code true} to create a new session if there is no current
386 * session, {@code false} otherwise
387 * @return The current session, or {@code null} if there is no current
390 public Session getCurrentSession(ToadletContext toadletContenxt, boolean create) {
391 Session session = getSessionManager().useSession(toadletContenxt);
392 if (create && (session == null)) {
393 session = getSessionManager().createSession(UUID.randomUUID().toString(), toadletContenxt);
399 * Returns the currently logged in Sone.
401 * @param toadletContext
402 * The toadlet context
403 * @return The currently logged in Sone, or {@code null} if no Sone is
404 * currently logged in
406 public Sone getCurrentSone(ToadletContext toadletContext) {
407 return getCurrentSone(toadletContext, true);
411 * Returns the currently logged in Sone.
413 * @param toadletContext
414 * The toadlet context
416 * {@code true} to create a new session if no session exists,
417 * {@code false} to not create a new session
418 * @return The currently logged in Sone, or {@code null} if no Sone is
419 * currently logged in
421 public Sone getCurrentSone(ToadletContext toadletContext, boolean create) {
422 Collection<Sone> localSones = getCore().getLocalSones();
423 if (localSones.size() == 1) {
424 return localSones.iterator().next();
426 return getCurrentSone(getCurrentSession(toadletContext, create));
430 * Returns the currently logged in Sone.
434 * @return The currently logged in Sone, or {@code null} if no Sone is
435 * currently logged in
437 public Sone getCurrentSone(Session session) {
438 if (session == null) {
441 String soneId = (String) session.getAttribute("Sone.CurrentSone");
442 if (soneId == null) {
445 return getCore().getLocalSone(soneId);
449 * Sets the currently logged in Sone.
451 * @param toadletContext
452 * The toadlet context
454 * The Sone to set as currently logged in
456 public void setCurrentSone(ToadletContext toadletContext, Sone sone) {
457 Session session = getCurrentSession(toadletContext);
459 session.removeAttribute("Sone.CurrentSone");
461 session.setAttribute("Sone.CurrentSone", sone.getId());
466 * Returns the notification manager.
468 * @return The notification manager
470 public NotificationManager getNotifications() {
471 return notificationManager;
475 * Returns the l10n helper of the node.
477 * @return The node’s l10n helper
479 public BaseL10n getL10n() {
480 return sonePlugin.l10n().getBase();
484 * Returns the session manager of the node.
486 * @return The node’s session manager
488 public SessionManager getSessionManager() {
489 return sonePlugin.pluginRespirator().getSessionManager("Sone");
493 * Returns the node’s form password.
495 * @return The form password
497 public String getFormPassword() {
502 * Returns the posts that have been announced as new in the
503 * {@link #newPostNotification}.
505 * @return The new posts
507 public Set<Post> getNewPosts() {
508 return ImmutableSet.<Post> builder().addAll(newPostNotification.getElements()).addAll(localPostNotification.getElements()).build();
512 * Returns the replies that have been announced as new in the
513 * {@link #newReplyNotification}.
515 * @return The new replies
517 public Set<PostReply> getNewReplies() {
518 return ImmutableSet.<PostReply> builder().addAll(newReplyNotification.getElements()).addAll(localReplyNotification.getElements()).build();
522 * Sets whether the current start of the plugin is the first start. It is
523 * considered a first start if the configuration file does not exist.
526 * {@code true} if no configuration file existed when Sone was
527 * loaded, {@code false} otherwise
529 public void setFirstStart(boolean firstStart) {
531 Template firstStartNotificationTemplate = parseTemplate("/templates/notify/firstStartNotification.html");
532 Notification firstStartNotification = new TemplateNotification("first-start-notification", firstStartNotificationTemplate);
533 notificationManager.addNotification(firstStartNotification);
538 * Sets whether Sone was started with a fresh configuration file.
541 * {@code true} if Sone was started with a fresh configuration,
542 * {@code false} if the existing configuration could be read
544 public void setNewConfig(boolean newConfig) {
545 if (newConfig && !hasFirstStartNotification()) {
546 Template configNotReadNotificationTemplate = parseTemplate("/templates/notify/configNotReadNotification.html");
547 Notification configNotReadNotification = new TemplateNotification("config-not-read-notification", configNotReadNotificationTemplate);
548 notificationManager.addNotification(configNotReadNotification);
557 * Returns whether the first start notification is currently displayed.
559 * @return {@code true} if the first-start notification is currently
560 * displayed, {@code false} otherwise
562 private boolean hasFirstStartNotification() {
563 return notificationManager.getNotification("first-start-notification") != null;
571 * Starts the web interface and registers all toadlets.
573 public void start() {
576 /* notification templates. */
577 Template startupNotificationTemplate = parseTemplate("/templates/notify/startupNotification.html");
579 final TemplateNotification startupNotification = new TemplateNotification("startup-notification", startupNotificationTemplate);
580 notificationManager.addNotification(startupNotification);
582 ticker.schedule(new Runnable() {
586 startupNotification.dismiss();
588 }, 2, TimeUnit.MINUTES);
590 Template wotMissingNotificationTemplate = parseTemplate("/templates/notify/wotMissingNotification.html");
591 final TemplateNotification wotMissingNotification = new TemplateNotification("wot-missing-notification", wotMissingNotificationTemplate);
592 ticker.scheduleAtFixedRate(new Runnable() {
595 @SuppressWarnings("synthetic-access")
597 if (getCore().getIdentityManager().isConnected()) {
598 wotMissingNotification.dismiss();
600 notificationManager.addNotification(wotMissingNotification);
604 }, 15, 15, TimeUnit.SECONDS);
608 * Stops the web interface and unregisters all toadlets.
611 unregisterToadlets();
612 ticker.shutdownNow();
620 * Register all toadlets.
622 private void registerToadlets() {
623 Template emptyTemplate = parse(new StringReader(""));
624 Template loginTemplate = parseTemplate("/templates/login.html");
625 Template indexTemplate = parseTemplate("/templates/index.html");
626 Template newTemplate = parseTemplate("/templates/new.html");
627 Template knownSonesTemplate = parseTemplate("/templates/knownSones.html");
628 Template createSoneTemplate = parseTemplate("/templates/createSone.html");
629 Template createPostTemplate = parseTemplate("/templates/createPost.html");
630 Template createReplyTemplate = parseTemplate("/templates/createReply.html");
631 Template bookmarksTemplate = parseTemplate("/templates/bookmarks.html");
632 Template searchTemplate = parseTemplate("/templates/search.html");
633 Template editProfileTemplate = parseTemplate("/templates/editProfile.html");
634 Template editProfileFieldTemplate = parseTemplate("/templates/editProfileField.html");
635 Template deleteProfileFieldTemplate = parseTemplate("/templates/deleteProfileField.html");
636 Template viewSoneTemplate = parseTemplate("/templates/viewSone.html");
637 Template viewPostTemplate = parseTemplate("/templates/viewPost.html");
638 Template deletePostTemplate = parseTemplate("/templates/deletePost.html");
639 Template deleteReplyTemplate = parseTemplate("/templates/deleteReply.html");
640 Template deleteSoneTemplate = parseTemplate("/templates/deleteSone.html");
641 Template imageBrowserTemplate = parseTemplate("/templates/imageBrowser.html");
642 Template createAlbumTemplate = parseTemplate("/templates/createAlbum.html");
643 Template deleteAlbumTemplate = parseTemplate("/templates/deleteAlbum.html");
644 Template deleteImageTemplate = parseTemplate("/templates/deleteImage.html");
645 Template noPermissionTemplate = parseTemplate("/templates/noPermission.html");
646 Template emptyImageTitleTemplate = parseTemplate("/templates/emptyImageTitle.html");
647 Template emptyAlbumTitleTemplate = parseTemplate("/templates/emptyAlbumTitle.html");
648 Template optionsTemplate = parseTemplate("/templates/options.html");
649 Template rescueTemplate = parseTemplate("/templates/rescue.html");
650 Template aboutTemplate = parseTemplate("/templates/about.html");
651 Template invalidTemplate = parseTemplate("/templates/invalid.html");
652 Template postTemplate = parseTemplate("/templates/include/viewPost.html");
653 Template replyTemplate = parseTemplate("/templates/include/viewReply.html");
654 Template openSearchTemplate = parseTemplate("/templates/xml/OpenSearch.xml");
656 PageToadletFactory pageToadletFactory = new PageToadletFactory(sonePlugin.pluginRespirator().getHLSimpleClient(), "/Sone/");
657 pageToadlets.add(pageToadletFactory.createPageToadlet(new RedirectPage<FreenetRequest>("", "index.html")));
658 pageToadlets.add(pageToadletFactory.createPageToadlet(new IndexPage(indexTemplate, this), "Index"));
659 pageToadlets.add(pageToadletFactory.createPageToadlet(new NewPage(newTemplate, this), "New"));
660 pageToadlets.add(pageToadletFactory.createPageToadlet(new CreateSonePage(createSoneTemplate, this), "CreateSone"));
661 pageToadlets.add(pageToadletFactory.createPageToadlet(new KnownSonesPage(knownSonesTemplate, this), "KnownSones"));
662 pageToadlets.add(pageToadletFactory.createPageToadlet(new EditProfilePage(editProfileTemplate, this), "EditProfile"));
663 pageToadlets.add(pageToadletFactory.createPageToadlet(new EditProfileFieldPage(editProfileFieldTemplate, this)));
664 pageToadlets.add(pageToadletFactory.createPageToadlet(new DeleteProfileFieldPage(deleteProfileFieldTemplate, this)));
665 pageToadlets.add(pageToadletFactory.createPageToadlet(new CreatePostPage(createPostTemplate, this)));
666 pageToadlets.add(pageToadletFactory.createPageToadlet(new CreateReplyPage(createReplyTemplate, this)));
667 pageToadlets.add(pageToadletFactory.createPageToadlet(new ViewSonePage(viewSoneTemplate, this)));
668 pageToadlets.add(pageToadletFactory.createPageToadlet(new ViewPostPage(viewPostTemplate, this)));
669 pageToadlets.add(pageToadletFactory.createPageToadlet(new LikePage(emptyTemplate, this)));
670 pageToadlets.add(pageToadletFactory.createPageToadlet(new UnlikePage(emptyTemplate, this)));
671 pageToadlets.add(pageToadletFactory.createPageToadlet(new DeletePostPage(deletePostTemplate, this)));
672 pageToadlets.add(pageToadletFactory.createPageToadlet(new DeleteReplyPage(deleteReplyTemplate, this)));
673 pageToadlets.add(pageToadletFactory.createPageToadlet(new LockSonePage(emptyTemplate, this)));
674 pageToadlets.add(pageToadletFactory.createPageToadlet(new UnlockSonePage(emptyTemplate, this)));
675 pageToadlets.add(pageToadletFactory.createPageToadlet(new FollowSonePage(emptyTemplate, this)));
676 pageToadlets.add(pageToadletFactory.createPageToadlet(new UnfollowSonePage(emptyTemplate, this)));
677 pageToadlets.add(pageToadletFactory.createPageToadlet(new ImageBrowserPage(imageBrowserTemplate, this), "ImageBrowser"));
678 pageToadlets.add(pageToadletFactory.createPageToadlet(new CreateAlbumPage(createAlbumTemplate, this)));
679 pageToadlets.add(pageToadletFactory.createPageToadlet(new EditAlbumPage(emptyTemplate, this)));
680 pageToadlets.add(pageToadletFactory.createPageToadlet(new DeleteAlbumPage(deleteAlbumTemplate, this)));
681 pageToadlets.add(pageToadletFactory.createPageToadlet(new UploadImagePage(invalidTemplate, this)));
682 pageToadlets.add(pageToadletFactory.createPageToadlet(new EditImagePage(emptyTemplate, this)));
683 pageToadlets.add(pageToadletFactory.createPageToadlet(new DeleteImagePage(deleteImageTemplate, this)));
684 pageToadlets.add(pageToadletFactory.createPageToadlet(new TrustPage(emptyTemplate, this)));
685 pageToadlets.add(pageToadletFactory.createPageToadlet(new DistrustPage(emptyTemplate, this)));
686 pageToadlets.add(pageToadletFactory.createPageToadlet(new UntrustPage(emptyTemplate, this)));
687 pageToadlets.add(pageToadletFactory.createPageToadlet(new MarkAsKnownPage(emptyTemplate, this)));
688 pageToadlets.add(pageToadletFactory.createPageToadlet(new BookmarkPage(emptyTemplate, this)));
689 pageToadlets.add(pageToadletFactory.createPageToadlet(new UnbookmarkPage(emptyTemplate, this)));
690 pageToadlets.add(pageToadletFactory.createPageToadlet(new BookmarksPage(bookmarksTemplate, this), "Bookmarks"));
691 pageToadlets.add(pageToadletFactory.createPageToadlet(new SearchPage(searchTemplate, this)));
692 pageToadlets.add(pageToadletFactory.createPageToadlet(new DeleteSonePage(deleteSoneTemplate, this), "DeleteSone"));
693 pageToadlets.add(pageToadletFactory.createPageToadlet(new LoginPage(loginTemplate, this), "Login"));
694 pageToadlets.add(pageToadletFactory.createPageToadlet(new LogoutPage(emptyTemplate, this), "Logout"));
695 pageToadlets.add(pageToadletFactory.createPageToadlet(new OptionsPage(optionsTemplate, this), "Options"));
696 pageToadlets.add(pageToadletFactory.createPageToadlet(new RescuePage(rescueTemplate, this), "Rescue"));
697 pageToadlets.add(pageToadletFactory.createPageToadlet(new AboutPage(aboutTemplate, this, SonePlugin.VERSION, SonePlugin.getYear(), SonePlugin.getHomepage()), "About"));
698 pageToadlets.add(pageToadletFactory.createPageToadlet(new SoneTemplatePage("noPermission.html", noPermissionTemplate, "Page.NoPermission.Title", this)));
699 pageToadlets.add(pageToadletFactory.createPageToadlet(new SoneTemplatePage("emptyImageTitle.html", emptyImageTitleTemplate, "Page.EmptyImageTitle.Title", this)));
700 pageToadlets.add(pageToadletFactory.createPageToadlet(new SoneTemplatePage("emptyAlbumTitle.html", emptyAlbumTitleTemplate, "Page.EmptyAlbumTitle.Title", this)));
701 pageToadlets.add(pageToadletFactory.createPageToadlet(new DismissNotificationPage(emptyTemplate, this)));
702 pageToadlets.add(pageToadletFactory.createPageToadlet(new SoneTemplatePage("invalid.html", invalidTemplate, "Page.Invalid.Title", this)));
703 pageToadlets.add(pageToadletFactory.createPageToadlet(new StaticPage<FreenetRequest>("css/", "/static/css/", "text/css")));
704 pageToadlets.add(pageToadletFactory.createPageToadlet(new StaticPage<FreenetRequest>("javascript/", "/static/javascript/", "text/javascript")));
705 pageToadlets.add(pageToadletFactory.createPageToadlet(new StaticPage<FreenetRequest>("images/", "/static/images/", "image/png")));
706 pageToadlets.add(pageToadletFactory.createPageToadlet(new TemplatePage<FreenetRequest>("OpenSearch.xml", "application/opensearchdescription+xml", templateContextFactory, openSearchTemplate)));
707 pageToadlets.add(pageToadletFactory.createPageToadlet(new GetImagePage(this)));
708 pageToadlets.add(pageToadletFactory.createPageToadlet(new GetTranslationPage(this)));
709 pageToadlets.add(pageToadletFactory.createPageToadlet(new GetStatusAjaxPage(this)));
710 pageToadlets.add(pageToadletFactory.createPageToadlet(new GetNotificationsAjaxPage(this)));
711 pageToadlets.add(pageToadletFactory.createPageToadlet(new DismissNotificationAjaxPage(this)));
712 pageToadlets.add(pageToadletFactory.createPageToadlet(new CreatePostAjaxPage(this)));
713 pageToadlets.add(pageToadletFactory.createPageToadlet(new CreateReplyAjaxPage(this)));
714 pageToadlets.add(pageToadletFactory.createPageToadlet(new GetReplyAjaxPage(this, replyTemplate)));
715 pageToadlets.add(pageToadletFactory.createPageToadlet(new GetPostAjaxPage(this, postTemplate)));
716 pageToadlets.add(pageToadletFactory.createPageToadlet(new GetTimesAjaxPage(this)));
717 pageToadlets.add(pageToadletFactory.createPageToadlet(new MarkAsKnownAjaxPage(this)));
718 pageToadlets.add(pageToadletFactory.createPageToadlet(new DeletePostAjaxPage(this)));
719 pageToadlets.add(pageToadletFactory.createPageToadlet(new DeleteReplyAjaxPage(this)));
720 pageToadlets.add(pageToadletFactory.createPageToadlet(new LockSoneAjaxPage(this)));
721 pageToadlets.add(pageToadletFactory.createPageToadlet(new UnlockSoneAjaxPage(this)));
722 pageToadlets.add(pageToadletFactory.createPageToadlet(new FollowSoneAjaxPage(this)));
723 pageToadlets.add(pageToadletFactory.createPageToadlet(new UnfollowSoneAjaxPage(this)));
724 pageToadlets.add(pageToadletFactory.createPageToadlet(new EditAlbumAjaxPage(this)));
725 pageToadlets.add(pageToadletFactory.createPageToadlet(new EditImageAjaxPage(this, parserFilter)));
726 pageToadlets.add(pageToadletFactory.createPageToadlet(new TrustAjaxPage(this)));
727 pageToadlets.add(pageToadletFactory.createPageToadlet(new DistrustAjaxPage(this)));
728 pageToadlets.add(pageToadletFactory.createPageToadlet(new UntrustAjaxPage(this)));
729 pageToadlets.add(pageToadletFactory.createPageToadlet(new LikeAjaxPage(this)));
730 pageToadlets.add(pageToadletFactory.createPageToadlet(new UnlikeAjaxPage(this)));
731 pageToadlets.add(pageToadletFactory.createPageToadlet(new GetLikesAjaxPage(this)));
732 pageToadlets.add(pageToadletFactory.createPageToadlet(new BookmarkAjaxPage(this)));
733 pageToadlets.add(pageToadletFactory.createPageToadlet(new UnbookmarkAjaxPage(this)));
734 pageToadlets.add(pageToadletFactory.createPageToadlet(new EditProfileFieldAjaxPage(this)));
735 pageToadlets.add(pageToadletFactory.createPageToadlet(new DeleteProfileFieldAjaxPage(this)));
736 pageToadlets.add(pageToadletFactory.createPageToadlet(new MoveProfileFieldAjaxPage(this)));
738 ToadletContainer toadletContainer = sonePlugin.pluginRespirator().getToadletContainer();
739 toadletContainer.getPageMaker().addNavigationCategory("/Sone/index.html", "Navigation.Menu.Sone.Name", "Navigation.Menu.Sone.Tooltip", sonePlugin);
740 for (PageToadlet toadlet : pageToadlets) {
741 String menuName = toadlet.getMenuName();
742 if (menuName != null) {
743 toadletContainer.register(toadlet, "Navigation.Menu.Sone.Name", toadlet.path(), true, "Navigation.Menu.Sone.Item." + menuName + ".Name", "Navigation.Menu.Sone.Item." + menuName + ".Tooltip", false, toadlet);
745 toadletContainer.register(toadlet, null, toadlet.path(), true, false);
751 * Unregisters all toadlets.
753 private void unregisterToadlets() {
754 ToadletContainer toadletContainer = sonePlugin.pluginRespirator().getToadletContainer();
755 for (PageToadlet pageToadlet : pageToadlets) {
756 toadletContainer.unregister(pageToadlet);
758 toadletContainer.getPageMaker().removeNavigationCategory("Navigation.Menu.Sone.Name");
762 * Returns all {@link Sone#isLocal() local Sone}s that are referenced by
763 * {@link SonePart}s in the given text (after parsing it using
764 * {@link SoneTextParser}).
768 * @return All mentioned local Sones
770 private Collection<Sone> getMentionedSones(String text) {
771 /* we need no context to find mentioned Sones. */
772 Set<Sone> mentionedSones = new HashSet<Sone>();
774 for (Part part : soneTextParser.parse(null, new StringReader(text))) {
775 if (part instanceof SonePart) {
776 mentionedSones.add(((SonePart) part).getSone());
779 } catch (IOException ioe1) {
780 logger.log(Level.WARNING, String.format("Could not parse post text: %s", text), ioe1);
782 return Collections2.filter(mentionedSones, Sone.LOCAL_SONE_FILTER);
786 * Returns the Sone insert notification for the given Sone. If no
787 * notification for the given Sone exists, a new notification is created and
791 * The Sone to get the insert notification for
792 * @return The Sone insert notification
794 private TemplateNotification getSoneInsertNotification(Sone sone) {
795 synchronized (soneInsertNotifications) {
796 TemplateNotification templateNotification = soneInsertNotifications.get(sone);
797 if (templateNotification == null) {
798 templateNotification = new TemplateNotification(parseTemplate("/templates/notify/soneInsertNotification.html"));
799 templateNotification.set("insertSone", sone);
800 soneInsertNotifications.put(sone, templateNotification);
802 return templateNotification;
806 private boolean localSoneMentionedInNewPostOrReply(Post post) {
807 if (!post.getSone().isLocal()) {
808 if (!getMentionedSones(post.getText()).isEmpty() && !post.isKnown()) {
812 for (PostReply postReply : getCore().getReplies(post.getId())) {
813 if (postReply.getSone().isLocal()) {
816 if (!getMentionedSones(postReply.getText()).isEmpty() && !postReply.isKnown()) {
828 * Notifies the web interface that a new {@link Sone} was found.
830 * @param newSoneFoundEvent
834 public void newSoneFound(NewSoneFoundEvent newSoneFoundEvent) {
835 newSoneNotification.add(newSoneFoundEvent.sone());
836 if (!hasFirstStartNotification()) {
837 notificationManager.addNotification(newSoneNotification);
842 * Notifies the web interface that a new {@link Post} was found.
844 * @param newPostFoundEvent
848 public void newPostFound(NewPostFoundEvent newPostFoundEvent) {
849 Post post = newPostFoundEvent.post();
850 boolean isLocal = post.getSone().isLocal();
852 localPostNotification.add(post);
854 newPostNotification.add(post);
856 if (!hasFirstStartNotification()) {
857 notificationManager.addNotification(isLocal ? localPostNotification : newPostNotification);
858 if (!getMentionedSones(post.getText()).isEmpty() && !isLocal) {
859 mentionNotification.add(post);
860 notificationManager.addNotification(mentionNotification);
863 getCore().markPostKnown(post);
868 * Notifies the web interface that a new {@link PostReply} was found.
870 * @param newPostReplyFoundEvent
874 public void newReplyFound(NewPostReplyFoundEvent newPostReplyFoundEvent) {
875 PostReply reply = newPostReplyFoundEvent.postReply();
876 boolean isLocal = reply.getSone().isLocal();
878 localReplyNotification.add(reply);
880 newReplyNotification.add(reply);
882 if (!hasFirstStartNotification()) {
883 notificationManager.addNotification(isLocal ? localReplyNotification : newReplyNotification);
884 if (reply.getPost().isPresent() && localSoneMentionedInNewPostOrReply(reply.getPost().get())) {
885 mentionNotification.add(reply.getPost().get());
886 notificationManager.addNotification(mentionNotification);
889 getCore().markReplyKnown(reply);
894 * Notifies the web interface that a {@link Sone} was marked as known.
896 * @param markSoneKnownEvent
900 public void markSoneKnown(MarkSoneKnownEvent markSoneKnownEvent) {
901 newSoneNotification.remove(markSoneKnownEvent.sone());
905 * Notifies the web interface that a {@link Post} was marked as known.
907 * @param markPostKnownEvent
911 public void markPostKnown(MarkPostKnownEvent markPostKnownEvent) {
912 newPostNotification.remove(markPostKnownEvent.post());
913 localPostNotification.remove(markPostKnownEvent.post());
914 if (!localSoneMentionedInNewPostOrReply(markPostKnownEvent.post())) {
915 mentionNotification.remove(markPostKnownEvent.post());
920 * Notifies the web interface that a {@link PostReply} was marked as known.
922 * @param markPostReplyKnownEvent
926 public void markReplyKnown(MarkPostReplyKnownEvent markPostReplyKnownEvent) {
927 PostReply postReply = markPostReplyKnownEvent.postReply();
928 newReplyNotification.remove(postReply);
929 localReplyNotification.remove(postReply);
930 if (postReply.getPost().isPresent() && !localSoneMentionedInNewPostOrReply(postReply.getPost().get())) {
931 mentionNotification.remove(postReply.getPost().get());
936 * Notifies the web interface that a {@link Sone} was removed.
938 * @param soneRemovedEvent
942 public void soneRemoved(SoneRemovedEvent soneRemovedEvent) {
943 newSoneNotification.remove(soneRemovedEvent.sone());
947 * Notifies the web interface that a {@link Post} was removed.
949 * @param postRemovedEvent
953 public void postRemoved(PostRemovedEvent postRemovedEvent) {
954 newPostNotification.remove(postRemovedEvent.post());
955 localPostNotification.remove(postRemovedEvent.post());
956 if (!localSoneMentionedInNewPostOrReply(postRemovedEvent.post())) {
957 mentionNotification.remove(postRemovedEvent.post());
962 * Notifies the web interface that a {@link PostReply} was removed.
964 * @param postReplyRemovedEvent
968 public void replyRemoved(PostReplyRemovedEvent postReplyRemovedEvent) {
969 PostReply reply = postReplyRemovedEvent.postReply();
970 newReplyNotification.remove(reply);
971 localReplyNotification.remove(reply);
972 if (reply.getPost().isPresent() && !localSoneMentionedInNewPostOrReply(reply.getPost().get())) {
973 mentionNotification.remove(reply.getPost().get());
978 * Notifies the web interface that a Sone was locked.
980 * @param soneLockedEvent
984 public void soneLocked(SoneLockedEvent soneLockedEvent) {
985 final Sone sone = soneLockedEvent.sone();
986 ScheduledFuture<?> tickerObject = ticker.schedule(new Runnable() {
989 @SuppressWarnings("synthetic-access")
991 lockedSonesNotification.add(sone);
992 notificationManager.addNotification(lockedSonesNotification);
994 }, 5, TimeUnit.MINUTES);
995 lockedSonesTickerObjects.put(sone, tickerObject);
999 * Notifies the web interface that a Sone was unlocked.
1001 * @param soneUnlockedEvent
1005 public void soneUnlocked(SoneUnlockedEvent soneUnlockedEvent) {
1006 lockedSonesNotification.remove(soneUnlockedEvent.sone());
1007 lockedSonesTickerObjects.remove(soneUnlockedEvent.sone()).cancel(false);
1011 * Notifies the web interface that a {@link Sone} is being inserted.
1013 * @param soneInsertingEvent
1017 public void soneInserting(SoneInsertingEvent soneInsertingEvent) {
1018 TemplateNotification soneInsertNotification = getSoneInsertNotification(soneInsertingEvent.sone());
1019 soneInsertNotification.set("soneStatus", "inserting");
1020 if (soneInsertingEvent.sone().getOptions().isSoneInsertNotificationEnabled()) {
1021 notificationManager.addNotification(soneInsertNotification);
1026 * Notifies the web interface that a {@link Sone} was inserted.
1028 * @param soneInsertedEvent
1032 public void soneInserted(SoneInsertedEvent soneInsertedEvent) {
1033 TemplateNotification soneInsertNotification = getSoneInsertNotification(soneInsertedEvent.sone());
1034 soneInsertNotification.set("soneStatus", "inserted");
1035 soneInsertNotification.set("insertDuration", soneInsertedEvent.insertDuration() / 1000);
1036 if (soneInsertedEvent.sone().getOptions().isSoneInsertNotificationEnabled()) {
1037 notificationManager.addNotification(soneInsertNotification);
1042 * Notifies the web interface that a {@link Sone} insert was aborted.
1044 * @param soneInsertAbortedEvent
1048 public void soneInsertAborted(SoneInsertAbortedEvent soneInsertAbortedEvent) {
1049 TemplateNotification soneInsertNotification = getSoneInsertNotification(soneInsertAbortedEvent.sone());
1050 soneInsertNotification.set("soneStatus", "insert-aborted");
1051 soneInsertNotification.set("insert-error", soneInsertAbortedEvent.cause());
1052 if (soneInsertAbortedEvent.sone().getOptions().isSoneInsertNotificationEnabled()) {
1053 notificationManager.addNotification(soneInsertNotification);
1058 * Notifies the web interface that a new Sone version was found.
1060 * @param updateFoundEvent
1064 public void updateFound(UpdateFoundEvent updateFoundEvent) {
1065 newVersionNotification.getTemplateContext().set("latestVersion", updateFoundEvent.version());
1066 newVersionNotification.getTemplateContext().set("latestEdition", updateFoundEvent.latestEdition());
1067 newVersionNotification.getTemplateContext().set("releaseTime", updateFoundEvent.releaseTime());
1068 notificationManager.addNotification(newVersionNotification);
1072 * Notifies the web interface that an image insert was started
1074 * @param imageInsertStartedEvent
1078 public void imageInsertStarted(ImageInsertStartedEvent imageInsertStartedEvent) {
1079 insertingImagesNotification.add(imageInsertStartedEvent.image());
1080 notificationManager.addNotification(insertingImagesNotification);
1084 * Notifies the web interface that an {@link Image} insert was aborted.
1086 * @param imageInsertAbortedEvent
1090 public void imageInsertAborted(ImageInsertAbortedEvent imageInsertAbortedEvent) {
1091 insertingImagesNotification.remove(imageInsertAbortedEvent.image());
1095 * Notifies the web interface that an {@link Image} insert is finished.
1097 * @param imageInsertFinishedEvent
1101 public void imageInsertFinished(ImageInsertFinishedEvent imageInsertFinishedEvent) {
1102 insertingImagesNotification.remove(imageInsertFinishedEvent.image());
1103 insertedImagesNotification.add(imageInsertFinishedEvent.image());
1104 notificationManager.addNotification(insertedImagesNotification);
1108 * Notifies the web interface that an {@link Image} insert has failed.
1110 * @param imageInsertFailedEvent
1114 public void imageInsertFailed(ImageInsertFailedEvent imageInsertFailedEvent) {
1115 insertingImagesNotification.remove(imageInsertFailedEvent.image());
1116 imageInsertFailedNotification.add(imageInsertFailedEvent.image());
1117 notificationManager.addNotification(imageInsertFailedNotification);