listener-rss/src/listener-rss.ts

122 lines
3.2 KiB
TypeScript
Raw Normal View History

2021-03-06 16:17:34 +01:00
import Parser from "rss-parser";
import {
ListenerRSSInfos as ListenerInfo,
ListenerRSSInfos,
} from "./Models/ListenerRSSInfos";
2021-02-28 16:37:27 +01:00
import EventEmitter from "events";
2021-02-14 15:00:33 +01:00
const DEFAULT_TIMELOOP: number = 5 * 60; // default timeloop is 5 min
2021-02-28 16:37:27 +01:00
/**
* Emit 'update' when he's making a fetch during the start fun
2021-03-12 13:53:08 +01:00
* Emit 'error' when the fetch has an issue
* Emit 'newEntries' when the fetch has new entris
2021-02-28 16:37:27 +01:00
*/
export class ListenerRss extends EventEmitter {
2021-02-14 15:00:33 +01:00
address: string = "";
timeloop: number = DEFAULT_TIMELOOP; // time in seconds
customfields?: { [key: string]: string[] | string };
// private fields
2021-03-06 16:17:34 +01:00
parser: Parser;
loopRunning: boolean = false;
2021-03-08 09:26:38 +01:00
lastEntriesLinks: string[] = [];
/**
* @brief constructor
2021-03-12 13:53:08 +01:00
* @param config ListenerRSSInfos interface who contains the ListenerInfos
*/
constructor(config: ListenerInfo) {
2021-02-28 16:37:27 +01:00
super();
2021-03-06 16:17:34 +01:00
this.address = config.address;
this.timeloop =
config.timeloop === undefined ? DEFAULT_TIMELOOP : config.timeloop;
this.customfields = config.customfields;
this.lastEntriesLinks =
config.lastEntriesLinks === undefined ? [] : config.lastEntriesLinks;
2021-03-06 16:17:34 +01:00
this.parser = this.generateParser();
}
/**
2021-03-12 13:53:08 +01:00
* @brief Private function. Is used to initilize the parser object with the customfields var
*/
2021-03-06 16:17:34 +01:00
generateParser() {
const parserConfig = this.customfields && {
customFields: {
feed: [],
item: Object.entries(this.customfields).map(([, value]) => {
return Array.isArray(value) ? value[0] : value;
}),
},
};
return new Parser(parserConfig);
}
/**
2021-03-12 13:53:08 +01:00
* @brief use the parseURL function from rss-parser with the objects data
* @return return a promise with the received data
*/
fetchRSS(): Promise<Parser.Output<any>> {
2021-03-06 17:32:59 +01:00
return this.parser.parseURL(this.address);
}
/**
* @brief call the callback function each looptime
*/
2021-02-28 16:37:27 +01:00
start(): void {
this.loopRunning = true;
const fun: () => void = async () => {
await Promise.resolve(
this.fetchRSS()
.then((obj: { [key: string]: any }) => {
this.emit("update", obj);
const updatedEntriesLinks = obj.items.map(
(item: { link: string }) => item.link
);
2021-03-08 09:26:38 +01:00
const newEntries = obj.items.filter(
(item: { link: string }) =>
!this.lastEntriesLinks.includes(item.link)
);
2021-03-08 09:26:38 +01:00
if (newEntries.length !== 0) {
this.emit("newEntries", newEntries);
}
this.lastEntriesLinks = updatedEntriesLinks;
})
.catch((err) => this.emit("error", err))
);
};
(async () => {
while (this.loopRunning) {
await fun();
await new Promise((res) => setTimeout(res, this.timeloop * 1000));
}
})();
}
/**
* @brief stop the async function
*/
stop(): void {
this.loopRunning = false;
}
/**
* @brief parse the datas inti a ListenerRSSInfos object
* @return return a ListenerRSSInfos object
*/
getProperty(): ListenerRSSInfos {
return {
address: this.address,
customfields: this.customfields,
lastEntriesLinks: this.lastEntriesLinks,
timeloop: this.timeloop,
};
}
}