Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 | 15x 15x 15x 15x 15x 15x 15x 15x 15x 15x 15x 15x 15x 15x | module.exports = function(crowi, app) {
'use strict'
var debug = require('debug')('crowi:routes:bookmark')
var Bookmark = crowi.model('Bookmark')
var Page = crowi.model('Page')
var Bookmark = crowi.model('Bookmark')
var ApiResponse = require('../util/apiResponse')
var ApiPaginate = require('../util/apiPaginate')
var actions = {}
actions.api = {}
/**
* @api {get} /bookmarks.get Get bookmark of the page with the user
* @apiName GetBookmarks
* @apiGroup Bookmark
*
* @apiParam {String} page_id Page Id.
*/
actions.api.get = function(req, res) {
var pageId = req.query.page_id
Bookmark.findByPageIdAndUserId(pageId, req.user)
.then(function(data) {
debug('bookmark found', pageId, data)
var result = {}
result.bookmark = data
return res.json(ApiResponse.success(result))
})
.catch(function(err) {
return res.json(ApiResponse.error(err))
})
}
/**
*
*/
actions.api.list = function(req, res) {
var paginateOptions = ApiPaginate.parseOptions(req.query)
var options = Object.assign(paginateOptions, { populatePage: true })
Bookmark.findByUserId(req.user._id, options)
.then(function(result) {
return res.json(ApiResponse.success(result))
})
.catch(function(err) {
return res.json(ApiResponse.error(err))
})
}
/**
* @api {post} /bookmarks.add Add bookmark of the page
* @apiName AddBookmark
* @apiGroup Bookmark
*
* @apiParam {String} page_id Page Id.
*/
actions.api.add = function(req, res) {
var pageId = req.body.page_id
Page.findPageByIdAndGrantedUser(pageId, req.user)
.then(function(pageData) {
if (pageData) {
return Bookmark.add(pageData, req.user)
} else {
return res.json(ApiResponse.success({ bookmark: null }))
}
})
.then(function(data) {
var result = {}
data.depopulate('page')
data.depopulate('user')
result.bookmark = data
return res.json(ApiResponse.success(result))
})
.catch(function(err) {
return res.json(ApiResponse.error(err))
})
}
/**
* @api {post} /bookmarks.remove Remove bookmark of the page
* @apiName RemoveBookmark
* @apiGroup Bookmark
*
* @apiParam {String} page_id Page Id.
*/
actions.api.remove = function(req, res) {
var pageId = req.body.page_id
Bookmark.removeBookmark(pageId, req.user)
.then(function(data) {
debug('Bookmark removed.', data) // if the bookmark is not exists, this 'data' is null
return res.json(ApiResponse.success())
})
.catch(function(err) {
return res.json(ApiResponse.error(err))
})
}
return actions
}
|