fd4365e9f6cd3f6c033705ce3030d2a6dd787585
[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.net.URI;
25 import java.net.URISyntaxException;
26 import java.util.ArrayList;
27 import java.util.List;
28 import java.util.logging.Level;
29 import java.util.logging.Logger;
30
31 import net.pterodactylus.sone.core.Core;
32 import net.pterodactylus.sone.data.Post;
33 import net.pterodactylus.sone.data.Reply;
34 import net.pterodactylus.sone.data.Sone;
35 import net.pterodactylus.sone.freenet.L10nFilter;
36 import net.pterodactylus.sone.main.SonePlugin;
37 import net.pterodactylus.sone.template.GetPagePlugin;
38 import net.pterodactylus.sone.template.PostAccessor;
39 import net.pterodactylus.sone.template.ReplyAccessor;
40 import net.pterodactylus.sone.template.RequestChangeFilter;
41 import net.pterodactylus.sone.template.SoneAccessor;
42 import net.pterodactylus.sone.template.SubstringFilter;
43 import net.pterodactylus.sone.web.ajax.BlacklistSoneAjaxPage;
44 import net.pterodactylus.sone.web.ajax.BlockSoneAjaxPage;
45 import net.pterodactylus.sone.web.ajax.DeletePostAjaxPage;
46 import net.pterodactylus.sone.web.ajax.DeleteReplyAjaxPage;
47 import net.pterodactylus.sone.web.ajax.FollowSoneAjaxPage;
48 import net.pterodactylus.sone.web.ajax.GetLikesAjaxPage;
49 import net.pterodactylus.sone.web.ajax.GetSoneStatusPage;
50 import net.pterodactylus.sone.web.ajax.GetTranslationPage;
51 import net.pterodactylus.sone.web.ajax.LikeAjaxPage;
52 import net.pterodactylus.sone.web.ajax.UnblacklistSoneAjaxPage;
53 import net.pterodactylus.sone.web.ajax.UnblockSoneAjaxPage;
54 import net.pterodactylus.sone.web.ajax.UnfollowSoneAjaxPage;
55 import net.pterodactylus.sone.web.ajax.UnlikeAjaxPage;
56 import net.pterodactylus.sone.web.page.PageToadlet;
57 import net.pterodactylus.sone.web.page.PageToadletFactory;
58 import net.pterodactylus.sone.web.page.StaticPage;
59 import net.pterodactylus.util.logging.Logging;
60 import net.pterodactylus.util.service.AbstractService;
61 import net.pterodactylus.util.template.DateFilter;
62 import net.pterodactylus.util.template.DefaultTemplateFactory;
63 import net.pterodactylus.util.template.MatchFilter;
64 import net.pterodactylus.util.template.PaginationPlugin;
65 import net.pterodactylus.util.template.ReflectionAccessor;
66 import net.pterodactylus.util.template.Template;
67 import net.pterodactylus.util.template.TemplateException;
68 import net.pterodactylus.util.template.TemplateFactory;
69 import net.pterodactylus.util.template.TemplateProvider;
70 import net.pterodactylus.util.template.XmlFilter;
71 import freenet.clients.http.SessionManager;
72 import freenet.clients.http.ToadletContainer;
73 import freenet.l10n.BaseL10n;
74
75 /**
76  * Bundles functionality that a web interface of a Freenet plugin needs, e.g.
77  * references to l10n helpers.
78  *
79  * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
80  */
81 public class WebInterface extends AbstractService {
82
83         /** The logger. */
84         private static final Logger logger = Logging.getLogger(WebInterface.class);
85
86         /** The Sone plugin. */
87         private final SonePlugin sonePlugin;
88
89         /** The registered toadlets. */
90         private final List<PageToadlet> pageToadlets = new ArrayList<PageToadlet>();
91
92         /** The form password. */
93         private final String formPassword;
94
95         /**
96          * Creates a new web interface.
97          *
98          * @param sonePlugin
99          *            The Sone plugin
100          */
101         public WebInterface(SonePlugin sonePlugin) {
102                 super("Sone Web Interface", false);
103                 this.sonePlugin = sonePlugin;
104                 formPassword = sonePlugin.pluginRespirator().getToadletContainer().getFormPassword();
105         }
106
107         //
108         // ACCESSORS
109         //
110
111         /**
112          * Returns the Sone core used by the Sone plugin.
113          *
114          * @return The Sone core
115          */
116         public Core core() {
117                 return sonePlugin.core();
118         }
119
120         /**
121          * Returns the l10n helper of the node.
122          *
123          * @return The node’s l10n helper
124          */
125         public BaseL10n l10n() {
126                 return sonePlugin.l10n().getBase();
127         }
128
129         /**
130          * Returns the session manager of the node.
131          *
132          * @return The node’s session manager
133          */
134         public SessionManager sessionManager() {
135                 try {
136                         return sonePlugin.pluginRespirator().getSessionManager(new URI("/"));
137                 } catch (URISyntaxException use1) {
138                         logger.log(Level.SEVERE, "Could not get Session Manager!", use1);
139                         return null;
140                 }
141         }
142
143         /**
144          * Returns the node’s form password.
145          *
146          * @return The form password
147          */
148         public String formPassword() {
149                 return formPassword;
150         }
151
152         //
153         // SERVICE METHODS
154         //
155
156         /**
157          * {@inheritDoc}
158          */
159         @Override
160         protected void serviceStart() {
161                 registerToadlets();
162         }
163
164         /**
165          * {@inheritDoc}
166          */
167         @Override
168         protected void serviceStop() {
169                 unregisterToadlets();
170         }
171
172         //
173         // PRIVATE METHODS
174         //
175
176         /**
177          * Register all toadlets.
178          */
179         private void registerToadlets() {
180                 DefaultTemplateFactory templateFactory = new DefaultTemplateFactory();
181                 templateFactory.addAccessor(Object.class, new ReflectionAccessor());
182                 templateFactory.addAccessor(Sone.class, new SoneAccessor(core()));
183                 templateFactory.addAccessor(Post.class, new PostAccessor(core()));
184                 templateFactory.addAccessor(Reply.class, new ReplyAccessor(core()));
185                 templateFactory.addFilter("date", new DateFilter());
186                 templateFactory.addFilter("l10n", new L10nFilter(l10n()));
187                 templateFactory.addFilter("substring", new SubstringFilter());
188                 templateFactory.addFilter("xml", new XmlFilter());
189                 templateFactory.addFilter("change", new RequestChangeFilter());
190                 templateFactory.addFilter("match", new MatchFilter());
191                 templateFactory.addPlugin("getpage", new GetPagePlugin());
192                 templateFactory.addPlugin("paginate", new PaginationPlugin());
193                 templateFactory.setTemplateProvider(new ClassPathTemplateProvider(templateFactory));
194                 templateFactory.addTemplateObject("formPassword", formPassword);
195
196                 Template loginTemplate = templateFactory.createTemplate(createReader("/templates/login.html"));
197                 Template indexTemplate = templateFactory.createTemplate(createReader("/templates/index.html"));
198                 Template addSoneTemplate = templateFactory.createTemplate(createReader("/templates/addSone.html"));
199                 Template loadSoneTemplate = templateFactory.createTemplate(createReader("/templates/loadSone.html"));
200                 Template knownSonesTemplate = templateFactory.createTemplate(createReader("/templates/knownSones.html"));
201                 Template createSoneTemplate = templateFactory.createTemplate(createReader("/templates/createSone.html"));
202                 Template importSoneTemplate = templateFactory.createTemplate(createReader("/templates/importSone.html"));
203                 Template createPostTemplate = templateFactory.createTemplate(createReader("/templates/createPost.html"));
204                 Template createReplyTemplate = templateFactory.createTemplate(createReader("/templates/createReply.html"));
205                 Template editProfileTemplate = templateFactory.createTemplate(createReader("/templates/editProfile.html"));
206                 Template backupProfileTemplate = templateFactory.createTemplate(createReader("/templates/backup.xml"));
207                 Template viewSoneTemplate = templateFactory.createTemplate(createReader("/templates/viewSone.html"));
208                 Template blockSoneTemplate = templateFactory.createTemplate(createReader("/templates/blockSone.html"));
209                 Template unblockSoneTemplate = templateFactory.createTemplate(createReader("/templates/unblockSone.html"));
210                 Template viewPostTemplate = templateFactory.createTemplate(createReader("/templates/viewPost.html"));
211                 Template likePostTemplate = templateFactory.createTemplate(createReader("/templates/like.html"));
212                 Template unlikePostTemplate = templateFactory.createTemplate(createReader("/templates/unlike.html"));
213                 Template deletePostTemplate = templateFactory.createTemplate(createReader("/templates/deletePost.html"));
214                 Template deleteReplyTemplate = templateFactory.createTemplate(createReader("/templates/deleteReply.html"));
215                 Template followSoneTemplate = templateFactory.createTemplate(createReader("/templates/followSone.html"));
216                 Template unfollowSoneTemplate = templateFactory.createTemplate(createReader("/templates/unfollowSone.html"));
217                 Template deleteSoneTemplate = templateFactory.createTemplate(createReader("/templates/deleteSone.html"));
218                 Template noPermissionTemplate = templateFactory.createTemplate(createReader("/templates/noPermission.html"));
219                 Template logoutTemplate = templateFactory.createTemplate(createReader("/templates/logout.html"));
220                 Template optionsTemplate = templateFactory.createTemplate(createReader("/templates/options.html"));
221                 Template blacklistTemplate = templateFactory.createTemplate(createReader("/templates/blacklist.html"));
222                 Template blacklistSoneTemplate = templateFactory.createTemplate(createReader("/templates/blacklistSone.html"));
223                 Template unblacklistSoneTemplate = templateFactory.createTemplate(createReader("/templates/unblacklistSone.html"));
224                 Template aboutTemplate = templateFactory.createTemplate(createReader("/templates/about.html"));
225                 Template helpTemplate = templateFactory.createTemplate(createReader("/templates/help.html"));
226
227                 PageToadletFactory pageToadletFactory = new PageToadletFactory(sonePlugin.pluginRespirator().getHLSimpleClient(), "/Sone/");
228                 pageToadlets.add(pageToadletFactory.createPageToadlet(new IndexPage(indexTemplate, this), "Index"));
229                 pageToadlets.add(pageToadletFactory.createPageToadlet(new CreateSonePage(createSoneTemplate, this), "CreateSone"));
230                 pageToadlets.add(pageToadletFactory.createPageToadlet(new ImportSonePage(importSoneTemplate, this), "ImportSone"));
231                 pageToadlets.add(pageToadletFactory.createPageToadlet(new LoadSonePage(loadSoneTemplate, this)));
232                 pageToadlets.add(pageToadletFactory.createPageToadlet(new AddSonePage(addSoneTemplate, this)));
233                 pageToadlets.add(pageToadletFactory.createPageToadlet(new KnownSonesPage(knownSonesTemplate, this), "KnownSones"));
234                 pageToadlets.add(pageToadletFactory.createPageToadlet(new EditProfilePage(editProfileTemplate, this), "EditProfile"));
235                 pageToadlets.add(pageToadletFactory.createPageToadlet(new BackupProfilePage(backupProfileTemplate, this)));
236                 pageToadlets.add(pageToadletFactory.createPageToadlet(new CreatePostPage(createPostTemplate, this)));
237                 pageToadlets.add(pageToadletFactory.createPageToadlet(new CreateReplyPage(createReplyTemplate, this)));
238                 pageToadlets.add(pageToadletFactory.createPageToadlet(new ViewSonePage(viewSoneTemplate, this)));
239                 pageToadlets.add(pageToadletFactory.createPageToadlet(new BlockSonePage(blockSoneTemplate, this)));
240                 pageToadlets.add(pageToadletFactory.createPageToadlet(new UnblockSonePage(unblockSoneTemplate, this)));
241                 pageToadlets.add(pageToadletFactory.createPageToadlet(new ViewPostPage(viewPostTemplate, this)));
242                 pageToadlets.add(pageToadletFactory.createPageToadlet(new LikePage(likePostTemplate, this)));
243                 pageToadlets.add(pageToadletFactory.createPageToadlet(new UnlikePage(unlikePostTemplate, this)));
244                 pageToadlets.add(pageToadletFactory.createPageToadlet(new DeletePostPage(deletePostTemplate, this)));
245                 pageToadlets.add(pageToadletFactory.createPageToadlet(new DeleteReplyPage(deleteReplyTemplate, this)));
246                 pageToadlets.add(pageToadletFactory.createPageToadlet(new FollowSonePage(followSoneTemplate, this)));
247                 pageToadlets.add(pageToadletFactory.createPageToadlet(new UnfollowSonePage(unfollowSoneTemplate, this)));
248                 pageToadlets.add(pageToadletFactory.createPageToadlet(new DeleteSonePage(deleteSoneTemplate, this), "DeleteSone"));
249                 pageToadlets.add(pageToadletFactory.createPageToadlet(new LoginPage(loginTemplate, this), "Login"));
250                 pageToadlets.add(pageToadletFactory.createPageToadlet(new LogoutPage(logoutTemplate, this), "Logout"));
251                 pageToadlets.add(pageToadletFactory.createPageToadlet(new OptionsPage(optionsTemplate, this), "Options"));
252                 pageToadlets.add(pageToadletFactory.createPageToadlet(new BlacklistPage(blacklistTemplate, this), "Blacklist"));
253                 pageToadlets.add(pageToadletFactory.createPageToadlet(new BlacklistSonePage(blacklistSoneTemplate, this)));
254                 pageToadlets.add(pageToadletFactory.createPageToadlet(new UnblacklistSonePage(unblacklistSoneTemplate, this)));
255                 pageToadlets.add(pageToadletFactory.createPageToadlet(new AboutPage(aboutTemplate, this, SonePlugin.VERSION), "About"));
256                 pageToadlets.add(pageToadletFactory.createPageToadlet(new SoneTemplatePage("help.html", helpTemplate, "Page.Help.Title", this), "Help"));
257                 pageToadlets.add(pageToadletFactory.createPageToadlet(new SoneTemplatePage("noPermission.html", noPermissionTemplate, "Page.NoPermission.Title", this)));
258                 pageToadlets.add(pageToadletFactory.createPageToadlet(new StaticPage("css/", "/static/css/", "text/css")));
259                 pageToadlets.add(pageToadletFactory.createPageToadlet(new StaticPage("javascript/", "/static/javascript/", "text/javascript")));
260                 pageToadlets.add(pageToadletFactory.createPageToadlet(new StaticPage("images/", "/static/images/", "image/png")));
261                 pageToadlets.add(pageToadletFactory.createPageToadlet(new GetTranslationPage(this)));
262                 pageToadlets.add(pageToadletFactory.createPageToadlet(new GetSoneStatusPage(this)));
263                 pageToadlets.add(pageToadletFactory.createPageToadlet(new DeletePostAjaxPage(this)));
264                 pageToadlets.add(pageToadletFactory.createPageToadlet(new DeleteReplyAjaxPage(this)));
265                 pageToadlets.add(pageToadletFactory.createPageToadlet(new FollowSoneAjaxPage(this)));
266                 pageToadlets.add(pageToadletFactory.createPageToadlet(new UnfollowSoneAjaxPage(this)));
267                 pageToadlets.add(pageToadletFactory.createPageToadlet(new BlockSoneAjaxPage(this)));
268                 pageToadlets.add(pageToadletFactory.createPageToadlet(new UnblockSoneAjaxPage(this)));
269                 pageToadlets.add(pageToadletFactory.createPageToadlet(new BlacklistSoneAjaxPage(this)));
270                 pageToadlets.add(pageToadletFactory.createPageToadlet(new UnblacklistSoneAjaxPage(this)));
271                 pageToadlets.add(pageToadletFactory.createPageToadlet(new LikeAjaxPage(this)));
272                 pageToadlets.add(pageToadletFactory.createPageToadlet(new UnlikeAjaxPage(this)));
273                 pageToadlets.add(pageToadletFactory.createPageToadlet(new GetLikesAjaxPage(this)));
274
275                 ToadletContainer toadletContainer = sonePlugin.pluginRespirator().getToadletContainer();
276                 toadletContainer.getPageMaker().addNavigationCategory("/Sone/index.html", "Navigation.Menu.Name", "Navigation.Menu.Tooltip", sonePlugin);
277                 for (PageToadlet toadlet : pageToadlets) {
278                         String menuName = toadlet.getMenuName();
279                         if (menuName != null) {
280                                 toadletContainer.register(toadlet, "Navigation.Menu.Name", toadlet.path(), true, "Navigation.Menu.Item." + menuName + ".Name", "Navigation.Menu.Item." + menuName + ".Tooltip", false, toadlet);
281                         } else {
282                                 toadletContainer.register(toadlet, null, toadlet.path(), true, false);
283                         }
284                 }
285         }
286
287         /**
288          * Unregisters all toadlets.
289          */
290         private void unregisterToadlets() {
291                 ToadletContainer toadletContainer = sonePlugin.pluginRespirator().getToadletContainer();
292                 for (PageToadlet pageToadlet : pageToadlets) {
293                         toadletContainer.unregister(pageToadlet);
294                 }
295                 toadletContainer.getPageMaker().removeNavigationCategory("Navigation.Menu.Name");
296         }
297
298         /**
299          * Creates a {@link Reader} from the {@link InputStream} for the resource
300          * with the given name.
301          *
302          * @param resourceName
303          *            The name of the resource
304          * @return A {@link Reader} for the resource
305          */
306         private Reader createReader(String resourceName) {
307                 try {
308                         return new InputStreamReader(getClass().getResourceAsStream(resourceName), "UTF-8");
309                 } catch (UnsupportedEncodingException uee1) {
310                         return null;
311                 }
312         }
313
314         /**
315          * Template provider implementation that uses
316          * {@link WebInterface#createReader(String)} to load templates for
317          * inclusion.
318          *
319          * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
320          */
321         private class ClassPathTemplateProvider implements TemplateProvider {
322
323                 /** The template factory. */
324                 private final TemplateFactory templateFactory;
325
326                 /**
327                  * Creates a new template provider that locates templates on the
328                  * classpath.
329                  *
330                  * @param templateFactory
331                  *            The template factory to create the templates
332                  */
333                 public ClassPathTemplateProvider(TemplateFactory templateFactory) {
334                         this.templateFactory = templateFactory;
335                 }
336
337                 /**
338                  * {@inheritDoc}
339                  */
340                 @Override
341                 @SuppressWarnings("synthetic-access")
342                 public Template getTemplate(String templateName) {
343                         Reader templateReader = createReader("/templates/" + templateName);
344                         if (templateReader == null) {
345                                 return null;
346                         }
347                         Template template = templateFactory.createTemplate(templateReader);
348                         try {
349                                 template.parse();
350                         } catch (TemplateException te1) {
351                                 logger.log(Level.WARNING, "Could not parse template “" + templateName + "” for inclusion!", te1);
352                         }
353                         return template;
354                 }
355
356         }
357 }