summaryrefslogtreecommitdiff
path: root/app/Api/CommentApi.php
diff options
context:
space:
mode:
authorFrederic Guillot <fred@kanboard.net>2016-05-16 21:07:29 -0400
committerFrederic Guillot <fred@kanboard.net>2016-05-16 21:07:29 -0400
commitb1e2ca00ce7375ffcbe5e927135c8892036e6bd6 (patch)
tree07ce453261f6493de7c901cfd8b4f0d9af85556d /app/Api/CommentApi.php
parent4514bc1d4b4abff23902e46da76e70f13a3647eb (diff)
Rename Api classes
Diffstat (limited to 'app/Api/CommentApi.php')
-rw-r--r--app/Api/CommentApi.php54
1 files changed, 54 insertions, 0 deletions
diff --git a/app/Api/CommentApi.php b/app/Api/CommentApi.php
new file mode 100644
index 00000000..f16b0f7f
--- /dev/null
+++ b/app/Api/CommentApi.php
@@ -0,0 +1,54 @@
+<?php
+
+namespace Kanboard\Api;
+
+use Kanboard\Core\Base;
+
+/**
+ * Comment API controller
+ *
+ * @package Kanboard\Api
+ * @author Frederic Guillot
+ */
+class CommentApi extends Base
+{
+ public function getComment($comment_id)
+ {
+ return $this->comment->getById($comment_id);
+ }
+
+ public function getAllComments($task_id)
+ {
+ return $this->comment->getAll($task_id);
+ }
+
+ public function removeComment($comment_id)
+ {
+ return $this->comment->remove($comment_id);
+ }
+
+ public function createComment($task_id, $user_id, $content, $reference = '')
+ {
+ $values = array(
+ 'task_id' => $task_id,
+ 'user_id' => $user_id,
+ 'comment' => $content,
+ 'reference' => $reference,
+ );
+
+ list($valid, ) = $this->commentValidator->validateCreation($values);
+
+ return $valid ? $this->comment->create($values) : false;
+ }
+
+ public function updateComment($id, $content)
+ {
+ $values = array(
+ 'id' => $id,
+ 'comment' => $content,
+ );
+
+ list($valid, ) = $this->commentValidator->validateModification($values);
+ return $valid && $this->comment->update($values);
+ }
+}