File size: 18,103 Bytes
7a024d2 |
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 |
# -*- coding: UTF-8 -*-
# handle msg between js and python side
import os
import time
import json
import re
import requests
from . import util
from . import model
from . import setting
suffix = ".civitai"
url_dict = {
"modelPage":"https://civitai.com/models/",
"modelId": "https://civitai.com/api/v1/models/",
"modelVersionId": "https://civitai.com/api/v1/model-versions/",
"hash": "https://civitai.com/api/v1/model-versions/by-hash/"
}
model_type_dict = {
"Checkpoint": "ckp",
"TextualInversion": "ti",
"Hypernetwork": "hyper",
"LORA": "lora",
"LoCon": "lora",
}
# get image with full size
# width is in number, not string
# return: url str
def get_full_size_image_url(image_url, width):
return re.sub('/width=\d+/', '/width=' + str(width) + '/', image_url)
# use this sha256 to get model info from civitai
# return: model info dict
def get_model_info_by_hash(hash:str):
util.printD("Request model info from civitai")
if not hash:
util.printD("hash is empty")
return
r = requests.get(url_dict["hash"]+hash, headers=util.def_headers, proxies=util.proxies)
if not r.ok:
if r.status_code == 404:
# this is not a civitai model
util.printD("Civitai does not have this model")
return {}
else:
util.printD("Get error code: " + str(r.status_code))
util.printD(r.text)
return
# try to get content
content = None
try:
content = r.json()
except Exception as e:
util.printD("Parse response json failed")
util.printD(str(e))
util.printD("response:")
util.printD(r.text)
return
if not content:
util.printD("error, content from civitai is None")
return
return content
def get_model_info_by_id(id:str) -> dict:
util.printD("Request model info from civitai")
if not id:
util.printD("id is empty")
return
r = requests.get(url_dict["modelId"]+str(id), headers=util.def_headers, proxies=util.proxies)
if not r.ok:
if r.status_code == 404:
# this is not a civitai model
util.printD("Civitai does not have this model")
return {}
else:
util.printD("Get error code: " + str(r.status_code))
util.printD(r.text)
return
# try to get content
content = None
try:
content = r.json()
except Exception as e:
util.printD("Parse response json failed")
util.printD(str(e))
util.printD("response:")
util.printD(r.text)
return
if not content:
util.printD("error, content from civitai is None")
return
return content
def get_version_info_by_version_id(id:str) -> dict:
util.printD("Request version info from civitai")
if not id:
util.printD("id is empty")
return
r = requests.get(url_dict["modelVersionId"]+str(id), headers=util.def_headers, proxies=util.proxies)
if not r.ok:
if r.status_code == 404:
# this is not a civitai model
util.printD("Civitai does not have this model version")
return {}
else:
util.printD("Get error code: " + str(r.status_code))
util.printD(r.text)
return
# try to get content
content = None
try:
content = r.json()
except Exception as e:
util.printD("Parse response json failed")
util.printD(str(e))
util.printD("response:")
util.printD(r.text)
return
if not content:
util.printD("error, content from civitai is None")
return
return content
def get_version_info_by_model_id(id:str) -> dict:
model_info = get_model_info_by_id(id)
if not model_info:
util.printD(f"Failed to get model info by id: {id}")
return
# check content to get version id
if "modelVersions" not in model_info.keys():
util.printD("There is no modelVersions in this model_info")
return
if not model_info["modelVersions"]:
util.printD("modelVersions is None")
return
if len(model_info["modelVersions"])==0:
util.printD("modelVersions is Empty")
return
def_version = model_info["modelVersions"][0]
if not def_version:
util.printD("default version is None")
return
if "id" not in def_version.keys():
util.printD("default version has no id")
return
version_id = def_version["id"]
if not version_id:
util.printD("default version's id is None")
return
# get version info
version_info = get_version_info_by_version_id(str(version_id))
if not version_info:
util.printD(f"Failed to get version info by version_id: {version_id}")
return
return version_info
# get model info file's content by model type and search_term
# parameter: model_type, search_term
# return: model_info
def load_model_info_by_search_term(model_type, search_term):
util.printD(f"Load model info of {search_term} in {model_type}")
if model_type not in model.folders.keys():
util.printD("unknow model type: " + model_type)
return
# search_term = subfolderpath + model name + ext. And it always start with a / even there is no sub folder
base, ext = os.path.splitext(search_term)
model_info_base = base
if base[:1] == "/":
model_info_base = base[1:]
model_folder = model.folders[model_type]
model_info_filename = model_info_base + suffix + model.info_ext
model_info_filepath = os.path.join(model_folder, model_info_filename)
if not os.path.isfile(model_info_filepath):
util.printD("Can not find model info file: " + model_info_filepath)
return
return model.load_model_info(model_info_filepath)
# get model file names by model type
# parameter: model_type - string
# parameter: filter - dict, which kind of model you need
# return: model name list
def get_model_names_by_type_and_filter(model_type:str, filter:dict) -> list:
model_folder = model.folders[model_type]
# set filter
# only get models don't have a civitai info file
no_info_only = False
empty_info_only = False
if filter:
if "no_info_only" in filter.keys():
no_info_only = filter["no_info_only"]
if "empty_info_only" in filter.keys():
empty_info_only = filter["empty_info_only"]
# get information from filter
# only get those model names don't have a civitai model info file
model_names = []
for root, dirs, files in os.walk(model_folder, followlinks=True):
for filename in files:
item = os.path.join(root, filename)
# check extension
base, ext = os.path.splitext(item)
if ext in model.exts:
# find a model
# check filter
if no_info_only:
# check model info file
info_file = base + suffix + model.info_ext
if os.path.isfile(info_file):
continue
if empty_info_only:
# check model info file
info_file = base + suffix + model.info_ext
if os.path.isfile(info_file):
# load model info
model_info = model.load_model_info(info_file)
# check content
if model_info:
if "id" in model_info.keys():
# find a non-empty model info file
continue
model_names.append(filename)
return model_names
def get_model_names_by_input(model_type, empty_info_only):
return get_model_names_by_type_and_filter(model_type, {"empty_info_only":empty_info_only})
# get id from url
def get_model_id_from_url(url:str) -> str:
util.printD("Run get_model_id_from_url")
id = ""
if not url:
util.printD("url or model id can not be empty")
return ""
if url.isnumeric():
# is already an id
id = str(url)
return id
s = re.sub("\\?.+$", "", url).split("/")
if len(s) < 2:
util.printD("url is not valid")
return ""
if s[-2].isnumeric():
id = s[-2]
elif s[-1].isnumeric():
id = s[-1]
else:
util.printD("There is no model id in this url")
return ""
return id
# get preview image by model path
# image will be saved to file, so no return
def get_preview_image_by_model_path(model_path:str, max_size_preview, skip_nsfw_preview):
if not model_path:
util.printD("model_path is empty")
return
if not os.path.isfile(model_path):
util.printD("model_path is not a file: "+model_path)
return
base, ext = os.path.splitext(model_path)
first_preview = base+".png"
sec_preview = base+".preview.png"
info_file = base + suffix + model.info_ext
# check preview image
if not os.path.isfile(sec_preview):
# need to download preview image
util.printD("Checking preview image for model: " + model_path)
# load model_info file
if os.path.isfile(info_file):
model_info = model.load_model_info(info_file)
if not model_info:
util.printD("Model Info is empty")
return
if "images" in model_info.keys():
if model_info["images"]:
for img_dict in model_info["images"]:
if "nsfw" in img_dict.keys():
if img_dict["nsfw"]:
util.printD("This image is NSFW")
if skip_nsfw_preview:
util.printD("Skip NSFW image")
continue
if "url" in img_dict.keys():
img_url = img_dict["url"]
if max_size_preview:
# use max width
if "width" in img_dict.keys():
if img_dict["width"]:
img_url = get_full_size_image_url(img_url, img_dict["width"])
util.download_file(img_url, sec_preview)
# we only need 1 preview image
break
# search local model by version id in 1 folder, no subfolder
# return - model_info
def search_local_model_info_by_version_id(folder:str, version_id:int) -> dict:
util.printD("Searching local model by version id")
util.printD("folder: " + folder)
util.printD("version_id: " + str(version_id))
if not folder:
util.printD("folder is none")
return
if not os.path.isdir(folder):
util.printD("folder is not a dir")
return
if not version_id:
util.printD("version_id is none")
return
# search civitai model info file
for filename in os.listdir(folder):
# check ext
base, ext = os.path.splitext(filename)
if ext == model.info_ext:
# find info file
if len(base) < 9:
# not a civitai info file
continue
if base[-8:] == suffix:
# find a civitai info file
path = os.path.join(folder, filename)
model_info = model.load_model_info(path)
if not model_info:
continue
if "id" not in model_info.keys():
continue
id = model_info["id"]
if not id:
continue
# util.printD(f"Compare version id, src: {id}, target:{version_id}")
if str(id) == str(version_id):
# find the one
return model_info
return
# check new version for a model by model path
# return (model_path, model_id, model_name, new_verion_id, new_version_name, description, download_url, img_url)
def check_model_new_version_by_path(model_path:str, delay:float=1) -> tuple:
if not model_path:
util.printD("model_path is empty")
return
if not os.path.isfile(model_path):
util.printD("model_path is not a file: "+model_path)
return
# get model info file name
base, ext = os.path.splitext(model_path)
info_file = base + suffix + model.info_ext
if not os.path.isfile(info_file):
return
# get model info
model_info_file = model.load_model_info(info_file)
if not model_info_file:
return
if "id" not in model_info_file.keys():
return
local_version_id = model_info_file["id"]
if not local_version_id:
return
if "modelId" not in model_info_file.keys():
return
model_id = model_info_file["modelId"]
if not model_id:
return
# get model info by id from civitai
model_info = get_model_info_by_id(model_id)
# delay before next request, to prevent to be treat as DDoS
util.printD(f"delay:{delay} second")
time.sleep(delay)
if not model_info:
return
if "modelVersions" not in model_info.keys():
return
modelVersions = model_info["modelVersions"]
if not modelVersions:
return
if not len(modelVersions):
return
current_version = modelVersions[0]
if not current_version:
return
if "id" not in current_version.keys():
return
current_version_id = current_version["id"]
if not current_version_id:
return
util.printD(f"Compare version id, local: {local_version_id}, remote: {current_version_id} ")
if current_version_id == local_version_id:
return
model_name = ""
if "name" in model_info.keys():
model_name = model_info["name"]
if not model_name:
model_name = ""
new_version_name = ""
if "name" in current_version.keys():
new_version_name = current_version["name"]
if not new_version_name:
new_version_name = ""
description = ""
if "description" in current_version.keys():
description = current_version["description"]
if not description:
description = ""
downloadUrl = ""
if "downloadUrl" in current_version.keys():
downloadUrl = current_version["downloadUrl"]
if not downloadUrl:
downloadUrl = ""
# get 1 preview image
img_url = ""
if "images" in current_version.keys():
if current_version["images"]:
if current_version["images"][0]:
if "url" in current_version["images"][0].keys():
img_url = current_version["images"][0]["url"]
if not img_url:
img_url = ""
return (model_path, model_id, model_name, current_version_id, new_version_name, description, downloadUrl, img_url)
# check model's new version
# parameter: delay - float, how many seconds to delay between each request to civitai
# return: new_versions - a list for all new versions, each one is (model_path, model_id, model_name, new_verion_id, new_version_name, description, download_url, img_url)
def check_models_new_version_by_model_types(model_types:list, delay:float=1) -> list:
util.printD("Checking models' new version")
if not model_types:
return []
# check model types, which cloud be a string as 1 type
mts = []
if type(model_types) == str:
mts.append(model_types)
elif type(model_types) == list:
mts = model_types
else:
util.printD("Unknow model types:")
util.printD(model_types)
return []
# output is a markdown document string to show a list of new versions on UI
output = ""
# new version list
new_versions = []
# walk all models
for model_type, model_folder in model.folders.items():
if model_type not in mts:
continue
util.printD("Scanning path: " + model_folder)
for root, dirs, files in os.walk(model_folder, followlinks=True):
for filename in files:
# check ext
item = os.path.join(root, filename)
base, ext = os.path.splitext(item)
if ext in model.exts:
# find a model
r = check_model_new_version_by_path(item, delay)
if not r:
continue
model_path, model_id, model_name, current_version_id, new_version_name, description, downloadUrl, img_url = r
# check exist
if not current_version_id:
continue
# check this version id in list
is_already_in_list = False
for new_version in new_versions:
if current_version_id == new_version[3]:
# already in list
is_already_in_list = True
break
if is_already_in_list:
util.printD("New version is already in list")
continue
# search this new version id to check if this model is already downloaded
target_model_info = search_local_model_info_by_version_id(root, current_version_id)
if target_model_info:
util.printD("New version is already existed")
continue
# add to list
new_versions.append(r)
return new_versions
|