"""Skill download + archive extraction for the agent toolset.

Split out from `agent_toolset` because fetching a session agent's skills and
safely unpacking a (possibly third-party) archive is a distinct concern from the
tool implementations themselves.
"""

from __future__ import annotations

import os
import stat
import shutil
import logging
import tarfile
import zipfile
import tempfile
from typing import TYPE_CHECKING
from pathlib import Path, PurePosixPath
from functools import partial
from collections.abc import Iterable

import anyio
from anyio.to_thread import run_sync

if TYPE_CHECKING:
    from ..._client import AsyncAnthropic
    from ...types.beta import BetaManagedAgentsSession

__all__ = ["download_session_skills"]

# Skill dirs hold downloaded, possibly third-party content — keep them
# owner-only rather than inheriting whatever the process umask happens to be.
_SKILL_DIR_MODE = 0o700

log = logging.getLogger("anthropic.lib.tools.agent_toolset")


def _within(child: Path, root: Path) -> bool:
    """True if `child` is `root` or a path inside it (both already resolved)."""
    try:
        child.relative_to(root)
    except ValueError:
        return False
    return True


def _safe_member_name(name: str) -> str:
    """Return `name` as a confined relative path, or raise on path-traversal.

    Strips `.` components; rejects absolute paths and any `..` component
    outright (those only appear in malicious archives). Returns `""` for
    entries that resolve to nothing (e.g. `"./"`) — the caller should skip
    those.
    """
    norm = name.replace("\\", "/")
    if norm.startswith("/") or PurePosixPath(norm).is_absolute():
        raise ValueError(f"refusing archive member with absolute path {name!r}")
    parts = [p for p in PurePosixPath(norm).parts if p != "."]
    if any(p == ".." for p in parts):
        raise ValueError(f"refusing archive member with '..' component: {name!r}")
    return str(PurePosixPath(*parts)) if parts else ""


def _archive_top_dir(names: list[str]) -> str:
    """Return the single top-level directory shared by every archive entry, or
    `""` if the entries don't all live under one common directory.

    Skill bundles are packaged wrapped in one directory named after the skill
    (e.g. `pdf/SKILL.md`, `pdf/scripts/...`). The extractor strips that
    wrapper so the contents land directly in the skill's destination directory
    instead of a redundant nested `<skill>/<skill>/` level.
    """
    tops: set[str] = set()
    has_nested = False
    for n in names:
        parts = PurePosixPath(n).parts
        if not parts:
            continue
        tops.add(parts[0])
        if len(parts) > 1:
            has_nested = True
    return next(iter(tops)) if len(tops) == 1 and has_nested else ""


def _wrapper_dir(all_names: Iterable[str], plain_names: Iterable[str]) -> str:
    """Screen every member name (raising on path traversal, extracted or not),
    then return the wrapper directory shared by the members that will be
    extracted."""
    for name in all_names:
        _safe_member_name(name)
    return _archive_top_dir([s for n in plain_names if (s := _safe_member_name(n))])


# Zip creator hosts whose `external_attr` high bits are a Unix `st_mode`.
_ZIP_UNIX_HOSTS = (3, 19)
_SPECIAL_FILE_TYPES = (stat.S_IFLNK, stat.S_IFCHR, stat.S_IFBLK, stat.S_IFIFO, stat.S_IFSOCK)


def _zip_unix_mode(info: zipfile.ZipInfo) -> int | None:
    return info.external_attr >> 16 if info.create_system in _ZIP_UNIX_HOSTS else None


def _zip_info_is_special(info: zipfile.ZipInfo) -> bool:
    """True for a Unix-host entry recorded as a symlink, device, FIFO or socket.
    Type bits from other hosts are not a mode, so those entries stay plain files."""
    mode = _zip_unix_mode(info)
    return mode is not None and stat.S_IFMT(mode) in _SPECIAL_FILE_TYPES


