blob: 9808f88c33fea527894e22bbbcbffc77cfe71213 [file] [log] [blame]
Marc Kupietzfd9e7492019-11-08 15:45:18 +01001################################################################################
2# Use setClassUnion to define the unholy NULL-data union as a virtual class.
3################################################################################
4setClassUnion("characterOrNULL", c("character", "NULL"))
5
Marc Kupietze95108e2019-09-18 13:23:58 +02006#' Class KorAPConnection
Marc Kupietz25aebc32019-09-16 18:40:50 +02007#'
Akron5e135462019-09-27 16:31:38 +02008#' \code{KorAPConnection} objects represent the connection to a KorAP server.
Marc Kupietz7715e9d2019-11-08 15:59:58 +01009#' New \code{KorAPConnection} objects can be created by \code{new("KorAPConnection")}.
Marc Kupietze95108e2019-09-18 13:23:58 +020010#'
Marc Kupietz0a96b282019-10-01 11:05:31 +020011#' @import R.cache
Marc Kupietze95108e2019-09-18 13:23:58 +020012#' @import utils
13#' @import methods
Marc Kupietze95108e2019-09-18 13:23:58 +020014#' @export
Marc Kupietzb956b812019-11-25 17:53:13 +010015KorAPConnection <- setClass("KorAPConnection", slots=c(KorAPUrl="character", apiVersion="character", apiUrl="character", accessToken="characterOrNULL", userAgent="character", timeout="numeric", verbose="logical", cache="logical"))
Marc Kupietze95108e2019-09-18 13:23:58 +020016
17#' @param .Object KorAPConnection object
18#' @param KorAPUrl the URL of the KorAP server instance you want to access.
19#' @param apiVersion which version of KorAP's API you want to connect to.
20#' @param apiUrl URL of the KorAP web service.
Marc Kupietzb956b812019-11-25 17:53:13 +010021#' @param accessToken OAuth2 access token. To use authorization based on an access token
Marc Kupietz43a6ade2020-02-18 17:01:44 +010022#' in subsequent queries, initialize your KorAP connection with
Marc Kupietzb956b812019-11-25 17:53:13 +010023#' \code{kco <- new("KorAPConnection", accessToken="<access token>")}.
Marc Kupietz4862b862019-11-07 10:13:53 +010024#' In order to make the API
25#' token persistent for the currently used \code{KorAPUrl} (you can have one
26#' token per KorAPUrl / KorAP server instance), use
Marc Kupietzb956b812019-11-25 17:53:13 +010027#' \code{persistAccessToken(kco)}. This will store it in your keyring using the
Marc Kupietz4862b862019-11-07 10:13:53 +010028#' \code{\link{keyring}} package. Subsequent new("KorAPConnection") calls will
29#' then automatically retrieve the token from your keying. To stop using a
Marc Kupietzb956b812019-11-25 17:53:13 +010030#' persisted token, call \code{clearAccessToken(kco)}. Please note that for
Marc Kupietz4862b862019-11-07 10:13:53 +010031#' DeReKo, authorized queries will behave differently inside and outside the
32#' IDS, because of the special license situation. This concerns also cached
33#' results which do not take into account from where a request was issued. If
34#' you experience problems or unexpected results, please try \code{kco <-
35#' new("KorAPConnection", cache=FALSE)} or use
36#' \code{\link{clearCache}} to clear the cache completely.
Marc Kupietzd0d3e9b2019-09-24 17:36:03 +020037#' @param userAgent user agent string.
38#' @param timeout time out in seconds.
Marc Kupietz4862b862019-11-07 10:13:53 +010039#' @param verbose logical. Decides whether following operations will default to
40#' be verbose.
41#' @param cache logical. Decides if API calls are cached locally. You can clear
42#' the cache with \code{\link{clearCache}()}.
43#' @return \code{\link{KorAPConnection}} object that can be used e.g. with
44#' \code{\link{corpusQuery}}
Marc Kupietze95108e2019-09-18 13:23:58 +020045#'
46#' @examples
Marc Kupietz05b22772020-02-18 21:58:42 +010047#' \donttest{
Marc Kupietz5a519822019-09-20 21:43:52 +020048#' kcon <- new("KorAPConnection", verbose = TRUE)
Marc Kupietze95108e2019-09-18 13:23:58 +020049#' kq <- corpusQuery(kcon, "Ameisenplage")
Marc Kupietz5a519822019-09-20 21:43:52 +020050#' kq <- fetchAll(kq)
Marc Kupietz05b22772020-02-18 21:58:42 +010051#' }
Marc Kupietz7915dc42019-09-12 17:44:58 +020052#'
Marc Kupietz4862b862019-11-07 10:13:53 +010053#' \dontrun{
Marc Kupietzb956b812019-11-25 17:53:13 +010054#' kcon <- new("KorAPConnection", verbose = TRUE, accessToken="e739u6eOzkwADQPdVChxFg")
Marc Kupietz4862b862019-11-07 10:13:53 +010055#' kq <- corpusQuery(kcon, "Ameisenplage", metadataOnly=FALSE)
56#' kq <- fetchAll(kq)
57#' kq@collectedMatches$snippet
58#' }
Marc Kupietz7915dc42019-09-12 17:44:58 +020059#'
Marc Kupietze95108e2019-09-18 13:23:58 +020060#' @rdname KorAPConnection-class
Marc Kupietz632cbd42019-09-06 16:04:51 +020061#' @export
Marc Kupietze95108e2019-09-18 13:23:58 +020062setMethod("initialize", "KorAPConnection",
Marc Kupietz8a82af72019-12-12 12:58:22 +010063 function(.Object, KorAPUrl = "https://korap.ids-mannheim.de/", apiVersion = 'v1.0', apiUrl, accessToken = getAccessToken(KorAPUrl), userAgent = "R-KorAP-Client", timeout=110, verbose = FALSE, cache = TRUE) {
Marc Kupietze95108e2019-09-18 13:23:58 +020064 .Object <- callNextMethod()
65 m <- regexpr("https?://[^?]+", KorAPUrl, perl = TRUE)
66 .Object@KorAPUrl <- regmatches(KorAPUrl, m)
67 if (!endsWith(.Object@KorAPUrl, '/')) {
68 .Object@KorAPUrl <- paste0(.Object@KorAPUrl, "/")
69 }
70 if (missing(apiUrl)) {
71 .Object@apiUrl = paste0(.Object@KorAPUrl, 'api/', apiVersion, '/')
72 } else {
73 .Object@apiUrl = apiUrl
74 }
Marc Kupietzb956b812019-11-25 17:53:13 +010075 .Object@accessToken = accessToken
Marc Kupietze95108e2019-09-18 13:23:58 +020076 .Object@apiVersion = apiVersion
Marc Kupietzd0d3e9b2019-09-24 17:36:03 +020077 .Object@userAgent = userAgent
78 .Object@timeout = timeout
Marc Kupietz5a519822019-09-20 21:43:52 +020079 .Object@verbose = verbose
Marc Kupietz0a96b282019-10-01 11:05:31 +020080 .Object@cache = cache
Marc Kupietzb2b32a32020-03-24 13:56:50 +010081 message(apiCall(.Object, .Object@apiUrl, json = FALSE, cache = FALSE))
Marc Kupietze95108e2019-09-18 13:23:58 +020082 .Object
83 })
84
Marc Kupietza96537f2019-11-09 23:07:44 +010085
Marc Kupietzb956b812019-11-25 17:53:13 +010086accessTokenServiceName <- "RKorAPClientAccessToken"
Marc Kupietz4862b862019-11-07 10:13:53 +010087
Marc Kupietzb956b812019-11-25 17:53:13 +010088setGeneric("persistAccessToken", function(kco, ...) standardGeneric("persistAccessToken") )
Marc Kupietz4862b862019-11-07 10:13:53 +010089
Marc Kupietzb956b812019-11-25 17:53:13 +010090#' @aliases persistAccessToken
Marc Kupietz4862b862019-11-07 10:13:53 +010091#' @rdname KorAPConnection-class
92#' @import keyring
93#' @export
94#' @examples
95#' \dontrun{
Marc Kupietzb956b812019-11-25 17:53:13 +010096#' kco <- new("KorAPConnection", accessToken="e739u6eOzkwADQPdVChxFg")
97#' persistAccessToken(kco)
Marc Kupietz4862b862019-11-07 10:13:53 +010098#' }
99#'
Marc Kupietzb956b812019-11-25 17:53:13 +0100100setMethod("persistAccessToken", "KorAPConnection", function(kco, accessToken = kco@accessToken) {
101 if (is.null(accessToken))
102 stop("It seems that you have not supplied any access token that could be persisted.", call. = FALSE)
Marc Kupietz4862b862019-11-07 10:13:53 +0100103
Marc Kupietzb956b812019-11-25 17:53:13 +0100104 kco@accessToken <- accessToken
105 key_set_with_value(accessTokenServiceName, kco@KorAPUrl, accessToken)
Marc Kupietz4862b862019-11-07 10:13:53 +0100106})
107
Marc Kupietzb956b812019-11-25 17:53:13 +0100108setGeneric("clearAccessToken", function(kco) standardGeneric("clearAccessToken") )
Marc Kupietz4862b862019-11-07 10:13:53 +0100109
Marc Kupietzb956b812019-11-25 17:53:13 +0100110#' @aliases clearAccessToken
Marc Kupietz4862b862019-11-07 10:13:53 +0100111#' @rdname KorAPConnection-class
112#' @import keyring
113#' @export
114#' @examples
115#' \dontrun{
116#' kco <- new("KorAPConnection")
Marc Kupietzb956b812019-11-25 17:53:13 +0100117#' clearAccessToken(kco)
Marc Kupietz4862b862019-11-07 10:13:53 +0100118#' }
119#'
Marc Kupietzb956b812019-11-25 17:53:13 +0100120setMethod("clearAccessToken", "KorAPConnection", function(kco) {
121 key_delete(accessTokenServiceName, kco@KorAPUrl)
Marc Kupietz4862b862019-11-07 10:13:53 +0100122})
123
124#' @import keyring
Marc Kupietzb956b812019-11-25 17:53:13 +0100125getAccessToken <- function(KorAPUrl) {
Marc Kupietz59e449b2019-12-12 12:53:54 +0100126 keyList <- tryCatch(withCallingHandlers(key_list(service = accessTokenServiceName),
Marc Kupietzddce5562019-11-24 15:45:38 +0100127 warning = function(w) invokeRestart("muffleWarning"),
Marc Kupietz59e449b2019-12-12 12:53:54 +0100128 error = function(e) return(NULL)),
129 error = function(e) { })
Marc Kupietzb2870f22019-11-20 22:28:34 +0100130 if (KorAPUrl %in% keyList)
Marc Kupietzb956b812019-11-25 17:53:13 +0100131 key_get(accessTokenServiceName, KorAPUrl)
Marc Kupietzfd9e7492019-11-08 15:45:18 +0100132 else
133 NULL
Marc Kupietz4862b862019-11-07 10:13:53 +0100134}
Marc Kupietz0a96b282019-10-01 11:05:31 +0200135
136KorAPCacheSubDir <- function() {
Marc Kupietz70b2c722020-02-18 13:32:09 +0100137 paste0("RKorAPClient_",
138 gsub(
139 "^([0-9]+\\.[0-9]+).*",
140 "\\1",
141 packageVersion("RKorAPClient"),
142 perl = TRUE
143 ))
Marc Kupietz0a96b282019-10-01 11:05:31 +0200144}
145
Marc Kupietzd0d3e9b2019-09-24 17:36:03 +0200146setGeneric("apiCall", function(kco, ...) standardGeneric("apiCall") )
147
Marc Kupietz4de53ec2019-10-04 09:12:00 +0200148## quiets concerns of R CMD check re: the .'s that appear in pipelines
149if(getRversion() >= "2.15.1") utils::globalVariables(c("."))
150
Marc Kupietzd0d3e9b2019-09-24 17:36:03 +0200151#' @aliases apiCall
152#' @rdname KorAPConnection-class
153#' @param kco KorAPConnection object
154#' @param url request url
Marc Kupietzb2b32a32020-03-24 13:56:50 +0100155#' @param json logical that determines if json result is expected
Marc Kupietz69cc54a2019-09-30 12:06:54 +0200156#' @importFrom jsonlite fromJSON
157#' @export
Marc Kupietzb2b32a32020-03-24 13:56:50 +0100158setMethod("apiCall", "KorAPConnection", function(kco, url, json = TRUE, cache = kco@cache) {
159 result <- ""
160 if (cache) {
161 result <- R.cache::loadCache(dir=KorAPCacheSubDir(), key=list(url, kco@accessToken))
162 if (!is.null(result)) {
163 if (!is.null(result$meta))
164 result$meta$cached <- "local"
165 return(result)
Marc Kupietz0a96b282019-10-01 11:05:31 +0200166 }
167 }
Marc Kupietzb956b812019-11-25 17:53:13 +0100168 if (!is.null(kco@accessToken))
169 resp <- GET(url, user_agent(kco@userAgent), timeout(kco@timeout), add_headers(Authorization = paste("Bearer", kco@accessToken)))
Marc Kupietz4862b862019-11-07 10:13:53 +0100170 else
171 resp <- GET(url, user_agent(kco@userAgent), timeout(kco@timeout))
Marc Kupietzb2b32a32020-03-24 13:56:50 +0100172 if (json || status_code(resp) != 200) {
173 if (json && !http_type(resp) %in% c("application/json", "application/ld+json")) {
174 stop("API did not return json", call. = FALSE)
175 }
176 result <- jsonlite::fromJSON(content(resp, "text", encoding = "UTF-8"))
177 if (!is.null(result$warnings)) {
178 message <- if (nrow(result$warnings) > 1)
179 sapply(result$warnings, function(warning) paste(sprintf("%s: %s", warning[1], warning[2]), sep="\n"))
180 else
181 sprintf("%s: %s", result$warnings[1], result$warnings[2])
182 warning(message, call. = FALSE)
183 }
Marc Kupietzd0d3e9b2019-09-24 17:36:03 +0200184 }
185 if (status_code(resp) != 200) {
Marc Kupietzb7d8c272020-01-31 18:51:50 +0100186 if (kco@verbose) {
187 cat("\n")
188 }
189 message <- sprintf("%s KorAP API request failed", status_code(resp))
Marc Kupietzb2b32a32020-03-24 13:56:50 +0100190 if (!is.null(result$errors)) {
191 message <- sprintf("%s - %s %s", message, result$errors[1], result$errors[2])
Marc Kupietzb7d8c272020-01-31 18:51:50 +0100192 }
Marc Kupietzd0d3e9b2019-09-24 17:36:03 +0200193 stop(message, call. = FALSE)
194 }
Marc Kupietzb2b32a32020-03-24 13:56:50 +0100195 if (!json) {
196 result <- content(resp, "text", encoding = "UTF-8")
Marc Kupietz0a96b282019-10-01 11:05:31 +0200197 }
Marc Kupietzb2b32a32020-03-24 13:56:50 +0100198 if (cache) {
199 R.cache::saveCache(result, key = list(url, kco@accessToken), dir = KorAPCacheSubDir(), compress = TRUE)
200 }
201 result
Marc Kupietzd0d3e9b2019-09-24 17:36:03 +0200202})
203
Marc Kupietz0a96b282019-10-01 11:05:31 +0200204setGeneric("clearCache", function(kco) standardGeneric("clearCache") )
205
206#' @aliases clearCache
207#' @rdname KorAPConnection-class
208#' @export
209setMethod("clearCache", "KorAPConnection", function(kco) {
210 R.cache::clearCache(dir=KorAPCacheSubDir())
211})
212
Marc Kupietze95108e2019-09-18 13:23:58 +0200213#' @rdname KorAPConnection-class
214#' @param object KorAPConnection object
215#' @export
216setMethod("show", "KorAPConnection", function(object) {
217 cat("<KorAPConnection>", "\n")
218 cat("apiUrl: ", object@apiUrl, "\n")
219})
220
Marc Kupietzd0d3e9b2019-09-24 17:36:03 +0200221##' Funtion KorAPConnection()
222##'
223##' Wrappper function for new("KorAPConnection")
224##'
225##' @rdname KorAPConnection-constructor
226##' @name KorAPConnection-constructor
227##' @export
228## XKorAPConnection <- function(...) new("KorAPConnection", ...)