46 lines
1 KiB
JavaScript
46 lines
1 KiB
JavaScript
const common = require('./common')
|
|
|
|
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/public?' + extra
|
|
}
|
|
|
|
exports.getAllPageArticlesPagination = function(pageId, 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/pages/' + pageId + '/articles/public?' + extra
|
|
}
|
|
|
|
exports.getArticle = function(id) {
|
|
return common.sendRequest({
|
|
method: 'GET',
|
|
url: '/api/articles/public/' + id + '?includes=media,parent,banner,files',
|
|
})
|
|
}
|