def _zip_info_is_dir(info: zipfile.ZipInfo) -> bool:
    mode = _zip_unix_mode(info)
    return info.is_dir() or (mode is not None and stat.S_ISDIR(mode))


def _strip_top(safe: str, top: str) -> str:
    """Drop the leading `top` component from `safe` (an already-confined
    relative path). Returns `""` for the bare top-dir entry itself."""
    if not top:
        return safe
    parts = PurePosixPath(safe).parts
    if parts and parts[0] == top:
        rest = parts[1:]
        return str(PurePosixPath(*rest)) if rest else ""
    return safe


def _archive_file_mode(src_mode: int) -> int:
    """Reduce an archive entry's Unix mode to `0o755` if it is executable,
    `0o644` otherwise.

    Skill bundles can ship executable scripts (e.g. `scripts/foo.sh`), so the
    execute bit recorded in the archive must survive extraction or invoking the
    script directly fails with permission denied. The mode is deliberately
    collapsed to one of two values: this preserves "is it executable" while
    never propagating setuid/setgid/sticky or group/other-write bits from a
    (possibly third-party) archive.
    """
    return 0o755 if src_mode & 0o111 else 0o644


def _extract_skill_archive(archive_path: Path, dest: Path) -> None:
    """Extract a skill download (a zip or tar.* archive) from disk into `dest`.

    Skill bundles are wrapped in a single directory named after the skill; that
    wrapper is stripped so files land directly under `dest` rather than a
    redundant `dest/<skill>/` level. Skills can be third-party, so this
    refuses any member that would escape `dest` (zip-slip / tar-slip) and
    skips any member that is not a regular file or directory (symlink,
    hardlink, device, FIFO), in zip and tar archives alike.
    """
    dest.mkdir(parents=True, exist_ok=True, mode=_SKILL_DIR_MODE)
    root = dest.resolve()

    if zipfile.is_zipfile(archive_path):
        with zipfile.ZipFile(archive_path) as zf:
            infos = zf.infolist()
            plain = [info for info in infos if not _zip_info_is_special(info)]
            top = _wrapper_dir((info.filename for info in infos), (info.filename for info in plain))
            for info in plain:
                safe = _strip_top(_safe_member_name(info.filename), top)
                if not safe:
                    continue
                target = (root / safe).resolve()
                if not _within(target, root):
                    raise ValueError(f"refusing to extract unsafe zip member {info.filename!r}")
                if _zip_info_is_dir(info):
                    target.mkdir(parents=True, exist_ok=True)
                    continue
                target.parent.mkdir(parents=True, exist_ok=True)
                with zf.open(info) as src, open(target, "wb") as out:
                    shutil.copyfileobj(src, out)
                # `external_attr`'s high 16 bits hold the Unix mode; it is 0
                # for archives created without Unix attrs -> non-executable.
                os.chmod(target, _archive_file_mode(info.external_attr >> 16))
        return

    # tarfile.open with "r:*" transparently handles tar / tar.gz / tar.bz2 / tar.xz.
    with tarfile.open(archive_path, mode="r:*") as tf:
        all_members = tf.getmembers()
        members = [m for m in all_members if m.isreg() or m.isdir()]
        top = _wrapper_dir((m.name for m in all_members), (m.name for m in members))
        for member in members:
            safe = _strip_top(_safe_member_name(member.name), top)
            if not safe:
                continue
            target = (root / safe).resolve()
            if not _within(target, root):
                raise ValueError(f"refusing to extract unsafe tar member {member.name!r}")
            if member.isdir():
                target.mkdir(parents=True, exist_ok=True)
                continue
            target.parent.mkdir(parents=True, exist_ok=True)
            extracted = tf.extractfile(member)
            if extracted is None:
                continue
            with extracted as src, open(target, "wb") as out:
                shutil.copyfileobj(src, out)
            os.chmod(target, _archive_file_mode(member.mode))


