feat(plugin): add RandomiseFileNames (#24)
This commit is contained in:
parent
ca2f9d937c
commit
e4c41d5d6c
32
src/plugins/randomiseFileNames.ts
Normal file
32
src/plugins/randomiseFileNames.ts
Normal file
|
@ -0,0 +1,32 @@
|
||||||
|
import definePlugin from "../utils/types";
|
||||||
|
|
||||||
|
export default definePlugin({
|
||||||
|
name: "RandomiseFileNames",
|
||||||
|
authors: [
|
||||||
|
{
|
||||||
|
name: "obscurity",
|
||||||
|
id: 336678828233588736n,
|
||||||
|
},
|
||||||
|
],
|
||||||
|
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) {
|
||||||
|
const chars =
|
||||||
|
"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789";
|
||||||
|
const rand = Array.from(
|
||||||
|
{ length: 7 },
|
||||||
|
() => chars[Math.floor(Math.random() * chars.length)]
|
||||||
|
).join("");
|
||||||
|
return rand + window.DiscordNative.fileManager.extname(file);
|
||||||
|
},
|
||||||
|
});
|
Loading…
Reference in a new issue