Profile: Composite profile using imagemagick

by spawning an external process. Very slow but it works.
This commit is contained in:
2022-09-11 23:50:43 +02:00
parent ef19697346
commit 2b682fc074
4 changed files with 73 additions and 11 deletions

View File

@@ -1,6 +1,7 @@
const { SlashCommandBuilder, EmbedBuilder, ActionRowBuilder, ButtonBuilder, ButtonStyle } = require("discord.js");
const { Card, User, Character } = require("../models");
const UserUtils = require("../util/users");
const { UserUtils, Compositing, Rendering } = require("../util");
const fs = require('fs');
const pageSize = 8;
@@ -10,9 +11,26 @@ module.exports = {
.setName("profile")
.setDescription("View your profile"),
async execute(interaction) {
await interaction.deferReply();
let user = await UserUtils.getUserByDiscordId(interaction.member.id);
let profile = await user.getProfile();
await interaction.reply(`json: ${JSON.stringify(profile)}`);
let profileTemplate = fs.readFileSync('/app/assets/profile/profile.svg').toString();
profileTemplate = profileTemplate.replace(/{{USERNAME}}/g, interaction.member.user.username);
profileTemplate = profileTemplate.replace(/{{HEADER_COLOR}}/g, '190,31,97');
let slots = ['slotOne', 'slotTwo', 'slotThree', 'slotFour'];
let renderedCards = [];
for (slot of slots) {
let card = await Card.findOne({ where: { id: profile[slot] }});
if (card) {
let cardImage = await Rendering.renderCard(card);
renderedCards.push(cardImage);
}
}
let profileImage = await Compositing.renderProfile(profile, profileTemplate, renderedCards);
await interaction.editReply({ files: [profileImage] });
}
}