File size: 32,880 Bytes
b173115 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 |
from datetime import datetime, timedelta
import os
import shutil
import sqlite3
from scripts.iib.tool import (
comfyui_exif_data_to_str,
get_comfyui_exif_data,
human_readable_size,
is_img_created_by_comfyui,
is_img_created_by_comfyui_with_webui_gen_info,
is_valid_image_path,
temp_path,
read_sd_webui_gen_info_from_image,
get_formatted_date,
is_win,
cwd,
locale,
enable_access_control,
get_windows_drives,
get_sd_webui_conf,
get_valid_img_dirs,
open_folder,
get_img_geninfo_txt_path,
unique_by,
create_zip_file,
normalize_paths,
to_abs_path,
is_secret_key_required
)
from fastapi import FastAPI, HTTPException
from fastapi.staticfiles import StaticFiles
import asyncio
from typing import List, Optional
from pydantic import BaseModel
from fastapi.responses import FileResponse, JSONResponse
from PIL import Image
from fastapi import Depends, FastAPI, HTTPException, Request
from fastapi.middleware.cors import CORSMiddleware
import hashlib
from scripts.iib.db.datamodel import (
DataBase,
ExtraPathType,
Image as DbImg,
Tag,
Folder,
ImageTag,
ExtraPath,
FileInfoDict,
Cursor
)
from scripts.iib.db.update_image_data import update_image_data, rebuild_image_index
from scripts.iib.logger import logger
from functional import seq
import urllib.parse
index_html_path = os.path.join(cwd, "vue/dist/index.html") # 在app.py也被使用
send_img_path = {"value": ""}
mem = {"secret_key_hash": None, "extra_paths": [], "all_scanned_paths": []}
secret_key = os.getenv("IIB_SECRET_KEY")
if secret_key:
print("Secret key loaded successfully. ")
WRITEABLE_PERMISSIONS = ["read-write", "write-only"]
is_api_writeable = not (os.getenv("IIB_ACCESS_CONTROL_PERMISSION")) or (
os.getenv("IIB_ACCESS_CONTROL_PERMISSION") in WRITEABLE_PERMISSIONS
)
IIB_DEBUG=False
async def write_permission_required():
if not is_api_writeable:
error_msg = (
"User is not authorized to perform this action. Required permission: "
+ ", ".join(WRITEABLE_PERMISSIONS)
)
raise HTTPException(status_code=403, detail=error_msg)
async def verify_secret(request: Request):
if not secret_key:
if is_secret_key_required:
raise HTTPException(status_code=400, detail={"type": "secret_key_required"})
return
token = request.cookies.get("IIB_S")
if not token:
raise HTTPException(status_code=401, detail="Unauthorized")
if not mem["secret_key_hash"]:
mem["secret_key_hash"] = hashlib.sha256(
(secret_key + "_ciallo").encode("utf-8")
).hexdigest()
if mem["secret_key_hash"] != token:
raise HTTPException(status_code=401, detail="Unauthorized")
def infinite_image_browsing_api(app: FastAPI, **kwargs):
pre = "/infinite_image_browsing"
if IIB_DEBUG:
@app.exception_handler(Exception)
async def exception_handler(request: Request, exc: Exception):
error_msg = f"An exception occurred while processing {request.method} {request.url}: {exc}"
logger.error(error_msg)
return JSONResponse(
status_code=500, content={"message": "Internal Server Error"}
)
@app.middleware("http")
async def log_requests(request: Request, call_next):
path = request.url.path
if (
path.find("infinite_image_browsing/image-thumbnail") == -1
and path.find("infinite_image_browsing/file") == -1
and path.find("infinite_image_browsing/fe-static") == -1
):
logger.info(f"Received request: {request.method} {request.url}")
if request.query_params:
logger.debug(f"Query Params: {request.query_params}")
if request.path_params:
logger.debug(f"Path Params: {request.path_params}")
try:
return await call_next(request)
except HTTPException as http_exc:
logger.warning(
f"HTTPException occurred while processing {request.method} {request.url}: {http_exc}"
)
raise http_exc
except Exception as exc:
logger.error(
f"An exception occurred while processing {request.method} {request.url}: {exc}"
)
if kwargs.get("allow_cors"):
app.add_middleware(
CORSMiddleware,
allow_origin_regex="^[\w./:-]+$",
allow_methods=["*"],
allow_headers=["*"],
)
def get_img_search_dirs():
try:
return get_valid_img_dirs(get_sd_webui_conf(**kwargs))
except Exception as e:
print(e)
return []
def update_all_scanned_paths():
allowed_paths = os.getenv("IIB_ACCESS_CONTROL_ALLOWED_PATHS")
if allowed_paths:
sd_webui_conf = get_sd_webui_conf(**kwargs)
path_config_key_map = {
"save": "outdir_save",
"extra": "outdir_extras_samples",
"txt2img": "outdir_txt2img_samples",
"img2img": "outdir_img2img_samples",
}
def path_map(path: str):
path = path.strip()
if path in path_config_key_map:
return sd_webui_conf.get(path_config_key_map.get(path))
return path
paths = normalize_paths(
seq(allowed_paths.split(","))
.map(path_map)
.filter(lambda x: x)
.to_list(),
os.getcwd()
)
else:
paths = (
get_img_search_dirs() + mem["extra_paths"] + kwargs.get("extra_paths_cli", [])
)
mem["all_scanned_paths"] = unique_by(paths)
update_all_scanned_paths()
def update_extra_paths(conn: sqlite3.Connection):
r = ExtraPath.get_extra_paths(conn)
mem["extra_paths"] = [x.path for x in r]
update_all_scanned_paths()
def safe_commonpath(seq):
try:
return os.path.commonpath(seq)
except Exception as e:
# logger.error(e)
return ""
def is_path_under_parents(path, parent_paths: List[str] = []):
"""
Check if the given path is under one of the specified parent paths.
:param path: The path to check.
:param parent_paths: By default, all scanned paths are included in the list of parent paths
:return: True if the path is under one of the parent paths, False otherwise.
"""
try:
if not parent_paths:
parent_paths = mem["all_scanned_paths"]
path = to_abs_path(path)
for parent_path in parent_paths:
if safe_commonpath([path, parent_path]) == parent_path:
return True
except Exception as e:
logger.error(e)
return False
def is_path_trusted(path: str):
if not enable_access_control:
return True
try:
parent_paths = mem["all_scanned_paths"]
path = to_abs_path(path)
for parent_path in parent_paths:
if len(path) <= len(parent_path):
if parent_path.startswith(path):
return True
else:
if path.startswith(parent_path):
return True
except:
pass
return False
def check_path_trust(path: str):
if not is_path_trusted(path):
raise HTTPException(status_code=403)
def filter_allowed_files(files: List[FileInfoDict]):
return [x for x in files if is_path_trusted(x["fullpath"])]
static_dir = f"{cwd}/vue/dist"
if os.path.exists(static_dir):
app.mount(
f"{pre}/fe-static",
StaticFiles(directory=static_dir),
name="infinite_image_browsing-fe-static",
)
@app.get(f"{pre}/hello")
async def greeting():
return "hello"
@app.get(f"{pre}/global_setting", dependencies=[Depends(verify_secret)])
async def global_setting():
all_custom_tags = []
extra_paths = []
try:
conn = DataBase.get_conn()
all_custom_tags = Tag.get_all_custom_tag(conn)
extra_paths = ExtraPath.get_extra_paths(conn) + [
ExtraPath(path, ExtraPathType.cli_only)
for path in kwargs.get("extra_paths_cli", [])
]
update_extra_paths(conn)
except Exception as e:
print(e)
return {
"global_setting": get_sd_webui_conf(**kwargs),
"cwd": cwd,
"is_win": is_win,
"home": os.environ.get("USERPROFILE") if is_win else os.environ.get("HOME"),
"sd_cwd": os.getcwd(),
"all_custom_tags": all_custom_tags,
"extra_paths": extra_paths,
"enable_access_control": enable_access_control,
"launch_mode": kwargs.get("launch_mode", "sd"),
}
class DeleteFilesReq(BaseModel):
file_paths: List[str]
@app.post(
pre + "/delete_files",
dependencies=[Depends(verify_secret), Depends(write_permission_required)],
)
async def delete_files(req: DeleteFilesReq):
conn = DataBase.get_conn()
for path in req.file_paths:
check_path_trust(path)
try:
if os.path.isdir(path):
if len(os.listdir(path)):
error_msg = (
"When a folder is not empty, it is not allowed to be deleted."
if locale == "en"
else "文件夹不为空时不允许删除。"
)
raise HTTPException(400, detail=error_msg)
shutil.rmtree(path)
else:
os.remove(path)
txt_path = get_img_geninfo_txt_path(path)
if txt_path:
os.remove(txt_path)
img = DbImg.get(conn, os.path.normpath(path))
if img:
logger.info("delete file: %s", path)
ImageTag.remove(conn, img.id)
DbImg.remove(conn, img.id)
except OSError as e:
# 处理删除失败的情况
logger.error("delete failed")
error_msg = (
f"Error deleting file {path}: {e}"
if locale == "en"
else f"删除文件 {path} 时出错:{e}"
)
raise HTTPException(400, detail=error_msg)
class CreateFoldersReq(BaseModel):
dest_folder: str
@app.post(
pre + "/mkdirs",
dependencies=[Depends(verify_secret), Depends(write_permission_required)],
)
async def create_folders(req: CreateFoldersReq):
if enable_access_control:
if not is_path_under_parents(req.dest_folder):
raise HTTPException(status_code=403)
os.makedirs(req.dest_folder, exist_ok=True)
class MoveFilesReq(BaseModel):
file_paths: List[str]
dest: str
create_dest_folder: Optional[bool] = False
@app.post(
pre + "/copy_files",
dependencies=[Depends(verify_secret), Depends(write_permission_required)],
)
async def copy_files(req: MoveFilesReq):
for path in req.file_paths:
check_path_trust(path)
try:
shutil.copy(path, req.dest)
txt_path = get_img_geninfo_txt_path(path)
if txt_path:
shutil.copy(txt_path, req.dest)
except OSError as e:
error_msg = (
f"Error copying file {path} to {req.dest}: {e}"
if locale == "en"
else f"复制文件 {path} 到 {req.dest} 时出错:{e}"
)
raise HTTPException(400, detail=error_msg)
@app.post(
pre + "/move_files",
dependencies=[Depends(verify_secret), Depends(write_permission_required)],
)
async def move_files(req: MoveFilesReq):
if req.create_dest_folder:
os.makedirs(req.dest, exist_ok=True)
elif not os.path.isdir(req.dest):
error_msg = (
f"Destination folder {req.dest} does not exist."
if locale == "en"
else f"目标文件夹 {req.dest} 不存在。"
)
raise HTTPException(400, detail=error_msg)
conn = DataBase.get_conn()
for path in req.file_paths:
check_path_trust(path)
try:
ret_path = shutil.move(path, req.dest)
txt_path = get_img_geninfo_txt_path(path)
if txt_path:
shutil.move(txt_path, req.dest)
img = DbImg.get(conn, os.path.normpath(path))
if img:
img.update_path(conn, ret_path)
conn.commit()
except OSError as e:
error_msg = (
f"Error moving file {path} to {req.dest}: {e}"
if locale == "en"
else f"移动文件 {path} 到 {req.dest} 时出错:{e}"
)
raise HTTPException(400, detail=error_msg)
@app.get(pre + "/files", dependencies=[Depends(verify_secret)])
async def get_target_folder_files(folder_path: str):
files: List[FileInfoDict] = []
try:
if is_win and folder_path == "/":
for item in get_windows_drives():
files.append(
{"type": "dir", "size": "-", "name": item, "fullpath": item}
)
else:
if not os.path.exists(folder_path):
return {"files": []}
folder_path = to_abs_path(folder_path)
check_path_trust(folder_path)
folder_listing: List[os.DirEntry] = os.scandir(folder_path)
is_under_scanned_path = is_path_under_parents(folder_path)
for item in folder_listing:
if not os.path.exists(item.path):
continue
fullpath = os.path.normpath(item.path)
name = os.path.basename(item.path)
date = get_formatted_date(item.stat().st_mtime)
created_time = get_formatted_date(item.stat().st_ctime)
if item.is_file():
bytes = item.stat().st_size
size = human_readable_size(bytes)
files.append(
{
"type": "file",
"date": date,
"size": size,
"name": name,
"bytes": bytes,
"created_time": created_time,
"fullpath": fullpath,
"is_under_scanned_path": is_under_scanned_path,
}
)
elif item.is_dir():
files.append(
{
"type": "dir",
"date": date,
"created_time": created_time,
"size": "-",
"name": name,
"is_under_scanned_path": is_under_scanned_path,
"fullpath": fullpath,
}
)
except Exception as e:
# logger.error(e)
raise HTTPException(status_code=400, detail=str(e))
return {"files": filter_allowed_files(files)}
@app.get(pre + "/image-thumbnail", dependencies=[Depends(verify_secret)])
async def thumbnail(path: str, t: str, size: str = "256x256"):
check_path_trust(path)
if not temp_path:
return
# 生成缓存文件的路径
hash_dir = hashlib.md5((path + t).encode("utf-8")).hexdigest()
hash = hash_dir + size
cache_dir = os.path.join(temp_path, "iib_cache", hash_dir)
cache_path = os.path.join(cache_dir, f"{size}.webp")
# 如果缓存文件存在,则直接返回该文件
if os.path.exists(cache_path):
return FileResponse(
cache_path,
media_type="image/webp",
headers={"Cache-Control": "max-age=31536000", "ETag": hash},
)
# 如果缓存文件不存在,则生成缩略图并保存
with Image.open(path) as img:
w, h = size.split("x")
img.thumbnail((int(w), int(h)))
os.makedirs(cache_dir, exist_ok=True)
img.save(cache_path, "webp")
# 返回缓存文件
return FileResponse(
cache_path,
media_type="image/webp",
headers={"Cache-Control": "max-age=31536000", "ETag": hash},
)
@app.get(pre + "/file", dependencies=[Depends(verify_secret)])
async def get_file(path: str, t: str, disposition: Optional[str] = None):
filename = path
import mimetypes
check_path_trust(path)
if not os.path.exists(filename):
raise HTTPException(status_code=404)
if not os.path.isfile(filename):
raise HTTPException(status_code=400, detail=f"{filename} is not a file")
# 根据文件后缀名获取媒体类型
media_type, _ = mimetypes.guess_type(filename)
headers = {}
if disposition:
encoded_filename = urllib.parse.quote(disposition.encode('utf-8'))
headers['Content-Disposition'] = f"attachment; filename*=UTF-8''{encoded_filename}"
if is_path_under_parents(filename) and is_valid_image_path(
filename
): # 认为永远不变,不要协商缓存了试试
headers[
"Cache-Control"
] = "public, max-age=31536000" # 针对同样名字文件但实际上不同内容的文件要求必须传入创建时间来避免浏览器缓存
headers["Expires"] = (datetime.now() + timedelta(days=365)).strftime(
"%a, %d %b %Y %H:%M:%S GMT"
)
return FileResponse(
filename,
media_type=media_type,
headers=headers,
)
@app.post(pre + "/send_img_path", dependencies=[Depends(verify_secret)])
async def api_set_send_img_path(path: str):
send_img_path["value"] = path
# 等待图片信息生成完成
@app.get(pre + "/gen_info_completed", dependencies=[Depends(verify_secret)])
async def api_set_send_img_path():
for _ in range(30): # timeout 3s
if send_img_path["value"] == "": # 等待setup里面生成完成
return True
v = send_img_path["value"]
# is_dev and logger.info("gen_info_completed %s %s", _, v)
await asyncio.sleep(0.1)
return send_img_path["value"] == ""
@app.get(pre + "/image_geninfo", dependencies=[Depends(verify_secret)])
async def image_geninfo(path: str):
with Image.open(path) as img:
if is_img_created_by_comfyui(img):
if is_img_created_by_comfyui_with_webui_gen_info(img):
return read_sd_webui_gen_info_from_image(img, path)
else:
try:
params = get_comfyui_exif_data(img)
return comfyui_exif_data_to_str(params)
except:
logger.error('parse comfyui image failed. prompt:')
logger.error(img.info.get('prompt'))
return ''
else:
return read_sd_webui_gen_info_from_image(img, path)
class CheckPathExistsReq(BaseModel):
paths: List[str]
@app.post(pre + "/check_path_exists", dependencies=[Depends(verify_secret)])
async def check_path_exists(req: CheckPathExistsReq):
update_all_scanned_paths()
res = {}
for path in req.paths:
res[path] = os.path.exists(path) and is_path_trusted(path)
return res
@app.get(pre)
def index_bd():
return FileResponse(index_html_path)
class PathsReq(BaseModel):
paths: List[str]
class OpenFolderReq(BaseModel):
path: str
@app.post(
pre + "/open_folder",
dependencies=[Depends(verify_secret), Depends(write_permission_required)],
)
def open_folder_using_explore(req: OpenFolderReq):
if not is_path_trusted(req.path):
raise HTTPException(status_code=403)
open_folder(*os.path.split(req.path))
@app.post(pre + "/shutdown")
async def shutdown_app():
# This API endpoint is mainly used as a sidecar in Tauri applications to shut down the application
if not kwargs.get("enable_shutdown"):
raise HTTPException(status_code=403, detail="Shutdown is disabled.")
os.kill(os.getpid(), 9)
return {"message": "Application is shutting down."}
@app.post(
pre + "/zip",
dependencies=[Depends(verify_secret), Depends(write_permission_required)],
)
def zip_files(req: PathsReq):
now = datetime.now()
timestamp = now.strftime("%Y-%m-%d-%H-%M-%S")
zip_temp_dir = os.path.join(cwd, "zip_temp")
os.makedirs(zip_temp_dir, exist_ok=True)
file_path = os.path.join(zip_temp_dir, f"iib_batch_download_{timestamp}.zip")
create_zip_file(req.paths, file_path)
return FileResponse(file_path, media_type="application/zip")
db_pre = pre + "/db"
@app.get(db_pre + "/basic_info", dependencies=[Depends(verify_secret)])
async def get_db_basic_info():
conn = DataBase.get_conn()
img_count = DbImg.count(conn)
tags = Tag.get_all(conn)
expired_dirs = Folder.get_expired_dirs(conn)
return {
"img_count": img_count,
"tags": tags,
"expired": len(expired_dirs) != 0,
"expired_dirs": expired_dirs,
}
@app.get(db_pre + "/expired_dirs", dependencies=[Depends(verify_secret)])
async def get_db_expired():
conn = DataBase.get_conn()
expired_dirs = Folder.get_expired_dirs(conn)
return {
"expired": len(expired_dirs) != 0,
"expired_dirs": expired_dirs,
}
@app.post(
db_pre + "/update_image_data",
dependencies=[Depends(verify_secret)],
)
async def update_image_db_data():
try:
DataBase._initing = True
conn = DataBase.get_conn()
img_count = DbImg.count(conn)
update_extra_paths(conn)
dirs = (
get_img_search_dirs() if img_count == 0 else Folder.get_expired_dirs(conn)
) + mem["extra_paths"]
update_image_data(dirs)
finally:
DataBase._initing = False
class SearchBySubstrReq(BaseModel):
surstr: str
cursor: str
regexp: str
folder_paths: List[str] = None
size: Optional[int] = 200
@app.post(db_pre + "/search_by_substr", dependencies=[Depends(verify_secret)])
async def search_by_substr(req: SearchBySubstrReq):
if IIB_DEBUG:
logger.info(req)
conn = DataBase.get_conn()
folder_paths=normalize_paths(req.folder_paths, os.getcwd())
if(not folder_paths and req.folder_paths):
return { "files": [], "cursor": Cursor(has_next=False) }
imgs, next_cursor = DbImg.find_by_substring(
conn=conn,
substring=req.surstr,
cursor=req.cursor,
limit=req.size,
regexp=req.regexp,
folder_paths=folder_paths
)
return {
"files": filter_allowed_files([x.to_file_info() for x in imgs]),
"cursor": next_cursor
}
class MatchImagesByTagsReq(BaseModel):
and_tags: List[int]
or_tags: List[int]
not_tags: List[int]
cursor: str
folder_paths: List[str] = None
size: Optional[int] = 200
@app.post(db_pre + "/match_images_by_tags", dependencies=[Depends(verify_secret)])
async def match_image_by_tags(req: MatchImagesByTagsReq):
if IIB_DEBUG:
logger.info(req)
conn = DataBase.get_conn()
folder_paths=normalize_paths(req.folder_paths, os.getcwd())
if(not folder_paths and req.folder_paths):
return { "files": [], "cursor": Cursor(has_next=False) }
imgs, next_cursor = ImageTag.get_images_by_tags(
conn=conn,
tag_dict={"and": req.and_tags, "or": req.or_tags, "not": req.not_tags},
cursor=req.cursor,
folder_paths=folder_paths,
limit=req.size
)
return {
"files": filter_allowed_files([x.to_file_info() for x in imgs]),
"cursor": next_cursor
}
@app.get(db_pre + "/img_selected_custom_tag", dependencies=[Depends(verify_secret)])
async def get_img_selected_custom_tag(path: str):
path = os.path.normpath(path)
if not is_valid_image_path(path):
return []
conn = DataBase.get_conn()
update_extra_paths(conn)
if not is_path_under_parents(path):
return []
img = DbImg.get(conn, path)
if not img:
if DbImg.count(conn) == 0:
return []
update_image_data([os.path.dirname(path)])
img = DbImg.get(conn, path)
assert img
# tags = Tag.get_all_custom_tag()
return ImageTag.get_tags_for_image(conn, img.id, type="custom")
@app.post(db_pre + "/get_image_tags", dependencies=[Depends(verify_secret)])
async def get_img_tags(req: PathsReq):
conn = DataBase.get_conn()
return ImageTag.batch_get_tags_by_path(conn, req.paths)
class ToggleCustomTagToImgReq(BaseModel):
img_path: str
tag_id: int
@app.post(
db_pre + "/toggle_custom_tag_to_img",
dependencies=[Depends(verify_secret), Depends(write_permission_required)],
)
async def toggle_custom_tag_to_img(req: ToggleCustomTagToImgReq):
conn = DataBase.get_conn()
path = os.path.normpath(req.img_path)
update_extra_paths(conn)
if not is_path_under_parents(path):
raise HTTPException(
400,
'当前文件不在搜索路径内,你可以将它添加到扫描路径再尝试。在右上角的"更多"里面'
if locale == "zh"
else 'The current file is not within the scan path. You can add it to the scan path and try again. In the top right corner, click on "More".',
)
img = DbImg.get(conn, path)
if not img:
if DbImg.count(conn):
update_image_data([os.path.dirname(path)])
img = DbImg.get(conn, path)
else:
raise HTTPException(
400,
"你需要先通过图像搜索页生成索引"
if locale == "zh"
else "You need to generate an index through the image search page first.",
)
tags = ImageTag.get_tags_for_image(
conn=conn, image_id=img.id, type="custom", tag_id=req.tag_id
)
is_remove = len(tags)
if is_remove:
ImageTag.remove(conn, img.id, tags[0].id)
else:
ImageTag(img.id, req.tag_id).save(conn)
conn.commit()
return {"is_remove": is_remove}
class BatchUpdateImageReq(BaseModel):
img_paths: List[str]
action: str
tag_id: int
@app.post(
db_pre + "/batch_update_image_tag",
dependencies=[Depends(verify_secret), Depends(write_permission_required)],
)
async def batch_update_image_tag(req: BatchUpdateImageReq):
assert req.action in ["add", "remove"]
conn = DataBase.get_conn()
paths: List[str] = seq(req.img_paths).map(os.path.normpath).to_list()
update_extra_paths(conn)
for path in paths:
if not is_path_under_parents(path):
raise HTTPException(
400,
'当前文件不在搜索路径内,你可以将它添加到扫描路径再尝试。在右上角的"更多"里面'
if locale == "zh"
else 'The current file is not within the scan path. You can add it to the scan path and try again. In the top right corner, click on "More".',
)
img = DbImg.get(conn, path)
if not img:
if DbImg.count(conn):
update_image_data([os.path.dirname(path)])
img = DbImg.get(conn, path)
else:
raise HTTPException(
400,
"你需要先通过图像搜索页生成索引"
if locale == "zh"
else "You need to generate an index through the image search page first.",
)
try:
for path in paths:
img = DbImg.get(conn, path)
if req.action == "add":
ImageTag(img.id, req.tag_id).save_or_ignore(conn)
else:
ImageTag.remove(conn, img.id, req.tag_id)
finally:
conn.commit()
class AddCustomTagReq(BaseModel):
tag_name: str
@app.post(
db_pre + "/add_custom_tag",
dependencies=[Depends(verify_secret), Depends(write_permission_required)],
)
async def add_custom_tag(req: AddCustomTagReq):
conn = DataBase.get_conn()
tag = Tag.get_or_create(conn, name=req.tag_name, type="custom")
conn.commit()
return tag
class RemoveCustomTagReq(BaseModel):
tag_id: str
@app.post(
db_pre + "/remove_custom_tag",
dependencies=[Depends(verify_secret), Depends(write_permission_required)],
)
async def remove_custom_tag(req: RemoveCustomTagReq):
conn = DataBase.get_conn()
ImageTag.remove(conn, tag_id=req.tag_id)
Tag.remove(conn, req.tag_id)
class RemoveCustomTagFromReq(BaseModel):
img_id: int
tag_id: str
@app.post(
db_pre + "/remove_custom_tag_from_img",
dependencies=[Depends(verify_secret), Depends(write_permission_required)],
)
async def remove_custom_tag_from_img(req: RemoveCustomTagFromReq):
conn = DataBase.get_conn()
ImageTag.remove(conn, image_id=req.img_id, tag_id=req.tag_id)
class ExtraPathModel(BaseModel):
path: str
type: Optional[ExtraPathType]
@app.post(
f"{db_pre}/extra_paths",
dependencies=[Depends(verify_secret), Depends(write_permission_required)],
)
async def create_extra_path(extra_path: ExtraPathModel):
if enable_access_control:
if not is_path_under_parents(extra_path.path):
raise HTTPException(status_code=403)
conn = DataBase.get_conn()
path = ExtraPath(extra_path.path, extra_path.type)
try:
path.save(conn)
finally:
conn.commit()
@app.get(
f"{db_pre}/extra_paths",
dependencies=[Depends(verify_secret)],
)
async def read_extra_paths():
conn = DataBase.get_conn()
return ExtraPath.get_extra_paths(conn)
@app.delete(
f"{db_pre}/extra_paths",
dependencies=[Depends(verify_secret), Depends(write_permission_required)],
)
async def delete_extra_path(extra_path: ExtraPathModel):
path = to_abs_path(extra_path.path)
conn = DataBase.get_conn()
ExtraPath.remove(conn, path, extra_path.type, img_search_dirs=get_img_search_dirs())
@app.post(
f"{db_pre}/rebuild_index",
dependencies=[Depends(verify_secret), Depends(write_permission_required)],
)
async def rebuild_index():
update_extra_paths(conn = DataBase.get_conn())
rebuild_image_index(search_dirs = get_img_search_dirs() + mem["extra_paths"])
|