blob: b37932de90079529ebf61dcfa53be7e9eafc929d [file] [log] [blame]
Marc Kupietze95108e2019-09-18 13:23:58 +02001#' Class KorAPQuery
2#'
3#' \code{KorAPQuery} objetcs represent the current state of a query to a KorAP server.
4#' New \code{KorAPQuery} objects are typically created by the \code{\link{corpusQuery}} method.
5#'
6#' @include KorAPConnection.R
Marc Kupietz5bbc9db2019-08-30 16:30:45 +02007#' @import jsonlite
Marc Kupietze95108e2019-09-18 13:23:58 +02008#' @import httr
9#'
10#'
Marc Kupietz5bbc9db2019-08-30 16:30:45 +020011
Marc Kupietze95108e2019-09-18 13:23:58 +020012#' @export
13KorAPQuery <- setClass("KorAPQuery", slots = c(
Marc Kupietzb8972182019-09-20 21:33:46 +020014 "korapConnection",
Marc Kupietze95108e2019-09-18 13:23:58 +020015 "request",
16 "vc",
17 "totalResults",
18 "nextStartIndex",
19 "fields",
20 "requestUrl",
21 "webUIRequestUrl",
22 "apiResponse",
23 "collectedMatches",
24 "hasMoreMatches"
25))
Marc Kupietz5bbc9db2019-08-30 16:30:45 +020026
Marc Kupietze95108e2019-09-18 13:23:58 +020027#' Method initialize
28#'
29#' @rdname KorAPQuery-class
30#' @param .Object …
Marc Kupietzb8972182019-09-20 21:33:46 +020031#' @param korapConnection KorAPConnection object
Marc Kupietze95108e2019-09-18 13:23:58 +020032#' @param request query part of the request URL
33#' @param vc definition of a virtual corpus
34#' @param totalResults number of hits the query has yielded
35#' @param nextStartIndex at what index to start the next fetch of query results
36#' @param fields what data / metadata fields should be collected
37#' @param requestUrl complete URL of the API request
38#' @param webUIRequestUrl URL of a web frontend request corresponding to the API request
39#' @param apiResponse data-frame representation of the JSON response of the API request
Marc Kupietz7776dec2019-09-27 16:59:02 +020040#' @param hasMoreMatches logical that signals if more query results can be fetched
Marc Kupietze95108e2019-09-18 13:23:58 +020041#' @param collectedMatches matches already fetched from the KorAP-API-server
42#' @export
43setMethod("initialize", "KorAPQuery",
Marc Kupietzb8972182019-09-20 21:33:46 +020044 function(.Object, korapConnection = NULL, request = NULL, vc="", totalResults=0, nextStartIndex=0, fields=c("corpusSigle", "textSigle", "pubDate", "pubPlace",
Marc Kupietze95108e2019-09-18 13:23:58 +020045 "availability", "textClass", "snippet"),
46 requestUrl="", webUIRequestUrl = "", apiResponse = NULL, hasMoreMatches= FALSE, collectedMatches = NULL) {
47 .Object <- callNextMethod()
Marc Kupietzb8972182019-09-20 21:33:46 +020048 .Object@korapConnection = korapConnection
Marc Kupietze95108e2019-09-18 13:23:58 +020049 .Object@request = request
50 .Object@vc = vc
51 .Object@totalResults = totalResults
52 .Object@nextStartIndex = nextStartIndex
53 .Object@fields = fields
54 .Object@requestUrl = requestUrl
55 .Object@webUIRequestUrl = webUIRequestUrl
56 .Object@apiResponse = apiResponse
57 .Object@hasMoreMatches = hasMoreMatches
58 .Object@collectedMatches = collectedMatches
59 .Object
60 })
Marc Kupietz632cbd42019-09-06 16:04:51 +020061
Marc Kupietze95108e2019-09-18 13:23:58 +020062setGeneric("corpusQuery", function(kco, ...) standardGeneric("corpusQuery") )
63setGeneric("fetchAll", function(kqo, ...) standardGeneric("fetchAll") )
64setGeneric("fetchNext", function(kqo, ...) standardGeneric("fetchNext") )
65setGeneric("fetchRest", function(kqo, ...) standardGeneric("fetchRest") )
66
67maxResultsPerPage <- 50
Marc Kupietz62da2b52019-09-12 17:43:34 +020068
Marc Kupietz632cbd42019-09-06 16:04:51 +020069QueryParameterFromUrl <- function(url, parameter) {
70 regex <- paste0(".*[?&]", parameter, "=([^&]*).*")
71 if (grepl(regex, url)) {
72 return(gsub(regex, '\\1', url, perl = TRUE))
73 } else {
74 return("")
75 }
Marc Kupietz5bbc9db2019-08-30 16:30:45 +020076}
77
Marc Kupietz632cbd42019-09-06 16:04:51 +020078KorAPQueryStringFromUrl <- function(KorAPUrl) {
79 return(URLdecode(gsub(".*[?&]q=([^&]*).*", '\\1', KorAPUrl, perl = TRUE)))
80}
81
Marc Kupietze95108e2019-09-18 13:23:58 +020082#' Method corpusQuery
83#'
84#' Perform a corpus query via a connection to a KorAP-API-server.
85#'
86#' @param kco \code{\link{KorAPConnection}} object (obtained e.g. from \code{new("KorAPConnection")}
Akron5e135462019-09-27 16:31:38 +020087#' @param query string that contains the corpus query. The query language depends on the \code{ql} parameter. Either \code{query} must be provided or \code{KorAPUrl}.
Marc Kupietz632cbd42019-09-06 16:04:51 +020088#' @param vc string describing the virtual corpus in which the query should be performed. An empty string (default) means the whole corpus, as far as it is license-wise accessible.
89#' @param KorAPUrl instead of providing the query and vc string parameters, you can also simply copy a KorAP query URL from your browser and use it here (and in \code{KorAPConnection}) to provide all necessary information for the query.
Marc Kupietz7776dec2019-09-27 16:59:02 +020090#' @param metadataOnly logical that determines whether queries should return only metadata without any snippets. This can also be useful to prevent access rewrites. Note that the default value is TRUE, unless the connection is authorized (currently not possible).
Marc Kupietz3c531f62019-09-13 12:17:24 +020091#' @param ql string to choose the query language (see \href{https://github.com/KorAP/Kustvakt/wiki/Service:-Search-GET#user-content-parameters}{section on Query Parameters} in the Kustvakt-Wiki for possible values.
Akron5e135462019-09-27 16:31:38 +020092#' @param fields (meta)data fields that will be fetched for every match.
93#' @param accessRewriteFatal abort if query or given vc had to be rewritten due to insufficent rights (not yet implemented).
Marc Kupietz25aebc32019-09-16 18:40:50 +020094#' @param verbose print some info
Marc Kupietze95108e2019-09-18 13:23:58 +020095#' @return A \code{\link{KorAPQuery}} object that, among other information, contains the total number of results in \code{@totalResults}. The resulting object can be used to fetch all query results (with \code{\link{fetchAll}}) or the next page of results (with \code{\link{fetchNext}}).
96#' A corresponding URL to be used within a web browser is contained in \code{@webUIRequestUrl}
Marc Kupietz62da2b52019-09-12 17:43:34 +020097#' Please make sure to check \code{$collection$rewrites} to see if any unforseen access rewrites of the query's virtual corpus had to be performed.
Marc Kupietz632cbd42019-09-06 16:04:51 +020098#'
99#' @examples
Marc Kupietz603491f2019-09-18 14:01:02 +0200100#' # Fetch metadata of every query hit for "Ameisenplage" and show a summary
Marc Kupietze95108e2019-09-18 13:23:58 +0200101#' kco <- new("KorAPConnection")
102#' kqo <- corpusQuery(kco, "Ameisenplage")
103#' kqo <- fetchAll(kqo)
104#' kqo
Marc Kupietz3c531f62019-09-13 12:17:24 +0200105#'
Marc Kupietz603491f2019-09-18 14:01:02 +0200106#' # Use the copy of a KorAP-web-frontend URL for an API query of "Ameise" in a virtual corpus
107#' # and show the number of query hits (but don't fetch them).
108#' kco <- new("KorAPConnection")
Marc Kupietze95108e2019-09-18 13:23:58 +0200109#' kqo <- corpusQuery(kco,
Marc Kupietz37b8ef12019-09-16 18:37:49 +0200110#' KorAPUrl = "https://korap.ids-mannheim.de/?q=Ameise&cq=pubDate+since+2017&ql=poliqarp")
Marc Kupietze95108e2019-09-18 13:23:58 +0200111#' kqo
Marc Kupietz3c531f62019-09-13 12:17:24 +0200112#'
Marc Kupietz603491f2019-09-18 14:01:02 +0200113#' # Plot the time/frequency curve of "Ameisenplage"
114#' kco <- new("KorAPConnection")
Marc Kupietze95108e2019-09-18 13:23:58 +0200115#' q <- corpusQuery(kco, "Ameisenplage")
116#' q <- fetchAll(q, verbose=TRUE)
117#' tokensPerYear <- function(year) { return(corpusStats(kco, paste("pubDate in", year))@tokens) }
118#' df <- as.data.frame(table(as.numeric(format(q@collectedMatches$pubDate,"%Y")), dnn="year"),
Marc Kupietz37b8ef12019-09-16 18:37:49 +0200119#' stringsAsFactors = FALSE)
120#' df$ipm <- 1000000 * df$Freq / tokensPerYear(df$year)
121#' plot(df$year, df$ipm, type="l")
122#'
Marc Kupietze95108e2019-09-18 13:23:58 +0200123#' @seealso \code{\link{KorAPConnection}}, \code{\link{fetchNext}}, \code{\link{fetchRest}}, \code{\link{fetchAll}}, \code{\link{corpusStats}}
Marc Kupietz632cbd42019-09-06 16:04:51 +0200124#'
125#' @references
126#' \url{https://ids-pub.bsz-bw.de/frontdoor/index/index/docId/9026}
127#'
Marc Kupietze95108e2019-09-18 13:23:58 +0200128#' @aliases corpusQuery
Marc Kupietz632cbd42019-09-06 16:04:51 +0200129#' @export
Marc Kupietze95108e2019-09-18 13:23:58 +0200130setMethod("corpusQuery", "KorAPConnection",
131 function(kco, query, vc="", KorAPUrl, metadataOnly = TRUE, ql = "poliqarp", fields = defaultFields,
Marc Kupietz5a519822019-09-20 21:43:52 +0200132 accessRewriteFatal = TRUE, verbose = kco@verbose) {
Marc Kupietze95108e2019-09-18 13:23:58 +0200133 defaultFields <- c("corpusSigle", "textSigle", "pubDate", "pubPlace",
134 "availability", "textClass", "snippet")
135 contentFields <- c("snippet")
Marc Kupietz36d12d92019-09-27 18:13:27 +0200136 fields <- fields[!fields %in% contentFields]
Marc Kupietze95108e2019-09-18 13:23:58 +0200137
138 if (missing(query) && missing(KorAPUrl) || ! (missing(query) || missing(KorAPUrl))) {
139 stop("Exactly one of the parameters query and KorAPUrl must be specified.")
140 }
141 if (missing(query)) {
142 query <- QueryParameterFromUrl(KorAPUrl, "q")
143 vc <- QueryParameterFromUrl(KorAPUrl, "vc")
144 ql <- QueryParameterFromUrl(KorAPUrl, "ql")
145 }
146 request <- paste0('?q=', URLencode(query, reserved=TRUE),
147 ifelse(vc != '', paste0('&cq=', URLencode(vc, reserved=TRUE)), ''), '&ql=', ql)
148 webUIRequestUrl <- paste0(kco@KorAPUrl, request)
149 requestUrl <- paste0(kco@apiUrl, 'search', request,
Marc Kupietz36d12d92019-09-27 18:13:27 +0200150 '&fields=', paste(fields, collapse = ","),
Marc Kupietze95108e2019-09-18 13:23:58 +0200151 ifelse(metadataOnly, '&access-rewrite-disabled=true', ''))
152 if (verbose) {
Marc Kupietz56456c62019-09-18 21:45:14 +0200153 cat("Searching \"", query, "\" in \"", vc, "\"", sep="")
Marc Kupietze95108e2019-09-18 13:23:58 +0200154 }
Marc Kupietzdb9ab042019-09-26 12:26:36 +0200155 res = apiCall(kco, paste0(requestUrl, '&count=0'))
Marc Kupietz56456c62019-09-18 21:45:14 +0200156 if (verbose) {
157 cat(" took ", res$meta$benchmark, "\n", sep="")
158 }
Marc Kupietze95108e2019-09-18 13:23:58 +0200159 KorAPQuery(
Marc Kupietzb8972182019-09-20 21:33:46 +0200160 korapConnection = kco,
Marc Kupietze95108e2019-09-18 13:23:58 +0200161 nextStartIndex = 0,
Marc Kupietz36d12d92019-09-27 18:13:27 +0200162 fields = fields,
Marc Kupietze95108e2019-09-18 13:23:58 +0200163 requestUrl = requestUrl,
164 request = request,
165 totalResults = res$meta$totalResults,
166 vc = vc,
167 apiResponse = res,
168 webUIRequestUrl = webUIRequestUrl,
169 hasMoreMatches = (res$meta$totalResults > 0),
170 )
171 })
Marc Kupietz5bbc9db2019-08-30 16:30:45 +0200172
Marc Kupietz62da2b52019-09-12 17:43:34 +0200173#' Fetch the next bunch of results of a KorAP query.
Marc Kupietze95108e2019-09-18 13:23:58 +0200174#'
175#' @param kqo object obtained from \code{\link{corpusQuery}}
Marc Kupietz62da2b52019-09-12 17:43:34 +0200176#' @param offset start offset for query results to fetch
177#' @param maxFetch maximum number of query results to fetch
Marc Kupietz25aebc32019-09-16 18:40:50 +0200178#' @param verbose print progress information if true
Marc Kupietze95108e2019-09-18 13:23:58 +0200179#' @return The \code{kqo} input object with updated slots \code{collectedMatches}, \code{apiResponse}, \code{nextStartIndex}, \code{hasMoreMatches}
Marc Kupietz62da2b52019-09-12 17:43:34 +0200180#'
181#' @references
182#' \url{https://ids-pub.bsz-bw.de/frontdoor/index/index/docId/9026}
183#'
Marc Kupietze95108e2019-09-18 13:23:58 +0200184#' @aliases fetchNext
185#' @rdname KorAPQuery-class
Marc Kupietz632cbd42019-09-06 16:04:51 +0200186#' @export
Marc Kupietzf6f71312019-09-23 18:35:27 +0200187setMethod("fetchNext", "KorAPQuery", function(kqo, offset = kqo@nextStartIndex, maxFetch = maxResultsPerPage, verbose = kqo@korapConnection@verbose) {
Marc Kupietze95108e2019-09-18 13:23:58 +0200188 if (kqo@totalResults == 0 || offset >= kqo@totalResults) {
189 return(kqo)
Marc Kupietz62da2b52019-09-12 17:43:34 +0200190 }
Marc Kupietz5bbc9db2019-08-30 16:30:45 +0200191
192 page <- 1
193 results <- 0
Marc Kupietz25aebc32019-09-16 18:40:50 +0200194 pubDate <- NULL # https://stackoverflow.com/questions/8096313/no-visible-binding-for-global-variable-note-in-r-cmd-check
Marc Kupietze95108e2019-09-18 13:23:58 +0200195 collectedMatches <- kqo@collectedMatches
Marc Kupietz62da2b52019-09-12 17:43:34 +0200196
Marc Kupietz5bbc9db2019-08-30 16:30:45 +0200197 repeat {
Marc Kupietzd0d3e9b2019-09-24 17:36:03 +0200198 res <- apiCall(kqo@korapConnection, paste0(kqo@requestUrl, '&count=', min(ifelse(!is.na(maxFetch), maxFetch - results, maxResultsPerPage), maxResultsPerPage) ,'&offset=', offset + results))
Marc Kupietze95108e2019-09-18 13:23:58 +0200199 if (res$meta$totalResults == 0) { return(kqo) }
200 for (field in kqo@fields) {
Marc Kupietz5bbc9db2019-08-30 16:30:45 +0200201 if (!field %in% colnames(res$matches)) {
202 res$matches[, field] <- NA
203 }
204 }
Marc Kupietze95108e2019-09-18 13:23:58 +0200205 currentMatches <- res$matches[kqo@fields]
Marc Kupietz36d12d92019-09-27 18:13:27 +0200206 if ("pubDate" %in% kqo@fields) {
207 currentMatches$pubDate = as.Date(currentMatches$pubDate, format = "%Y-%m-%d")
208 factorCols <- colnames(subset(currentMatches, select=-c(pubDate)))
209 } else {
210 factorCols <- colnames(currentMatches)
211 }
Marc Kupietz5bbc9db2019-08-30 16:30:45 +0200212 currentMatches[factorCols] <- lapply(currentMatches[factorCols], factor)
Marc Kupietz62da2b52019-09-12 17:43:34 +0200213 if (!is.list(collectedMatches)) {
214 collectedMatches <- currentMatches
Marc Kupietz5bbc9db2019-08-30 16:30:45 +0200215 } else {
Marc Kupietz62da2b52019-09-12 17:43:34 +0200216 collectedMatches <- rbind(collectedMatches, currentMatches)
Marc Kupietz5bbc9db2019-08-30 16:30:45 +0200217 }
Marc Kupietzc2c59bd2019-08-30 16:50:49 +0200218 if (verbose) {
Marc Kupietzf6f71312019-09-23 18:35:27 +0200219 cat(paste0("Retrieved page ", page, "/", ceiling((res$meta$totalResults) / res$meta$itemsPerPage), ' in ', res$meta$benchmark, '\n'))
Marc Kupietzc2c59bd2019-08-30 16:50:49 +0200220 }
Marc Kupietz5bbc9db2019-08-30 16:30:45 +0200221 page <- page + 1
222 results <- results + res$meta$itemsPerPage
Marc Kupietz62da2b52019-09-12 17:43:34 +0200223 if (offset + results >= res$meta$totalResults || (!is.na(maxFetch) && results >= maxFetch)) {
Marc Kupietz5bbc9db2019-08-30 16:30:45 +0200224 break
225 }
226 }
Marc Kupietze95108e2019-09-18 13:23:58 +0200227 nextStartIndex <- min(res$meta$startIndex + res$meta$itemsPerPage, res$meta$totalResults)
228 KorAPQuery(nextStartIndex = nextStartIndex,
Marc Kupietzd0d3e9b2019-09-24 17:36:03 +0200229 korapConnection = kqo@korapConnection,
Marc Kupietze95108e2019-09-18 13:23:58 +0200230 fields = kqo@fields,
231 requestUrl = kqo@requestUrl,
232 request = kqo@request,
233 totalResults = res$meta$totalResults,
234 vc = kqo@vc,
235 webUIRequestUrl = kqo@webUIRequestUrl,
236 hasMoreMatches = (res$meta$totalResults > nextStartIndex),
237 apiResponse = res,
238 collectedMatches = collectedMatches)
239})
Marc Kupietz62da2b52019-09-12 17:43:34 +0200240
241#' Fetch all results of a KorAP query.
Marc Kupietz62da2b52019-09-12 17:43:34 +0200242#'
243#' @examples
Marc Kupietze95108e2019-09-18 13:23:58 +0200244#' q <- fetchAll(corpusQuery(new("KorAPConnection"), "Ameisenplage"))
245#' q@collectedMatches
Marc Kupietz62da2b52019-09-12 17:43:34 +0200246#'
Marc Kupietze95108e2019-09-18 13:23:58 +0200247#' @aliases fetchAll
248#' @rdname KorAPQuery-class
Marc Kupietz62da2b52019-09-12 17:43:34 +0200249#' @export
Marc Kupietzf6f71312019-09-23 18:35:27 +0200250setMethod("fetchAll", "KorAPQuery", function(kqo, verbose = kqo@korapConnection@verbose) {
Marc Kupietze95108e2019-09-18 13:23:58 +0200251 return(fetchNext(kqo, offset = 0, maxFetch = NA, verbose = verbose))
252})
253
254#' Fetches the remaining results of a KorAP query.
255#'
256#' @examples
257#' q <- fetchRest(fetchNext(corpusQuery(new("KorAPConnection"), "Ameisenplage")))
258#' q@collectedMatches
259#'
260#' @aliases fetchRest
261#' @rdname KorAPQuery-class
262#' @export
Marc Kupietzf6f71312019-09-23 18:35:27 +0200263setMethod("fetchRest", "KorAPQuery", function(kqo, verbose = kqo@korapConnection@verbose) {
Marc Kupietze95108e2019-09-18 13:23:58 +0200264 return(fetchNext(kqo, maxFetch = NA, verbose = verbose))
265})
266
267#´ format()
268#' @rdname KorAPQuery-class
269#' @param x KorAPQuery object
270#' @param ... further arguments passed to or from other methods
271#' @export
272format.KorAPQuery <- function(x, ...) {
273 cat("<KorAPQuery>\n")
274 q <- x
275 aurl = parse_url(q@request)
276 cat(" Query: ", aurl$query$q, "\n")
277 if (!is.null(aurl$query$vc) && aurl$query$vc != "") {
278 cat("Virtual corpus: ", aurl$query$vc, "\n")
279 }
280 if (!is.null(q@collectedMatches)) {
281 cat("==============================================================================================================", "\n")
282 print(summary(q@collectedMatches))
283 cat("==============================================================================================================", "\n")
284 }
285 cat(" Total results: ", q@totalResults, "\n")
286 cat(" Fetched results: ", q@nextStartIndex, "\n")
Marc Kupietz62da2b52019-09-12 17:43:34 +0200287}
288
Marc Kupietze95108e2019-09-18 13:23:58 +0200289#' show()
Marc Kupietz62da2b52019-09-12 17:43:34 +0200290#'
Marc Kupietze95108e2019-09-18 13:23:58 +0200291#' @rdname KorAPQuery-class
292#' @param object KorAPQuery object
Marc Kupietz62da2b52019-09-12 17:43:34 +0200293#' @export
Marc Kupietze95108e2019-09-18 13:23:58 +0200294setMethod("show", "KorAPQuery", function(object) {
295 format(object)
296})