Reformat code

pull/35/head
Skyler Grey 3 years ago
parent a0c7024293
commit 6769176cfd
Signed by: Minion3665
GPG Key ID: 1AFD10256B3C714D

@ -194,7 +194,8 @@ const callback = async (interaction: CommandInteraction): Promise<void> => {
}
let userPremiumServers = "";
if ((dbMember?.appliesTo.length ?? 0) > 0) userPremiumServers = "\nIf you want to remove premium from a server, run this command in your DMs with me.";
if ((dbMember?.appliesTo.length ?? 0) > 0)
userPremiumServers = "\nIf you want to remove premium from a server, run this command in your DMs with me.";
interaction.editReply({
embeds: [
@ -223,7 +224,9 @@ const callback = async (interaction: CommandInteraction): Promise<void> => {
new EmojiEmbed()
.setTitle("Premium")
.setDescription(
`You have already activated premium on the maximum amount of servers!` + userPremiumServers + firstDescription
`You have already activated premium on the maximum amount of servers!` +
userPremiumServers +
firstDescription
)
.setEmoji("NUCLEUS.PREMIUMACTIVATE")
.setStatus("Danger")
@ -236,7 +239,9 @@ const callback = async (interaction: CommandInteraction): Promise<void> => {
embeds: [
new EmojiEmbed()
.setTitle("Premium")
.setDescription(`You have activated premium on this server!` + userPremiumServers + firstDescription)
.setDescription(
`You have activated premium on this server!` + userPremiumServers + firstDescription
)
.setEmoji("NUCLEUS.LOGO")
.setStatus("Danger")
],

@ -248,7 +248,8 @@ const editTrack = async (
}need a role in this track\n` +
`${getEmojiByName("CONTROL." + (current.retainPrevious ? "TICK" : "CROSS"))} Members ${
current.retainPrevious ? "" : "don't "
}keep all roles below their current highest\n\n` + (previousMessage ? previousMessage + "\n\n": "") +
}keep all roles below their current highest\n\n` +
(previousMessage ? previousMessage + "\n\n" : "") +
createVerticalTrack(
mapped.map((role) => renderRole(role)),
new Array(current.track.length).fill(false),

@ -17,7 +17,6 @@ client.on("ready", async () => {
}
await client.database.premium.checkAllPremium();
await client.database.guilds.updateAllGuilds();
});
process.on("unhandledRejection", (err) => {

@ -251,7 +251,12 @@ export class Transcript {
.replace(/\//g, "_")
.replace(/\+/g, "-")
.substring(0, 32);
const iv = getIV().toString("base64").substring(0, 16).replace(/=/g, "").replace(/\//g, "_").replace(/\+/g, "-");
const iv = getIV()
.toString("base64")
.substring(0, 16)
.replace(/=/g, "")
.replace(/\//g, "_")
.replace(/\+/g, "-");
console.log(iv);
for (const message of transcript.messages) {
if (message.content) {
@ -321,10 +326,10 @@ export class Transcript {
}
async read(code: string, key: string, iv: string) {
console.log("Transcript read")
console.log("Transcript read");
let doc: TranscriptSchema | null = await this.transcripts.findOne({ code: code });
let findDoc: findDocSchema | null = null;
console.log(doc)
console.log(doc);
if (!doc) findDoc = await this.messageToTranscript.findOne({ transcript: code });
if (findDoc) {
const message = await (
@ -350,7 +355,7 @@ export class Transcript {
if (!data) return null;
doc = JSON.parse(Buffer.from(data).toString()) as TranscriptSchema;
}
console.log(doc)
console.log(doc);
if (!doc) return null;
for (const message of doc.messages) {
if (message.content) {
@ -406,8 +411,8 @@ export class Transcript {
topRole: {
color: message.member ? message.member.roles.highest.color : 0x000000
},
iconURL: (message.member?.user || message.author)?.displayAvatarURL({ forceStatic: true }),
bot: message.author?.bot || false
iconURL: (message.member?.user || message.author).displayAvatarURL({ forceStatic: true }),
bot: message.author.bot || false
},
createdTimestamp: message.createdTimestamp
};

@ -44,12 +44,12 @@ export const Logger = {
return `${user.username} [<@${user.id}>]`;
},
renderTime(t: number) {
if(isNaN(t)) return "Unknown"
if (isNaN(t)) return "Unknown";
t = Math.floor((t /= 1000));
return `<t:${t}:D> at <t:${t}:T>`;
},
renderDelta(t: number) {
if(isNaN(t)) return "Unknown"
if (isNaN(t)) return "Unknown";
t = Math.floor((t /= 1000));
return `<t:${t}:R> (<t:${t}:D> at <t:${t}:T>)`;
},

@ -1,18 +1,20 @@
import * as fs from 'fs';
import * as fs from "fs";
import client from "../client.js";
import _ from "lodash";
const dir = './data';
const dir = "./data";
const files = fs.readdirSync(dir);
for (const file of files) {
// eslint-disable-next-line @typescript-eslint/no-explicit-any
let rsmData: any;
try {
rsmData = JSON.parse(fs.readFileSync(`${dir}/${file}`, 'utf8'));
} catch { continue }
rsmData = JSON.parse(fs.readFileSync(`${dir}/${file}`, "utf8"));
} catch {
continue;
}
if (!rsmData.version || rsmData.version < 3) continue;
const nucleusData = await client.database.guilds.readOld(rsmData.guild_info.id)
const nucleusData = await client.database.guilds.readOld(rsmData.guild_info.id);
const rsmToNucleus = {
id: rsmData.guild_info.id,
version: 1,
@ -20,54 +22,54 @@ for (const file of files) {
filters: {
images: {
NSFW: rsmData.images?.nsfw,
size: rsmData.images?.toosmall,
size: rsmData.images?.toosmall
},
malware: null,
wordFilter: {
enabled: true,
words: {
strict: rsmData.wordfilter?.strict,
loose: rsmData.wordfilter?.soft,
loose: rsmData.wordfilter?.soft
},
allowed: {
users: rsmData.wordfilter?.ignore?.members,
roles: rsmData.wordfilter?.ignore?.roles,
channels: rsmData.wordfilter?.ignore?.channels,
},
channels: rsmData.wordfilter?.ignore?.channels
}
},
invite: {
enabled: rsmData.invite?.enabled,
allowed: {
channels: rsmData.invite?.whitelist?.members,
roles: rsmData.invite?.whitelist?.roles,
users: rsmData.invite?.whitelist?.channels,
},
users: rsmData.invite?.whitelist?.channels
}
}
},
welcome: {
enabled: true,
role: rsmData.welcome?.role,
channel: rsmData.welcome?.message?.channel,
message: rsmData.welcome?.message?.text ?? null,
message: rsmData.welcome?.message?.text ?? null
},
logging: {
logs: {
enabled: true,
channel: rsmData.log_info?.log_channel,
channel: rsmData.log_info?.log_channel
},
staff: {
channel: rsmData.log_info?.staff,
channel: rsmData.log_info?.staff
}
},
verify: {
enabled: true,
role: rsmData.verify_role,
role: rsmData.verify_role
},
tickets: {
enabled: true,
category: rsmData.modmail?.cat,
supportRole: rsmData.modmail?.mention,
maxTickets: rsmData.modmail?.max,
maxTickets: rsmData.modmail?.max
},
tags: rsmData.tags
} as Partial<ReturnType<typeof client.database.guilds.read>>;
@ -75,5 +77,4 @@ for (const file of files) {
const merged = _.merge(nucleusData, rsmToNucleus);
// console.log(merged)
await client.database.guilds.write(merged.id!, merged);
}

Loading…
Cancel
Save