Move post liking from Sone to Post.
[Sone.git] / src / main / java / net / pterodactylus / sone / fcp / LikePostCommand.java
index 37f69ec..d2acb4a 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Sone - LikePostCommand.java - Copyright © 2011 David Roden
+ * Sone - LikePostCommand.java - Copyright © 2011–2013 David Roden
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -42,14 +42,11 @@ public class LikePostCommand extends AbstractSoneCommand {
                super(core, true);
        }
 
-       /**
-        * {@inheritDoc}
-        */
        @Override
        public Response execute(SimpleFieldSet parameters, Bucket data, AccessType accessType) throws FcpException {
                Post post = getPost(parameters, "Post");
-               Sone sone = getSone(parameters, "Sone", true);
-               sone.addLikedPostId(post.getId());
+               Sone sone = getMandatoryLocalSone(parameters, "Sone");
+               post.like(sone);
                return new Response("PostLiked", new SimpleFieldSetBuilder().put("LikeCount", getCore().getLikes(post).size()).get());
        }