gpt4free/g4f/image/copy_images.py
hlohaus 2befef988b feat: refactor provider create functions to class attributes and update calls
- Added `create_function` and `async_create_function` class attributes with default implementations in `base_provider.py` for `AbstractProvider`, `AsyncProvider`, and `AsyncGeneratorProvider`
- Updated `get_create_function` and `get_async_create_function` methods to return these class attributes
- Replaced calls to `provider.get_create_function()` and `provider.get_async_create_function()` with direct attribute access `provider.create_function` and `provider.async_create_function` across `g4f/__init__.py`, `g4f/client/__init__.py`, `g4f/providers/retry_provider.py`, and `g4f/tools/run_tools.py`
- Removed redundant `get_create_function` and `get_async_create_function` methods from `providers/base_provider.py` and `providers/types.py`
- Ensured all provider response calls now use the class attributes for creating completions asynchronously and synchronously as needed
2025-06-12 12:45:55 +02:00

189 lines
7.9 KiB
Python

from __future__ import annotations
import os
import time
import asyncio
import hashlib
import base64
from typing import AsyncIterator
from urllib.parse import quote, unquote
from aiohttp import ClientSession, ClientError
from urllib.parse import urlparse
from ..typing import Optional, Cookies
from ..requests.aiohttp import get_connector
from ..image import MEDIA_TYPE_MAP, EXTENSIONS_MAP
from ..tools.files import secure_filename
from ..providers.response import ImageResponse, AudioResponse, VideoResponse
from ..Provider.template import BackendApi
from . import is_accepted_format, extract_data_uri
from .. import debug
# Directory for storing generated media files
images_dir = "./generated_images"
media_dir = "./generated_media"
def get_media_dir() -> str:#
"""Get the directory for storing generated media files"""
if os.access(images_dir, os.R_OK):
return images_dir
return media_dir
def get_media_extension(media: str) -> str:
"""Extract media file extension from URL or filename"""
path = urlparse(media).path
extension = os.path.splitext(path)[1]
if not extension and media:
extension = os.path.splitext(media)[1]
if not extension or len(extension) > 4:
return ""
if extension[1:] not in EXTENSIONS_MAP:
raise ValueError(f"Unsupported media extension: {extension} in: {media}")
return extension
def ensure_media_dir():
"""Create images directory if it doesn't exist"""
if not os.access(images_dir, os.R_OK):
os.makedirs(media_dir, exist_ok=True)
def get_source_url(image: str, default: str = None) -> str:
"""Extract original URL from image parameter if present"""
if "url=" in image:
decoded_url = unquote(image.split("url=", 1)[1])
if decoded_url.startswith(("http://", "https://")):
return decoded_url
return default
async def save_response_media(response, prompt: str, tags: list[str]) -> AsyncIterator:
"""Save media from response to local file and return URL"""
if isinstance(response, str):
response = base64.b64decode(response)
content_type = response.headers["content-type"] if hasattr(response, "headers") else "audio/mpeg"
extension = MEDIA_TYPE_MAP.get(content_type)
if extension is None:
raise ValueError(f"Unsupported media type: {content_type}")
filename = get_filename(tags, prompt, f".{extension}", prompt)
target_path = os.path.join(get_media_dir(), filename)
ensure_media_dir()
with open(target_path, 'wb') as f:
if isinstance(response, bytes):
f.write(response)
else:
if hasattr(response, "iter_content"):
iter_response = response.iter_content()
else:
iter_response = response.content.iter_any()
async for chunk in iter_response:
f.write(chunk)
# Base URL without request parameters
media_url = f"/media/{filename}"
# Save the original URL in the metadata, but not in the file path itself
source_url = None
if hasattr(response, "url") and response.method == "GET":
source_url = str(response.url)
if content_type.startswith("audio/"):
yield AudioResponse(media_url, text=prompt, source_url=source_url)
elif content_type.startswith("video/"):
yield VideoResponse(media_url, prompt, source_url=source_url)
else:
yield ImageResponse(media_url, prompt, source_url=source_url)
def get_filename(tags: list[str], alt: str, extension: str, image: str) -> str:
tags = f"{'+'.join([str(tag) for tag in tags if tag])}+" if tags else ""
return "".join((
f"{int(time.time())}_",
f"{secure_filename(tags + alt)}_",
hashlib.sha256(image.encode()).hexdigest()[:16],
extension
))
async def copy_media(
images: list[str],
cookies: Optional[Cookies] = None,
headers: Optional[dict] = None,
proxy: Optional[str] = None,
alt: str = None,
tags: list[str] = None,
add_url: bool = True,
target: str = None,
ssl: bool = None
) -> list[str]:
"""
Download and store images locally with Unicode-safe filenames
Returns list of relative image URLs
"""
if add_url:
add_url = not cookies
ensure_media_dir()
async with ClientSession(
connector=get_connector(proxy=proxy),
cookies=cookies,
headers=headers,
) as session:
async def copy_image(image: str, target: str = None) -> str:
"""Process individual image and return its local URL"""
# Skip if image is already local
if image.startswith("/"):
return image
target_path = target
media_extension = ""
if target_path is None:
# Build safe filename with full Unicode support
media_extension = get_media_extension(image)
filename = get_filename(tags, alt, media_extension, image)
target_path = os.path.join(get_media_dir(), filename)
try:
# Handle different image types
if image.startswith("data:"):
with open(target_path, "wb") as f:
f.write(extract_data_uri(image))
else:
# Apply BackendApi settings if needed
if BackendApi.working and image.startswith(BackendApi.url):
request_headers = BackendApi.headers if headers is None else headers
request_ssl = BackendApi.ssl
else:
request_headers = headers
request_ssl = ssl
# Use aiohttp to fetch the image
async with session.get(image, ssl=request_ssl, headers=request_headers) as response:
response.raise_for_status()
media_type = response.headers.get("content-type", "application/octet-stream")
if media_type not in ("application/octet-stream", "binary/octet-stream"):
if media_type not in MEDIA_TYPE_MAP:
raise ValueError(f"Unsupported media type: {media_type}")
if target is None and not media_extension:
media_extension = f".{MEDIA_TYPE_MAP[media_type]}"
target_path = f"{target_path}{media_extension}"
with open(target_path, "wb") as f:
async for chunk in response.content.iter_any():
f.write(chunk)
# Verify file format
if target is None and not media_extension:
with open(target_path, "rb") as f:
file_header = f.read(12)
try:
detected_type = is_accepted_format(file_header)
if detected_type:
media_extension = f".{detected_type.split('/')[-1]}"
media_extension = media_extension.replace("jpeg", "jpg")
os.rename(target_path, f"{target_path}{media_extension}")
target_path = f"{target_path}{media_extension}"
except ValueError:
pass
# Build URL with safe encoding
url_filename = quote(os.path.basename(target_path))
return f"/media/{url_filename}" + (('?url=' + quote(image)) if add_url and not image.startswith('data:') else '')
except (ClientError, IOError, OSError, ValueError) as e:
debug.error(f"Image copying failed: {type(e).__name__}: {e}")
if target_path and os.path.exists(target_path):
os.unlink(target_path)
return get_source_url(image, image)
return await asyncio.gather(*[copy_image(img, target) for img in images])