ntfy/web/src/app/Api.js

56 lines
1.8 KiB
JavaScript
Raw Normal View History

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