-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuscador-drivefolder.js
45 lines (41 loc) · 1.62 KB
/
buscador-drivefolder.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
/* Script Hecha por Edder ミ●﹏☉ミ */
import fetch from 'node-fetch'
let handler = async (m, { conn, args, usedPrefix, command }) => {
if (!args[0]) throw `${lenguajeGB['smsAvisoMG']()} Ingrese una Url de un folder de Drive`
let url=args[0]
if (!(url && url.match(/drive\.google/i))) throw `${lenguajeGB['smsAvisoMG']()} La url ingresada no es valida`
url=url.replace('/mobile', '');
try{
let re1=(await getData(url)).join("\n\n")
m.reply(`Enviando enlaces de archivos y subcarpetas \n\n ${re1}`)
}catch{
throw `Ocurrio un error inesperado o la url no es de un folder`
}
}
async function getData(folderUrl) {
let res = await fetch(folderUrl);
let text = await res.text();
let archivos = text.match(/https:\/\/drive.google.com\/file\/d\/([^\s\\]+)usp\b/g);
let folders=text.match(/https:\/\/drive.google.com\/drive\/folders\/([^\s"|\\|&|?|%]+)/g);
let regex =/(?<=\\x22\\x5d,\\x22)(.*?)(?=\\x22)/g
let nombres=text.match(regex);
folders=eliminarDuplicados(folders)
archivos=eliminarDuplicados(archivos)
folders.shift();
let con=folders.concat(archivos);
let resultado=[]
let index=0
while (nombres.length > 0) {
let elemento = nombres.shift();
resultado.push(`${elemento} ${con[index]}`)
index ++;
}
return resultado
}
function eliminarDuplicados(lista) {
return Array.from(new Set(lista));
}
handler.help = ['drivefolder'].map(v => v + ' <url>')
handler.tags = ['downloader']
handler.command = /^(drivefolder)$/i
export default handler