From 87b9974dbdbabcb7939a224e6b1a6f20de231af8 Mon Sep 17 00:00:00 2001 From: Isaac Date: Sat, 11 Jan 2025 23:49:26 +0000 Subject: [PATCH] fix(scripts): don't encrypt/decrypt missing values --- scripts/export.mjs | 19 ++++++++++++------- scripts/import.mjs | 18 +++++++++++------- 2 files changed, 23 insertions(+), 14 deletions(-) diff --git a/scripts/export.mjs b/scripts/export.mjs index f3bfaf9..be126b2 100644 --- a/scripts/export.mjs +++ b/scripts/export.mjs @@ -21,6 +21,11 @@ const file_path = join(process.cwd(), './user/dumps', `${hash}.dump`); const file_cryptr = new Cryptr(options.guild); const db_cryptr = new Cryptr(process.env.ENCRYPTION_KEY); +function decryptIfExists(encrypted) { + if (encrypted) return db_cryptr.decrypt(encrypted); + return null; +} + fse.ensureDirSync(join(process.cwd(), './user/dumps')); let spinner = ora('Connecting').start(); @@ -73,30 +78,30 @@ dump.tickets = await prisma.ticket.findMany({ where: { guildId: options.guild }, }); dump.tickets = dump.tickets.map(ticket => { - if (ticket.topic) ticket.topic = db_cryptr.decrypt(ticket.topic); + if (ticket.topic) ticket.topic = decryptIfExists(ticket.topic); ticket.archivedChannels = ticket.archivedChannels.map(channel => { - channel.name = db_cryptr.decrypt(channel.name); + channel.name = decryptIfExists(channel.name); return channel; }); ticket.archivedMessages = ticket.archivedMessages.map(message => { - message.content = db_cryptr.decrypt(message.content); + message.content = decryptIfExists(message.content); return message; }); ticket.archivedUsers = ticket.archivedUsers.map(user => { - user.displayName = db_cryptr.decrypt(user.displayName); - user.username = db_cryptr.decrypt(user.username); + user.displayName = decryptIfExists(user.displayName); + user.username = decryptIfExists(user.username); return user; }); if (ticket.feedback?.comment) { - ticket.feedback.comment = db_cryptr.decrypt(ticket.feedback.comment); + ticket.feedback.comment = decryptIfExists(ticket.feedback.comment); } ticket.questionAnswers = ticket.questionAnswers.map(answer => { - if (answer.value) answer.value = db_cryptr.decrypt(answer.value); + if (answer.value) answer.value = decryptIfExists(answer.value); return answer; }); diff --git a/scripts/import.mjs b/scripts/import.mjs index e9abf10..1d9d58c 100644 --- a/scripts/import.mjs +++ b/scripts/import.mjs @@ -21,6 +21,10 @@ const hash = createHash('sha256').update(options.guild).digest('hex'); const file_cryptr = new Cryptr(options.guild); const db_cryptr = new Cryptr(process.env.ENCRYPTION_KEY); +function encryptIfExists(plain_text) { + if (plain_text) return db_cryptr.encrypt(plain_text); + return null; +} let spinner = ora('Connecting').start(); @@ -98,12 +102,12 @@ for (const i in dump.tickets) { const ticket = dump.tickets[i]; ticket.category = { connect: { id: category_map[ticket.categoryId] } }; - if (ticket.topic) ticket.topic = db_cryptr.encrypt(ticket.topic); + if (ticket.topic) ticket.topic = encryptIfExists(ticket.topic); ticket.archivedChannels = { create: ticket.archivedChannels.map(channel => { delete channel.ticketId; - channel.name = db_cryptr.encrypt(channel.name); + channel.name = encryptIfExists(channel.name); return channel; }), }; @@ -111,8 +115,8 @@ for (const i in dump.tickets) { ticket.archivedUsers = { create: ticket.archivedUsers.map(user => { delete user.ticketId; - user.displayName = db_cryptr.encrypt(user.displayName); - user.username = db_cryptr.encrypt(user.username); + user.displayName = encryptIfExists(user.displayName); + user.username = encryptIfExists(user.username); return user; }), }; @@ -125,7 +129,7 @@ for (const i in dump.tickets) { }; const archivedMessages = ticket.archivedMessages.map(message => { - message.content = db_cryptr.encrypt(message.content); + message.content = encryptIfExists(message.content); return message; }); ticket.archivedMessages = undefined; @@ -135,7 +139,7 @@ for (const i in dump.tickets) { delete ticket.feedback.guildId; ticket.feedback.guild = { connect: { id: options.guild } }; if (ticket.feedback.comment) { - ticket.feedback.comment = db_cryptr.encrypt(ticket.feedback.comment); + ticket.feedback.comment = encryptIfExists(ticket.feedback.comment); } ticket.feedback = { create: ticket.feedback }; } else { @@ -146,7 +150,7 @@ for (const i in dump.tickets) { ticket.questionAnswers = { createMany: ticket.questionAnswers.map(answer => { delete answer.ticketId; - if (answer.value) answer.value = db_cryptr.encrypt(answer.value); + if (answer.value) answer.value = encryptIfExists(answer.value); return answer; }), };