2022-02-26 17:45:39 +01:00
|
|
|
import {
|
|
|
|
fetchLinesIterator,
|
|
|
|
maybeWithBasicAuth,
|
|
|
|
topicShortUrl,
|
2022-03-03 22:52:07 +01:00
|
|
|
topicUrl,
|
|
|
|
topicUrlAuth,
|
|
|
|
topicUrlJsonPoll,
|
2022-02-26 17:45:39 +01:00
|
|
|
topicUrlJsonPollWithSince
|
|
|
|
} from "./utils";
|
2022-03-03 22:52:07 +01:00
|
|
|
import userManager from "./UserManager";
|
2022-02-23 05:22:30 +01:00
|
|
|
|
|
|
|
class Api {
|
2022-03-02 03:23:12 +01:00
|
|
|
async poll(baseUrl, topic, since) {
|
2022-03-03 22:52:07 +01:00
|
|
|
const user = await userManager.get(baseUrl);
|
2022-02-26 17:45:39 +01:00
|
|
|
const shortUrl = topicShortUrl(baseUrl, topic);
|
2022-02-28 01:29:17 +01:00
|
|
|
const url = (since)
|
2022-02-26 17:45:39 +01:00
|
|
|
? topicUrlJsonPollWithSince(baseUrl, topic, since)
|
|
|
|
: topicUrlJsonPoll(baseUrl, topic);
|
2022-02-23 05:22:30 +01:00
|
|
|
const messages = [];
|
2022-02-26 05:25:04 +01:00
|
|
|
const headers = maybeWithBasicAuth({}, user);
|
2022-02-23 05:22:30 +01:00
|
|
|
console.log(`[Api] Polling ${url}`);
|
2022-02-26 05:25:04 +01:00
|
|
|
for await (let line of fetchLinesIterator(url, headers)) {
|
2022-02-26 17:45:39 +01:00
|
|
|
console.log(`[Api, ${shortUrl}] Received message ${line}`);
|
2022-02-23 05:22:30 +01:00
|
|
|
messages.push(JSON.parse(line));
|
|
|
|
}
|
2022-02-24 20:53:45 +01:00
|
|
|
return messages;
|
2022-02-23 05:22:30 +01:00
|
|
|
}
|
|
|
|
|
2022-03-02 03:23:12 +01:00
|
|
|
async publish(baseUrl, topic, message) {
|
2022-03-03 22:52:07 +01:00
|
|
|
const user = await userManager.get(baseUrl);
|
2022-02-23 05:22:30 +01:00
|
|
|
const url = topicUrl(baseUrl, topic);
|
|
|
|
console.log(`[Api] Publishing message to ${url}`);
|
|
|
|
await fetch(url, {
|
|
|
|
method: 'PUT',
|
2022-02-26 05:25:04 +01:00
|
|
|
body: message,
|
|
|
|
headers: maybeWithBasicAuth({}, user)
|
2022-02-23 05:22:30 +01:00
|
|
|
});
|
|
|
|
}
|
2022-02-25 19:40:03 +01:00
|
|
|
|
|
|
|
async auth(baseUrl, topic, user) {
|
|
|
|
const url = topicUrlAuth(baseUrl, topic);
|
|
|
|
console.log(`[Api] Checking auth for ${url}`);
|
2022-02-25 22:07:25 +01:00
|
|
|
const response = await fetch(url, {
|
2022-02-26 05:25:04 +01:00
|
|
|
headers: maybeWithBasicAuth({}, user)
|
2022-02-25 22:07:25 +01:00
|
|
|
});
|
2022-02-25 19:40:03 +01:00
|
|
|
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 05:22:30 +01:00
|
|
|
}
|
|
|
|
|
2022-02-24 02:30:12 +01:00
|
|
|
const api = new Api();
|
|
|
|
export default api;
|