mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
795ed56034
GitOrigin-RevId: 62f875bb121a599fab830a3244959596796cd6e1
106 lines
2.2 KiB
JavaScript
106 lines
2.2 KiB
JavaScript
const request = require('request').defaults({
|
|
baseUrl: 'http://localhost:3010',
|
|
})
|
|
|
|
async function asyncRequest(options) {
|
|
return new Promise((resolve, reject) => {
|
|
request(options, (err, response, body) => {
|
|
if (err) {
|
|
reject(err)
|
|
} else {
|
|
resolve({ response, body })
|
|
}
|
|
})
|
|
})
|
|
}
|
|
|
|
async function sendGlobalMessage(projectId, userId, content) {
|
|
return asyncRequest({
|
|
method: 'post',
|
|
url: `/project/${projectId}/messages`,
|
|
json: {
|
|
user_id: userId,
|
|
content,
|
|
},
|
|
})
|
|
}
|
|
|
|
async function getGlobalMessages(projectId) {
|
|
return asyncRequest({
|
|
method: 'get',
|
|
url: `/project/${projectId}/messages`,
|
|
json: true,
|
|
})
|
|
}
|
|
|
|
async function sendMessage(projectId, threadId, userId, content) {
|
|
return asyncRequest({
|
|
method: 'post',
|
|
url: `/project/${projectId}/thread/${threadId}/messages`,
|
|
json: {
|
|
user_id: userId,
|
|
content,
|
|
},
|
|
})
|
|
}
|
|
|
|
async function getThreads(projectId) {
|
|
return asyncRequest({
|
|
method: 'get',
|
|
url: `/project/${projectId}/threads`,
|
|
json: true,
|
|
})
|
|
}
|
|
|
|
async function resolveThread(projectId, threadId, userId) {
|
|
return asyncRequest({
|
|
method: 'post',
|
|
url: `/project/${projectId}/thread/${threadId}/resolve`,
|
|
json: {
|
|
user_id: userId,
|
|
},
|
|
})
|
|
}
|
|
|
|
async function reopenThread(projectId, threadId) {
|
|
return asyncRequest({
|
|
method: 'post',
|
|
url: `/project/${projectId}/thread/${threadId}/reopen`,
|
|
})
|
|
}
|
|
|
|
async function deleteThread(projectId, threadId) {
|
|
return asyncRequest({
|
|
method: 'delete',
|
|
url: `/project/${projectId}/thread/${threadId}`,
|
|
})
|
|
}
|
|
|
|
async function editMessage(projectId, threadId, messageId, content) {
|
|
return asyncRequest({
|
|
method: 'post',
|
|
url: `/project/${projectId}/thread/${threadId}/messages/${messageId}/edit`,
|
|
json: {
|
|
content,
|
|
},
|
|
})
|
|
}
|
|
|
|
async function deleteMessage(projectId, threadId, messageId) {
|
|
return asyncRequest({
|
|
method: 'delete',
|
|
url: `/project/${projectId}/thread/${threadId}/messages/${messageId}`,
|
|
})
|
|
}
|
|
|
|
module.exports = {
|
|
sendGlobalMessage,
|
|
getGlobalMessages,
|
|
sendMessage,
|
|
getThreads,
|
|
resolveThread,
|
|
reopenThread,
|
|
deleteThread,
|
|
editMessage,
|
|
deleteMessage,
|
|
}
|