-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.js
351 lines (305 loc) · 9.28 KB
/
main.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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
let input = document.getElementById("input");
let content;
var i, j, y = 0;
var x;
var result = [];
const alphaC = /[\u0400-\u04FF]/;
const alpha = /[a-zA-Z]/;
var sentencesp = [];
var sentencesf = [];
//chamado quando um evento específico acontece.
input.addEventListener("input", (event) => {
//o arquivo que foi selecionado pelo usuário (0 pq é só o primeiro arquivo)
// criando um leitor de arquivos (objeto)
const file = event.target.files[0];
const reader = new FileReader();
//lendo como texto o arquivo selecionado
reader.readAsText(file);
//quando a leitura terminar vai pegar o resultado e passar pra content
reader.onload = function (e) {
content = e.target.result;
alert(content)
}
});
function generate() {
let i = 0
let ql = content.match(/\n/g);
let count = ql.length;
let valuesTxt = [];
//passa tudo pra array
valuesTxt = content.split(/\r\n/)
//valida o tipo de alfabeto (c-l)
//valida se é frase ou não (f-p)
if (AlphabetValidator(valuesTxt)) {
//russo
for (i = 0; i < valuesTxt.length; i++) {
x = typeValidator(valuesTxt[i])
}
russianGenerator(valuesTxt)
}
else {
//inglês
for (i = 0; i < valuesTxt.length; i++) {
x = typeValidator(valuesTxt[i])
}
englishGenerator(valuesTxt);
}
}
function AlphabetValidator(array) {
let i = 0
//erro linha em branco
for (i = 0; i < array.length; i++) {
if (array[i].trim() === "") {
alert(`ERRO: LINHA ${i + 1} EM BRANCO`)
}
}
if (alphaC.test(array[0])) {
//russo
return true;
}
else {
//inglês
return false
}
}
function typeValidator(value) {
let j = 0
if (value.includes(" ")) {
//frase
for (j = 1; j <= 3; j++) {
result.push(value)
result.push("f")
result.push("-")
result.push("-")
result.push("-")
}
} else {
//palavra
for (j = 1; j <= 3; j++) {
result.push(value)
result.push("p")
result.push("-")
result.push("-")
result.push("-")
}
}
}
function englishGenerator(array) {
let wpcounter = 0;
j = 0
//ERRO DUAS LINGUAS
for (j = 0; j < array.length; j++) {
if (alphaC.test(array[j])) {
alert(`ERRO: DUAS LÍNGUAS NO MESMO ARQUIVO TXT`)
}
}
let indexesp = [];
let indexesf = [];
for (i = 0; i < result.length; i++) {
if (result[i] === "p") {
indexesp.push(i)
}
else if (result[i] === "f") {
indexesf.push(i)
}
else { }
}
function esperarCincoSegundos() {
return new Promise(resolve => {
setTimeout(resolve, 2000); // Espera 2 segundos (5000 milissegundos)
});
}
async function meuLoop() {
for (i = 0; i < indexesp.length; i += 3) {
let ID = (indexesp[i] == 0 ? result[0] : result[indexesp[i] - 1])
const cors_anywhere = "https://cors-anywhere.herokuapp.com/"
let target = `https://sentencedict.com/${ID}.html`
let url = (cors_anywhere + target);
//faz uma solicitação para a url e retorna o response
//pega a resposta e transforma em algum formato (.text) para trabalhar com o conteudo
//o código passa esse texto para uma função chamada scraping() com o tipo de conteúdo "text/html".
//.catch para caso dê algum erro na cadeira ele acione e diga qual é problema
await fetch(url).then(response => response.text())
.then(result => scrapingp(result, "text/html", j))
.catch(error => console.error("ERRO: " + error));
await esperarCincoSegundos();
}
for (i = 0; i < indexesf.length; i += 3) {
ID = (indexesf[i] == 0 ? result[0] : result[indexesf[i] - 1])
cors_anywhere = "https://cors-anywhere.herokuapp.com/"
target = `https://context.reverso.net/translation/english-portuguese/${ID}`
url = (cors_anywhere + target);
await fetch(url).then(response => response.text())
.then(result => scrapingf(result, "text/html", j))
.catch(error => console.error("ERRO: " + error));
await esperarCincoSegundos();
}
}
meuLoop();
//function recebendo código HTML e o tipo do conteúdo
//API domparser converte uma string contendo código HTML ou XML em um objeto (parar navegar e manipular).
//depois pegamos todos os elementos divs dentro do id #all e passamos pra um objeto
//depois passo objeto pra uma array e o .map percorre tudo e pega apenas o conteudo de cada div
//(ser der algum problema abra o link do cors e clique no botão demo lá)
function scrapingp(string_html, content_type) {
let parser = new DOMParser();
let doc = parser.parseFromString(string_html, content_type);
let divweb = doc.querySelectorAll("#all div")
let sentence = Array.from(divweb).map(Element => Element.textContent);
sentencesp.push(sentence);
wpcounter++
console.log("carregando...")
if (wpcounter == (indexesp.length / 3)) {
wpcounter = 0;
console.log("pronto!")
packerp();
}
}
function scrapingf(string_html, content_type) {
let parser = new DOMParser();
let doc = parser.parseFromString(string_html, content_type);
let divweb = doc.querySelectorAll("#examples-content .text")
let sentence = Array.from(divweb).map(Element => Element.textContent);
sentencesf.push(sentence);
wpcounter++
console.log("carregando...")
if (wpcounter == (indexesf.length / 3)) {
console.log("pronto!")
packerf();
}
}
function packerp() {
j = 0;
for (i = 0; i < indexesp.length; i += 3) {
x = indexesp[i]
for (y = 0; y < 3; y++) {
result[x + 1] = sentencesp[j][y]
translator(result[x+1], "en", x)
x += 5
}
j++
}
}
function packerf() {
j = 0;
for (i = 0; i < indexesf.length; i += 3) {
x = indexesf[i]
for (y = 0; y < 3; y++) {
result[x + 1] = sentencesf[j][y].replace("\n ", "")
translator(result[x+1], "en", x)
x += 5
}
j++
}
}
}
function russianGenerator(array) {
let wpcounter = 0;
j = 0
//ERRO DUAS LINGUAS
for (j = 0; j < array.length; j++) {
if (alpha.test(array[j])) {
alert(`ERRO: DUAS LÍNGUAS NO MESMO ARQUIVO TXT`)
}
}
let indexesp = [];
let indexesf = [];
for (i = 0; i < result.length; i++) {
if (result[i] === "p") {
indexesp.push(i)
}
else if (result[i] === "f") {
indexesf.push(i)
}
else { }
}
function esperarCincoSegundos() {
return new Promise(resolve => {
setTimeout(resolve, 2000); // Espera 5 segundos (5000 milissegundos)
});
}
async function meuLoop() {
for (i = 0; i < indexesp.length; i += 3) {
let ID = (indexesp[i] == 0 ? result[0] : result[indexesp[i] - 1])
const cors_anywhere = "https://cors-anywhere.herokuapp.com/"
let target = `https://sinonim.org/p/${ID}#f`
let url = (cors_anywhere + target);
await fetch(url).then(response => response.text())
.then(result => scrapingp(result, "text/html", j))
.catch(error => console.error("ERRO: " + error));
await esperarCincoSegundos();
}
for (i = 0; i < indexesf.length; i += 3) {
ID = (indexesf[i] == 0 ? result[0] : result[indexesf[i] - 1])
cors_anywhere = "https://cors-anywhere.herokuapp.com/"
target = `https://context.reverso.net/translation/russian-english/${ID}`
url = (cors_anywhere + target);
await fetch(url).then(response => response.text())
.then(result => scrapingf(result, "text/html", j))
.catch(error => console.error("ERRO: " + error));
await esperarCincoSegundos();
}
}
meuLoop();
let wpcounterp = 0
let wpcounterf = 0
function scrapingp(string_html, content_type) {
let parser = new DOMParser();
let doc = parser.parseFromString(string_html, content_type);
let divweb = doc.querySelectorAll(".ulPred li")
let sentence = Array.from(divweb).map(Element => Element.textContent);
sentencesp.push(sentence);
wpcounterp++
console.log("carregando...")
if (wpcounterp == (indexesp.length / 3)) {
console.log("pronto!")
packerp();
}
}
function scrapingf(string_html, content_type) {
let parser = new DOMParser();
let doc = parser.parseFromString(string_html, content_type);
let divweb = doc.querySelectorAll("#examples-content .text")
let sentence = Array.from(divweb).map(Element => Element.textContent);
sentencesf.push(sentence);
wpcounterf++
console.log("carregando...")
if (wpcounterf == (indexesf.length / 3)) {
console.log("pronto!")
packerf();
}
}
function packerp() {
j = 0;
for (i = 0; i < indexesp.length; i += 3) {
x = indexesp[i]
for (y = 0; y < 3; y++) {
result[x + 1] = sentencesp[j][y]
translator(result[x+1], "ru", x)
x += 5
}
j++
}
}
function packerf() {
j = 0;
for (i = 0; i < indexesf.length; i += 3) {
x = indexesf[i]
for (y = 0; y < 3; y++) {
result[x + 1] = sentencesf[j][y]
result[x + 1] = sentencesf[j][y].replace("\n ", "")
translator(result[x+1], "ru", x)
x += 5
}
j++
}
}
}
function translator (valor, lang, x){
fetch(
`https://api.mymemory.translated.net/get?q=${valor}!&langpair=${lang}|pt`
).then((res)=>res.json()).then((data)=>{
let trad = data.responseData.translatedText;
result[x+2] = trad
})
}