mirror of
https://github.com/willmiao/ComfyUI-Lora-Manager.git
synced 2026-09-21 03:01:27 -03:00
bccd494a56
Record import provenance on every recipe: a new import_info block (channel, machine-readable no-LoRA reason, diagnostic details) built at import time across all channels (batch import, single URL, local file, upload, widget save, re-imports) and persisted in the recipe JSON plus the SQLite persistent cache (new import_info_json column with ALTER TABLE migration). The recipe modal renders the empty LoRA list with a collapsed details panel showing the import method, the reason (CivitAI API returned no LoRA resource data, API meta missing, no embedded metadata, ComfyUI workflow metadata, video, unparsable format), and recorded diagnostics. Legacy recipes without import_info fall back to heuristics labeled as inferred. Genuine no-LoRA generations show no panel. CivitAI images are always classified by API meta shape: the onsite generator writes A1111-style EXIF without LoRA references, so parsed EXIF cannot prove "no LoRAs used". Adds recipes.resources.noLoras* i18n keys (all 10 locales) plus frontend vitest and backend pytest coverage.
950 lines
36 KiB
Python
950 lines
36 KiB
Python
"""Services encapsulating recipe persistence workflows."""
|
|
from __future__ import annotations
|
|
|
|
import base64
|
|
import json
|
|
import os
|
|
import re
|
|
import shutil
|
|
import time
|
|
import uuid
|
|
from dataclasses import dataclass
|
|
from typing import Any, Awaitable, Dict, Iterable, Optional, cast
|
|
|
|
from ...config import config
|
|
from ...recipes.constants import GEN_PARAM_KEYS
|
|
from ...utils.base_model import (
|
|
RELATION_COMPATIBLE,
|
|
RELATION_INCOMPATIBLE,
|
|
base_model_relation,
|
|
)
|
|
from ...utils.utils import calculate_recipe_fingerprint
|
|
from ..pending_delete_service import get_pending_delete_service
|
|
from .errors import RecipeNotFoundError, RecipeValidationError
|
|
from .import_info import CHANNEL_UPLOAD, CHANNEL_WIDGET, build_import_info
|
|
|
|
|
|
@dataclass(frozen=True)
|
|
class PersistenceResult:
|
|
"""Return payload from persistence operations."""
|
|
|
|
payload: dict[str, Any]
|
|
status: int = 200
|
|
|
|
|
|
class RecipePersistenceService:
|
|
"""Coordinate recipe persistence tasks across storage and caches."""
|
|
|
|
def __init__(
|
|
self,
|
|
*,
|
|
exif_utils,
|
|
card_preview_width: int,
|
|
logger,
|
|
) -> None:
|
|
self._exif_utils = exif_utils
|
|
self._card_preview_width = card_preview_width
|
|
self._logger = logger
|
|
|
|
async def save_recipe(
|
|
self,
|
|
*,
|
|
recipe_scanner,
|
|
image_bytes: bytes | None,
|
|
image_base64: str | None,
|
|
name: str | None,
|
|
tags: Iterable[str],
|
|
metadata: Optional[dict[str, Any]],
|
|
extension: str | None = None,
|
|
recipe_id: str | None = None,
|
|
target_dir: str | None = None,
|
|
) -> PersistenceResult:
|
|
"""Persist a user uploaded recipe.
|
|
|
|
Args:
|
|
recipe_id: If provided, reuse this ID instead of generating a new
|
|
UUID. Used by re-import to preserve the original recipe identity.
|
|
target_dir: If provided, save recipe files to this directory instead
|
|
of the default recipes_dir. Used by re-import to preserve the
|
|
original folder location.
|
|
"""
|
|
|
|
missing_fields = []
|
|
if not name:
|
|
missing_fields.append("name")
|
|
if metadata is None:
|
|
missing_fields.append("metadata")
|
|
if missing_fields:
|
|
raise RecipeValidationError(
|
|
f"Missing required fields: {', '.join(missing_fields)}"
|
|
)
|
|
|
|
assert metadata is not None
|
|
|
|
resolved_image_bytes = self._resolve_image_bytes(image_bytes, image_base64)
|
|
recipes_dir = target_dir or recipe_scanner.recipes_dir
|
|
os.makedirs(recipes_dir, exist_ok=True)
|
|
|
|
recipe_id = recipe_id or str(uuid.uuid4())
|
|
|
|
# Handle video formats by bypassing optimization and metadata embedding
|
|
is_video = extension in [".mp4", ".webm"]
|
|
if is_video:
|
|
optimized_image = resolved_image_bytes
|
|
# extension is already set
|
|
else:
|
|
optimized_image, extension = self._exif_utils.optimize_image(
|
|
image_data=resolved_image_bytes,
|
|
target_width=self._card_preview_width,
|
|
format="webp",
|
|
quality=85,
|
|
preserve_metadata=True,
|
|
)
|
|
|
|
image_filename = f"{recipe_id}{extension}"
|
|
image_path = os.path.join(recipes_dir, image_filename)
|
|
normalized_image_path = os.path.normpath(image_path)
|
|
with open(normalized_image_path, "wb") as file_obj:
|
|
file_obj.write(optimized_image)
|
|
|
|
current_time = time.time()
|
|
loras_data = [self._normalise_lora_entry(lora) for lora in (metadata.get("loras") or [])]
|
|
checkpoint_entry = self._sanitize_checkpoint_entry(self._extract_checkpoint_entry(metadata))
|
|
gen_params = self._sanitize_gen_params_for_storage(metadata)
|
|
|
|
fingerprint = calculate_recipe_fingerprint(loras_data)
|
|
recipe_data: Dict[str, Any] = {
|
|
"id": recipe_id,
|
|
"file_path": normalized_image_path,
|
|
"title": name,
|
|
"modified": current_time,
|
|
"created_date": current_time,
|
|
"base_model": metadata.get("base_model", ""),
|
|
"loras": loras_data,
|
|
"gen_params": gen_params,
|
|
"fingerprint": fingerprint,
|
|
"has_workflow": self._detect_has_workflow(normalized_image_path),
|
|
}
|
|
if checkpoint_entry:
|
|
recipe_data["checkpoint"] = checkpoint_entry
|
|
|
|
tags_list = list(tags)
|
|
if tags_list:
|
|
recipe_data["tags"] = tags_list
|
|
|
|
if metadata.get("source_path"):
|
|
recipe_data["source_path"] = metadata.get("source_path")
|
|
|
|
# Persist import provenance. Batch import / re-import paths pass a
|
|
# prebuilt import_info; frontend-driven saves (upload, single URL,
|
|
# local path) carry the analysis payload's diagnostics, from which
|
|
# import_info is derived here.
|
|
import_info = metadata.get("import_info")
|
|
if not isinstance(import_info, dict):
|
|
diagnostics = metadata.get("diagnostics")
|
|
if isinstance(diagnostics, dict):
|
|
import_info = build_import_info(
|
|
diagnostics.get("channel") or CHANNEL_UPLOAD,
|
|
diagnostics,
|
|
loras_data,
|
|
)
|
|
if isinstance(import_info, dict) and import_info:
|
|
recipe_data["import_info"] = import_info
|
|
|
|
nsfw_level = metadata.get("preview_nsfw_level")
|
|
if nsfw_level is not None and isinstance(nsfw_level, int):
|
|
recipe_data["preview_nsfw_level"] = nsfw_level
|
|
|
|
# Compute recipe folder relative to recipes root, mirroring
|
|
# RecipeScanner._calculate_folder() which is only called during scan/load.
|
|
if recipe_scanner.recipes_dir:
|
|
recipe_file_dir = os.path.dirname(normalized_image_path)
|
|
try:
|
|
relative_folder = os.path.relpath(recipe_file_dir, recipe_scanner.recipes_dir)
|
|
if relative_folder in (".", ""):
|
|
relative_folder = ""
|
|
recipe_data["folder"] = relative_folder.replace(os.path.sep, "/")
|
|
except Exception:
|
|
recipe_data["folder"] = ""
|
|
|
|
json_filename = f"{recipe_id}.recipe.json"
|
|
json_path = os.path.join(recipes_dir, json_filename)
|
|
json_path = os.path.normpath(json_path)
|
|
|
|
with open(json_path, "w", encoding="utf-8") as file_obj:
|
|
json.dump(recipe_data, file_obj, indent=4, ensure_ascii=False)
|
|
|
|
if not is_video:
|
|
self._exif_utils.append_recipe_metadata(normalized_image_path, recipe_data)
|
|
|
|
matching_recipes = await self._find_matching_recipes(recipe_scanner, fingerprint, exclude_id=recipe_id)
|
|
await recipe_scanner.add_recipe(recipe_data)
|
|
|
|
return PersistenceResult(
|
|
{
|
|
"success": True,
|
|
"recipe_id": recipe_id,
|
|
"image_path": normalized_image_path,
|
|
"json_path": json_path,
|
|
"matching_recipes": matching_recipes,
|
|
}
|
|
)
|
|
|
|
@staticmethod
|
|
def _sanitize_gen_params_for_storage(metadata: dict[str, Any]) -> dict[str, Any]:
|
|
gen_params = metadata.get("gen_params")
|
|
if isinstance(gen_params, dict) and gen_params:
|
|
source = gen_params
|
|
else:
|
|
source = metadata.get("raw_metadata")
|
|
|
|
if not isinstance(source, dict):
|
|
return {}
|
|
|
|
allowed_keys = set(GEN_PARAM_KEYS)
|
|
sanitized: dict[str, Any] = {}
|
|
for key in allowed_keys:
|
|
if key not in source:
|
|
continue
|
|
value = source.get(key)
|
|
if value in (None, ""):
|
|
continue
|
|
sanitized[key] = value
|
|
|
|
sanitized.pop("checkpoint", None)
|
|
return sanitized
|
|
|
|
async def delete_recipe(self, *, recipe_scanner, recipe_id: str) -> PersistenceResult:
|
|
"""Delete an existing recipe."""
|
|
|
|
recipe_json_path = await recipe_scanner.get_recipe_json_path(recipe_id)
|
|
if not recipe_json_path or not os.path.exists(recipe_json_path):
|
|
raise RecipeNotFoundError("Recipe not found")
|
|
|
|
with open(recipe_json_path, "r", encoding="utf-8") as file_obj:
|
|
recipe_data = json.load(file_obj)
|
|
|
|
image_path = recipe_data.get("file_path")
|
|
|
|
# Stage the delete so the recipe can be undone within the undo window.
|
|
# The staging service COPIES the JSON (and existing image) into the
|
|
# global staging dir and stores recipe_data as the manifest snapshot;
|
|
# the originals are removed below as before. When staging is skipped
|
|
# (undo disabled / staging failure) the existing hard delete runs.
|
|
pending_delete_service = await get_pending_delete_service()
|
|
batch_id = await pending_delete_service.stage_recipe_delete(
|
|
recipe_json_path=recipe_json_path,
|
|
image_path=image_path,
|
|
recipe_data=recipe_data,
|
|
)
|
|
|
|
os.remove(recipe_json_path)
|
|
if image_path and os.path.exists(image_path):
|
|
os.remove(image_path)
|
|
|
|
await recipe_scanner.remove_recipe(recipe_id)
|
|
return PersistenceResult(
|
|
{
|
|
"success": True,
|
|
"message": "Recipe deleted successfully",
|
|
"batch_id": batch_id,
|
|
}
|
|
)
|
|
|
|
async def update_recipe(self, *, recipe_scanner, recipe_id: str, updates: dict[str, Any]) -> PersistenceResult:
|
|
"""Update persisted metadata for a recipe."""
|
|
|
|
allowed_fields = (
|
|
"title",
|
|
"tags",
|
|
"source_path",
|
|
"preview_nsfw_level",
|
|
"favorite",
|
|
"gen_params",
|
|
"base_model",
|
|
)
|
|
|
|
if not any(key in updates for key in allowed_fields):
|
|
raise RecipeValidationError(
|
|
"At least one field to update must be provided (title or tags or source_path or preview_nsfw_level or favorite or gen_params or base_model)"
|
|
)
|
|
|
|
if "gen_params" in updates and not isinstance(updates["gen_params"], dict):
|
|
raise RecipeValidationError("gen_params must be an object")
|
|
|
|
success = await recipe_scanner.update_recipe_metadata(recipe_id, updates)
|
|
if not success:
|
|
raise RecipeNotFoundError("Recipe not found or update failed")
|
|
|
|
return PersistenceResult({"success": True, "recipe_id": recipe_id, "updates": updates})
|
|
|
|
def _normalize_target_path(self, recipe_scanner, target_path: str) -> tuple[str, str]:
|
|
"""Normalize and validate the target path for recipe moves."""
|
|
|
|
if not target_path:
|
|
raise RecipeValidationError("Target path is required")
|
|
|
|
recipes_root = recipe_scanner.recipes_dir
|
|
if not recipes_root:
|
|
raise RecipeNotFoundError("Recipes directory not found")
|
|
|
|
normalized_target = os.path.normpath(target_path)
|
|
recipes_root = os.path.normpath(recipes_root)
|
|
if not os.path.isabs(normalized_target):
|
|
normalized_target = os.path.normpath(os.path.join(recipes_root, normalized_target))
|
|
|
|
try:
|
|
common_root = os.path.commonpath([normalized_target, recipes_root])
|
|
except ValueError as exc:
|
|
raise RecipeValidationError("Invalid target path") from exc
|
|
|
|
if common_root != recipes_root:
|
|
raise RecipeValidationError("Target path must be inside the recipes directory")
|
|
|
|
return normalized_target, recipes_root
|
|
|
|
async def _move_recipe_files(
|
|
self,
|
|
*,
|
|
recipe_scanner,
|
|
recipe_id: str,
|
|
normalized_target: str,
|
|
recipes_root: str,
|
|
) -> dict[str, Any]:
|
|
"""Move the recipe's JSON and preview image into the normalized target."""
|
|
|
|
recipe_json_path = await recipe_scanner.get_recipe_json_path(recipe_id)
|
|
if not recipe_json_path or not os.path.exists(recipe_json_path):
|
|
raise RecipeNotFoundError("Recipe not found")
|
|
|
|
recipe_data = await recipe_scanner.get_recipe_by_id(recipe_id)
|
|
if not recipe_data:
|
|
raise RecipeNotFoundError("Recipe not found")
|
|
|
|
current_json_dir = os.path.dirname(recipe_json_path)
|
|
normalized_image_path = os.path.normpath(recipe_data.get("file_path") or "") if recipe_data.get("file_path") else None
|
|
|
|
os.makedirs(normalized_target, exist_ok=True)
|
|
|
|
if os.path.normpath(current_json_dir) == normalized_target:
|
|
return {
|
|
"success": True,
|
|
"message": "Recipe is already in the target folder",
|
|
"recipe_id": recipe_id,
|
|
"original_file_path": recipe_data.get("file_path"),
|
|
"new_file_path": recipe_data.get("file_path"),
|
|
}
|
|
|
|
new_json_path = os.path.normpath(os.path.join(normalized_target, os.path.basename(recipe_json_path)))
|
|
shutil.move(recipe_json_path, new_json_path)
|
|
|
|
new_image_path = normalized_image_path
|
|
if normalized_image_path:
|
|
target_image_path = os.path.normpath(os.path.join(normalized_target, os.path.basename(normalized_image_path)))
|
|
if os.path.exists(normalized_image_path) and normalized_image_path != target_image_path:
|
|
shutil.move(normalized_image_path, target_image_path)
|
|
new_image_path = target_image_path
|
|
|
|
relative_folder = os.path.relpath(normalized_target, recipes_root)
|
|
if relative_folder in (".", ""):
|
|
relative_folder = ""
|
|
updates = {"file_path": new_image_path or recipe_data.get("file_path"), "folder": relative_folder.replace(os.path.sep, "/")}
|
|
|
|
updated = await recipe_scanner.update_recipe_metadata(recipe_id, updates)
|
|
if not updated:
|
|
raise RecipeNotFoundError("Recipe not found after move")
|
|
|
|
return {
|
|
"success": True,
|
|
"recipe_id": recipe_id,
|
|
"original_file_path": recipe_data.get("file_path"),
|
|
"new_file_path": updates["file_path"],
|
|
"json_path": new_json_path,
|
|
"folder": updates["folder"],
|
|
}
|
|
|
|
async def move_recipe(self, *, recipe_scanner, recipe_id: str, target_path: str) -> PersistenceResult:
|
|
"""Move a recipe's assets into a new folder under the recipes root."""
|
|
|
|
normalized_target, recipes_root = self._normalize_target_path(recipe_scanner, target_path)
|
|
result = await self._move_recipe_files(
|
|
recipe_scanner=recipe_scanner,
|
|
recipe_id=recipe_id,
|
|
normalized_target=normalized_target,
|
|
recipes_root=recipes_root,
|
|
)
|
|
return PersistenceResult(result)
|
|
|
|
async def move_recipes_bulk(
|
|
self,
|
|
*,
|
|
recipe_scanner,
|
|
recipe_ids: Iterable[str],
|
|
target_path: str,
|
|
) -> PersistenceResult:
|
|
"""Move multiple recipes to a new folder."""
|
|
|
|
recipe_ids = list(recipe_ids)
|
|
if not recipe_ids:
|
|
raise RecipeValidationError("No recipe IDs provided")
|
|
|
|
normalized_target, recipes_root = self._normalize_target_path(recipe_scanner, target_path)
|
|
|
|
results: list[dict[str, Any]] = []
|
|
success_count = 0
|
|
failure_count = 0
|
|
|
|
for recipe_id in recipe_ids:
|
|
try:
|
|
move_result = await self._move_recipe_files(
|
|
recipe_scanner=recipe_scanner,
|
|
recipe_id=str(recipe_id),
|
|
normalized_target=normalized_target,
|
|
recipes_root=recipes_root,
|
|
)
|
|
results.append(
|
|
{
|
|
"recipe_id": recipe_id,
|
|
"original_file_path": move_result.get("original_file_path"),
|
|
"new_file_path": move_result.get("new_file_path"),
|
|
"success": True,
|
|
"message": move_result.get("message", ""),
|
|
"folder": move_result.get("folder", ""),
|
|
}
|
|
)
|
|
success_count += 1
|
|
except Exception as exc: # pragma: no cover - per-item error handling
|
|
results.append(
|
|
{
|
|
"recipe_id": recipe_id,
|
|
"original_file_path": None,
|
|
"new_file_path": None,
|
|
"success": False,
|
|
"message": str(exc),
|
|
}
|
|
)
|
|
failure_count += 1
|
|
|
|
return PersistenceResult(
|
|
{
|
|
"success": True,
|
|
"message": f"Moved {success_count} of {len(recipe_ids)} recipes",
|
|
"results": results,
|
|
"success_count": success_count,
|
|
"failure_count": failure_count,
|
|
}
|
|
)
|
|
|
|
async def reconnect_lora(
|
|
self,
|
|
*,
|
|
recipe_scanner,
|
|
recipe_id: str,
|
|
lora_index: int,
|
|
target_name: str,
|
|
) -> PersistenceResult:
|
|
"""Reconnect a LoRA entry within an existing recipe."""
|
|
|
|
recipe_path = await recipe_scanner.get_recipe_json_path(recipe_id)
|
|
if not recipe_path or not os.path.exists(recipe_path):
|
|
raise RecipeNotFoundError("Recipe not found")
|
|
|
|
with open(recipe_path, "r", encoding="utf-8") as file_obj:
|
|
recipe_base_model = json.load(file_obj).get("base_model", "")
|
|
|
|
matches = await recipe_scanner.find_local_loras_by_name(target_name)
|
|
if not matches:
|
|
raise RecipeNotFoundError(f"Local LoRA not found with name: {target_name}")
|
|
|
|
# Three-tier base-model guard: exact/unknown labels pass silently;
|
|
# labels from the same architecture family (e.g. Pony ↔ Illustrious)
|
|
# pass but are reported so the UI can warn; confident architecture
|
|
# mismatches stay hard-rejected because they can never load.
|
|
eligible: list[tuple[dict, str]] = []
|
|
for match in matches:
|
|
relation = base_model_relation(recipe_base_model, match.get("base_model"))
|
|
if relation != RELATION_INCOMPATIBLE:
|
|
eligible.append((match, relation))
|
|
|
|
if not eligible:
|
|
raise RecipeValidationError(
|
|
f"Local LoRA '{target_name}' has a different base model than the recipe"
|
|
)
|
|
if len(eligible) > 1:
|
|
raise RecipeValidationError(
|
|
f"Multiple local LoRAs match '{target_name}'; "
|
|
"include the folder path to disambiguate"
|
|
)
|
|
target_lora, target_relation = eligible[0]
|
|
|
|
recipe_data, updated_lora = await recipe_scanner.update_lora_entry(
|
|
recipe_id,
|
|
lora_index,
|
|
target_name=target_name,
|
|
target_lora=target_lora,
|
|
)
|
|
|
|
image_path = recipe_data.get("file_path")
|
|
if image_path and os.path.exists(image_path):
|
|
self._exif_utils.append_recipe_metadata(image_path, recipe_data)
|
|
|
|
matching_recipes = []
|
|
if "fingerprint" in recipe_data:
|
|
matching_recipes = await recipe_scanner.find_recipes_by_fingerprint(recipe_data["fingerprint"])
|
|
if recipe_id in matching_recipes:
|
|
matching_recipes.remove(recipe_id)
|
|
|
|
payload: dict[str, Any] = {
|
|
"success": True,
|
|
"recipe_id": recipe_id,
|
|
"updated_lora": updated_lora,
|
|
"matching_recipes": matching_recipes,
|
|
}
|
|
if target_relation == RELATION_COMPATIBLE:
|
|
# Structured data, not prose — the frontend localizes the warning.
|
|
payload["base_model_mismatch"] = {
|
|
"recipe_base_model": recipe_base_model,
|
|
"lora_base_model": target_lora.get("base_model") or "",
|
|
}
|
|
return PersistenceResult(payload)
|
|
|
|
async def restore_lora(
|
|
self,
|
|
*,
|
|
recipe_scanner,
|
|
recipe_id: str,
|
|
lora_index: int,
|
|
) -> PersistenceResult:
|
|
"""Restore a LoRA entry to the state captured before its reconnect."""
|
|
|
|
recipe_data, updated_lora = await recipe_scanner.restore_lora_entry(
|
|
recipe_id, lora_index
|
|
)
|
|
|
|
image_path = recipe_data.get("file_path")
|
|
if image_path and os.path.exists(image_path):
|
|
self._exif_utils.append_recipe_metadata(image_path, recipe_data)
|
|
|
|
matching_recipes = []
|
|
if "fingerprint" in recipe_data:
|
|
matching_recipes = await recipe_scanner.find_recipes_by_fingerprint(recipe_data["fingerprint"])
|
|
if recipe_id in matching_recipes:
|
|
matching_recipes.remove(recipe_id)
|
|
|
|
return PersistenceResult(
|
|
{
|
|
"success": True,
|
|
"recipe_id": recipe_id,
|
|
"updated_lora": updated_lora,
|
|
"matching_recipes": matching_recipes,
|
|
}
|
|
)
|
|
|
|
async def get_reconnect_suggestions(
|
|
self,
|
|
*,
|
|
recipe_scanner,
|
|
recipe_id: str,
|
|
lora_index: int,
|
|
query: str | None = None,
|
|
) -> PersistenceResult:
|
|
"""Return ranked local LoRA candidates for reconnecting a recipe entry."""
|
|
|
|
recipe_path = await recipe_scanner.get_recipe_json_path(recipe_id)
|
|
if not recipe_path or not os.path.exists(recipe_path):
|
|
raise RecipeNotFoundError("Recipe not found")
|
|
|
|
with open(recipe_path, "r", encoding="utf-8") as file_obj:
|
|
recipe_data = json.load(file_obj)
|
|
|
|
loras = recipe_data.get("loras") or []
|
|
if lora_index < 0 or lora_index >= len(loras):
|
|
raise RecipeValidationError(f"Invalid lora_index: {lora_index}")
|
|
|
|
suggestions = await recipe_scanner.suggest_reconnect_candidates(
|
|
entry=loras[lora_index],
|
|
recipe_base_model=recipe_data.get("base_model"),
|
|
query=query,
|
|
)
|
|
|
|
return PersistenceResult({"success": True, "suggestions": suggestions})
|
|
|
|
async def mark_lora_hash_invalid(
|
|
self,
|
|
*,
|
|
recipe_scanner,
|
|
recipe_id: str,
|
|
lora_index: int,
|
|
hash_invalid: bool = True,
|
|
) -> PersistenceResult:
|
|
"""Mark a recipe LoRA entry's hash as unresolvable on CivitAI.
|
|
|
|
Called when a download attempt by hash returned "Model not found".
|
|
The flag makes the entry an unresolved rematch candidate without
|
|
altering its stored hash/file_name.
|
|
"""
|
|
|
|
recipe_data, updated_lora = await recipe_scanner.set_lora_entry_hash_invalid(
|
|
recipe_id,
|
|
lora_index,
|
|
hash_invalid=hash_invalid,
|
|
)
|
|
|
|
return PersistenceResult(
|
|
{
|
|
"success": True,
|
|
"recipe_id": recipe_id,
|
|
"hash_invalid": bool(hash_invalid),
|
|
"updated_lora": updated_lora,
|
|
}
|
|
)
|
|
|
|
async def bulk_delete(
|
|
self,
|
|
*,
|
|
recipe_scanner,
|
|
recipe_ids: Iterable[str],
|
|
) -> PersistenceResult:
|
|
"""Delete multiple recipes in a single request."""
|
|
|
|
recipe_ids = list(recipe_ids)
|
|
if not recipe_ids:
|
|
raise RecipeValidationError("No recipe IDs provided")
|
|
|
|
deleted_recipes: list[str] = []
|
|
failed_recipes: list[dict[str, Any]] = []
|
|
batch_ids: list[str] = []
|
|
|
|
pending_delete_service = await get_pending_delete_service()
|
|
|
|
for recipe_id in recipe_ids:
|
|
recipe_json_path = await recipe_scanner.get_recipe_json_path(recipe_id)
|
|
if not recipe_json_path or not os.path.exists(recipe_json_path):
|
|
failed_recipes.append({"id": recipe_id, "reason": "Recipe not found"})
|
|
continue
|
|
|
|
try:
|
|
with open(recipe_json_path, "r", encoding="utf-8") as file_obj:
|
|
recipe_data = json.load(file_obj)
|
|
image_path = recipe_data.get("file_path")
|
|
|
|
# Stage each recipe into its own batch; collect the ids so the
|
|
# whole bulk action can be merged into ONE undoable batch.
|
|
batch_id = await pending_delete_service.stage_recipe_delete(
|
|
recipe_json_path=recipe_json_path,
|
|
image_path=image_path,
|
|
recipe_data=recipe_data,
|
|
)
|
|
if batch_id:
|
|
batch_ids.append(batch_id)
|
|
|
|
os.remove(recipe_json_path)
|
|
if image_path and os.path.exists(image_path):
|
|
os.remove(image_path)
|
|
deleted_recipes.append(recipe_id)
|
|
except Exception as exc:
|
|
failed_recipes.append({"id": recipe_id, "reason": str(exc)})
|
|
|
|
if deleted_recipes:
|
|
await recipe_scanner.bulk_remove(deleted_recipes)
|
|
|
|
payload: dict[str, Any] = {
|
|
"success": True,
|
|
"deleted": deleted_recipes,
|
|
"failed": failed_recipes,
|
|
"total_deleted": len(deleted_recipes),
|
|
"total_failed": len(failed_recipes),
|
|
}
|
|
|
|
if batch_ids:
|
|
merged_batch_id = await pending_delete_service.merge_batches(batch_ids)
|
|
if merged_batch_id:
|
|
# Merge succeeded: one undo action covers the whole bulk.
|
|
payload["batch_id"] = merged_batch_id
|
|
else:
|
|
# Merge unresolvable (defensive): expose the constituent
|
|
# batches so the caller can undo them one at a time.
|
|
payload["batch_ids"] = batch_ids
|
|
else:
|
|
payload["batch_id"] = None
|
|
|
|
return PersistenceResult(payload)
|
|
|
|
async def save_recipe_from_widget(
|
|
self,
|
|
*,
|
|
recipe_scanner,
|
|
metadata: dict[str, Any],
|
|
image_bytes: bytes,
|
|
) -> PersistenceResult:
|
|
"""Save a recipe constructed from widget metadata."""
|
|
|
|
if not metadata:
|
|
raise RecipeValidationError("No generation metadata found")
|
|
|
|
recipes_dir = recipe_scanner.recipes_dir
|
|
os.makedirs(recipes_dir, exist_ok=True)
|
|
|
|
recipe_id = str(uuid.uuid4())
|
|
optimized_image, extension = self._exif_utils.optimize_image(
|
|
image_data=image_bytes,
|
|
target_width=self._card_preview_width,
|
|
format="webp",
|
|
quality=85,
|
|
preserve_metadata=True,
|
|
)
|
|
image_filename = f"{recipe_id}{extension}"
|
|
image_path = os.path.join(recipes_dir, image_filename)
|
|
with open(image_path, "wb") as file_obj:
|
|
file_obj.write(optimized_image)
|
|
|
|
lora_stack = metadata.get("loras", "")
|
|
lora_matches = re.findall(r"<lora:([^:]+):([^>]+)>", lora_stack)
|
|
|
|
loras_data = []
|
|
base_model_counts: Dict[str, int] = {}
|
|
|
|
for name, strength in lora_matches:
|
|
lora_info = await recipe_scanner.get_local_lora(name)
|
|
lora_data = {
|
|
"file_name": name,
|
|
"strength": float(strength),
|
|
"hash": (lora_info.get("sha256") or "").lower() if lora_info else "",
|
|
"modelVersionId": (lora_info.get("civitai") or {}).get("id", 0) if lora_info else 0,
|
|
"modelName": ((lora_info.get("civitai") or {}).get("model") or {}).get("name", name) if lora_info else "",
|
|
"modelVersionName": (lora_info.get("civitai") or {}).get("name", "") if lora_info else "",
|
|
"isDeleted": False,
|
|
"exclude": False,
|
|
}
|
|
loras_data.append(lora_data)
|
|
|
|
if lora_info and "base_model" in lora_info:
|
|
base_model = lora_info["base_model"]
|
|
base_model_counts[base_model] = base_model_counts.get(base_model, 0) + 1
|
|
|
|
recipe_name = self._derive_recipe_name(lora_matches)
|
|
most_common_base_model = (
|
|
max(base_model_counts.items(), key=lambda item: item[1])[0] if base_model_counts else ""
|
|
)
|
|
checkpoint_entry = await self._build_widget_checkpoint_entry(
|
|
recipe_scanner,
|
|
metadata.get("checkpoint"),
|
|
)
|
|
|
|
recipe_data = {
|
|
"id": recipe_id,
|
|
"file_path": image_path,
|
|
"title": recipe_name,
|
|
"modified": time.time(),
|
|
"created_date": time.time(),
|
|
"base_model": most_common_base_model or (checkpoint_entry or {}).get("baseModel", ""),
|
|
"loras": loras_data,
|
|
"gen_params": {
|
|
key: value
|
|
for key, value in metadata.items()
|
|
if key not in ["checkpoint", "loras"]
|
|
},
|
|
"loras_stack": lora_stack,
|
|
# Widget saves re-encode an in-memory tensor to PNG/WebP with no
|
|
# embedded metadata chunks, so a workflow can never be present.
|
|
"has_workflow": False,
|
|
# Widget saves read LoRAs straight from the current workflow; an
|
|
# empty list means the workflow used no LoRAs.
|
|
"import_info": build_import_info(CHANNEL_WIDGET, None, loras_data),
|
|
}
|
|
if checkpoint_entry:
|
|
recipe_data["checkpoint"] = checkpoint_entry
|
|
|
|
json_filename = f"{recipe_id}.recipe.json"
|
|
json_path = os.path.join(recipes_dir, json_filename)
|
|
with open(json_path, "w", encoding="utf-8") as file_obj:
|
|
json.dump(recipe_data, file_obj, indent=4, ensure_ascii=False)
|
|
|
|
self._exif_utils.append_recipe_metadata(image_path, recipe_data)
|
|
await recipe_scanner.add_recipe(recipe_data)
|
|
|
|
return PersistenceResult(
|
|
{
|
|
"success": True,
|
|
"recipe_id": recipe_id,
|
|
"image_path": image_path,
|
|
"json_path": json_path,
|
|
"recipe_name": recipe_name,
|
|
}
|
|
)
|
|
|
|
# Helper methods ---------------------------------------------------
|
|
|
|
def _detect_has_workflow(self, image_path: str) -> bool:
|
|
"""Detect whether the saved recipe image embeds a ComfyUI workflow.
|
|
|
|
Extraction failures (missing file, corrupt image, unsupported format)
|
|
map to ``False`` and never propagate, mirroring the scanner's behavior.
|
|
"""
|
|
if not image_path or not os.path.exists(image_path):
|
|
return False
|
|
try:
|
|
metadata = self._exif_utils._load_structured_metadata(image_path)
|
|
return bool(metadata.get("workflow"))
|
|
except Exception:
|
|
return False
|
|
|
|
async def _build_widget_checkpoint_entry(
|
|
self,
|
|
recipe_scanner,
|
|
checkpoint_raw: Any,
|
|
) -> Optional[dict[str, Any]]:
|
|
"""Build recipe checkpoint metadata from widget generation metadata."""
|
|
|
|
if isinstance(checkpoint_raw, dict):
|
|
return self._sanitize_checkpoint_entry(checkpoint_raw)
|
|
|
|
if not isinstance(checkpoint_raw, str):
|
|
return None
|
|
|
|
checkpoint_name = checkpoint_raw.strip()
|
|
if not checkpoint_name:
|
|
return None
|
|
|
|
file_name = os.path.splitext(os.path.basename(checkpoint_name))[0]
|
|
checkpoint_info = await self._lookup_widget_checkpoint(
|
|
recipe_scanner,
|
|
checkpoint_name,
|
|
)
|
|
if not checkpoint_info:
|
|
return {
|
|
"type": "checkpoint",
|
|
"name": checkpoint_name,
|
|
"file_name": file_name,
|
|
"hash": "",
|
|
}
|
|
|
|
civitai = checkpoint_info.get("civitai") or {}
|
|
civitai_model = civitai.get("model") or {}
|
|
file_path = checkpoint_info.get("file_path") or checkpoint_info.get("path") or ""
|
|
cached_file_name = (
|
|
checkpoint_info.get("file_name")
|
|
or (os.path.splitext(os.path.basename(file_path))[0] if file_path else "")
|
|
or file_name
|
|
)
|
|
|
|
return {
|
|
"type": "checkpoint",
|
|
"modelId": civitai_model.get("id", 0),
|
|
"modelVersionId": civitai.get("id", 0),
|
|
"name": civitai_model.get("name") or checkpoint_info.get("model_name") or checkpoint_name,
|
|
"version": civitai.get("name", ""),
|
|
"hash": (checkpoint_info.get("sha256") or checkpoint_info.get("hash") or "").lower(),
|
|
"file_name": cached_file_name,
|
|
"modelName": civitai_model.get("name", ""),
|
|
"modelVersionName": civitai.get("name", ""),
|
|
"baseModel": checkpoint_info.get("base_model") or civitai.get("baseModel", ""),
|
|
}
|
|
|
|
async def _lookup_widget_checkpoint(
|
|
self,
|
|
recipe_scanner,
|
|
checkpoint_name: str,
|
|
) -> Optional[dict[str, Any]]:
|
|
lookup = getattr(recipe_scanner, "get_local_checkpoint", None)
|
|
if not callable(lookup):
|
|
return None
|
|
|
|
candidates = []
|
|
for candidate in (
|
|
checkpoint_name,
|
|
os.path.basename(checkpoint_name),
|
|
os.path.splitext(os.path.basename(checkpoint_name))[0],
|
|
):
|
|
if candidate and candidate not in candidates:
|
|
candidates.append(candidate)
|
|
|
|
for candidate in candidates:
|
|
try:
|
|
checkpoint_info = await cast(
|
|
Awaitable[Any], lookup(candidate)
|
|
)
|
|
except Exception as exc:
|
|
self._logger.debug(
|
|
"Failed to lookup checkpoint %s while saving widget recipe: %s",
|
|
candidate,
|
|
exc,
|
|
)
|
|
continue
|
|
if checkpoint_info:
|
|
return checkpoint_info
|
|
|
|
return None
|
|
|
|
def _extract_checkpoint_entry(self, metadata: dict[str, Any]) -> Optional[dict[str, Any]]:
|
|
"""Pull a checkpoint entry from various metadata locations."""
|
|
|
|
checkpoint_entry = metadata.get("checkpoint") or metadata.get("model")
|
|
if not checkpoint_entry:
|
|
gen_params = metadata.get("gen_params") or {}
|
|
checkpoint_entry = gen_params.get("checkpoint")
|
|
|
|
return checkpoint_entry if isinstance(checkpoint_entry, dict) else None
|
|
|
|
def _sanitize_checkpoint_entry(self, checkpoint_entry: Optional[dict[str, Any]]) -> Optional[dict[str, Any]]:
|
|
"""Remove transient/local-only fields from checkpoint metadata."""
|
|
|
|
if not checkpoint_entry:
|
|
return None
|
|
|
|
if not isinstance(checkpoint_entry, dict):
|
|
return checkpoint_entry
|
|
|
|
pruned = dict(checkpoint_entry)
|
|
for key in ("existsLocally", "localPath", "thumbnailUrl", "size", "downloadUrl"):
|
|
pruned.pop(key, None)
|
|
return pruned
|
|
|
|
def _resolve_image_bytes(self, image_bytes: bytes | None, image_base64: str | None) -> bytes:
|
|
if image_bytes is not None:
|
|
return image_bytes
|
|
if image_base64:
|
|
try:
|
|
payload = image_base64.split(",", 1)[1] if "," in image_base64 else image_base64
|
|
return base64.b64decode(payload)
|
|
except Exception as exc: # pragma: no cover - validation guard
|
|
raise RecipeValidationError(f"Invalid base64 image data: {exc}") from exc
|
|
raise RecipeValidationError("No image data provided")
|
|
|
|
def _normalise_lora_entry(self, lora: dict[str, Any]) -> dict[str, Any]:
|
|
return {
|
|
"file_name": lora.get("file_name", "")
|
|
or (
|
|
os.path.splitext(os.path.basename(lora.get("localPath", "")))[0]
|
|
if lora.get("localPath")
|
|
else ""
|
|
),
|
|
"hash": (lora.get("hash") or "").lower(),
|
|
"strength": float(lora.get("weight", 1.0)),
|
|
"modelVersionId": lora.get("id", 0),
|
|
"modelName": lora.get("name", ""),
|
|
"modelVersionName": lora.get("version", ""),
|
|
"isDeleted": lora.get("isDeleted", False),
|
|
"hashInvalid": lora.get("hashInvalid", False),
|
|
"exclude": lora.get("exclude", False),
|
|
}
|
|
|
|
async def _find_matching_recipes(
|
|
self,
|
|
recipe_scanner,
|
|
fingerprint: str | None,
|
|
*,
|
|
exclude_id: Optional[str] = None,
|
|
) -> list[str]:
|
|
if not fingerprint:
|
|
return []
|
|
matches = await recipe_scanner.find_recipes_by_fingerprint(fingerprint)
|
|
if exclude_id and exclude_id in matches:
|
|
matches.remove(exclude_id)
|
|
return matches
|
|
|
|
def _derive_recipe_name(self, lora_matches: list[tuple[str, str]]) -> str:
|
|
recipe_name_parts = [f"{name.strip()}-{float(strength):.2f}" for name, strength in lora_matches[:3]]
|
|
recipe_name = "_".join(recipe_name_parts)
|
|
return recipe_name or "recipe"
|