diff options
Diffstat (limited to 'src/plugins/randomiseFileNames.ts')
-rw-r--r-- | src/plugins/randomiseFileNames.ts | 28 |
1 files changed, 0 insertions, 28 deletions
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(".")) : ""); - }, -}); |