mirror of
https://github.com/karl0ss/JDRssDownloader.git
synced 2025-04-27 20:03:40 +01:00
33 lines
1.0 KiB
JavaScript
33 lines
1.0 KiB
JavaScript
const fs = require("fs");
|
|
const Parser = require("rss-parser");
|
|
const lodash = require('lodash');
|
|
const log = require('simple-node-logger').createSimpleLogger('jdrssdownloader.log');
|
|
|
|
async function feedUpdater() {
|
|
// Make a new RSS Parser
|
|
const parser = new Parser();
|
|
|
|
// Get all the items in the RSS feed
|
|
const feed = await parser.parseURL(JSON.parse(fs.readFileSync('config.json')).RSSFeed);
|
|
|
|
let items = [];
|
|
|
|
// Clean up the string and replace reserved characters
|
|
global.fileName = `${feed.title.replace(/\s+/g, "-").replace(/[/\\?%*:|"<>]/g, '').toLowerCase()}.json`;
|
|
|
|
if (fs.existsSync(global.fileName)) {
|
|
items = require(`./${global.fileName}`);
|
|
}
|
|
// Compare existing cache and new items and merge differences
|
|
let updatedArray = lodash.unionBy(feed.items, items, 'title');
|
|
|
|
// Save the file
|
|
log.info(updatedArray.length + ' items in file cache')
|
|
fs.writeFileSync(fileName, JSON.stringify(updatedArray));
|
|
|
|
|
|
}
|
|
|
|
module.exports = {
|
|
feedUpdater
|
|
} |