Log errors to a channel and also fix/improve error handling
This commit is contained in:
@ -15,12 +15,12 @@ async function execute(interaction) {
|
||||
|
||||
const fname = submissions[game];
|
||||
if (fname === undefined) {
|
||||
await interaction.reply({content: "Invalid game specified!", ephemeral: true});
|
||||
await interaction.editReply("🚫 Invalid game specified!");
|
||||
return;
|
||||
}
|
||||
|
||||
if (!fs.existsSync(fname)) {
|
||||
await interaction.reply(`No submissions exist yet for ${game}.`);
|
||||
await interaction.editReply(`No submissions exist yet for ${game}.`);
|
||||
return;
|
||||
}
|
||||
|
||||
@ -33,7 +33,7 @@ async function execute(interaction) {
|
||||
if (afterDateStr) {
|
||||
const afterDate = Sugar.Date.create(afterDateStr);
|
||||
if (isNaN(afterDate)) {
|
||||
await interaction.reply({content: `Could not convert '${afterDateStr}' to a valid date.`, ephemeral: true});
|
||||
await interaction.editReply(`🚫 Could not convert '${afterDateStr}' to a valid date.`);
|
||||
return;
|
||||
}
|
||||
afterTimestamp = Math.round(afterDate / 1000);
|
||||
@ -42,14 +42,14 @@ async function execute(interaction) {
|
||||
if (beforeDateStr) {
|
||||
const beforeDate = Sugar.Date.create(beforeDateStr);
|
||||
if (isNaN(beforeDate)) {
|
||||
await interaction.reply({content: `Could not convert '${beforeDateStr}' to a valid date.`, ephemeral: true});
|
||||
await interaction.editReply(`🚫 Could not convert '${beforeDateStr}' to a valid date.`);
|
||||
return;
|
||||
}
|
||||
beforeTimestamp = Math.round(beforeDate / 1000);
|
||||
}
|
||||
|
||||
if (!isNaN(afterTimestamp) && !isNaN(beforeTimestamp) && beforeTimestamp < afterTimestamp) {
|
||||
await interaction.reply({content: `Your date range is invalid: ${getDateRangeString(afterTimestamp, beforeTimestamp)}.`, ephemeral: true});
|
||||
await interaction.editReply(`🚫 Your date range is invalid: ${getDateRangeString(afterTimestamp, beforeTimestamp)}.`);
|
||||
return;
|
||||
}
|
||||
|
||||
@ -82,17 +82,17 @@ async function execute(interaction) {
|
||||
else {
|
||||
msg = "Could not find any submissions.";
|
||||
}
|
||||
await interaction.reply({content: msg, ephemeral: true});
|
||||
await interaction.editReply(msg);
|
||||
return;
|
||||
}
|
||||
|
||||
const file = new AttachmentBuilder(Buffer.from(csvString), { name: fname });
|
||||
const dateRangeStr = getDateRangeString(afterTimestamp, beforeTimestamp);
|
||||
if (dateRangeStr) {
|
||||
await interaction.reply({content: `Using date range ${dateRangeStr}:`, files: [file]});
|
||||
await interaction.editReply({content: `Using date range ${dateRangeStr}:`, files: [file]});
|
||||
}
|
||||
else {
|
||||
await interaction.reply({files: [file]});
|
||||
await interaction.editReply({files: [file]});
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -32,15 +32,14 @@ async function robloxUsernameFromId(id) {
|
||||
async function execute(interaction) {
|
||||
const userId = await robloxUserFromDiscord(interaction.user.id);
|
||||
if (!userId) {
|
||||
const msg = "You don't have a Roblox account linked with your Discord account. Use !link with the rbhop dog bot to link your account.";
|
||||
await interaction.reply({content: msg, ephemeral: true});
|
||||
await interaction.editReply("🚫 You don't have a Roblox account linked with your Discord account. Use !link with the rbhop dog bot to link your account.");
|
||||
return;
|
||||
}
|
||||
const game = interaction.options.getString("game", true);
|
||||
|
||||
const game = interaction.options.getString("game", true);
|
||||
const fname = submissions[game];
|
||||
if (fname === undefined) {
|
||||
await interaction.reply({content: "Invalid game specified!", ephemeral: true});
|
||||
await interaction.editReply("🚫 Invalid game specified!");
|
||||
return;
|
||||
}
|
||||
|
||||
@ -51,28 +50,39 @@ async function execute(interaction) {
|
||||
const id = interaction.options.getInteger("asset_id", true);
|
||||
await noblox.setCookie(cookies[game]);
|
||||
|
||||
// Check that the bot owns this model
|
||||
if (!(await noblox.getOwnership(await noblox.getCurrentUser("UserID"), id, "Asset"))) {
|
||||
const msg = `The ${game} maptest bot's inventory does not contain this asset (id: ${id}). You must use the /take command first.`;
|
||||
await interaction.reply({content: msg, ephemeral: true});
|
||||
|
||||
|
||||
try {
|
||||
// Check that the bot owns this model
|
||||
if (!(await noblox.getOwnership(await noblox.getCurrentUser("UserID"), id, "Asset"))) {
|
||||
const msg = `🚫 The ${game} maptest bot's inventory does not contain this asset (id: ${id}). You must use the /take command first.`;
|
||||
await interaction.editReply(msg);
|
||||
return;
|
||||
}
|
||||
} catch (error) {
|
||||
if (error.message !== "400 The specified Asset does not exist!") {
|
||||
throw error;
|
||||
}
|
||||
await interaction.editReply(`🚫 This asset does not exist (id: ${id}).`);
|
||||
return;
|
||||
}
|
||||
|
||||
const assetInfo = await getAssetInfo(id);
|
||||
if (assetInfo.typeId !== AssetType.Model) {
|
||||
await interaction.editReply(`🚫 This asset (id: ${id}) is not a model. Your map must be a model.`);
|
||||
return;
|
||||
}
|
||||
|
||||
if (assetInfo.creatorId !== userId) {
|
||||
const assetUsernamePromise = robloxUsernameFromId(assetInfo.creatorId);
|
||||
const interactionUsernamePromise = robloxUsernameFromId(userId);
|
||||
const assetUsername = await assetUsernamePromise;
|
||||
const interactionUsername = await interactionUsernamePromise;
|
||||
const msg = `The account linked to your Discord (${interactionUsername}) is not the owner of this model (${assetUsername}), so you cannot submit it.`;
|
||||
await interaction.reply({content: msg, ephemeral: true});
|
||||
return;
|
||||
}
|
||||
// Shouldn't really be possible but who knows...
|
||||
if (assetInfo.typeId !== AssetType.Model) {
|
||||
await interaction.reply({content: `This asset (id: ${id}) is not a model. Your map must be a model.`, ephemeral: true});
|
||||
const msg = `🚫 The account linked to your Discord (${interactionUsername}) is not the owner of this model (${assetUsername}), so you cannot submit it.`;
|
||||
await interaction.editReply(msg);
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
const csvFile = fs.readFileSync(fname);
|
||||
const lines = parse(csvFile, {delimiter: ',', fromLine: 2});
|
||||
@ -80,14 +90,11 @@ async function execute(interaction) {
|
||||
for (let lineStr of lines) {
|
||||
const line = getSubmissionLine(lineStr);
|
||||
if (id === line.modelId) {
|
||||
await interaction.reply({content: `This map (id: ${id}) was already submitted on <t:${line.timestamp}:d>.`, ephemeral: true});
|
||||
await interaction.editReply(`🚫 This map (id: ${id}) was already submitted on <t:${line.timestamp}:d>.`);
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
// Show "Bot is thinking..."
|
||||
await interaction.deferReply();
|
||||
|
||||
// Validate and send the validation result
|
||||
const validation = await validateMapAsset(id, game);
|
||||
const msg = getValidationMessage(validation, game, true);
|
||||
|
@ -10,35 +10,45 @@ async function execute(interaction) {
|
||||
const game = interaction.options.getString("game", true);
|
||||
const cookie = cookies[game];
|
||||
if (cookie === undefined) {
|
||||
await interaction.reply({content: "Invalid game specified!", ephemeral: true});
|
||||
await interaction.editReply("🚫 Invalid game specified!");
|
||||
return;
|
||||
}
|
||||
|
||||
const id = interaction.options.getInteger("asset_id", true);
|
||||
await noblox.setCookie(cookie);
|
||||
// Check that the bot doesn't already own this asset
|
||||
if (await noblox.getOwnership(await noblox.getCurrentUser("UserID"), id, "Asset")) {
|
||||
const msg = `The ${game} maptest bot already has this model (id: ${id})`;
|
||||
await interaction.reply({content: msg, ephemeral: true});
|
||||
|
||||
try {
|
||||
// Check that the bot doesn't already own this asset
|
||||
if (await noblox.getOwnership(await noblox.getCurrentUser("UserID"), id, "Asset")) {
|
||||
const msg = `🚫 The ${game} maptest bot already has this model (id: ${id})`;
|
||||
await interaction.editReply(msg);
|
||||
return;
|
||||
}
|
||||
} catch (error) {
|
||||
if (error.message !== "400 The specified Asset does not exist!") {
|
||||
throw error;
|
||||
}
|
||||
await interaction.editReply(`🚫 This asset does not exist (id: ${id}).`);
|
||||
return;
|
||||
}
|
||||
|
||||
// Validate that this is a model
|
||||
const assetInfo = await getAssetInfo(id);
|
||||
if (assetInfo.status === 404) {
|
||||
await interaction.reply({content: `This asset may not exist or is not a model (id: ${id}). Your map must be a model.`, ephemeral: true});
|
||||
if (assetInfo.status !== 403 && (assetInfo.status < 200 || assetInfo.status > 300)) {
|
||||
await interaction.editReply(`🚫 This asset may not exist or is not a model (id: ${id}). Your map must be a model.`);
|
||||
return;
|
||||
}
|
||||
// 403 (Forbidden) means the asset isn't distributed
|
||||
if (assetInfo.status === 403 || !assetInfo.forSale) {
|
||||
await interaction.reply({content: `This model (id: ${id}) is off sale. Please configure it to be on sale (Configure -> Distribute on Creator Store).`, ephemeral: true});
|
||||
await interaction.editReply(`🚫 This model (id: ${id}) is off sale. Please configure it to be on sale (Configure -> Distribute on Creator Store). It is also possible that this is not a valid model.`);
|
||||
return;
|
||||
}
|
||||
if (assetInfo.typeId !== AssetType.Model) {
|
||||
await interaction.reply({content: `This asset (id: ${id}) is not a model. Your map must be a model.`, ephemeral: true});
|
||||
await interaction.editReply(`🚫 This asset (id: ${id}) is not a model. Your map must be a model.`);
|
||||
return;
|
||||
}
|
||||
if (assetInfo.price !== 0) {
|
||||
await interaction.reply({content: `This model (id: ${id}) is not free. Please change the price to be free.`, ephemeral: true});
|
||||
await interaction.editReply(`🚫 This model (id: ${id}) is not free. Please change the price to be free.`);
|
||||
return;
|
||||
}
|
||||
|
||||
@ -50,9 +60,6 @@ async function execute(interaction) {
|
||||
Id: assetInfo.creatorId
|
||||
}
|
||||
};
|
||||
|
||||
// Show "Bot is thinking..."
|
||||
await interaction.deferReply();
|
||||
|
||||
// Kick off the buy request
|
||||
const buyPromise = noblox.buy({product: productInfo, price: 0});
|
||||
|
Reference in New Issue
Block a user