#16 Fix bug in rss remove
- A dependency of remove was missing the log object - Updated discord output for all RSS commands
This commit is contained in:
@@ -54,18 +54,19 @@ export const execute = async (nodeIo, interaction) => {
|
|||||||
var category = interaction.options.getString('category');
|
var category = interaction.options.getString('category');
|
||||||
|
|
||||||
if (!category) category = "ALL";
|
if (!category) category = "ALL";
|
||||||
|
await interaction.reply(`Adding ${title} to the list of RSS sources, please wait...`);
|
||||||
|
|
||||||
await addSource(title, link, category, interaction.guildId, interaction.channelId, (err, result) => {
|
await addSource(title, link, category, interaction.guildId, interaction.channelId, (err, result) => {
|
||||||
log.DEBUG("Result from adding entry", result);
|
log.DEBUG("Result from adding entry", result);
|
||||||
|
|
||||||
if (result) {
|
if (result) {
|
||||||
interaction.reply(`Successfully added ${title} to the list of RSS sources`);
|
interaction.editReply(`Successfully added ${title} to the list of RSS sources`);
|
||||||
} else {
|
} else {
|
||||||
interaction.reply(`${title} already exists in the list of RSS sources`);
|
interaction.editReply(`${title} already exists in the list of RSS sources`);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
log.ERROR(err)
|
log.ERROR(err)
|
||||||
await interaction.reply(err.toString());
|
await interaction.editReply(err.toString());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -42,17 +42,17 @@ export async function autocomplete(nodeIo, interaction) {
|
|||||||
export const execute = async (nodeIo, interaction) => {
|
export const execute = async (nodeIo, interaction) => {
|
||||||
try {
|
try {
|
||||||
var title = interaction.options.getString('title');
|
var title = interaction.options.getString('title');
|
||||||
interaction.reply(`Removing ${title} from the list of RSS sources, please wait...`);
|
await interaction.reply(`Removing ${title} from the list of RSS sources, please wait...`);
|
||||||
|
|
||||||
const results = await deleteFeedByTitle(title);
|
const results = await deleteFeedByTitle(title);
|
||||||
if (!results) {
|
if (!results) {
|
||||||
log.WARN(`Failed to remove source: ${title}`);
|
log.WARN(`Failed to remove source: ${title}`);
|
||||||
interaction.editReply(`Failed to remove source: '${title}'`);
|
await interaction.editReply(`Failed to remove source: '${title}'`);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
interaction.editReply(`${title} was successfully removed from the RSS sources.`)
|
await interaction.editReply(`${title} was successfully removed from the RSS sources.`)
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
log.ERROR(err)
|
log.ERROR(err)
|
||||||
interaction.editReply(err.toString());
|
await interaction.editReply(err.toString());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -38,6 +38,7 @@ export const execute = async (nodeIo, interaction) => {
|
|||||||
//await interaction.reply(`**Online Sockets: '${sockets}'**`);
|
//await interaction.reply(`**Online Sockets: '${sockets}'**`);
|
||||||
await interaction.reply('Triggering RSS update');
|
await interaction.reply('Triggering RSS update');
|
||||||
await updateFeeds(interaction.client);
|
await updateFeeds(interaction.client);
|
||||||
|
await interaction.editReply('RSS Update Completed');
|
||||||
//await interaction.channel.send('**Pong.**');
|
//await interaction.channel.send('**Pong.**');
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
console.error(err);
|
console.error(err);
|
||||||
|
|||||||
@@ -1,3 +1,5 @@
|
|||||||
|
import { DebugBuilder } from "../modules/debugger.mjs";
|
||||||
|
const log = new DebugBuilder("server", "sourceManager");
|
||||||
import { createFeed, getFeedByLink, deleteFeedByLink } from '../modules/mongo-wrappers/mongoFeedsWrappers.mjs';
|
import { createFeed, getFeedByLink, deleteFeedByLink } from '../modules/mongo-wrappers/mongoFeedsWrappers.mjs';
|
||||||
|
|
||||||
class SourceManager {
|
class SourceManager {
|
||||||
|
|||||||
Reference in New Issue
Block a user