38 lines
979 B
JavaScript
38 lines
979 B
JavaScript
|
// @flow
|
||
|
import { COMMENT_SERVER_API } from 'config';
|
||
|
|
||
|
const Comments = {
|
||
|
url: COMMENT_SERVER_API,
|
||
|
enabled: Boolean(COMMENT_SERVER_API),
|
||
|
|
||
|
moderation_block: (params: ModerationBlockParams) => fetchCommentsApi('moderation.Block', params),
|
||
|
comment_list: (params: CommentListParams) => fetchCommentsApi('comment.List', params),
|
||
|
comment_abandon: (params: CommentAbandonParams) => fetchCommentsApi('comment.Abandon', params),
|
||
|
};
|
||
|
|
||
|
function fetchCommentsApi(method: string, params: {}) {
|
||
|
if (!Comments.enabled) {
|
||
|
return Promise.reject('Comments are not currently enabled'); // eslint-disable-line
|
||
|
}
|
||
|
|
||
|
const url = `${Comments.url}?m=${method}`;
|
||
|
const options = {
|
||
|
method: 'POST',
|
||
|
headers: {
|
||
|
'Content-Type': 'application/json',
|
||
|
},
|
||
|
body: JSON.stringify({
|
||
|
jsonrpc: '2.0',
|
||
|
id: 1,
|
||
|
method,
|
||
|
params,
|
||
|
}),
|
||
|
};
|
||
|
|
||
|
return fetch(url, options)
|
||
|
.then(res => res.json())
|
||
|
.then(res => res.result);
|
||
|
}
|
||
|
|
||
|
export default Comments;
|