-
Notifications
You must be signed in to change notification settings - Fork 6
/
revisar_links.R
54 lines (42 loc) · 1.52 KB
/
revisar_links.R
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
# Instalar las bibliotecas necesarias
if (!require("httr")) install.packages("httr")
if (!require("stringr")) install.packages("stringr")
if (!require("usethis")) install.packages("usethis")
# Cargar las bibliotecas
library(httr)
library(stringr)
library(usethis)
# Definir la URL del repositorio y el archivo README.md
# repo_url <- "https://raw.githubusercontent.com/santiagomota/Open_Data/main/README.md"
# repo_url <- "https://github.com/santiagomota/Open_Data/blob/master/README.md"
# repo_url <- "https://raw.githubusercontent.com/santiagomota/Open_Data/73b1a582cb5c908d00b914e0e541b8bf81605c9c/README.md"
repo_url <- "https://raw.githubusercontent.com/santiagomota/Open_Data/master/README.md"
# Leer el contenido del archivo README.md
readme_content <- readLines(repo_url, warn = FALSE)
# Extraer todos los enlaces del archivo README.md
extract_links <- function(text) {
str_extract_all(text, "https?://[^\\s)]+")[[1]]
}
links <- unlist(lapply(readme_content, extract_links))
# Comprobar el estado de cada enlace
check_link <- function(link) {
response <- tryCatch({
httr::GET(link)
}, error = function(e) {
NULL
})
if (is.null(response)) {
return(NA)
}
status <- status_code(response)
return(status)
}
# Crear un data frame con los resultados
results <- data.frame(
link = links,
status = sapply(links, check_link)
)
# Mostrar los resultados
print(results)
# Guardar los resultados en un archivo CSV
# write.csv(results, "link_check_results.csv", row.names = FALSE)