blob: 0a5d8ea9e0bd10a270a3e19f4d63ccc36b787eaa [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 Kupietz4862b862019-11-07 10:13:53 +010022#' in subsequent queries, intialize 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 Kupietz5a519822019-09-20 21:43:52 +020047#' kcon <- new("KorAPConnection", verbose = TRUE)
Marc Kupietze95108e2019-09-18 13:23:58 +020048#' kq <- corpusQuery(kcon, "Ameisenplage")
Marc Kupietz5a519822019-09-20 21:43:52 +020049#' kq <- fetchAll(kq)
Marc Kupietz7915dc42019-09-12 17:44:58 +020050#'
Marc Kupietz4862b862019-11-07 10:13:53 +010051#' \dontrun{
Marc Kupietzb956b812019-11-25 17:53:13 +010052#' kcon <- new("KorAPConnection", verbose = TRUE, accessToken="e739u6eOzkwADQPdVChxFg")
Marc Kupietz4862b862019-11-07 10:13:53 +010053#' kq <- corpusQuery(kcon, "Ameisenplage", metadataOnly=FALSE)
54#' kq <- fetchAll(kq)
55#' kq@collectedMatches$snippet
56#' }
Marc Kupietz7915dc42019-09-12 17:44:58 +020057#'
Marc Kupietze95108e2019-09-18 13:23:58 +020058#' @rdname KorAPConnection-class
Marc Kupietz632cbd42019-09-06 16:04:51 +020059#' @export
Marc Kupietze95108e2019-09-18 13:23:58 +020060setMethod("initialize", "KorAPConnection",
Marc Kupietz8a82af72019-12-12 12:58:22 +010061 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 +020062 .Object <- callNextMethod()
63 m <- regexpr("https?://[^?]+", KorAPUrl, perl = TRUE)
64 .Object@KorAPUrl <- regmatches(KorAPUrl, m)
65 if (!endsWith(.Object@KorAPUrl, '/')) {
66 .Object@KorAPUrl <- paste0(.Object@KorAPUrl, "/")
67 }
68 if (missing(apiUrl)) {
69 .Object@apiUrl = paste0(.Object@KorAPUrl, 'api/', apiVersion, '/')
70 } else {
71 .Object@apiUrl = apiUrl
72 }
Marc Kupietzb956b812019-11-25 17:53:13 +010073 .Object@accessToken = accessToken
Marc Kupietze95108e2019-09-18 13:23:58 +020074 .Object@apiVersion = apiVersion
Marc Kupietzd0d3e9b2019-09-24 17:36:03 +020075 .Object@userAgent = userAgent
76 .Object@timeout = timeout
Marc Kupietz5a519822019-09-20 21:43:52 +020077 .Object@verbose = verbose
Marc Kupietz0a96b282019-10-01 11:05:31 +020078 .Object@cache = cache
Marc Kupietze95108e2019-09-18 13:23:58 +020079 .Object
80 })
81
Marc Kupietza96537f2019-11-09 23:07:44 +010082
Marc Kupietzb956b812019-11-25 17:53:13 +010083accessTokenServiceName <- "RKorAPClientAccessToken"
Marc Kupietz4862b862019-11-07 10:13:53 +010084
Marc Kupietzb956b812019-11-25 17:53:13 +010085setGeneric("persistAccessToken", function(kco, ...) standardGeneric("persistAccessToken") )
Marc Kupietz4862b862019-11-07 10:13:53 +010086
Marc Kupietzb956b812019-11-25 17:53:13 +010087#' @aliases persistAccessToken
Marc Kupietz4862b862019-11-07 10:13:53 +010088#' @rdname KorAPConnection-class
89#' @import keyring
90#' @export
91#' @examples
92#' \dontrun{
Marc Kupietzb956b812019-11-25 17:53:13 +010093#' kco <- new("KorAPConnection", accessToken="e739u6eOzkwADQPdVChxFg")
94#' persistAccessToken(kco)
Marc Kupietz4862b862019-11-07 10:13:53 +010095#' }
96#'
Marc Kupietzb956b812019-11-25 17:53:13 +010097setMethod("persistAccessToken", "KorAPConnection", function(kco, accessToken = kco@accessToken) {
98 if (is.null(accessToken))
99 stop("It seems that you have not supplied any access token that could be persisted.", call. = FALSE)
Marc Kupietz4862b862019-11-07 10:13:53 +0100100
Marc Kupietzb956b812019-11-25 17:53:13 +0100101 kco@accessToken <- accessToken
102 key_set_with_value(accessTokenServiceName, kco@KorAPUrl, accessToken)
Marc Kupietz4862b862019-11-07 10:13:53 +0100103})
104
Marc Kupietzb956b812019-11-25 17:53:13 +0100105setGeneric("clearAccessToken", function(kco) standardGeneric("clearAccessToken") )
Marc Kupietz4862b862019-11-07 10:13:53 +0100106
Marc Kupietzb956b812019-11-25 17:53:13 +0100107#' @aliases clearAccessToken
Marc Kupietz4862b862019-11-07 10:13:53 +0100108#' @rdname KorAPConnection-class
109#' @import keyring
110#' @export
111#' @examples
112#' \dontrun{
113#' kco <- new("KorAPConnection")
Marc Kupietzb956b812019-11-25 17:53:13 +0100114#' clearAccessToken(kco)
Marc Kupietz4862b862019-11-07 10:13:53 +0100115#' }
116#'
Marc Kupietzb956b812019-11-25 17:53:13 +0100117setMethod("clearAccessToken", "KorAPConnection", function(kco) {
118 key_delete(accessTokenServiceName, kco@KorAPUrl)
Marc Kupietz4862b862019-11-07 10:13:53 +0100119})
120
121#' @import keyring
Marc Kupietzb956b812019-11-25 17:53:13 +0100122getAccessToken <- function(KorAPUrl) {
Marc Kupietz59e449b2019-12-12 12:53:54 +0100123 keyList <- tryCatch(withCallingHandlers(key_list(service = accessTokenServiceName),
Marc Kupietzddce5562019-11-24 15:45:38 +0100124 warning = function(w) invokeRestart("muffleWarning"),
Marc Kupietz59e449b2019-12-12 12:53:54 +0100125 error = function(e) return(NULL)),
126 error = function(e) { })
Marc Kupietzb2870f22019-11-20 22:28:34 +0100127 if (KorAPUrl %in% keyList)
Marc Kupietzb956b812019-11-25 17:53:13 +0100128 key_get(accessTokenServiceName, KorAPUrl)
Marc Kupietzfd9e7492019-11-08 15:45:18 +0100129 else
130 NULL
Marc Kupietz4862b862019-11-07 10:13:53 +0100131}
Marc Kupietz0a96b282019-10-01 11:05:31 +0200132
133KorAPCacheSubDir <- function() {
134 paste0("RKorAPClient_", packageVersion("RKorAPClient"))
135}
136
Marc Kupietzd0d3e9b2019-09-24 17:36:03 +0200137setGeneric("apiCall", function(kco, ...) standardGeneric("apiCall") )
138
Marc Kupietz4de53ec2019-10-04 09:12:00 +0200139## quiets concerns of R CMD check re: the .'s that appear in pipelines
140if(getRversion() >= "2.15.1") utils::globalVariables(c("."))
141
Marc Kupietzd0d3e9b2019-09-24 17:36:03 +0200142#' @aliases apiCall
143#' @rdname KorAPConnection-class
144#' @param kco KorAPConnection object
145#' @param url request url
Marc Kupietz69cc54a2019-09-30 12:06:54 +0200146#' @importFrom jsonlite fromJSON
147#' @export
Marc Kupietzd0d3e9b2019-09-24 17:36:03 +0200148setMethod("apiCall", "KorAPConnection", function(kco, url) {
Marc Kupietz0a96b282019-10-01 11:05:31 +0200149 if (kco@cache) {
Marc Kupietzb956b812019-11-25 17:53:13 +0100150 parsed <- R.cache::loadCache(dir=KorAPCacheSubDir(), key=list(url, kco@accessToken))
Marc Kupietz0a96b282019-10-01 11:05:31 +0200151 if (!is.null(parsed)) {
Marc Kupietzf56e8452019-12-13 10:49:46 +0100152 if (!is.null(parsed$META))
153 parsed$meta$cached <- "local"
Marc Kupietz0a96b282019-10-01 11:05:31 +0200154 return(parsed)
155 }
156 }
Marc Kupietzb956b812019-11-25 17:53:13 +0100157 if (!is.null(kco@accessToken))
158 resp <- GET(url, user_agent(kco@userAgent), timeout(kco@timeout), add_headers(Authorization = paste("Bearer", kco@accessToken)))
Marc Kupietz4862b862019-11-07 10:13:53 +0100159 else
160 resp <- GET(url, user_agent(kco@userAgent), timeout(kco@timeout))
Marc Kupietz46a57672019-09-27 18:11:31 +0200161 if (!http_type(resp) %in% c("application/json", "application/ld+json")) {
Marc Kupietzd0d3e9b2019-09-24 17:36:03 +0200162 stop("API did not return json", call. = FALSE)
163 }
Marc Kupietzb7d8c272020-01-31 18:51:50 +0100164 parsed <- jsonlite::fromJSON(content(resp, "text", encoding = "UTF-8"))
Marc Kupietzd0d3e9b2019-09-24 17:36:03 +0200165 if (!is.null(parsed$warnings)) {
Marc Kupietza96537f2019-11-09 23:07:44 +0100166 message <- if (nrow(parsed$warnings) > 1)
167 sapply(parsed$warnings, function(warning) paste(sprintf("%s: %s", warning[1], warning[2]), sep="\n"))
168 else
169 sprintf("%s: %s", parsed$warnings[1], parsed$warnings[2])
Marc Kupietzd0d3e9b2019-09-24 17:36:03 +0200170 warning(message, call. = FALSE)
171 }
172 if (status_code(resp) != 200) {
Marc Kupietzb7d8c272020-01-31 18:51:50 +0100173 if (kco@verbose) {
174 cat("\n")
175 }
176 message <- sprintf("%s KorAP API request failed", status_code(resp))
177 if (!is.null(parsed$errors)) {
178 message <- sprintf("%s - %s %s", message, parsed$errors[1], parsed$errors[2])
179 }
Marc Kupietzd0d3e9b2019-09-24 17:36:03 +0200180 stop(message, call. = FALSE)
181 }
Marc Kupietz0a96b282019-10-01 11:05:31 +0200182 if (kco@cache) {
Marc Kupietzb956b812019-11-25 17:53:13 +0100183 R.cache::saveCache(parsed, key = list(url, kco@accessToken), dir = KorAPCacheSubDir(), compress = TRUE)
Marc Kupietz0a96b282019-10-01 11:05:31 +0200184 }
Marc Kupietzd0d3e9b2019-09-24 17:36:03 +0200185 parsed
186})
187
Marc Kupietz0a96b282019-10-01 11:05:31 +0200188setGeneric("clearCache", function(kco) standardGeneric("clearCache") )
189
190#' @aliases clearCache
191#' @rdname KorAPConnection-class
192#' @export
193setMethod("clearCache", "KorAPConnection", function(kco) {
194 R.cache::clearCache(dir=KorAPCacheSubDir())
195})
196
Marc Kupietze95108e2019-09-18 13:23:58 +0200197#' @rdname KorAPConnection-class
198#' @param object KorAPConnection object
199#' @export
200setMethod("show", "KorAPConnection", function(object) {
201 cat("<KorAPConnection>", "\n")
202 cat("apiUrl: ", object@apiUrl, "\n")
203})
204
Marc Kupietzd0d3e9b2019-09-24 17:36:03 +0200205##' Funtion KorAPConnection()
206##'
207##' Wrappper function for new("KorAPConnection")
208##'
209##' @rdname KorAPConnection-constructor
210##' @name KorAPConnection-constructor
211##' @export
212## XKorAPConnection <- function(...) new("KorAPConnection", ...)