From f41432d943479fe5744df5872fdfd45b3af3c3cd Mon Sep 17 00:00:00 2001 From: masterhc Date: Tue, 11 Mar 2025 11:42:41 +0000 Subject: [PATCH] Rust commits: Avatar link correction on wrongly formated url's from source. --- lib.js | 2 +- routes/routes.js | 1 + test.js | 32 ++++++++++++++++++++++++++++++++ 3 files changed, 34 insertions(+), 1 deletion(-) diff --git a/lib.js b/lib.js index daa1b53..414206d 100644 --- a/lib.js +++ b/lib.js @@ -1055,7 +1055,7 @@ class rustCommits .setColor(0xc23811) .setTitle(commit.Time) .setURL('https://commits.facepunch.com') - .setAuthor({name:commit.Author, iconURL:commit.Avatar==''?"https://i.imgur.com/g6FSNhL.png":commit.Avatar,url:`https://commits.facepunch.com/${commit.Author.split(' ').join('')}`}) + .setAuthor({name:commit.Author, iconURL:commit.Avatar==''?"https://i.imgur.com/g6FSNhL.png":(commit.Avatar.includes(" ")?encodeURI(commit.Avatar):commit.Avatar),url:`https://commits.facepunch.com/${commit.Author.split(' ').join('')}`}) .setDescription(commit.Content) .addFields( { name:`${commit.Repo}`, value:`[${commit.Repo}/${commit.Branch}](https://commits.facepunch.com/r/${commit.Repo}/${commit.Branch.split(' ')? commit.Branch.split(' ').join('%20'):commit.Branch} 'Branch Link')`}, diff --git a/routes/routes.js b/routes/routes.js index d8924d9..547cab2 100644 --- a/routes/routes.js +++ b/routes/routes.js @@ -37,5 +37,6 @@ module.exports = (io, bot)=> router.route('/strikes/:id/:userid/:strikeid?').get(api.strikeDashboard(bot)) .put(api.updateStrikes(bot)) .delete(api.deleteStrikes(bot)); + return router; }; \ No newline at end of file diff --git a/test.js b/test.js index e69de29..9d16c97 100644 --- a/test.js +++ b/test.js @@ -0,0 +1,32 @@ +const crypto = require('crypto'); + +// Key and IV generation for AES +const algorithm = 'aes-256-cbc'; +const key = crypto.randomBytes(32); // 256-bit key +console.log(key) +const iv = crypto.randomBytes(16); // Initialization vector +console.log(iv) +// Encrypt function +function encrypt(text) { + const cipher = crypto.createCipheriv(algorithm, key, iv); + let encrypted = cipher.update(text, 'utf8', 'hex'); + encrypted += cipher.final('hex'); + return encrypted; +} + +// Decrypt function +function decrypt(encryptedText) { + const decipher = crypto.createDecipheriv(algorithm, key, iv); + let decrypted = decipher.update(encryptedText, 'hex', 'utf8'); + decrypted += decipher.final('utf8'); + return decrypted; +} + +// Example usage +const textToEncrypt = 'Hello, World!'; +const encryptedText = encrypt(textToEncrypt); +const decryptedText = decrypt(encryptedText); + +console.log('Text to Encrypt:', textToEncrypt); +console.log('Encrypted Text:', encryptedText); +console.log('Decrypted Text:', decryptedText); \ No newline at end of file