forked from Laboratoria/SAP009-md-links
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
64 lines (60 loc) · 1.69 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
const fs = require('fs');
const chalk = require('chalk');
function validarLink(link) {
return fetch(link.url)
.then((res) => {
if(res.ok){
return {
texto: link.texto,
url: link.url,
status: chalk.blue('Link Ok! cod:' + res.status),
};
} else{
return {
texto: link.texto,
url: link.url,
status: chalk.red('Link Fail! cod:' + (error.status || 404)),
};
};
})
.catch((error) => {
return {
texto: link.texto,
url: link.url,
status: chalk.red('Link Fail! cod:' + (error.status || 404)),
};
});
};
function mdLinks(path, options) {
return new Promise((resolve, reject) => {
fs.readFile(path, 'utf-8', (erro, conteudo) => {
if (erro) {
reject(new Error ('Arquivo/Diretório não encontrado' + erro));
return;
} else {
const regex = /\[([^\]]+)\]\(([^\)]+)\)/gm;
const links = [];
let match;
while ((match = regex.exec(conteudo)) !== null) {
const textoLink = match[1];
const urlLink = match[2];
const caminhoLink = path
links.push({ texto: textoLink, url: urlLink, pasta:caminhoLink });
}
if(options.validate){
const promises = links.map((link) => validarLink(link));
return Promise.all(promises)
.then((linksValidados) => {
resolve(linksValidados);
})
.catch((erro) => {
reject(new Error ('Erro ao validar os links: ' + erro));
});
} else{
resolve(links);
}
}
});
});
}
module.exports ={ mdLinks, validarLink };