Rendering: Add debug output in develop mode
- Burn node info into rendered card - Log job def onto console
This commit is contained in:
@@ -1,7 +1,7 @@
|
|||||||
const { SlashCommandBuilder, ComponentType, ActionRowBuilder, ButtonBuilder, ButtonStyle } = require("discord.js");
|
const { SlashCommandBuilder, ComponentType, ActionRowBuilder, ButtonBuilder, ButtonStyle } = require("discord.js");
|
||||||
const { customAlphabet } = require("nanoid");
|
const { customAlphabet } = require("nanoid");
|
||||||
const { Card, User, Wishlist, Character } = require("../models");
|
const { Card, User, Wishlist, Character } = require("../models");
|
||||||
const { UserUtils, CardUtils, GeneralUtils } = require("../util");
|
const { UserUtils, CardUtils, GeneralUtils, Rendering } = require("../util");
|
||||||
const { PATREON } = require("../config/constants");
|
const { PATREON } = require("../config/constants");
|
||||||
const stores = require("../stores");
|
const stores = require("../stores");
|
||||||
require('dotenv').config();
|
require('dotenv').config();
|
||||||
@@ -28,6 +28,7 @@ module.exports = {
|
|||||||
{ name: 'toggle_maintenance', value: 'toggle_maintenance' },
|
{ name: 'toggle_maintenance', value: 'toggle_maintenance' },
|
||||||
{ name: 'store', value: 'store' },
|
{ name: 'store', value: 'store' },
|
||||||
{ name: 'wishlist', value: 'wishlist' },
|
{ name: 'wishlist', value: 'wishlist' },
|
||||||
|
{ name: 'rendering', value: 'rendering' },
|
||||||
{ name: 'patreon', value: 'patreon' }
|
{ name: 'patreon', value: 'patreon' }
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
@@ -181,6 +182,51 @@ module.exports = {
|
|||||||
|
|
||||||
let patreon = await UserUtils.getPatreonPerks(interaction.client, extUser ? extUser : user);
|
let patreon = await UserUtils.getPatreonPerks(interaction.client, extUser ? extUser : user);
|
||||||
interaction.channel.send(JSON.stringify(patreon));
|
interaction.channel.send(JSON.stringify(patreon));
|
||||||
|
break;
|
||||||
|
case "rendering":
|
||||||
|
const row = new ActionRowBuilder();
|
||||||
|
row.addComponents(
|
||||||
|
new ButtonBuilder()
|
||||||
|
.setCustomId(`testbatch`)
|
||||||
|
.setLabel(`Render test batch`)
|
||||||
|
.setStyle(ButtonStyle.Primary),
|
||||||
|
);
|
||||||
|
interaction.editReply({
|
||||||
|
content: `Jose endpoint: ${process.env.JOSE_ENDPOINT}\n Asset URL: ${process.env.ASSET_URL}`,
|
||||||
|
components: [row],
|
||||||
|
ephemeral: false
|
||||||
|
});
|
||||||
|
const filter = (m) => m.user.id === interaction.user.id;
|
||||||
|
const collector = interaction.channel.createMessageComponentCollector({ filter: filter, componentType: ComponentType.Button, time: 60000 });
|
||||||
|
collector.on('collect', async (i) => {
|
||||||
|
switch (i.customId) {
|
||||||
|
case 'testbatch':
|
||||||
|
i.deferUpdate();
|
||||||
|
interaction.channel.send("Beep boop test batch of 5");
|
||||||
|
let testCard = await Card.build({
|
||||||
|
characterId: 0,
|
||||||
|
userId: 1,
|
||||||
|
identifier: "0xffff",
|
||||||
|
quality: 1,
|
||||||
|
printNr: 0,
|
||||||
|
|
||||||
|
});
|
||||||
|
let testCharacter = Character.build({
|
||||||
|
id: 0,
|
||||||
|
groupId: 0,
|
||||||
|
name: "test",
|
||||||
|
imageIdentifier: "azur-lane/akashi.png",
|
||||||
|
enabled: true
|
||||||
|
})
|
||||||
|
for (let index = 0; index < 5; index++) {
|
||||||
|
testCard.printNr = index;
|
||||||
|
let render = await Rendering.renderCard(testCard, testCharacter).catch(function(error){interaction.channel.send(JSON.stringify(error))});
|
||||||
|
await interaction.channel.send(render);
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
interaction.editReply({
|
interaction.editReply({
|
||||||
|
|||||||
@@ -60,12 +60,14 @@ module.exports = {
|
|||||||
return data["path"];
|
return data["path"];
|
||||||
|
|
||||||
},
|
},
|
||||||
renderCard: async function(card) {
|
renderCard: async function(card, character=null) {
|
||||||
const character = await Character.findOne({
|
if(!character) {
|
||||||
where: {
|
character = await Character.findOne({
|
||||||
id: card.characterId
|
where: {
|
||||||
}
|
id: card.characterId
|
||||||
});
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
console.log(`Rendering card ${card.id} ${character.name} ${character.imageIdentifier}`);
|
console.log(`Rendering card ${card.id} ${character.name} ${character.imageIdentifier}`);
|
||||||
|
|
||||||
@@ -113,9 +115,23 @@ module.exports = {
|
|||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
||||||
console.log("Fetching ", );
|
if(process.env.NODE_ENV === "development") {
|
||||||
|
debugElement = {
|
||||||
|
"type": "text",
|
||||||
|
"text": `Jose-Endpoint: ${process.env.JOSE_ENDPOINT}\nNode: %nodeid% \nPrint: ${card.printNr} uid: ${card.identifier}\n Serve-Mode: %servemode%`,
|
||||||
|
"fontSize": 25,
|
||||||
|
"x": 0,
|
||||||
|
"y": 50,
|
||||||
|
"width": 600,
|
||||||
|
"height": 800,
|
||||||
|
"horizontalAlignment": "center"
|
||||||
|
}
|
||||||
|
job.elements.push(debugElement)
|
||||||
|
}
|
||||||
|
|
||||||
|
console.log("Fetching ", JSON.stringify(job));
|
||||||
let { data } = await axios.post(`${process.env.JOSE_ENDPOINT}/jobs`, job);
|
let { data } = await axios.post(`${process.env.JOSE_ENDPOINT}/jobs`, job);
|
||||||
console.log("Fetched ", data["path"]);
|
console.log("Fetched ", JSON.stringify(data));
|
||||||
return data["path"];
|
return data["path"];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user