53 lines
2.4 KiB
JavaScript
53 lines
2.4 KiB
JavaScript
const { SlashCommandBuilder, EmbedBuilder, ActionRowBuilder, ButtonBuilder, ButtonStyle } = require("discord.js");
|
|
const { Card, User, Character } = require("../models");
|
|
const { UserUtils, Compositing, Rendering } = require("../util");
|
|
const fs = require('fs');
|
|
|
|
const pageSize = 8;
|
|
|
|
//fetch all cards owned by the user and list them
|
|
module.exports = {
|
|
data: new SlashCommandBuilder()
|
|
.setName("profile")
|
|
.setDescription("View your profile")
|
|
.addUserOption((option) =>
|
|
option
|
|
.setName("user")
|
|
.setDescription("View someone else's profile")
|
|
.setRequired(false)
|
|
),
|
|
async execute(interaction) {
|
|
await interaction.deferReply();
|
|
let discordUser = interaction.options.getUser("user") ? interaction.options.getUser("user") : interaction.member.user;
|
|
let user = await UserUtils.getUserByDiscordId(discordUser.id);
|
|
|
|
let profile = await user.getProfile();
|
|
|
|
let customStatus = profile.customStatus;
|
|
|
|
customStatus = customStatus.replace(/(.{0,40}[\s])/g, '<tspan x="443" dy="1.2em">$1</tspan>');
|
|
|
|
let profileTemplate = fs.readFileSync('/app/assets/profile/profile.svg').toString();
|
|
profileTemplate = profileTemplate.replace(/{{USERNAME}}/g, discordUser.username.substr(0,15)+(discordUser.username.length>15?'...':''));
|
|
profileTemplate = profileTemplate.replace(/{{PROFILE_TEXT}}/g, customStatus );
|
|
profileTemplate = profileTemplate.replace(/{{HEADER_COLOR}}/g, '190,31,97');
|
|
profileTemplate = profileTemplate.replace(/{{CC}}/g, await Card.count({where: {userId: user.id}}));
|
|
profileTemplate = profileTemplate.replace(/{{LVL}}/g, await user.getLevel());
|
|
|
|
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);
|
|
} else {
|
|
renderedCards.push('/app/assets/cards/missing_image.png');
|
|
}
|
|
|
|
}
|
|
|
|
let profileImage = await Compositing.renderProfile(profile, profileTemplate, renderedCards);
|
|
await interaction.editReply({ files: [profileImage] });
|
|
}
|
|
} |