| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- module.exports = function(crowi, app) {
- 'use strict';
- var debug = require('debug')('crowi:routs:comment')
- , Comment = crowi.model('Comment')
- , User = crowi.model('User')
- , Page = crowi.model('Page')
- , ApiResponse = require('../util/apiResponse')
- , actions = {}
- , api = {};
- actions.api = api;
- /**
- * @api {get} /comments.get Get comments of the page of the revision
- * @apiName GetComments
- * @apiGroup Comment
- *
- * @apiParam {String} page_id Page Id.
- * @apiParam {String} revision_id Revision Id.
- */
- api.get = function(req, res){
- var pageId = req.query.page_id;
- var revisionId = req.query.revision_id;
- if (revisionId) {
- return Comment.getCommentsByRevisionId(revisionId)
- .then(function(comments) {
- res.json(ApiResponse.success({comments}));
- }).catch(function(err) {
- res.json(ApiResponse.error(err));
- });
- }
- return Comment.getCommentsByPageId(pageId)
- .then(function(comments) {
- res.json(ApiResponse.success({comments}));
- }).catch(function(err) {
- res.json(ApiResponse.error(err));
- });
- };
- /**
- * @api {post} /comments.add Post comment for the page
- * @apiName PostComment
- * @apiGroup Comment
- *
- * @apiParam {String} page_id Page Id.
- * @apiParam {String} revision_id Revision Id.
- * @apiParam {String} comment Comment body
- * @apiParam {Number} comment_position=-1 Line number of the comment
- */
- api.add = function(req, res){
- var form = req.form.commentForm;
- if (!req.form.isValid) {
- // return res.json(ApiResponse.error('Invalid comment.'));
- return res.json(ApiResponse.error('コメントを入力してください。'));
- }
- var pageId = form.page_id;
- var revisionId = form.revision_id;
- var comment = form.comment;
- var position = form.comment_position || -1;
- return Comment.create(pageId, req.user._id, revisionId, comment, position)
- .then(function(createdComment) {
- createdComment.creator = req.user;
- return res.json(ApiResponse.success({comment: createdComment}));
- }).catch(function(err) {
- return res.json(ApiResponse.error(err));
- });
- };
- /**
- * @api {post} /comments.remove Remove specified comment
- * @apiName RemoveComment
- * @apiGroup Comment
- *
- * @apiParam {String} comment_id Comment Id.
- */
- api.remove = function(req, res){
- var commentId = req.body.comment_id;
- if (!commentId) {
- return res.json(ApiResponse.error(`'comment_id' is undefined`));
- }
- return Comment.remove({_id: commentId})
- .then(function() {
- return res.json(ApiResponse.success({}));
- }).catch(function(err) {
- return res.json(ApiResponse.error(err));
- });
- };
- return actions;
- };
|