| |
| |
| |
|
|
| from collections import defaultdict |
| from concurrent.futures import ThreadPoolExecutor |
| from fnmatch import fnmatch |
| from typing import Callable, Dict, List, Optional, Tuple |
|
|
| import requests |
| from requests import Response |
| from requests.exceptions import HTTPError |
| from tenacity import RetryCallState, retry, retry_if_exception_type, stop_after_attempt, wait_exponential |
|
|
| from haystack import component, logging |
| from haystack.dataclasses import ByteStream |
| from haystack.version import __version__ |
|
|
| logger = logging.getLogger(__name__) |
|
|
|
|
| DEFAULT_USER_AGENT = f"haystack/LinkContentFetcher/{__version__}" |
|
|
| REQUEST_HEADERS = { |
| "accept": "*/*", |
| "User-Agent": DEFAULT_USER_AGENT, |
| "Accept-Language": "en-US,en;q=0.9,it;q=0.8,es;q=0.7", |
| "referer": "https://www.google.com/", |
| } |
|
|
|
|
| def _text_content_handler(response: Response) -> ByteStream: |
| """ |
| Handles text content. |
| |
| :param response: Response object from the request. |
| :return: The extracted text. |
| """ |
| return ByteStream.from_string(response.text) |
|
|
|
|
| def _binary_content_handler(response: Response) -> ByteStream: |
| """ |
| Handles binary content. |
| |
| :param response: Response object from the request. |
| :return: The extracted binary file-like object. |
| """ |
| return ByteStream(data=response.content) |
|
|
|
|
| @component |
| class LinkContentFetcher: |
| """ |
| Fetches and extracts content from URLs. |
| |
| It supports various content types, retries on failures, and automatic user-agent rotation for failed web |
| requests. Use it as the data-fetching step in your pipelines. |
| |
| You may need to convert LinkContentFetcher's output into a list of documents. Use HTMLToDocument |
| converter to do this. |
| |
| ### Usage example |
| |
| ```python |
| from haystack.components.fetchers.link_content import LinkContentFetcher |
| |
| fetcher = LinkContentFetcher() |
| streams = fetcher.run(urls=["https://www.google.com"])["streams"] |
| |
| assert len(streams) == 1 |
| assert streams[0].meta == {'content_type': 'text/html', 'url': 'https://www.google.com'} |
| assert streams[0].data |
| ``` |
| """ |
|
|
| def __init__( |
| self, |
| raise_on_failure: bool = True, |
| user_agents: Optional[List[str]] = None, |
| retry_attempts: int = 2, |
| timeout: int = 3, |
| ): |
| """ |
| Initializes the component. |
| |
| :param raise_on_failure: If `True`, raises an exception if it fails to fetch a single URL. |
| For multiple URLs, it logs errors and returns the content it successfully fetched. |
| :param user_agents: [User agents](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/User-Agent) |
| for fetching content. If `None`, a default user agent is used. |
| :param retry_attempts: The number of times to retry to fetch the URL's content. |
| :param timeout: Timeout in seconds for the request. |
| """ |
| self.raise_on_failure = raise_on_failure |
| self.user_agents = user_agents or [DEFAULT_USER_AGENT] |
| self.current_user_agent_idx: int = 0 |
| self.retry_attempts = retry_attempts |
| self.timeout = timeout |
|
|
| |
| self.handlers: Dict[str, Callable[[Response], ByteStream]] = defaultdict(lambda: _text_content_handler) |
| self.handlers["text/*"] = _text_content_handler |
| self.handlers["text/html"] = _binary_content_handler |
| self.handlers["application/json"] = _text_content_handler |
| self.handlers["application/*"] = _binary_content_handler |
| self.handlers["image/*"] = _binary_content_handler |
| self.handlers["audio/*"] = _binary_content_handler |
| self.handlers["video/*"] = _binary_content_handler |
|
|
| @retry( |
| reraise=True, |
| stop=stop_after_attempt(self.retry_attempts), |
| wait=wait_exponential(multiplier=1, min=2, max=10), |
| retry=(retry_if_exception_type((HTTPError, requests.RequestException))), |
| |
| after=self._switch_user_agent, |
| ) |
| def get_response(url): |
| |
| headers = REQUEST_HEADERS.copy() |
| headers["User-Agent"] = self.user_agents[self.current_user_agent_idx] |
| response = requests.get(url, headers=headers, timeout=timeout or 3) |
| response.raise_for_status() |
| return response |
|
|
| self._get_response: Callable = get_response |
|
|
| @component.output_types(streams=List[ByteStream]) |
| def run(self, urls: List[str]): |
| """ |
| Fetches content from a list of URLs and returns a list of extracted content streams. |
| |
| Each content stream is a `ByteStream` object containing the extracted content as binary data. |
| Each ByteStream object in the returned list corresponds to the contents of a single URL. |
| The content type of each stream is stored in the metadata of the ByteStream object under |
| the key "content_type". The URL of the fetched content is stored under the key "url". |
| |
| :param urls: A list of URLs to fetch content from. |
| :return: `ByteStream` objects representing the extracted content. |
| |
| :raises Exception: If the provided list of URLs contains only a single URL, and `raise_on_failure` is set to |
| `True`, an exception will be raised in case of an error during content retrieval. |
| In all other scenarios, any retrieval errors are logged, and a list of successfully retrieved `ByteStream` |
| objects is returned. |
| """ |
| streams: List[ByteStream] = [] |
| if not urls: |
| return {"streams": streams} |
|
|
| |
| if len(urls) == 1: |
| stream_metadata, stream = self._fetch(urls[0]) |
| stream.meta.update(stream_metadata) |
| streams.append(stream) |
| else: |
| with ThreadPoolExecutor() as executor: |
| results = executor.map(self._fetch_with_exception_suppression, urls) |
|
|
| for stream_metadata, stream in results: |
| if stream_metadata is not None and stream is not None: |
| stream.meta.update(stream_metadata) |
| stream.mime_type = stream.meta.get("content_type", None) |
| streams.append(stream) |
|
|
| return {"streams": streams} |
|
|
| def _fetch(self, url: str) -> Tuple[Dict[str, str], ByteStream]: |
| """ |
| Fetches content from a URL and returns it as a ByteStream. |
| |
| :param url: The URL to fetch content from. |
| :return: A tuple containing the ByteStream metadata dict and the corresponding ByteStream. |
| ByteStream metadata contains the URL and the content type of the fetched content. |
| The content type is a string indicating the type of content fetched (for example, "text/html", |
| "application/pdf"). The ByteStream object contains the fetched content as binary data. |
| |
| :raises: If an error occurs during content retrieval and `raise_on_failure` is set to True, this method will |
| raise an exception. Otherwise, all fetching errors are logged, and an empty ByteStream is returned. |
| |
| """ |
| content_type: str = "text/html" |
| stream: ByteStream = ByteStream(data=b"") |
| try: |
| response = self._get_response(url) |
| content_type = self._get_content_type(response) |
| handler: Callable = self._resolve_handler(content_type) |
| stream = handler(response) |
| except Exception as e: |
| if self.raise_on_failure: |
| raise e |
| |
| logger.debug("Couldn't retrieve content from {url} because {error}", url=url, error=str(e)) |
|
|
| finally: |
| self.current_user_agent_idx = 0 |
|
|
| return {"content_type": content_type, "url": url}, stream |
|
|
| def _fetch_with_exception_suppression(self, url: str) -> Tuple[Optional[Dict[str, str]], Optional[ByteStream]]: |
| """ |
| Fetches content from a URL and returns it as a ByteStream. |
| |
| If `raise_on_failure` is set to True, this method will wrap the fetch() method and catch any exceptions. |
| Otherwise, it will simply call the fetch() method. |
| :param url: The URL to fetch content from. |
| :return: A tuple containing the ByteStream metadata dict and the corresponding ByteStream. |
| |
| """ |
| if self.raise_on_failure: |
| try: |
| return self._fetch(url) |
| except Exception as e: |
| logger.warning("Error fetching {url}: {error}", url=url, error=str(e)) |
| return {"content_type": "Unknown", "url": url}, None |
| else: |
| return self._fetch(url) |
|
|
| def _get_content_type(self, response: Response): |
| """ |
| Get the content type of the response. |
| |
| :param response: The response object. |
| :return: The content type of the response. |
| """ |
| content_type = response.headers.get("Content-Type", "") |
| return content_type.split(";")[0] |
|
|
| def _resolve_handler(self, content_type: str) -> Callable[[Response], ByteStream]: |
| """ |
| Resolves the handler for the given content type. |
| |
| First, it tries to find a direct match for the content type in the handlers dictionary. |
| If no direct match is found, it tries to find a pattern match using the fnmatch function. |
| If no pattern match is found, it returns the default handler for text/plain. |
| |
| :param content_type: The content type to resolve the handler for. |
| :returns: The handler for the given content type, if found. Otherwise, the default handler for text/plain. |
| """ |
| |
| if content_type in self.handlers: |
| return self.handlers[content_type] |
|
|
| |
| for pattern, handler in self.handlers.items(): |
| if fnmatch(content_type, pattern): |
| return handler |
|
|
| |
| return self.handlers["text/plain"] |
|
|
| def _switch_user_agent(self, retry_state: RetryCallState) -> None: |
| """ |
| Switches the User-Agent for this LinkContentRetriever to the next one in the list of user agents. |
| |
| Used by tenacity to retry the requests with a different user agent. |
| |
| :param retry_state: The retry state (unused, required by tenacity). |
| """ |
| self.current_user_agent_idx = (self.current_user_agent_idx + 1) % len(self.user_agents) |
| logger.debug("Switched user agent to {user_agent}", user_agent=self.user_agents[self.current_user_agent_idx]) |
|
|