overleaf/services/chat/test/acceptance/js/helpers/ChatClient.js

121 lines
2.5 KiB
JavaScript
Raw Normal View History

import Request from 'request'
const request = Request.defaults({
2021-07-13 07:04:48 -04:00
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 })
}
})
})
}
export async function sendGlobalMessage(projectId, userId, content) {
return asyncRequest({
method: 'post',
url: `/project/${projectId}/messages`,
json: {
user_id: userId,
content,
},
})
}
export async function getGlobalMessages(projectId) {
return asyncRequest({
method: 'get',
url: `/project/${projectId}/messages`,
json: true,
})
}
export async function sendMessage(projectId, threadId, userId, content) {
return asyncRequest({
method: 'post',
url: `/project/${projectId}/thread/${threadId}/messages`,
json: {
user_id: userId,
content,
},
})
}
export async function getThreads(projectId) {
return asyncRequest({
method: 'get',
url: `/project/${projectId}/threads`,
json: true,
})
}
export async function resolveThread(projectId, threadId, userId) {
return asyncRequest({
method: 'post',
url: `/project/${projectId}/thread/${threadId}/resolve`,
json: {
user_id: userId,
},
})
}
export async function reopenThread(projectId, threadId) {
return asyncRequest({
method: 'post',
url: `/project/${projectId}/thread/${threadId}/reopen`,
})
}
export async function deleteThread(projectId, threadId) {
return asyncRequest({
method: 'delete',
url: `/project/${projectId}/thread/${threadId}`,
})
}
export async function editMessage(projectId, threadId, messageId, content) {
return asyncRequest({
method: 'post',
url: `/project/${projectId}/thread/${threadId}/messages/${messageId}/edit`,
json: {
content,
},
})
}
export async function editMessageWithUser(
projectId,
threadId,
messageId,
userId,
content
) {
return asyncRequest({
method: 'post',
url: `/project/${projectId}/thread/${threadId}/messages/${messageId}/edit`,
json: {
content,
userId,
},
})
}
export async function deleteMessage(projectId, threadId, messageId) {
return asyncRequest({
method: 'delete',
url: `/project/${projectId}/thread/${threadId}/messages/${messageId}`,
})
}
export async function destroyProject(projectId) {
return asyncRequest({
method: 'delete',
url: `/project/${projectId}`,
})
}