1
0
mirror of synced 2026-01-02 12:02:47 -05:00
Files
airbyte/airbyte-cdk/python/airbyte_cdk/sources/declarative/requesters/http_requester.py
Brian Lai be01b476ce Add new InterpolatedRequestOptionsProvider that encapsulates all variations of request arguments (#13472)
* write out new request options provider and refactor components and parts of the YAML config

* fix formatting

* pr feedback to consolidate body_data_provider to simplify the code

* pr feedback get rid of extraneous optional
2022-06-21 16:01:05 -04:00

126 lines
5.2 KiB
Python

#
# Copyright (c) 2022 Airbyte, Inc., all rights reserved.
#
from typing import Any, Mapping, MutableMapping, Optional, Union
import requests
from airbyte_cdk.sources.declarative.interpolation.interpolated_string import InterpolatedString
from airbyte_cdk.sources.declarative.requesters.request_headers.interpolated_request_header_provider import (
InterpolatedRequestHeaderProvider,
)
from airbyte_cdk.sources.declarative.requesters.request_headers.request_header_provider import RequestHeaderProvider
from airbyte_cdk.sources.declarative.requesters.request_options.interpolated_request_options_provider import (
InterpolatedRequestOptionsProvider,
)
from airbyte_cdk.sources.declarative.requesters.request_options.request_options_provider import RequestOptionsProvider
from airbyte_cdk.sources.declarative.requesters.requester import HttpMethod, Requester
from airbyte_cdk.sources.declarative.requesters.retriers.retrier import Retrier
from airbyte_cdk.sources.declarative.types import Config
from airbyte_cdk.sources.streams.http.auth import HttpAuthenticator
class HttpRequester(Requester):
def __init__(
self,
*,
name: str,
url_base: [str, InterpolatedString],
path: [str, InterpolatedString],
http_method: Union[str, HttpMethod],
request_options_provider: RequestOptionsProvider = None,
request_headers_provider: RequestHeaderProvider = None,
authenticator: HttpAuthenticator,
retrier: Retrier,
config: Config,
):
if request_options_provider is None:
request_options_provider = InterpolatedRequestOptionsProvider(
config=config, request_parameters={}, request_body_data="", request_body_json={}
)
if request_headers_provider is None:
request_headers_provider = InterpolatedRequestHeaderProvider(config=config, request_headers={})
self._name = name
self._authenticator = authenticator
if type(url_base) == str:
url_base = InterpolatedString(url_base)
self._url_base = url_base
if type(path) == str:
path = InterpolatedString(path)
self._path: InterpolatedString = path
if type(http_method) == str:
http_method = HttpMethod[http_method]
self._method = http_method
self._request_options_provider = request_options_provider
self._request_headers_provider = request_headers_provider
self._retrier = retrier
self._config = config
def request_params(
self, stream_state: Mapping[str, Any], stream_slice: Mapping[str, Any] = None, next_page_token: Mapping[str, Any] = None
) -> MutableMapping[str, Any]:
return self._request_options_provider.request_params(stream_state, stream_slice, next_page_token)
def get_authenticator(self):
return self._authenticator
def get_url_base(self):
return self._url_base.eval(self._config)
def get_path(self, *, stream_state: Mapping[str, Any], stream_slice: Mapping[str, Any], next_page_token: Mapping[str, Any]) -> str:
kwargs = {"stream_state": stream_state, "stream_slice": stream_slice, "next_page_token": next_page_token}
path = self._path.eval(self._config, **kwargs)
return path
def get_method(self):
return self._method
@property
def raise_on_http_errors(self) -> bool:
# TODO this should be declarative
return True
@property
def max_retries(self) -> Union[int, None]:
return self._retrier.max_retries
@property
def retry_factor(self) -> float:
return self._retrier.retry_factor
def should_retry(self, response: requests.Response) -> bool:
return self._retrier.should_retry(response)
def backoff_time(self, response: requests.Response) -> Optional[float]:
return self._retrier.backoff_time(response)
def request_headers(
self, stream_state: Mapping[str, Any], stream_slice: Mapping[str, Any] = None, next_page_token: Mapping[str, Any] = None
) -> Mapping[str, Any]:
return self._request_headers_provider.request_headers(stream_state, stream_slice, next_page_token)
def request_body_data(
self, stream_state: Mapping[str, Any], stream_slice: Mapping[str, Any] = None, next_page_token: Mapping[str, Any] = None
) -> Optional[Union[Mapping, str]]:
return self._request_options_provider.request_body_data(stream_state, stream_slice, next_page_token)
def request_body_json(
self, stream_state: Mapping[str, Any], stream_slice: Mapping[str, Any] = None, next_page_token: Mapping[str, Any] = None
) -> Optional[Mapping]:
return self._request_options_provider.request_body_json(stream_state, stream_slice, next_page_token)
def request_kwargs(
self, stream_state: Mapping[str, Any], stream_slice: Mapping[str, Any] = None, next_page_token: Mapping[str, Any] = None
) -> Mapping[str, Any]:
return self._request_options_provider.request_kwargs(stream_state, stream_slice, next_page_token)
@property
def cache_filename(self) -> str:
# FIXME: this should be declarative
return f"{self._name}.yml"
@property
def use_cache(self) -> bool:
# FIXME: this should be declarative
return False