2022-02-25 18:40:03 +00:00
|
|
|
import {topicUrlJsonPoll, fetchLinesIterator, topicUrl, topicUrlAuth} from "./utils";
|
2022-02-23 04:22:30 +00:00
|
|
|
|
|
|
|
class Api {
|
2022-02-24 01:30:12 +00:00
|
|
|
async poll(baseUrl, topic) {
|
2022-02-23 04:22:30 +00:00
|
|
|
const url = topicUrlJsonPoll(baseUrl, topic);
|
|
|
|
const messages = [];
|
|
|
|
console.log(`[Api] Polling ${url}`);
|
|
|
|
for await (let line of fetchLinesIterator(url)) {
|
|
|
|
messages.push(JSON.parse(line));
|
|
|
|
}
|
2022-02-24 19:53:45 +00:00
|
|
|
return messages;
|
2022-02-23 04:22:30 +00:00
|
|
|
}
|
|
|
|
|
2022-02-24 01:30:12 +00:00
|
|
|
async publish(baseUrl, topic, message) {
|
2022-02-23 04:22:30 +00:00
|
|
|
const url = topicUrl(baseUrl, topic);
|
|
|
|
console.log(`[Api] Publishing message to ${url}`);
|
|
|
|
await fetch(url, {
|
|
|
|
method: 'PUT',
|
|
|
|
body: message
|
|
|
|
});
|
|
|
|
}
|
2022-02-25 18:40:03 +00:00
|
|
|
|
|
|
|
async auth(baseUrl, topic, user) {
|
|
|
|
const url = topicUrlAuth(baseUrl, topic);
|
|
|
|
console.log(`[Api] Checking auth for ${url}`);
|
|
|
|
const response = await fetch(url);
|
|
|
|
if (response.status >= 200 && response.status <= 299) {
|
|
|
|
return true;
|
|
|
|
} else if (!user && response.status === 404) {
|
|
|
|
return true; // Special case: Anonymous login to old servers return 404 since /<topic>/auth doesn't exist
|
|
|
|
} else if (response.status === 401 || response.status === 403) { // See server/server.go
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
throw new Error(`Unexpected server response ${response.status}`);
|
|
|
|
}
|
2022-02-23 04:22:30 +00:00
|
|
|
}
|
|
|
|
|
2022-02-24 01:30:12 +00:00
|
|
|
const api = new Api();
|
|
|
|
export default api;
|