64 lines
1.3 KiB
JavaScript
64 lines
1.3 KiB
JavaScript
const common = require('./common')
|
|
|
|
exports.createArticle = function(body) {
|
|
return common.sendRequest({
|
|
method: 'POST',
|
|
url: '/api/articles',
|
|
body: body,
|
|
})
|
|
}
|
|
|
|
exports.updateArticle = function(id, body) {
|
|
return common.sendRequest({
|
|
method: 'PUT',
|
|
url: '/api/articles/' + id,
|
|
body: body,
|
|
})
|
|
}
|
|
|
|
exports.getAllArticles = function() {
|
|
return common.sendRequest({
|
|
method: 'GET',
|
|
url: '/api/articles?includes=parent',
|
|
})
|
|
}
|
|
|
|
exports.getAllArticlesPagination = function(options) {
|
|
let extra = ''
|
|
|
|
if (options.sort) {
|
|
extra += '&sort=' + options.sort
|
|
}
|
|
if (options.per_page) {
|
|
extra += '&perPage=' + options.per_page
|
|
}
|
|
if (options.page) {
|
|
extra += '&page=' + options.page
|
|
}
|
|
if (options.includes) {
|
|
extra += '&includes=' + options.includes.join(',')
|
|
}
|
|
|
|
return '/api/articles?' + extra
|
|
}
|
|
|
|
exports.getAllPageArticles = function(pageId, includes) {
|
|
return common.sendRequest({
|
|
method: 'GET',
|
|
url: '/api/pages/' + pageId + '/articles?includes=' + includes.join(','),
|
|
})
|
|
}
|
|
|
|
exports.getArticle = function(id) {
|
|
return common.sendRequest({
|
|
method: 'GET',
|
|
url: '/api/articles/' + id + '?includes=media,parent,banner,files',
|
|
})
|
|
}
|
|
|
|
exports.removeArticle = function(article, id) {
|
|
return common.sendRequest({
|
|
method: 'DELETE',
|
|
url: '/api/articles/' + id,
|
|
})
|
|
}
|