import base64
import logging
import os
import mimetypes
import httpx
import json.decoder
from opik import s3_httpx_client
from typing import Iterator, List, Literal, Optional
from typing_extensions import TypeAlias

from opik.file_upload import file_uploader, upload_options
from opik.rest_api import client as rest_api_client
from opik.rest_api.types import attachment as rest_api_attachment
from opik.rest_api import core as rest_api_core
from opik import url_helpers
from .. import rest_helpers

LOGGER = logging.getLogger(__name__)

RESTAttachmentDetails: TypeAlias = rest_api_attachment.Attachment


class AttachmentClient:
    """
    Client for interacting with attachment-related operations.

    This client provides methods to retrieve attachment lists, download attachments,
    and upload attachments for traces and spans.

    The AttachmentClient supports:
    - Listing attachments associated with traces or spans
    - Downloading attachment content as a byte stream
    - Uploading files as attachments to traces or spans

    All operations are performed within the context of a specific project and require
    the project name to be provided.
    """

    def __init__(
        self,
        rest_client: rest_api_client.OpikApi,
        url_override: str,
        workspace_name: str,
        rest_httpx_client: httpx.Client,
    ) -> None:
        """
        Initialize the AttachmentClient.
        It is typically created via ``Opik.get_attachment_client()`` rather
        than being instantiated directly.

        Parameters:
            rest_client: The REST API client instance for making backend requests.
            url_override: The base URL for the Opik server.
            workspace_name: The workspace name used for download operations.
            rest_httpx_client: The httpx client instance to use for making file uploads.

        Returns:
            None
        """
        self._rest_client = rest_client
        self._url_override = url_override
        self._workspace_name = workspace_name
        self._rest_httpx_client = rest_httpx_client

    def get_attachment_list(
        self,
        project_name: str,
        entity_id: str,
        entity_type: Literal["span", "trace"],
    ) -> List[RESTAttachmentDetails]:  # type: ignore
        """
        Get a list of attachments for a specific entity (trace or span).

        Parameters:
            project_name: The name of the project containing the entity.
            entity_id: The ID of the trace or span to retrieve attachments for.
            entity_type: The type of entity ("trace" or "span").

        Returns:
            List[RESTAttachmentDetails]: List of attachment detail objects containing metadata about each attachment.
        """
        project_id = rest_helpers.resolve_project_id_by_name(
            self._rest_client, project_name
        )
        url_override_path = base64.b64encode(self._url_override.encode("utf-8")).decode(
            "utf-8"
        )

        response = self._rest_client.attachments.attachment_list(
            project_id=project_id,
            entity_type=entity_type,
            entity_id=entity_id,
            path=url_override_path,
        )

        return response.content or []

    def download_attachment(
        self,
        project_name: str,
        entity_type: Literal["trace", "span"],
        entity_id: str,
        file_name: str,
        mime_type: str,
    ) -> Iterator[bytes]:
        """
        Download an attachment as a stream of bytes.

        Parameters:
            project_name: The name of the project containing the entity.
            entity_type: The type of entity ("trace" or "span").
            entity_id: The ID of the trace or span containing the attachment.
            file_name: The name of the file to download.
            mime_type: The MIME type of the file.

        Returns:
            Iterator[bytes]: Iterator yielding bytes of the attachment content.
        """
        attachments_details = self.get_attachment_list(
            project_name=project_name,
            entity_type=entity_type,
            entity_id=entity_id,
        )
        attachment_to_download: Optional[RESTAttachmentDetails] = None

        for attachment_details in attachments_details:
            if (
                attachment_details.file_name == file_name
                and attachment_details.mime_type == mime_type
            ):
                attachment_to_download = attachment_details
                break

        if attachment_to_download is None:
            raise ValueError(f"Attachment not found: {file_name}")

        if attachment_to_download.link is None:
            raise ValueError(f"No download URL available for attachment: {file_name}")

        httpx_client_upload = (
            s3_httpx_client.get_cached()
            if url_helpers.is_aws_presigned_url(attachment_to_download.link)
            else self._rest_httpx_client
        )

        with httpx_client_upload.stream("GET", attachment_to_download.link) as response:
            try:
                if 200 <= response.status_code < 300:
                    for chunk in response.iter_bytes():
                        yield chunk
                    return
                response.read()
                response_json = response.json()
            except json.decoder.JSONDecodeError:
                raise rest_api_core.ApiError(
                    status_code=response.status_code,
                    headers=dict(response.headers),
                    body=response.text,
                )
            raise rest_api_core.ApiError(
                status_code=response.status_code,
                headers=dict(response.headers),
                body=response_json,
            )

    def upload_attachment(
        self,
        project_name: str,
        entity_type: Literal["trace", "span"],
        entity_id: str,
        file_path: str,
        file_name: Optional[str] = None,
        mime_type: Optional[str] = None,
    ) -> None:
        """
        Upload an attachment for a specific entity (trace or span).

        Parameters:
            project_name: The name of the project containing the entity.
            entity_type: The type of entity ("trace" or "span").
            entity_id: The ID of the trace or span to attach the file to.
            file_path: The path to the file to upload on the local filesystem.
            file_name: The name to assign to the uploaded file. If not provided, uses the basename of file_path.
            mime_type: The MIME type of the file. If not provided, attempts to automatically detect based on the file extension.

        Returns:
            None
        """
        if not os.path.exists(file_path):
            raise FileNotFoundError(f"File not found: {file_path}")

        if file_name is None:
            file_name = os.path.basename(file_path)

        if mime_type is None:
            mime_type, _ = mimetypes.guess_type(file_path)

        file_size = os.path.getsize(file_path)
        encoded_url_override = base64.b64encode(
            self._url_override.encode("utf-8")
        ).decode("utf-8")

        upload_opts = upload_options.FileUploadOptions(
            file_path=file_path,
            file_name=file_name,
            file_size=file_size,
            mime_type=mime_type,
            entity_type=entity_type,
            entity_id=entity_id,
            project_name=project_name,
            encoded_url_override=encoded_url_override,
            delete_after_upload=False,
        )

        file_uploader.upload_attachment(
            upload_options=upload_opts,
            rest_client=self._rest_client,
            upload_httpx_client=self._rest_httpx_client,
        )
