X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Fnet%2Fpterodactylus%2Fsone%2Fweb%2FEditAlbumPage.java;h=8f595a7dfac882e58ef83e1a8a94f4059ebf424a;hb=0ebf4a7e60e64c6f1ebfdae0ffe169988a687468;hp=eaf8bf6efc354af74a74eb6717f18796df1aaaba;hpb=a13f394a98a6e1af6061af6441818fcd333341f5;p=Sone.git diff --git a/src/main/java/net/pterodactylus/sone/web/EditAlbumPage.java b/src/main/java/net/pterodactylus/sone/web/EditAlbumPage.java index eaf8bf6..8f595a7 100644 --- a/src/main/java/net/pterodactylus/sone/web/EditAlbumPage.java +++ b/src/main/java/net/pterodactylus/sone/web/EditAlbumPage.java @@ -18,22 +18,26 @@ package net.pterodactylus.sone.web; import net.pterodactylus.sone.data.Album; -import net.pterodactylus.sone.web.page.Page.Request.Method; +import net.pterodactylus.sone.text.TextFilter; +import net.pterodactylus.sone.web.page.FreenetRequest; import net.pterodactylus.util.template.Template; import net.pterodactylus.util.template.TemplateContext; +import net.pterodactylus.util.web.Method; /** - * TODO + * Page that lets the user edit the name and description of an album. * * @author David ‘Bombe’ Roden */ public class EditAlbumPage extends SoneTemplatePage { /** - * TODO + * Creates a new “edit album” page. * * @param template + * The template to render * @param webInterface + * The Sone web interface */ public EditAlbumPage(Template template, WebInterface webInterface) { super("editAlbum.html", template, "Page.EditAlbum.Title", webInterface, true); @@ -43,7 +47,7 @@ public class EditAlbumPage extends SoneTemplatePage { * {@inheritDoc} */ @Override - protected void processTemplate(Request request, TemplateContext templateContext) throws RedirectException { + protected void processTemplate(FreenetRequest request, TemplateContext templateContext) throws RedirectException { super.processTemplate(request, templateContext); if (request.getMethod() == Method.POST) { String albumId = request.getHttpRequest().getPartAsStringFailsafe("album", 36); @@ -54,14 +58,19 @@ public class EditAlbumPage extends SoneTemplatePage { if (!webInterface.getCore().isLocalSone(album.getSone())) { throw new RedirectException("noPermission.html"); } + String albumImageId = request.getHttpRequest().getPartAsStringFailsafe("album-image", 36); + if (webInterface.getCore().getImage(albumImageId, false) == null) { + albumImageId = null; + } + album.setAlbumImage(albumImageId); String title = request.getHttpRequest().getPartAsStringFailsafe("title", 100).trim(); if (title.length() == 0) { templateContext.set("titleMissing", true); return; } String description = request.getHttpRequest().getPartAsStringFailsafe("description", 1000).trim(); - album.setTitle(title).setDescription(description); - webInterface.getCore().saveSone(album.getSone()); + album.setTitle(title).setDescription(TextFilter.filter(request.getHttpRequest().getHeader("host"), description)); + webInterface.getCore().touchConfiguration(); throw new RedirectException("imageBrowser.html?album=" + album.getId()); } }