Rust commits: Avatar link correction on wrongly formated url's from source.

master
masterhc 4 weeks ago
parent d132846caf
commit f41432d943

@ -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')`},

@ -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;
};

@ -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);
Loading…
Cancel
Save