async def download_session_skills(
    client: AsyncAnthropic,
    *,
    workdir: str | os.PathLike[str],
    session: BetaManagedAgentsSession | None = None,
    session_id: str | None = None,
) -> list[Path]:
    """Download the session agent's skills into `{workdir}/skills/<name>/`.

    Reads the resolved agent off `session`, and for each skill fetches its
    files via `client.beta.skills.versions.download` and extracts the archive
    under a directory named after the skill. The archive is streamed to a temp
    file rather than buffered whole in memory. A failure on one skill is logged
    and does not block the others.

    Pass `session`. A session's resources cannot change while it runs, so the
    caller fetches it once and shares that snapshot with the memory-store
    download — the two can then never disagree about the attached resources.

    `session_id` is deprecated: it costs an extra `sessions.retrieve` round
    trip on every call, and a caller that uses it for both this and the
    memory-store download fetches the session twice. It remains supported for
    callers written before `session` existed.

    Returns the list of skill directories that were created, so the caller can
    remove them when the workdir is torn down.
    """
    if session is None:
        if session_id is None:
            raise ValueError("download_session_skills: pass session (preferred) or session_id")
        log.warning(
            "download_session_skills(session_id=...) is deprecated and costs an extra session fetch; "
            "fetch the session once and pass session= instead"
        )
        # The sessions/skills resources inject their anthropic-beta headers
        # (managed-agents / skills) themselves — no need to pass `betas=` here.
        session = await client.beta.sessions.retrieve(session_id)
    skills_root = Path(await (anyio.Path(workdir) / "skills").resolve())
    # `skills_root` is created lazily by the extraction below — don't create it
    # up front so an agent with no skills leaves no stray directory behind.
    downloaded: list[Path] = []
    for skill in session.agent.skills:
        try:
            version = await client.beta.skills.versions.retrieve(skill.version, skill_id=skill.skill_id)
            # The directory is the skill's name, but reduce it to a single safe
            # path component so a hostile name can't escape skills_root.
            dirname = os.path.basename(version.name.strip()) or skill.skill_id
            if dirname in ("", ".", ".."):
                dirname = skill.skill_id
            dest = Path(await (anyio.Path(skills_root) / dirname).resolve())
            if not _within(dest, skills_root):
                log.warning("skill name %r escapes the skills dir; skipping", version.name)
                continue
            adest = anyio.Path(dest)
            if await adest.is_symlink():
                await adest.unlink()
            # `shutil.rmtree` is blocking; keep it off the event loop.
            await run_sync(partial(shutil.rmtree, dest, ignore_errors=True))
            # `skill.version` may be the alias `"latest"`, which only the
            # retrieve endpoint resolves; download by the concrete id it returned.
            await _download_and_extract(client, skill.skill_id, version.id, dest)
            downloaded.append(dest)
            log.info("downloaded skill skill_id=%s version=%s -> %s", skill.skill_id, version.id, dest)
        except Exception as e:
            log.warning("failed to download skill skill_id=%s: %s", skill.skill_id, e)
    return downloaded


async def _download_and_extract(client: AsyncAnthropic, skill_id: str, version_id: str, dest: Path) -> None:
    """Stream the skill archive to a temp file, then extract it into `dest`."""
    await anyio.Path(dest.parent).mkdir(parents=True, exist_ok=True, mode=_SKILL_DIR_MODE)
    fd, tmp_name = await run_sync(partial(tempfile.mkstemp, prefix=".skill-", suffix=".archive", dir=dest.parent))
    os.close(fd)
    tmp = anyio.Path(tmp_name)
    try:
        async with client.beta.skills.versions.with_streaming_response.download(
            version_id, skill_id=skill_id
        ) as archive:
            await archive.stream_to_file(tmp_name)
        # zipfile / tarfile are blocking; keep them off the event loop.
        await run_sync(_extract_skill_archive, Path(tmp_name), dest)
    finally:
        await tmp.unlink(missing_ok=True)
