Skip to content

Commit

Permalink
init
Browse files Browse the repository at this point in the history
  • Loading branch information
RLesur committed Oct 21, 2019
0 parents commit 84a5d12
Show file tree
Hide file tree
Showing 12 changed files with 329 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .Rbuildignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
^apinsee\.Rproj$
^\.Rproj\.user$
^LICENSE\.md$
^README\.Rmd$
^\.httr-oauth$
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
.Rproj.user
.Rhistory
.RData
.Ruserdata
.httr-oauth
14 changes: 14 additions & 0 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
Package: apinsee
Title: Manage Access to Insee APIs
Version: 0.0.0.9000
Authors@R: c(
person("Romain", "Lesur", role = c("aut", "cre"), email = "[email protected]", comment = c(ORCID = "0000-0002-0721-5595")),
person()
)
Description: Ease access to Insee APIs.
License: MIT + file LICENSE
Encoding: UTF-8
LazyData: true
Imports:
httr
RoxygenNote: 6.1.1
2 changes: 2 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
YEAR: 2019
COPYRIGHT HOLDER: Romain Lesur
21 changes: 21 additions & 0 deletions LICENSE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# MIT License

Copyright (c) 2019 Romain Lesur

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
3 changes: 3 additions & 0 deletions NAMESPACE
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Generated by roxygen2: do not edit by hand

export(insee_auth)
152 changes: 152 additions & 0 deletions R/insee_auth.R
Original file line number Diff line number Diff line change
@@ -0,0 +1,152 @@
# environment to store credentials
.state <- new.env(parent = emptyenv())

#' Authenticate to an Insee application
#'
#' @param token optional; an actual token object or the path to a valid token
#' stored as an \code{.rds} file.
#' @param new_app logical, defaults to \code{FALSE}. Set to \code{TRUE} if you
#' want to wipe the slate clean and re-authenticate with the same or different
#' application. This disables the \code{.httr-oauth} file in current
#' working directory.
#' @param appname application name.
#' @param key,secret consumer key and secret of the application.
#' @param cache logical indicating if \code{apinsee} should cache
#' credentials in the default cache file \code{.httr-oauth}.
#' @param verbose print message.
#'
#' @return A token.
#' @export
insee_auth <- function(
token = NULL,
new_app = FALSE,
appname = "DefaultApplication",
key = Sys.getenv("INSEE_API_KEY"),
secret = Sys.getenv("INSEE_API_SECRET"),
cache = getOption("httr_oauth_cache"),
verbose = TRUE
) {

if (new_app) {
insee_deauth(clear_cache = TRUE, verbose = verbose)
}

if (is.null(token)) {

scope_list <- c(.state$nomenclatures_url,
.state$sirene_url,
"https://api.insee.fr/entreprises/sirene/")

insee_endpoint <- httr::oauth_endpoint(
base_url = "https://api.insee.fr",
request = NULL,
authorize = NULL,
access = "token",
revoke = "revoke"
)

user_app <- httr::oauth_app(appname = appname, key = key, secret = secret)

insee_token <- httr::oauth2.0_token(
insee_endpoint,
user_app,
scope = scope_list,
use_basic_auth = TRUE,
cache = cache,
client_credentials = TRUE
)
stopifnot(is_legit_token(insee_token, verbose = TRUE))
.state$token <- insee_token

} else if (inherits(token, "Token2.0")) {

stopifnot(is_legit_token(token, verbose = TRUE))
.state$token <- token

} else if (inherits(token, "character")) {

insee_token <- try(suppressWarnings(readRDS(token)), silent = TRUE)
if (inherits(insee_token, "try-error")) {
stop(sprintf("Cannot read token from alleged .rds file:\n%s", token), call. = FALSE)
} else if (!is_legit_token(insee_token, verbose = TRUE)) {
stop(sprintf("File does not contain a proper token:\n%s", token), call. = FALSE)
}
.state$token <- insee_token
} else {
stop("Input provided via 'token' is neither a",
"token,\nnor a path to an .rds file containing a token.", call. = FALSE)
}

invisible(.state$token)

}

