aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/randomiseFileNames.ts
diff options
context:
space:
mode:
authorobscurity <z@x4.pm>2022-10-19 15:23:22 +0200
committerGitHub <noreply@github.com>2022-10-19 15:23:22 +0200
commit7cdc4e4c03e991d4203072e6a1127ce3e055b713 (patch)
treeb2e2fabcd8fa0beef9ec1c5a59956a2268e02384 /src/plugins/randomiseFileNames.ts
parentd3bf5cec9af5e86b3e1e6c747fcf68df0a3ff05a (diff)
downloadVencord-7cdc4e4c03e991d4203072e6a1127ce3e055b713.tar.gz
Vencord-7cdc4e4c03e991d4203072e6a1127ce3e055b713.tar.bz2
Vencord-7cdc4e4c03e991d4203072e6a1127ce3e055b713.zip
feat: randomiseFileNames -> anonymiseFileNames (#116)
Co-authored-by: Ven <vendicated@riseup.net>
Diffstat (limited to 'src/plugins/randomiseFileNames.ts')
-rw-r--r--src/plugins/randomiseFileNames.ts28
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(".")) : "");
- },
-});