#!/root/python3.11/bin/python3
from __future__ import annotations

import sys
from argparse import ArgumentParser
from pathlib import Path

lib_path = str(Path(__file__).resolve().parent.parent / "lib")
sys.path.insert(0, lib_path)

from web_browser_config import ClientConfig
from web_browser_utils import (
    _autosave_screenshot_from_response,
    _print_error,
    _print_response_with_metadata,
    send_request,
)

config = ClientConfig()


def drag(path):
    """Drag mouse along a path. Path should be a JSON list of x, y lists: '[[0, 0], [100, 100]]'."""
    import json

    try:
        path_data = json.loads(path)
    except json.JSONDecodeError:
        _print_error("Path must be valid JSON")
        return
    response = send_request(
        config.port, "drag", "POST", {"path": path_data, "return_screenshot": config.autoscreenshot}
    )
    if response is None:
        return
    _print_response_with_metadata(response)
    _autosave_screenshot_from_response(response, config.screenshot_mode)


if __name__ == "__main__":
    parser = ArgumentParser()
    parser.add_argument(
        "path", type=str, help="The path to drag the mouse along (JSON list of x, y lists) e.g. '[[0, 0], [100, 100]]'"
    )
    args = parser.parse_args()
    drag(args.path)
