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 | 16x 16x 16x 16x 16x 16x 16x 16x 16x 16x | import Crowi from 'server/crowi'
import Debug from 'debug'
import ApiResponse from '../util/apiResponse'
import ApiPaginate from '../util/apiPaginate'
export default (crowi: Crowi) => {
const debug = Debug('crowi:routes:bookmark')
const Bookmark = crowi.model('Bookmark')
const Page = crowi.model('Page')
const actions = {} as any
actions.api = {} as any
/**
* @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(bookmark) {
debug('bookmark found', pageId, bookmark)
const result = { bookmark }
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(bookmark) {
bookmark.depopulate('page')
bookmark.depopulate('user')
const result = { bookmark }
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
}
|