From 7cdc4e4c03e991d4203072e6a1127ce3e055b713 Mon Sep 17 00:00:00 2001 From: obscurity Date: Wed, 19 Oct 2022 15:23:22 +0200 Subject: feat: randomiseFileNames -> anonymiseFileNames (#116) Co-authored-by: Ven --- src/plugins/randomiseFileNames.ts | 28 ---------------------------- 1 file changed, 28 deletions(-) delete mode 100644 src/plugins/randomiseFileNames.ts (limited to 'src/plugins/randomiseFileNames.ts') diff --git a/src/plugins/randomiseFileNames.ts b/src/plugins/randomiseFileNames.ts deleted file mode 100644 index 30603af..0000000 --- a/src/plugins/randomiseFileNames.ts +++ /dev/null @@ -1,28 +0,0 @@ -import definePlugin from "../utils/types"; -import { Devs } from "../utils/constants"; - -export default definePlugin({ - name: "RandomiseFileNames", - authors: [Devs.obscurity], - description: "Randomise uploaded file names", - patches: [ - { - find: "instantBatchUpload:function", - replacement: { - match: /uploadFiles:(.{1,2}),/, - replace: - "uploadFiles:(...args)=>(args[0].uploads.forEach(f=>f.filename=Vencord.Plugins.plugins.RandomiseFileNames.rand(f.filename)),$1(...args)),", - }, - }, - ], - - rand(file: string) { - const chars = - "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"; - const rand = Array.from( - { length: 7 }, - () => chars[Math.floor(Math.random() * chars.length)] - ).join(""); - return rand + (file.lastIndexOf(".") > -1 ? file.slice(file.lastIndexOf(".")) : ""); - }, -}); -- cgit