syncthing-hooks/api.js

22 lines
463 B
JavaScript
Raw Normal View History

2020-03-17 22:11:02 +01:00
const got = require('got');
const fetchEvents = () =>
got('http://localhost:8384/rest/events', {
headers: {
'X-API-Key': process.env.API_KEY,
},
}).json();
const fetchNewEvents = async seenIds => {
const events = await fetchEvents();
const newEvents = events.filter(event => seenIds && !seenIds.has(event.id));
return {
events: newEvents,
seenIds: new Set(events.map(x => x.id)),
};
};
module.exports = {
fetchNewEvents,
};