insee_deauth <- function(
clear_cache = TRUE, verbose = TRUE
) {

if (clear_cache && file.exists(".httr-oauth")) {
if (verbose) {
message("Disabling .httr-oauth by renaming to .httr-oauth-SUSPENDED")
}
file.rename(".httr-oauth", ".httr-oauth-SUSPENDED")
}

if (token_available(verbose = FALSE)) {
if (verbose) {
message("Removing token stashed internally in 'apinsee'.")
}
rm("token", envir = .state)
} else {
message("No token currently in force.")
}

invisible(NULL)

}

token_available <- function(verbose = TRUE) {

if (is.null(.state$token)) {
if (verbose) {
if (file.exists(".httr-oauth")) {
message("A .httr-oauth file exists in current working ",
"directory.\nWhen/if needed, the credentials cached in ",
".httr-oauth will be used for this session.\nOr run insee_auth() ",
"for explicit authentication and authorization.")
} else {
message("No .httr-oauth file exists in current working directory.\n",
"When/if needed, 'apinsee' will initiate authentication ",
"and authorization.\nOr run insee_auth() to trigger this ",
"explicitly.")
}
}
return(FALSE)
}

TRUE

}

is_legit_token <- function(x, verbose = FALSE) {

if (!inherits(x, "Token2.0")) {
if (verbose) message("Not a Token2.0 object.")
return(FALSE)
}

if ("invalid_client" %in% unlist(x$credentials)) {
if (verbose) {
message("Authorization error. Please check application key and secret.")
}
return(FALSE)
}

if ("invalid_request" %in% unlist(x$credentials)) {
if (verbose) message("Authorization error. No access token obtained.")
return(FALSE)
}

TRUE

}
18 changes: 18 additions & 0 deletions R/zzz.R
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# nocov start
.onLoad <- function(libname, pkgname) {

op <- options()
op.apinsee <- list(
httr_oauth_cache = NA
)
toset <- !(names(op.apinsee) %in% names(op))
if(any(toset)) options(op.apinsee[toset])

invisible()

}

# store base urls in the '.state' internal environment (created in insee_auth.R)
.state$sirene_url <- "https://api.insee.fr/entreprises/sirene/V3"
.state$nomenclatures_url <- "https://api.insee.fr/metadonnees/nomenclatures/v1"
# nocov end
31 changes: 31 additions & 0 deletions README.Rmd
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
---
output: github_document
---

<!-- README.md is generated from README.Rmd. Please edit that file -->

```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```
# apinsee

<!-- badges: start -->
<!-- badges: end -->

The goal of apinsee is to ease access to Insee APIs available at <https://api.insee.fr/>

## Installation

You can install the development version from [GitHub](https://github.com/) with:

``` r
remotes::install_github("rlesur/apinsee")
```
## Example


22 changes: 22 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@

<!-- README.md is generated from README.Rmd. Please edit that file -->

# apinsee

<!-- badges: start -->

<!-- badges: end -->

The goal of apinsee is to ease access to Insee APIs available at
<https://api.insee.fr/>

## Installation

You can install the development version from
[GitHub](https://github.com/) with:

``` r
remotes::install_github("rlesur/apinsee")
```

## Example
21 changes: 21 additions & 0 deletions apinsee.Rproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
Version: 1.0

RestoreWorkspace: No
SaveWorkspace: No
AlwaysSaveHistory: Default

EnableCodeIndexing: Yes
UseSpacesForTab: Yes
NumSpacesForTab: 2
Encoding: UTF-8

RnwWeave: Sweave
LaTeX: pdfLaTeX

AutoAppendNewline: Yes
StripTrailingWhitespace: Yes

BuildType: Package
PackageUseDevtools: Yes
PackageInstallArgs: --no-multiarch --with-keep.source
PackageRoxygenize: rd,collate,namespace
35 changes: 35 additions & 0 deletions man/insee_auth.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 84a5d12

Please sign in to comment.