blob: c1c29d90a894a683c536412caafc5de3fc1f80e3 [file] [log] [blame]
Marc Kupietze95108e2019-09-18 13:23:58 +02001#' Class KorAPQuery
2#'
Marc Kupietza6e4ee62021-03-05 09:00:15 +01003#' This class provides methods to perform different kinds of queries on the KorAP API server.
Marc Kupietz67edcb52021-09-20 21:54:24 +02004#' `KorAPQuery` objects, which are typically created by the [corpusQuery()] method,
Marc Kupietza6e4ee62021-03-05 09:00:15 +01005#' represent the current state of a query to a KorAP server.
Marc Kupietze95108e2019-09-18 13:23:58 +02006#'
7#' @include KorAPConnection.R
Marc Kupietze95108e2019-09-18 13:23:58 +02008#' @import httr
9#'
Marc Kupietza6e4ee62021-03-05 09:00:15 +010010#' @include RKorAPClient-package.R
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
Marc Kupietz97a1bca2019-10-04 22:52:09 +020042#'
43#' @importFrom tibble tibble
Marc Kupietze95108e2019-09-18 13:23:58 +020044#' @export
45setMethod("initialize", "KorAPQuery",
Marc Kupietzb8972182019-09-20 21:33:46 +020046 function(.Object, korapConnection = NULL, request = NULL, vc="", totalResults=0, nextStartIndex=0, fields=c("corpusSigle", "textSigle", "pubDate", "pubPlace",
Marc Kupietz2078bde2023-08-27 16:46:15 +020047 "availability", "textClass", "snippet", "tokens"),
Marc Kupietze95108e2019-09-18 13:23:58 +020048 requestUrl="", webUIRequestUrl = "", apiResponse = NULL, hasMoreMatches= FALSE, collectedMatches = NULL) {
49 .Object <- callNextMethod()
Marc Kupietzb8972182019-09-20 21:33:46 +020050 .Object@korapConnection = korapConnection
Marc Kupietze95108e2019-09-18 13:23:58 +020051 .Object@request = request
52 .Object@vc = vc
53 .Object@totalResults = totalResults
54 .Object@nextStartIndex = nextStartIndex
55 .Object@fields = fields
56 .Object@requestUrl = requestUrl
57 .Object@webUIRequestUrl = webUIRequestUrl
58 .Object@apiResponse = apiResponse
59 .Object@hasMoreMatches = hasMoreMatches
60 .Object@collectedMatches = collectedMatches
61 .Object
62 })
Marc Kupietz632cbd42019-09-06 16:04:51 +020063
Marc Kupietze95108e2019-09-18 13:23:58 +020064setGeneric("corpusQuery", function(kco, ...) standardGeneric("corpusQuery") )
65setGeneric("fetchAll", function(kqo, ...) standardGeneric("fetchAll") )
66setGeneric("fetchNext", function(kqo, ...) standardGeneric("fetchNext") )
67setGeneric("fetchRest", function(kqo, ...) standardGeneric("fetchRest") )
Marc Kupietz3f575282019-10-04 14:46:04 +020068setGeneric("frequencyQuery", function(kco, ...) standardGeneric("frequencyQuery") )
Marc Kupietze95108e2019-09-18 13:23:58 +020069
70maxResultsPerPage <- 50
Marc Kupietz62da2b52019-09-12 17:43:34 +020071
Marc Kupietz4de53ec2019-10-04 09:12:00 +020072## quiets concerns of R CMD check re: the .'s that appear in pipelines
73if(getRversion() >= "2.15.1") utils::globalVariables(c("."))
Marc Kupietz632cbd42019-09-06 16:04:51 +020074
Marc Kupietzdbd431a2021-08-29 12:17:45 +020075#' Corpus query
76#'
Marc Kupietz67edcb52021-09-20 21:54:24 +020077#' **`corpusQuery`** performs a corpus query via a connection to a KorAP-API-server
Marc Kupietze95108e2019-09-18 13:23:58 +020078#'
Marc Kupietzdbd431a2021-08-29 12:17:45 +020079#' @rdname KorAPQuery-class
80#' @aliases corpusQuery
81#'
82#' @importFrom urltools url_encode
83#' @importFrom purrr pmap
84#' @importFrom dplyr bind_rows
85#'
Marc Kupietz67edcb52021-09-20 21:54:24 +020086#' @param kco [KorAPConnection()] object (obtained e.g. from `new("KorAPConnection")`
87#' @param query string that contains the corpus query. The query language depends on the `ql` parameter. Either `query` must be provided or `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.
Marc Kupietz67edcb52021-09-20 21:54:24 +020089#' @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 `KorAPConnection`) to provide all necessary information for the query.
Marc Kupietz132f0052023-04-16 14:23:05 +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.
91#' If you want your corpus queries to return not only metadata, but also KWICS, you need to authorize
92#' your RKorAPClient application as explained in the
93#' [authorization section](https://github.com/KorAP/RKorAPClient#authorization)
94#' of the RKorAPClient Readme on GitHub and set the `metadataOnly` parameter to
95#' `FALSE`.
Marc Kupietz67edcb52021-09-20 21:54:24 +020096#' @param ql string to choose the query language (see [section on Query Parameters](https://github.com/KorAP/Kustvakt/wiki/Service:-Search-GET#user-content-parameters) in the Kustvakt-Wiki for possible values.
Akron5e135462019-09-27 16:31:38 +020097#' @param fields (meta)data fields that will be fetched for every match.
Marc Kupietz43a6ade2020-02-18 17:01:44 +010098#' @param accessRewriteFatal abort if query or given vc had to be rewritten due to insufficient rights (not yet implemented).
Marc Kupietz25aebc32019-09-16 18:40:50 +020099#' @param verbose print some info
Marc Kupietz4de53ec2019-10-04 09:12:00 +0200100#' @param as.df return result as data frame instead of as S4 object?
Marc Kupietz67edcb52021-09-20 21:54:24 +0200101#' @param expand logical that decides if `query` and `vc` parameters are expanded to all of their combinations
Marc Kupietzd9b2fd72023-04-17 19:08:50 +0200102#' @param context string that specifies the size of the left and the right context returned in `snippet`
103#' (provided that `metadataOnly` is set to `false` and that the necessary access right are met).
104#' The format of the context size specifcation (e.g. `3-token,3-token`) is described in the [Service: Search GET documentation of the Kustvakt Wiki](https://github.com/KorAP/Kustvakt/wiki/Service:-Search-GET).
105#' If the parameter is not set, the default context size secification of the KorAP server instance will be used.
106#' Note that you cannot overrule the maximum context size set in the KorAP server instance,
107#' as this is typically legally motivated.
Marc Kupietz67edcb52021-09-20 21:54:24 +0200108#' @return Depending on the `as.df` parameter, a table or a [KorAPQuery()] object that, among other information, contains the total number of results in `@totalResults`. The resulting object can be used to fetch all query results (with [fetchAll()]) or the next page of results (with [fetchNext()]).
109#' A corresponding URL to be used within a web browser is contained in `@webUIRequestUrl`
110#' Please make sure to check `$collection$rewrites` to see if any unforeseen access rewrites of the query's virtual corpus had to be performed.
Marc Kupietz632cbd42019-09-06 16:04:51 +0200111#'
112#' @examples
Marc Kupietz6ae76052021-09-21 10:34:00 +0200113#' \dontrun{
114#'
Marc Kupietz603491f2019-09-18 14:01:02 +0200115#' # Fetch metadata of every query hit for "Ameisenplage" and show a summary
Marc Kupietz69cc54a2019-09-30 12:06:54 +0200116#' new("KorAPConnection") %>% corpusQuery("Ameisenplage") %>% fetchAll()
Marc Kupietz657d8e72020-02-25 18:31:50 +0100117#' }
Marc Kupietz3c531f62019-09-13 12:17:24 +0200118#'
Marc Kupietz6ae76052021-09-21 10:34:00 +0200119#' \dontrun{
120#'
Marc Kupietz603491f2019-09-18 14:01:02 +0200121#' # Use the copy of a KorAP-web-frontend URL for an API query of "Ameise" in a virtual corpus
122#' # and show the number of query hits (but don't fetch them).
Marc Kupietz69cc54a2019-09-30 12:06:54 +0200123#'
124#' new("KorAPConnection", verbose = TRUE) %>%
125#' corpusQuery(KorAPUrl =
126#' "https://korap.ids-mannheim.de/?q=Ameise&cq=pubDate+since+2017&ql=poliqarp")
Marc Kupietz6ae76052021-09-21 10:34:00 +0200127#' }
128#'
129#' \dontrun{
Marc Kupietz3c531f62019-09-13 12:17:24 +0200130#'
Marc Kupietz603491f2019-09-18 14:01:02 +0200131#' # Plot the time/frequency curve of "Ameisenplage"
Marc Kupietz69cc54a2019-09-30 12:06:54 +0200132#' new("KorAPConnection", verbose=TRUE) %>%
133#' { . ->> kco } %>%
134#' corpusQuery("Ameisenplage") %>%
135#' fetchAll() %>%
136#' slot("collectedMatches") %>%
137#' mutate(year = lubridate::year(pubDate)) %>%
Marc Kupietz19e2ebd2019-10-07 11:45:30 +0200138#' dplyr::select(year) %>%
Marc Kupietz69cc54a2019-09-30 12:06:54 +0200139#' group_by(year) %>%
Marc Kupietzcb3c59e2020-06-02 10:10:43 +0200140#' summarise(Count = dplyr::n()) %>%
Marc Kupietz69cc54a2019-09-30 12:06:54 +0200141#' mutate(Freq = mapply(function(f, y)
142#' f / corpusStats(kco, paste("pubDate in", y))@tokens, Count, year)) %>%
Marc Kupietz19e2ebd2019-10-07 11:45:30 +0200143#' dplyr::select(-Count) %>%
Marc Kupietz69cc54a2019-09-30 12:06:54 +0200144#' complete(year = min(year):max(year), fill = list(Freq = 0)) %>%
145#' plot(type = "l")
Marc Kupietz05b22772020-02-18 21:58:42 +0100146#' }
Marc Kupietz67edcb52021-09-20 21:54:24 +0200147#' @seealso [KorAPConnection()], [fetchNext()], [fetchRest()], [fetchAll()], [corpusStats()]
Marc Kupietz632cbd42019-09-06 16:04:51 +0200148#'
149#' @references
Marc Kupietz67edcb52021-09-20 21:54:24 +0200150#' <https://ids-pub.bsz-bw.de/frontdoor/index/index/docId/9026>
Marc Kupietz632cbd42019-09-06 16:04:51 +0200151#'
152#' @export
Marc Kupietze95108e2019-09-18 13:23:58 +0200153setMethod("corpusQuery", "KorAPConnection",
Marc Kupietza96537f2019-11-09 23:07:44 +0100154 function(kco,
155 query = if (missing(KorAPUrl))
156 stop("At least one of the parameters query and KorAPUrl must be specified.", call. = FALSE)
157 else
158 httr::parse_url(KorAPUrl)$query$q,
159 vc = if (missing(KorAPUrl)) "" else httr::parse_url(KorAPUrl)$query$cq,
160 KorAPUrl,
161 metadataOnly = TRUE,
162 ql = if (missing(KorAPUrl)) "poliqarp" else httr::parse_url(KorAPUrl)$query$ql,
163 fields = c(
164 "corpusSigle",
165 "textSigle",
166 "pubDate",
167 "pubPlace",
168 "availability",
169 "textClass",
Marc Kupietz2078bde2023-08-27 16:46:15 +0200170 "snippet",
171 "tokens"
Marc Kupietza96537f2019-11-09 23:07:44 +0100172 ),
173 accessRewriteFatal = TRUE,
174 verbose = kco@verbose,
175 expand = length(vc) != length(query),
Marc Kupietzd9b2fd72023-04-17 19:08:50 +0200176 as.df = FALSE,
177 context = NULL) {
Marc Kupietza96537f2019-11-09 23:07:44 +0100178 if (length(query) > 1 || length(vc) > 1) {
Marc Kupietzdbd431a2021-08-29 12:17:45 +0200179 grid <- if (expand) expand_grid(query=query, vc=vc) else tibble(query=query, vc=vc)
180 purrr::pmap(grid, function(query, vc, ...)
181 corpusQuery(kco, query=query, vc=vc, ql=ql, verbose=verbose, as.df = TRUE)) %>%
182 bind_rows()
183 } else {
Marc Kupietz2078bde2023-08-27 16:46:15 +0200184 contentFields <- c("snippet", "tokens")
Marc Kupietza96537f2019-11-09 23:07:44 +0100185 if (metadataOnly) {
186 fields <- fields[!fields %in% contentFields]
187 }
188 request <-
189 paste0('?q=',
Marc Kupietzdbd431a2021-08-29 12:17:45 +0200190 url_encode(enc2utf8(query)),
Marc Kupietzd9b2fd72023-04-17 19:08:50 +0200191 ifelse (!metadataOnly && ! is.null(context) && context != '', paste0('&context=', url_encode(enc2utf8(context))), ''),
Marc Kupietz2078bde2023-08-27 16:46:15 +0200192 ifelse (vc != '', paste0('&cq=', url_encode(enc2utf8(vc))), ''),
193 ifelse (!metadataOnly, '&show-tokens=true', ''),
194 '&ql=', ql)
Marc Kupietza96537f2019-11-09 23:07:44 +0100195 webUIRequestUrl <- paste0(kco@KorAPUrl, request)
196 requestUrl <- paste0(
197 kco@apiUrl,
198 'search',
199 request,
200 '&fields=',
201 paste(fields, collapse = ","),
202 if (metadataOnly) '&access-rewrite-disabled=true' else ''
203 )
Marc Kupietza47d1502023-04-18 15:26:47 +0200204 log_info(verbose, "Searching \"", query, "\" in \"", vc, "\"", sep =
Marc Kupietza96537f2019-11-09 23:07:44 +0100205 "")
206 res = apiCall(kco, paste0(requestUrl, '&count=0'))
Marc Kupietza4675722022-02-23 23:55:15 +0100207 if (is.null(res)) {
Marc Kupietza47d1502023-04-18 15:26:47 +0200208 log_info(verbose, " [failed]\n")
Marc Kupietza4675722022-02-23 23:55:15 +0100209 message("API call failed.")
210 totalResults <- 0
211 } else {
Marc Kupietz41d4e352024-03-11 21:48:55 +0100212 totalResults <-as.integer(res$meta$totalResults)
Marc Kupietza47d1502023-04-18 15:26:47 +0200213 log_info(verbose, ": ", totalResults, " hits")
Marc Kupietza4675722022-02-23 23:55:15 +0100214 if(!is.null(res$meta$cached))
Marc Kupietza47d1502023-04-18 15:26:47 +0200215 log_info(verbose, " [cached]\n")
Marc Kupietza4675722022-02-23 23:55:15 +0100216 else
Marc Kupietza47d1502023-04-18 15:26:47 +0200217 log_info(verbose, ", took ", res$meta$benchmark, "\n", sep = "")
Marc Kupietza4675722022-02-23 23:55:15 +0100218 }
Marc Kupietza96537f2019-11-09 23:07:44 +0100219 if (as.df)
220 data.frame(
221 query = query,
Marc Kupietza4675722022-02-23 23:55:15 +0100222 totalResults = totalResults,
Marc Kupietza96537f2019-11-09 23:07:44 +0100223 vc = vc,
224 webUIRequestUrl = webUIRequestUrl,
225 stringsAsFactors = FALSE
226 )
227 else
228 KorAPQuery(
229 korapConnection = kco,
230 nextStartIndex = 0,
231 fields = fields,
232 requestUrl = requestUrl,
233 request = request,
Marc Kupietza4675722022-02-23 23:55:15 +0100234 totalResults = totalResults,
Marc Kupietza96537f2019-11-09 23:07:44 +0100235 vc = vc,
236 apiResponse = res,
237 webUIRequestUrl = webUIRequestUrl,
Marc Kupietza4675722022-02-23 23:55:15 +0100238 hasMoreMatches = (totalResults > 0),
Marc Kupietza96537f2019-11-09 23:07:44 +0100239 )
240 }
Marc Kupietz4de53ec2019-10-04 09:12:00 +0200241 })
Marc Kupietz5bbc9db2019-08-30 16:30:45 +0200242
Marc Kupietz62da2b52019-09-12 17:43:34 +0200243#' Fetch the next bunch of results of a KorAP query.
Marc Kupietze95108e2019-09-18 13:23:58 +0200244#'
Marc Kupietz67edcb52021-09-20 21:54:24 +0200245#' **`fetchNext`** fetches the next bunch of results of a KorAP query.
Marc Kupietz3f575282019-10-04 14:46:04 +0200246#'
Marc Kupietz67edcb52021-09-20 21:54:24 +0200247#' @param kqo object obtained from [corpusQuery()]
Marc Kupietz62da2b52019-09-12 17:43:34 +0200248#' @param offset start offset for query results to fetch
249#' @param maxFetch maximum number of query results to fetch
Marc Kupietz25aebc32019-09-16 18:40:50 +0200250#' @param verbose print progress information if true
Marc Kupietz67edcb52021-09-20 21:54:24 +0200251#' @param randomizePageOrder fetch result pages in pseudo random order if true. Use [set.seed()] to set seed for reproducible results.
252#' @return The `kqo` input object with updated slots `collectedMatches`, `apiResponse`, `nextStartIndex`, `hasMoreMatches`
Marc Kupietz62da2b52019-09-12 17:43:34 +0200253#'
Marc Kupietz05b22772020-02-18 21:58:42 +0100254#' @examples
Marc Kupietz6ae76052021-09-21 10:34:00 +0200255#' \dontrun{
256#'
257#' q <- new("KorAPConnection") %>% corpusQuery("Ameisenplage") %>% fetchNext()
Marc Kupietz05b22772020-02-18 21:58:42 +0100258#' q@collectedMatches
Marc Kupietz657d8e72020-02-25 18:31:50 +0100259#' }
Marc Kupietz05b22772020-02-18 21:58:42 +0100260#'
Marc Kupietz62da2b52019-09-12 17:43:34 +0200261#' @references
Marc Kupietz67edcb52021-09-20 21:54:24 +0200262#' <https://ids-pub.bsz-bw.de/frontdoor/index/index/docId/9026>
Marc Kupietz62da2b52019-09-12 17:43:34 +0200263#'
Marc Kupietze95108e2019-09-18 13:23:58 +0200264#' @aliases fetchNext
265#' @rdname KorAPQuery-class
Marc Kupietze8bd49b2024-06-28 07:24:44 +0200266#' @importFrom dplyr rowwise mutate bind_rows select summarise n select
267#' @importFrom tibble enframe
268#' @importFrom tidyr unnest unchop pivot_wider
269#' @importFrom purrr map
Marc Kupietz632cbd42019-09-06 16:04:51 +0200270#' @export
Marc Kupietzdbd431a2021-08-29 12:17:45 +0200271setMethod("fetchNext", "KorAPQuery", function(kqo,
272 offset = kqo@nextStartIndex,
273 maxFetch = maxResultsPerPage,
274 verbose = kqo@korapConnection@verbose,
275 randomizePageOrder = FALSE) {
Marc Kupietze95108e2019-09-18 13:23:58 +0200276 if (kqo@totalResults == 0 || offset >= kqo@totalResults) {
277 return(kqo)
Marc Kupietz62da2b52019-09-12 17:43:34 +0200278 }
Marc Kupietze8bd49b2024-06-28 07:24:44 +0200279 use_korap_api <- Sys.getenv("USE_KORAP_API", unset = NA)
Marc Kupietz705488d2021-06-30 18:26:36 +0200280 page <- kqo@nextStartIndex / maxResultsPerPage + 1
Marc Kupietz5bbc9db2019-08-30 16:30:45 +0200281 results <- 0
Marc Kupietz25aebc32019-09-16 18:40:50 +0200282 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 +0200283 collectedMatches <- kqo@collectedMatches
Marc Kupietz62da2b52019-09-12 17:43:34 +0200284
Marc Kupietzdbd431a2021-08-29 12:17:45 +0200285 if (randomizePageOrder) {
286 pages <- head(sample.int(ceiling(kqo@totalResults / maxResultsPerPage)), maxFetch) - 1
287 }
288
Marc Kupietze8bd49b2024-06-28 07:24:44 +0200289 if(is.null(collectedMatches)) {
290 collectedMatches <- data.frame()
291 }
Marc Kupietz5bbc9db2019-08-30 16:30:45 +0200292 repeat {
Marc Kupietze8bd49b2024-06-28 07:24:44 +0200293 page = nrow(collectedMatches) %/% maxResultsPerPage + 1
Marc Kupietzdbd431a2021-08-29 12:17:45 +0200294 currentOffset = ifelse(randomizePageOrder, pages[page], page - 1) * maxResultsPerPage
295 query <- paste0(kqo@requestUrl, '&count=', min(if (!is.na(maxFetch)) maxFetch - results else maxResultsPerPage, maxResultsPerPage) ,'&offset=', currentOffset, '&cutoff=true')
Marc Kupietz68170952021-06-30 09:37:21 +0200296 res <- apiCall(kqo@korapConnection, query)
Marc Kupietze8bd49b2024-06-28 07:24:44 +0200297 rawRes <<- res
Marc Kupietz68170952021-06-30 09:37:21 +0200298 if (length(res$matches) == 0) {
299 break
300 }
301
Marc Kupietze8bd49b2024-06-28 07:24:44 +0200302 if ("fields" %in% colnames(res$matches) && (is.na(use_korap_api) || as.numeric(use_korap_api) >= 1.0)) {
303 if (verbose) cat("Using fields API: ")
304 currentMatches <- tibble::enframe(res$matches$fields) %>%
305 tidyr::unnest(cols = value) %>%
306 tidyr::pivot_wider(names_from = key, id_cols = name, names_repair = "unique") %>%
307 dplyr::mutate(across(where(is.list), ~ purrr::map(.x, ~ if (length(.x) < 2) unlist(.x) else paste(.x, collapse = " ")))) %>%
308 tidyr::unchop(where(is.list)) %>%
309 dplyr::select(-name)
310 if("snippet" %in% colnames(res$matches)) {
311 currentMatches$snippet <- res$matches$snippet
312 }
313 } else {
314 currentMatches <- res$matches
315 }
316
Marc Kupietze95108e2019-09-18 13:23:58 +0200317 for (field in kqo@fields) {
Marc Kupietze8bd49b2024-06-28 07:24:44 +0200318 if (!field %in% colnames(currentMatches)) {
319 currentMatches[, field] <- NA
Marc Kupietz5bbc9db2019-08-30 16:30:45 +0200320 }
321 }
Marc Kupietze8bd49b2024-06-28 07:24:44 +0200322 currentMatches <- currentMatches %>% select(kqo@fields)
Marc Kupietz62da2b52019-09-12 17:43:34 +0200323 if (!is.list(collectedMatches)) {
324 collectedMatches <- currentMatches
Marc Kupietz5bbc9db2019-08-30 16:30:45 +0200325 } else {
Marc Kupietz2078bde2023-08-27 16:46:15 +0200326 collectedMatches <- bind_rows(collectedMatches, currentMatches)
Marc Kupietz5bbc9db2019-08-30 16:30:45 +0200327 }
Marc Kupietzc2c59bd2019-08-30 16:50:49 +0200328 if (verbose) {
Marc Kupietzdbd431a2021-08-29 12:17:45 +0200329 cat(paste0(
330 "Retrieved page ",
Marc Kupietze8bd49b2024-06-28 07:24:44 +0200331 ceiling(nrow(collectedMatches) / res$meta$itemsPerPage),
Marc Kupietzdbd431a2021-08-29 12:17:45 +0200332 "/",
333 if (!is.na(maxFetch) && maxFetch < kqo@totalResults)
334 sprintf("%d (%d)", ceiling(maxFetch / res$meta$itemsPerPage), ceiling(kqo@totalResults / res$meta$itemsPerPage))
335 else
336 sprintf("%d", ceiling(kqo@totalResults / res$meta$itemsPerPage)),
337 ' in ',
338 res$meta$benchmark,
339 '\n'
340 ))
Marc Kupietzc2c59bd2019-08-30 16:50:49 +0200341 }
Marc Kupietz5bbc9db2019-08-30 16:30:45 +0200342 page <- page + 1
343 results <- results + res$meta$itemsPerPage
Marc Kupietze8bd49b2024-06-28 07:24:44 +0200344 if (nrow(collectedMatches) >= kqo@totalResults || (!is.na(maxFetch) && results >= maxFetch)) {
Marc Kupietz5bbc9db2019-08-30 16:30:45 +0200345 break
346 }
347 }
Marc Kupietz68170952021-06-30 09:37:21 +0200348 nextStartIndex <- min(res$meta$startIndex + res$meta$itemsPerPage, kqo@totalResults)
Marc Kupietze95108e2019-09-18 13:23:58 +0200349 KorAPQuery(nextStartIndex = nextStartIndex,
Marc Kupietzd0d3e9b2019-09-24 17:36:03 +0200350 korapConnection = kqo@korapConnection,
Marc Kupietze95108e2019-09-18 13:23:58 +0200351 fields = kqo@fields,
352 requestUrl = kqo@requestUrl,
353 request = kqo@request,
Marc Kupietz68170952021-06-30 09:37:21 +0200354 totalResults = kqo@totalResults,
Marc Kupietze95108e2019-09-18 13:23:58 +0200355 vc = kqo@vc,
356 webUIRequestUrl = kqo@webUIRequestUrl,
Marc Kupietz68170952021-06-30 09:37:21 +0200357 hasMoreMatches = (kqo@totalResults > nextStartIndex),
Marc Kupietze95108e2019-09-18 13:23:58 +0200358 apiResponse = res,
359 collectedMatches = collectedMatches)
360})
Marc Kupietz62da2b52019-09-12 17:43:34 +0200361
362#' Fetch all results of a KorAP query.
Marc Kupietz62da2b52019-09-12 17:43:34 +0200363#'
Marc Kupietz67edcb52021-09-20 21:54:24 +0200364#' **`fetchAll`** fetches all results of a KorAP query.
Marc Kupietza6e4ee62021-03-05 09:00:15 +0100365#'
Marc Kupietz62da2b52019-09-12 17:43:34 +0200366#' @examples
Marc Kupietz6ae76052021-09-21 10:34:00 +0200367#' \dontrun{
368#'
Marc Kupietz69cc54a2019-09-30 12:06:54 +0200369#' q <- new("KorAPConnection") %>% corpusQuery("Ameisenplage") %>% fetchAll()
Marc Kupietze95108e2019-09-18 13:23:58 +0200370#' q@collectedMatches
Marc Kupietz05b22772020-02-18 21:58:42 +0100371#' }
Marc Kupietz62da2b52019-09-12 17:43:34 +0200372#'
Marc Kupietze95108e2019-09-18 13:23:58 +0200373#' @aliases fetchAll
374#' @rdname KorAPQuery-class
Marc Kupietz62da2b52019-09-12 17:43:34 +0200375#' @export
Marc Kupietzdbd431a2021-08-29 12:17:45 +0200376setMethod("fetchAll", "KorAPQuery", function(kqo, verbose = kqo@korapConnection@verbose, ...) {
377 return(fetchNext(kqo, offset = 0, maxFetch = NA, verbose = verbose, ...))
Marc Kupietze95108e2019-09-18 13:23:58 +0200378})
379
380#' Fetches the remaining results of a KorAP query.
381#'
382#' @examples
Marc Kupietz6ae76052021-09-21 10:34:00 +0200383#' \dontrun{
384#'
Marc Kupietz05b22772020-02-18 21:58:42 +0100385#' q <- new("KorAPConnection") %>% corpusQuery("Ameisenplage") %>% fetchRest()
Marc Kupietze95108e2019-09-18 13:23:58 +0200386#' q@collectedMatches
Marc Kupietz05b22772020-02-18 21:58:42 +0100387#' }
Marc Kupietze95108e2019-09-18 13:23:58 +0200388#'
389#' @aliases fetchRest
390#' @rdname KorAPQuery-class
391#' @export
Marc Kupietzdbd431a2021-08-29 12:17:45 +0200392setMethod("fetchRest", "KorAPQuery", function(kqo, verbose = kqo@korapConnection@verbose, ...) {
393 return(fetchNext(kqo, maxFetch = NA, verbose = verbose, ...))
Marc Kupietze95108e2019-09-18 13:23:58 +0200394})
395
Marc Kupietz3f575282019-10-04 14:46:04 +0200396#' Query relative frequency of search term(s)
397#'
Marc Kupietz67edcb52021-09-20 21:54:24 +0200398#' **`frequencyQuery`** combines [corpusQuery()], [corpusStats()] and
399#' [ci()] to compute a table with the relative frequencies and
Marc Kupietz3f575282019-10-04 14:46:04 +0200400#' confidence intervals of one ore multiple search terms across one or multiple
401#' virtual corpora.
402#'
403#' @aliases frequencyQuery
404#' @rdname KorAPQuery-class
405#' @examples
Marc Kupietz6ae76052021-09-21 10:34:00 +0200406#' \dontrun{
407#'
Marc Kupietz3f575282019-10-04 14:46:04 +0200408#' new("KorAPConnection", verbose = TRUE) %>%
409#' frequencyQuery(c("Mücke", "Schnake"), paste0("pubDate in ", 2000:2003))
Marc Kupietz05b22772020-02-18 21:58:42 +0100410#' }
Marc Kupietz3f575282019-10-04 14:46:04 +0200411#'
Marc Kupietz67edcb52021-09-20 21:54:24 +0200412#' @param kco [KorAPConnection()] object (obtained e.g. from `new("KorAPConnection")`
413#' @param query string that contains the corpus query. The query language depends on the `ql` parameter. Either `query` must be provided or `KorAPUrl`.
414#' @param conf.level confidence level of the returned confidence interval (passed through [ci()] to [prop.test()]).
415#' @param as.alternatives LOGICAL that specifies if the query terms should be treated as alternatives. If `as.alternatives` is TRUE, the sum over all query hits, instead of the respective vc token sizes is used as total for the calculation of relative frequencies.
Marc Kupietz3f575282019-10-04 14:46:04 +0200416#' @export
417setMethod("frequencyQuery", "KorAPConnection",
Marc Kupietz71d6e052019-11-22 18:42:10 +0100418 function(kco, query, vc = "", conf.level = 0.95, as.alternatives = FALSE, ...) {
419 (if (as.alternatives) {
420 corpusQuery(kco, query, vc, metadataOnly = TRUE, as.df = TRUE, ...) %>%
421 group_by(vc) %>%
422 mutate(total = sum(totalResults))
423 } else {
424 corpusQuery(kco, query, vc, metadataOnly = TRUE, as.df = TRUE, ...) %>%
425 mutate(total = corpusStats(kco, vc=vc, as.df=TRUE)$tokens)
426 } ) %>%
Marc Kupietz0c29cea2019-10-09 08:44:36 +0200427 ci(conf.level = conf.level)
Marc Kupietz3f575282019-10-04 14:46:04 +0200428})
429
Marc Kupietzdbd431a2021-08-29 12:17:45 +0200430
431#' buildWebUIRequestUrl
432#'
433#' @rdname KorAPQuery-class
434#' @importFrom urltools url_encode
435#' @export
436buildWebUIRequestUrl <- function(kco,
437 query = if (missing(KorAPUrl))
438 stop("At least one of the parameters query and KorAPUrl must be specified.", call. = FALSE)
439 else
440 httr::parse_url(KorAPUrl)$query$q,
441 vc = if (missing(KorAPUrl)) "" else httr::parse_url(KorAPUrl)$query$cq,
442 KorAPUrl,
443 metadataOnly = TRUE,
444 ql = if (missing(KorAPUrl)) "poliqarp" else httr::parse_url(KorAPUrl)$query$ql,
445 fields = c(
446 "corpusSigle",
447 "textSigle",
448 "pubDate",
449 "pubPlace",
450 "availability",
451 "textClass",
Marc Kupietz2078bde2023-08-27 16:46:15 +0200452 "snippet",
453 "tokens"
Marc Kupietzdbd431a2021-08-29 12:17:45 +0200454 ),
455 accessRewriteFatal = TRUE) {
456 request <-
457 paste0(
458 '?q=',
459 urltools::url_encode(enc2utf8(as.character(query))),
460 ifelse(vc != '',
461 paste0('&cq=', urltools::url_encode(enc2utf8(vc))),
462 ''),
463 '&ql=',
464 ql
465 )
466 webUIRequestUrl <- paste0(kco@KorAPUrl, request)
467 requestUrl <- paste0(
468 kco@apiUrl,
469 'search',
470 request,
471 '&fields=',
472 paste(fields, collapse = ","),
473 if (metadataOnly)
474 '&access-rewrite-disabled=true'
475 else
476 ''
477 )
478 webUIRequestUrl
479}
480
Marc Kupietze95108e2019-09-18 13:23:58 +0200481#´ format()
482#' @rdname KorAPQuery-class
483#' @param x KorAPQuery object
484#' @param ... further arguments passed to or from other methods
485#' @export
486format.KorAPQuery <- function(x, ...) {
487 cat("<KorAPQuery>\n")
488 q <- x
489 aurl = parse_url(q@request)
Marc Kupietz0d4c9092020-03-23 09:02:30 +0100490 cat(" Query: ", aurl$query$q, "\n")
491 if (!is.null(aurl$query$cq) && aurl$query$cq != "") {
492 cat(" Virtual corpus: ", aurl$query$cq, "\n")
Marc Kupietze95108e2019-09-18 13:23:58 +0200493 }
494 if (!is.null(q@collectedMatches)) {
495 cat("==============================================================================================================", "\n")
496 print(summary(q@collectedMatches))
497 cat("==============================================================================================================", "\n")
498 }
499 cat(" Total results: ", q@totalResults, "\n")
500 cat(" Fetched results: ", q@nextStartIndex, "\n")
Marc Kupietz62da2b52019-09-12 17:43:34 +0200501}
502
Marc Kupietze95108e2019-09-18 13:23:58 +0200503#' show()
Marc Kupietz62da2b52019-09-12 17:43:34 +0200504#'
Marc Kupietze95108e2019-09-18 13:23:58 +0200505#' @rdname KorAPQuery-class
506#' @param object KorAPQuery object
Marc Kupietz62da2b52019-09-12 17:43:34 +0200507#' @export
Marc Kupietze95108e2019-09-18 13:23:58 +0200508setMethod("show", "KorAPQuery", function(object) {
509 format(object)
510})
Marc Kupietz006b47c2021-01-13 17:00:59 +0100511