Skip to content

Commit

Permalink
modif mineure sur le test Internet
Browse files Browse the repository at this point in the history
  • Loading branch information
pierre-lamarche committed Dec 26, 2024
1 parent daadfde commit 0cf7dc5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions R/telechargerFichier.R
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@ telechargerFichier <- function(donnees, date=NULL, telDir=getOption("doremifasol

## vérifie donnees et date. si ok les infos nécessaires sont extraites dans caract
caract <- infosDonnees(donnees, date)

## test de la connexion
if (!curl::has_internet()) stop("aucune connexion Internet")

#dossier de téléchargement # si NULL aller dans le cache
cache <- FALSE
Expand All @@ -40,7 +43,6 @@ telechargerFichier <- function(donnees, date=NULL, telDir=getOption("doremifasol
dl <- NULL

if (!file.exists(nomFichier) || force) {
if (!curl::has_internet()) stop("aucune connexion Internet")
res <- try(httr::GET(caract$lien, httr::write_disk(nomFichier, overwrite = TRUE), httr::progress()))
if (res$status_code == 200) dl <- 0
if (tools::md5sum(nomFichier) != caract$md5) {
Expand Down Expand Up @@ -104,8 +106,6 @@ telechargerFichier <- function(donnees, date=NULL, telDir=getOption("doremifasol
stop("d\u00e9finir les variables d'environnement INSEE_APP_KEY et INSEE_APP_SECRET")
}

if (!curl::has_internet()) stop("aucune connexion Internet")

timestamp <- gsub("[^0-9]", "", as.character(Sys.time()))
dossier_json <- paste0(telDir, "/json_API_", caract$nom, "_", timestamp, "_", genererSuffixe(4))
dir.create(dossier_json)
Expand Down

0 comments on commit 0cf7dc5

Please sign in to comment.