Class BraveVideoQuery
- All Implemented Interfaces:
BraveQueryBuilder<BraveVideoQuery,VideoSearchApiResponse>
This class is not intended to be instantiated directly, instead use the builder()
method to create a new instance of the builder.
The builder is not thread-safe and not intended to be instantiated directly, instead use the
builder() method to create a new instance of the builder. Also note that this builder is
a stateful, reusable builder intended for single-threaded use.
Method reset() will clear the internal state of the builder and must be called before
reusing.
-
Nested Class Summary
Nested Classes -
Field Summary
Fields inherited from class net.ygbstudio.jbrave.core.builders.AbstractQueryUrlBuilder
delayedOperators, optionTracker, QUERY_PROMPT, urlEnd, urlStart -
Method Summary
Modifier and TypeMethodDescriptionstatic BraveVideoQuerybuilder()Creates a new instance ofBraveVideoQuerycount(int count) Adds the count option to the URL query.Adds the operators option to the URL query.execute()Executes the request and returns response of string.Adds a freshness option to the URL query representing a date range.Adds a freshness option to the URL query using an existingFreshnessinstance.@NotNull Optional<HttpResponse<String>> Returns the current HTTP response as anOptional.Returns the type of the API response.booleanChecks if the request has been executed.includeFetchMetadata(boolean includeFetchMetadata) Adds the include_fetch_metadata option to the URL query.<T extends LanguageIdentifier>
BraveVideoQuerylanguage(T searchLanguage) Adds the search language option to the URL query.<T extends RegionLocaleIdentifier>
BraveVideoQuerymarket(T uiLanguage) Adds the market option to the URL query.offset(int offset) Adds the offset option to the URL query.Adds a search term to the URL query.reset()Clears the current instance ofBraveVideoQueryby resetting its state to its initial values.safeSearch(@NotNull SafeSearch safeSearch) Adds a safe search option to the URL query.spellcheck(boolean spellcheck) Adds the spell check option to the URL query.Converts the current query to anHttpRequestinstance.withHeaders(@NotNull Consumer<BraveVideoQuery.BraveRequestBuilder> headers) Sets the request headers using the provided consumer.withOperators(@NotNull Consumer<SearchOperatorBuilder> operators) Adds search operations to the query term for advanced result filtering.withRetries(int maxRetries) Sets the maximum number of retry attempts for rate-limited (HTTP 429) responses.withToken(@NotNull ClientInfo clientInfo) Sets the subscription token header using the providedClientInfoinstance.Methods inherited from class net.ygbstudio.jbrave.core.builders.AbstractQueryUrlBuilder
addInstanceVertical, addOption, addOptionCarrier, addQueryTerm, build, clear, isValidQuery, optionMissing, queryMissing, self, toURIMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface net.ygbstudio.jbrave.api.builders.BraveQueryBuilder
getEitherPOJO, getErrorPOJO, getPOJO, getRateLimitPolicy, getRateLimitRemaining, getRateLimits, toURI
-
Method Details
-
builder
Creates a new instance ofBraveVideoQuery- Returns:
- a new instance of
BraveVideoQuery
-
query
Adds a search term to the URL query.- Parameters:
queryTerm- the search term to add- Returns:
- the current instance of the builder
-
language
Adds the search language option to the URL query. Maximum of 400 characters and 50 words.If a query is already present, subsequent calls are ignored. Only one query term is supported per search request.
- Parameters:
searchLanguage- the search language to set- Returns:
- the current instance of the builder
- See Also:
-
market
Adds the market option to the URL query.- Parameters:
uiLanguage- the market locale to set- Returns:
- the current instance of the builder
- See Also:
-
safeSearch
Adds a safe search option to the URL query.- Parameters:
safeSearch- aSafeSearchenum value specifying the safe search level- Returns:
- the current instance of the builder
- See Also:
-
count
Adds the count option to the URL query.- Parameters:
count- The number of results to return.- Returns:
- The current instance of the builder.
-
offset
Adds the offset option to the URL query.- Parameters:
offset- The number of results to skip.- Returns:
- The current instance of the builder.
-
spellcheck
Adds the spell check option to the URL query.- Parameters:
spellcheck- whether to enable spellcheck- Returns:
- the current instance of the builder
-
freshness
Adds a freshness option to the URL query using an existingFreshnessinstance.- Parameters:
freshness- aFreshnessdescribing the freshness constraint- Returns:
- the current instance of
BraveVideoQuery - See Also:
-
freshness
Adds a freshness option to the URL query representing a date range.- Parameters:
startDate- the start date of the freshness rangeendDate- the end date of the freshness range- Returns:
- the current instance of
BraveVideoQuery - See Also:
-
includeFetchMetadata
Adds the include_fetch_metadata option to the URL query.- Parameters:
includeFetchMetadata- Whether to include fetch metadata in the results.- Returns:
- the current instance of the builder
-
enableOperators
Adds the operators option to the URL query.This option tells the API to read search operators from the query term.
- Returns:
- The current instance of the builder.
-
withToken
Sets the subscription token header using the providedClientInfoinstance.- Parameters:
clientInfo- theClientInfoinstance containing the subscription token- Returns:
- the current instance of
BraveVideoQuery
-
withHeaders
@Contract("_ -> this") public BraveVideoQuery withHeaders(@NotNull @NotNull Consumer<BraveVideoQuery.BraveRequestBuilder> headers) Sets the request headers using the provided consumer.- Parameters:
headers- a consumer that accepts an inner request builder instance and applies preconfigured headers to it via helper methods.- Returns:
- the current instance of
BraveVideoQuery
-
withOperators
@Contract("_ -> this") public BraveVideoQuery withOperators(@NotNull @NotNull Consumer<SearchOperatorBuilder> operators) Adds search operations to the query term for advanced result filtering.- Parameters:
operators- A consumer that accepts aSearchOperatorBuilderinstance and populates it with operators. The builtSearchOperatorBuilderinstance will be used to construct the operators string.- Returns:
- The current instance of the builder.
-
withRetries
Sets the maximum number of retry attempts for rate-limited (HTTP 429) responses.Values less than or equal to zero fall back to the default retry policy (one retry). Retries sleep for the server-provided rate limit reset window before each attempt.
- Parameters:
maxRetries- the maximum number of retry attempts for rate-limited responses- Returns:
- the current instance of
BraveVideoQuery
-
execute
Executes the request and returns response of string.- Specified by:
executein interfaceBraveQueryBuilder<BraveVideoQuery,VideoSearchApiResponse> - Returns:
- an optional response to the request
-
hasExecuted
public boolean hasExecuted()Description copied from interface:BraveQueryBuilderChecks if the request has been executed. Precisely, it will tell the caller whether the builder has an existing (complete) request in it or not.- Specified by:
hasExecutedin interfaceBraveQueryBuilder<BraveVideoQuery,VideoSearchApiResponse> - Returns:
trueif the request has been executed,falseotherwise
-
getResponseType
Description copied from interface:BraveQueryBuilderReturns the type of the API response. The class returned by this method is the class of the concrete implementation ofApiResponsethat this builder is expected to produce as a result of its query.- Specified by:
getResponseTypein interfaceBraveQueryBuilder<BraveVideoQuery,VideoSearchApiResponse> - Returns:
- the class of the API response
-
toHttpRequest
Converts the current query to anHttpRequestinstance.- Specified by:
toHttpRequestin interfaceBraveQueryBuilder<BraveVideoQuery,VideoSearchApiResponse> - Returns:
- the
HttpRequestinstance representing the current query
-
getHttpResponse
Returns the current HTTP response as anOptional.- Specified by:
getHttpResponsein interfaceBraveQueryBuilder<BraveVideoQuery,VideoSearchApiResponse> - Returns:
- an
Optionalcontaining the current HTTP response, or an emptyOptionalif there is no current response.
-
reset
Clears the current instance ofBraveVideoQueryby resetting its state to its initial values.- Specified by:
resetin interfaceBraveQueryBuilder<BraveVideoQuery,VideoSearchApiResponse> - Returns:
- the current instance of
BraveVideoQuery
-