-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
98 lines (84 loc) · 3.61 KB
/
index.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
var inombre = document.getElementById('nombre');
var iimagen = document.getElementById('imagen');
var icodigo = document.getElementById('codigo');
var ienlaces = document.getElementById('enlaces');
var boton = document.getElementById("btnenviar");
const dataArray = [];
const urlfile = 'https://docs.google.com/spreadsheets/d/e/2PACX-1vQcHf31D-1ci81iVfKNpa_Bu-DxgA0I6FsL1QZswGwJXYmyjM0uQRkJHchb7R2JwedjAlBO_sHR-nfF/pubhtml?gid=0&single=true';
function btnLimpiar() {
//Cuando se presione el boton limpiar se mandara al enlace del servidor
var codigo = icodigo.value;
var cos = 'https://filemoon.sx/folder/' + codigo;
//Enviando
var urlMensaje = 'https://api.telegram.org/bot7077402329:AAH_eOLI9IjhanJ6698CCiWz42ZlH6Ij_vU/sendMessage?chat_id=-1002204285060&text=' + cos;
fetch(urlMensaje)
.then(response => response.json())
.then(data => {
console.log('Exitoso');
inombre.value = '';
iimagen.value = '';
icodigo.value = '';
ienlaces.value = '';
})
.catch(error => console.error(error));
}
function btnCrear() {
var n_i = inombre.value;
//var nombre_imagen = encodeURIComponent(n);
var codigo = '';
//Obteniendo el nombre y la imagen
var datos = n_i.split('→');
var nombre = encodeURIComponent(datos[0]);
var urlImagen = datos[1];
//Url para crear la carpeta
var urlc = 'https://filemoonapi.com/api/folder/create?key=54340gjpnv8a0abxcv6s4&name=' + nombre;
//Mandando el nombre al campo imagen
imagen.value = urlImagen;
var imagenSubir = imagen.value;
fetch(urlc)
.then(response => response.json())
.then(data => {
codigo = data.result.fld_id;
icodigo.value = '' + codigo;
var urle = 'https://script.google.com/macros/s/AKfycbxnye-7lFjktp0r05ug51CNhlDvDFplNQIJkTvQFS1hHmi0Mu1sY8qFJSjEhfAflrI/exec?';
fetch(urle + 'nombre=' + nombre + '&imagen=' + urlImagen + '&codigo=' + codigo)
.then(response => {
console.log('Exitoso');
//Para el otro canal
var urlMensaje = 'https://api.telegram.org/bot7077402329:AAH_eOLI9IjhanJ6698CCiWz42ZlH6Ij_vU/sendMessage?chat_id=-1001853757541&text=' + nombre;
fetch(urlMensaje)
.then(response => response.json())
.then(data => {
//Para el otro canal
var urlMensajeCodigo = 'https://api.telegram.org/bot7077402329:AAH_eOLI9IjhanJ6698CCiWz42ZlH6Ij_vU/sendMessage?chat_id=-1001853757541&text=' + codigo;
fetch(urlMensajeCodigo)
.then(response => response.json())
.then(data => {
console.log('Exitoso');
})
.catch(error => console.error(error));
})
.catch(error => console.error(error));
})
.catch(error => console.error(error));
})
.catch(error => console.error(error));
}
function btnEnviar() {
var contenido = ienlaces.value;
var codigo = icodigo.value;
var lineas = contenido.split("\n");
for (var i = 0; i < lineas.length; i++) {
if (lineas[i][0] == 'h') {
var url = 'https://filemoonapi.com/api/remote/add?key=54340gjpnv8a0abxcv6s4&fld_id=' + codigo + "&url=";
var subir = url + lineas[i];
fetch(subir)
.then(response => response.json())
.then(data => {
console.log('Exitoso');
ienlaces.value = '';
})
.catch(error => console.error(error));
}
}
}