blob: 24a03cb5222bd07879ec76cec01e44001bbaf775 [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
40#' @param hasMoreMatches boolean that signals if more query results can be fetched
41#' @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")}
Marc Kupietz632cbd42019-09-06 16:04:51 +020087#' @param query string that contains the corpus query. The query langauge depends on the \code{ql} parameter. Either \code{query} must be provided or \code{KorAPUrl}
88#' @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 Kupietzb125bdd2019-09-09 12:05:59 +020090#' @param metadataOnly boolean 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.
Marc Kupietzb125bdd2019-09-09 12:05:59 +020092#' @param fields (meta)data fields that will be fetched for every match
Marc Kupietz25aebc32019-09-16 18:40:50 +020093#' @param accessRewriteFatal abort if query or given vc had to be rewritten due to insufficent rights (not yet implemented)
94#' @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")
136
137 if (missing(query) && missing(KorAPUrl) || ! (missing(query) || missing(KorAPUrl))) {
138 stop("Exactly one of the parameters query and KorAPUrl must be specified.")
139 }
140 if (missing(query)) {
141 query <- QueryParameterFromUrl(KorAPUrl, "q")
142 vc <- QueryParameterFromUrl(KorAPUrl, "vc")
143 ql <- QueryParameterFromUrl(KorAPUrl, "ql")
144 }
145 request <- paste0('?q=', URLencode(query, reserved=TRUE),
146 ifelse(vc != '', paste0('&cq=', URLencode(vc, reserved=TRUE)), ''), '&ql=', ql)
147 webUIRequestUrl <- paste0(kco@KorAPUrl, request)
148 requestUrl <- paste0(kco@apiUrl, 'search', request,
149 '&fields=', paste(defaultFields, collapse = ","),
150 ifelse(metadataOnly, '&access-rewrite-disabled=true', ''))
151 if (verbose) {
Marc Kupietz56456c62019-09-18 21:45:14 +0200152 cat("Searching \"", query, "\" in \"", vc, "\"", sep="")
Marc Kupietze95108e2019-09-18 13:23:58 +0200153 }
154 res = fromJSON(paste0(requestUrl, '&count=1'))
Marc Kupietz56456c62019-09-18 21:45:14 +0200155 if (verbose) {
156 cat(" took ", res$meta$benchmark, "\n", sep="")
157 }
Marc Kupietze95108e2019-09-18 13:23:58 +0200158 KorAPQuery(
Marc Kupietzb8972182019-09-20 21:33:46 +0200159 korapConnection = kco,
Marc Kupietze95108e2019-09-18 13:23:58 +0200160 nextStartIndex = 0,
161 fields = fields[!fields %in% contentFields],
162 requestUrl = requestUrl,
163 request = request,
164 totalResults = res$meta$totalResults,
165 vc = vc,
166 apiResponse = res,
167 webUIRequestUrl = webUIRequestUrl,
168 hasMoreMatches = (res$meta$totalResults > 0),
169 )
170 })
Marc Kupietz5bbc9db2019-08-30 16:30:45 +0200171
Marc Kupietz62da2b52019-09-12 17:43:34 +0200172#' Fetch the next bunch of results of a KorAP query.
Marc Kupietze95108e2019-09-18 13:23:58 +0200173#'
174#' @param kqo object obtained from \code{\link{corpusQuery}}
Marc Kupietz62da2b52019-09-12 17:43:34 +0200175#' @param offset start offset for query results to fetch
176#' @param maxFetch maximum number of query results to fetch
Marc Kupietz25aebc32019-09-16 18:40:50 +0200177#' @param verbose print progress information if true
Marc Kupietze95108e2019-09-18 13:23:58 +0200178#' @return The \code{kqo} input object with updated slots \code{collectedMatches}, \code{apiResponse}, \code{nextStartIndex}, \code{hasMoreMatches}
Marc Kupietz62da2b52019-09-12 17:43:34 +0200179#'
180#' @references
181#' \url{https://ids-pub.bsz-bw.de/frontdoor/index/index/docId/9026}
182#'
Marc Kupietze95108e2019-09-18 13:23:58 +0200183#' @aliases fetchNext
184#' @rdname KorAPQuery-class
Marc Kupietz632cbd42019-09-06 16:04:51 +0200185#' @export
Marc Kupietzf6f71312019-09-23 18:35:27 +0200186setMethod("fetchNext", "KorAPQuery", function(kqo, offset = kqo@nextStartIndex, maxFetch = maxResultsPerPage, verbose = kqo@korapConnection@verbose) {
Marc Kupietze95108e2019-09-18 13:23:58 +0200187 if (kqo@totalResults == 0 || offset >= kqo@totalResults) {
188 return(kqo)
Marc Kupietz62da2b52019-09-12 17:43:34 +0200189 }
Marc Kupietz5bbc9db2019-08-30 16:30:45 +0200190
191 page <- 1
192 results <- 0
Marc Kupietz25aebc32019-09-16 18:40:50 +0200193 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 +0200194 collectedMatches <- kqo@collectedMatches
Marc Kupietz62da2b52019-09-12 17:43:34 +0200195
Marc Kupietz5bbc9db2019-08-30 16:30:45 +0200196 repeat {
Marc Kupietze95108e2019-09-18 13:23:58 +0200197 res <- fromJSON(paste0(kqo@requestUrl, '&count=', min(ifelse(!is.na(maxFetch), maxFetch - results, maxResultsPerPage), maxResultsPerPage) ,'&offset=', offset + results))
198 if (res$meta$totalResults == 0) { return(kqo) }
199 for (field in kqo@fields) {
Marc Kupietz5bbc9db2019-08-30 16:30:45 +0200200 if (!field %in% colnames(res$matches)) {
201 res$matches[, field] <- NA
202 }
203 }
Marc Kupietze95108e2019-09-18 13:23:58 +0200204 currentMatches <- res$matches[kqo@fields]
Marc Kupietz5bbc9db2019-08-30 16:30:45 +0200205 factorCols <- colnames(subset(currentMatches, select=-c(pubDate)))
206 currentMatches[factorCols] <- lapply(currentMatches[factorCols], factor)
207 currentMatches$pubDate = as.Date(currentMatches$pubDate, format = "%Y-%m-%d")
Marc Kupietz62da2b52019-09-12 17:43:34 +0200208 if (!is.list(collectedMatches)) {
209 collectedMatches <- currentMatches
Marc Kupietz5bbc9db2019-08-30 16:30:45 +0200210 } else {
Marc Kupietz62da2b52019-09-12 17:43:34 +0200211 collectedMatches <- rbind(collectedMatches, currentMatches)
Marc Kupietz5bbc9db2019-08-30 16:30:45 +0200212 }
Marc Kupietzc2c59bd2019-08-30 16:50:49 +0200213 if (verbose) {
Marc Kupietzf6f71312019-09-23 18:35:27 +0200214 cat(paste0("Retrieved page ", page, "/", ceiling((res$meta$totalResults) / res$meta$itemsPerPage), ' in ', res$meta$benchmark, '\n'))
Marc Kupietzc2c59bd2019-08-30 16:50:49 +0200215 }
Marc Kupietz5bbc9db2019-08-30 16:30:45 +0200216 page <- page + 1
217 results <- results + res$meta$itemsPerPage
Marc Kupietz62da2b52019-09-12 17:43:34 +0200218 if (offset + results >= res$meta$totalResults || (!is.na(maxFetch) && results >= maxFetch)) {
Marc Kupietz5bbc9db2019-08-30 16:30:45 +0200219 break
220 }
221 }
Marc Kupietze95108e2019-09-18 13:23:58 +0200222 nextStartIndex <- min(res$meta$startIndex + res$meta$itemsPerPage, res$meta$totalResults)
223 KorAPQuery(nextStartIndex = nextStartIndex,
Marc Kupietzb8972182019-09-20 21:33:46 +0200224 korapConnection = kco,
Marc Kupietze95108e2019-09-18 13:23:58 +0200225 fields = kqo@fields,
226 requestUrl = kqo@requestUrl,
227 request = kqo@request,
228 totalResults = res$meta$totalResults,
229 vc = kqo@vc,
230 webUIRequestUrl = kqo@webUIRequestUrl,
231 hasMoreMatches = (res$meta$totalResults > nextStartIndex),
232 apiResponse = res,
233 collectedMatches = collectedMatches)
234})
Marc Kupietz62da2b52019-09-12 17:43:34 +0200235
236#' Fetch all results of a KorAP query.
Marc Kupietz62da2b52019-09-12 17:43:34 +0200237#'
238#' @examples
Marc Kupietze95108e2019-09-18 13:23:58 +0200239#' q <- fetchAll(corpusQuery(new("KorAPConnection"), "Ameisenplage"))
240#' q@collectedMatches
Marc Kupietz62da2b52019-09-12 17:43:34 +0200241#'
Marc Kupietze95108e2019-09-18 13:23:58 +0200242#' @aliases fetchAll
243#' @rdname KorAPQuery-class
Marc Kupietz62da2b52019-09-12 17:43:34 +0200244#' @export
Marc Kupietzf6f71312019-09-23 18:35:27 +0200245setMethod("fetchAll", "KorAPQuery", function(kqo, verbose = kqo@korapConnection@verbose) {
Marc Kupietze95108e2019-09-18 13:23:58 +0200246 return(fetchNext(kqo, offset = 0, maxFetch = NA, verbose = verbose))
247})
248
249#' Fetches the remaining results of a KorAP query.
250#'
251#' @examples
252#' q <- fetchRest(fetchNext(corpusQuery(new("KorAPConnection"), "Ameisenplage")))
253#' q@collectedMatches
254#'
255#' @aliases fetchRest
256#' @rdname KorAPQuery-class
257#' @export
Marc Kupietzf6f71312019-09-23 18:35:27 +0200258setMethod("fetchRest", "KorAPQuery", function(kqo, verbose = kqo@korapConnection@verbose) {
Marc Kupietze95108e2019-09-18 13:23:58 +0200259 return(fetchNext(kqo, maxFetch = NA, verbose = verbose))
260})
261
262#´ format()
263#' @rdname KorAPQuery-class
264#' @param x KorAPQuery object
265#' @param ... further arguments passed to or from other methods
266#' @export
267format.KorAPQuery <- function(x, ...) {
268 cat("<KorAPQuery>\n")
269 q <- x
270 aurl = parse_url(q@request)
271 cat(" Query: ", aurl$query$q, "\n")
272 if (!is.null(aurl$query$vc) && aurl$query$vc != "") {
273 cat("Virtual corpus: ", aurl$query$vc, "\n")
274 }
275 if (!is.null(q@collectedMatches)) {
276 cat("==============================================================================================================", "\n")
277 print(summary(q@collectedMatches))
278 cat("==============================================================================================================", "\n")
279 }
280 cat(" Total results: ", q@totalResults, "\n")
281 cat(" Fetched results: ", q@nextStartIndex, "\n")
Marc Kupietz62da2b52019-09-12 17:43:34 +0200282}
283
Marc Kupietze95108e2019-09-18 13:23:58 +0200284#' show()
Marc Kupietz62da2b52019-09-12 17:43:34 +0200285#'
Marc Kupietze95108e2019-09-18 13:23:58 +0200286#' @rdname KorAPQuery-class
287#' @param object KorAPQuery object
Marc Kupietz62da2b52019-09-12 17:43:34 +0200288#' @export
Marc Kupietze95108e2019-09-18 13:23:58 +0200289setMethod("show", "KorAPQuery", function(object) {
290 format(object)
291})