Allow Sone, Post, and Reply creation only through the Core and its caches.
[Sone.git] / src / main / java / net / pterodactylus / sone / web / CreatePostPage.java
index b6b291e..58fd74e 100644 (file)
@@ -18,6 +18,7 @@
 package net.pterodactylus.sone.web;
 
 import net.pterodactylus.sone.data.Post;
+import net.pterodactylus.sone.data.Sone;
 import net.pterodactylus.util.template.Template;
 
 /**
@@ -51,8 +52,9 @@ public class CreatePostPage extends SoneTemplatePage {
                super.processTemplate(request, template);
                String text = request.getHttpRequest().getPartAsStringFailsafe("text", 65536).trim();
                if (text.length() != 0) {
-                       Post post = new Post(System.currentTimeMillis(), text);
-                       getCurrentSone(request.getToadletContext()).addPost(post);
+                       Sone currentSone = getCurrentSone(request.getToadletContext());
+                       Post post = webInterface.core().createPost(currentSone, System.currentTimeMillis(), text);
+                       currentSone.addPost(post);
                        throw new RedirectException("index.html");
                }
                template.set("errorTextEmpty", true);