File size: 10,967 Bytes
bb7f1f4 | 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 | import datetime
import hashlib
import json
import os
import re
import urllib.parse
import sys
sys.path.append('extensions-builtin/Lora')
import networks
from typing import List
from PIL import Image
from PIL.PngImagePlugin import PngInfo
from scripts.mo.environment import env
from scripts.mo.models import Record, ModelType
from modules import sd_hijack
_HASH_CACHE_FILENAME = 'hash_cache.json'
MODEL_EXTENSIONS = ['.bin', '.ckpt', '.safetensors', '.pt']
PREVIEW_EXTENSIONS = [".png", ".jpg", ".webp"]
INFO_EXTENSIONS = [".info", ".civitai.info"]
def is_blank(s: str) -> bool:
"""
Checks string is empty or contains only whitespaces.
:param s: String to check.
:return: True if string is empty or contains only whitespaces.
"""
return len(s.strip()) == 0
def is_valid_url(url: str) -> bool:
"""
Checks url is valid.
:param url: url string to validate.
:return: True if url is valid.
"""
parsed_url = urllib.parse.urlparse(url)
return parsed_url.scheme in ['http', 'https']
def is_valid_filename(filename: str) -> bool:
"""
Checks filename is valid.
:param filename: string to validate.
:return: True if filename is valid.
"""
pattern = re.compile(r'^[^\x00-\x1f\\/?*:|"<>]+$')
return bool(pattern.match(filename))
def get_model_files_in_dir(lookup_dir: str) -> List:
"""
Scans for model files in the lookup_dir, and it's child directories.
:param lookup_dir: directory path to scan.
:return: List of models in the directory and subdirectories.
"""
root_dir = os.path.join(lookup_dir, '')
extensions = ('.bin', '.ckpt', '.safetensors', '.pt')
result = []
if os.path.isdir(root_dir):
for subdir, dirs, files in os.walk(root_dir):
for file in files:
ext = os.path.splitext(file)[-1].lower()
if ext in extensions:
filepath = os.path.join(subdir, file)
result.append(filepath)
return result
def get_model_filename_without_extension(model_file):
"""
Extracts filename without extension for models.
:param model_file: model filename string.
:return: model filename without extension.
"""
filename = os.path.basename(model_file)
for ext in MODEL_EXTENSIONS:
if filename.endswith(ext):
return filename[:-len(ext)]
return filename
def find_preview_file(model_file_path):
"""
Looks for model image preview.
:param model_file_path: path to model file.
:return: path to model image preview if it exists, None otherwise.
"""
if model_file_path:
filename_no_ext = get_model_filename_without_extension(model_file_path)
path = os.path.join(os.path.dirname(model_file_path), filename_no_ext)
potential_files = sum([[path + ext, path + ".preview" + ext] for ext in PREVIEW_EXTENSIONS], [])
for file in potential_files:
if os.path.isfile(file):
return file
return None
def find_info_file(model_file_path):
"""
Looks for model info file.
:param model_file_path: path to model file.
:return: path to model info file if exists, None otherwise.
"""
if model_file_path:
filename_no_ext = get_model_filename_without_extension(model_file_path)
path = os.path.join(os.path.dirname(model_file_path), filename_no_ext)
potential_files = sum([[path + ext] for ext in INFO_EXTENSIONS], [])
for file in potential_files:
if os.path.isfile(file):
return file
return None
def link_preview(preview_path):
"""
Creates link for model image preview file. File should be in one of the model supported directories.
:param preview_path: path to model preview.
:return: link to model preview image.
"""
return "./mo/thumbnail?filename=" + urllib.parse.quote(preview_path.replace('\\', '/')) + "&mtime=" + \
str(os.path.getmtime(preview_path))
def resize_preview_image(input_file, output_file):
"""
Resizes input image to fit model card size.
:param input_file: input image file path.
:param output_file: output image file path.
:return: None
"""
image = Image.open(input_file)
image_format = image.format
if env.resize_preview():
desired_width = int(env.card_width() * 1.5)
desired_height = int(env.card_height() * 1.5)
aspect_ratio = image.width / image.height
desired_aspect_ratio = desired_width / desired_height
if aspect_ratio > desired_aspect_ratio:
new_width = int(desired_height * aspect_ratio)
new_height = desired_height
else:
new_width = desired_width
new_height = int(desired_width / aspect_ratio)
resized_image = image.resize((new_width, new_height), Image.LANCZOS)
canvas = Image.new("RGB", (desired_width, desired_height))
x_position = (desired_width - new_width) // 2
y_position = (desired_height - new_height) // 2
canvas.paste(resized_image, (x_position, y_position))
if 'parameters' in image.info:
pnginfo = PngInfo()
pnginfo.add_text('parameters', image.info['parameters'])
canvas.save(output_file, image_format, pnginfo=pnginfo)
elif 'exif' in image.info:
canvas.save(output_file, image_format, exif=image.info['exif'])
else:
canvas.save(output_file, image_format)
else:
if 'parameters' in image.info:
pnginfo = PngInfo()
pnginfo.add_text('parameters', image.info['parameters'])
image.save(output_file, image_format, pnginfo=pnginfo)
elif 'exif' in image.info:
image.save(output_file, image_format, exif=image.info['exif'])
else:
image.save(output_file, image_format)
def calculate_file_temp_hash(file_path):
"""
Calculates file "temp" hash. This has is based on file creation and modification timestamps and file size.
This is using to determinate file was changed or not.
:param file_path: path to target file.
:return: md5 hex digest string.
"""
creation_timestamp = os.path.getctime(file_path)
creation_datetime = datetime.datetime.fromtimestamp(creation_timestamp)
modification_timestamp = os.path.getmtime(file_path)
modification_datetime = datetime.datetime.fromtimestamp(modification_timestamp)
size = os.path.getsize(file_path)
input_string = f'{creation_datetime} {modification_datetime} {size}'
md5_hash = hashlib.md5()
md5_hash.update(input_string.encode('utf-8'))
return md5_hash.hexdigest()
def calculate_sha256(file_path):
"""
Calculates SHA256 file hash.
:param file_path: target file path.
:return: SHA256 hex digest string.
"""
with open(file_path, 'rb') as file:
sha256_hash = hashlib.sha256()
while chunk := file.read(4096):
sha256_hash.update(chunk)
return sha256_hash.hexdigest()
def get_hash_cache_file():
"""
Returns hash cache file path.
:return: string file path.
"""
return os.path.join(env.script_dir, _HASH_CACHE_FILENAME)
def read_hash_cache() -> List:
"""
Reads hash cache file data.
:return: hash cache data as a list of dictionaries.
"""
file_path = get_hash_cache_file()
if os.path.isfile(file_path):
with open(file_path) as file:
return json.load(file)
return []
def write_hash_cache(hash_cache: List):
"""
Writes hash cache data to file.
:param hash_cache: list of dictionaries to save.
:return: None.
"""
with open(get_hash_cache_file(), 'w') as file:
json.dump(hash_cache, file, indent=4)
def get_best_preview_url(record: Record) -> str:
"""
Returns url to local preview file if it available otherwise returns record.preview_url
:param record: record to get preview.
:return: url to image preview.
"""
if record.location:
preview_path = find_preview_file(record.location)
if preview_path is None:
return record.preview_url
else:
return link_preview(preview_path)
return record.preview_url
def find_info_json_file(model_file_path):
"""
Looks for model info json file.
:param model_file_path: path to model file.
:return: path to model info file if exists, None otherwise.
"""
if model_file_path:
filename_no_ext = get_model_filename_without_extension(model_file_path)
path = os.path.join(os.path.dirname(model_file_path), filename_no_ext)
file = path + ".json"
if os.path.isfile(file):
return file
return None
def get_json_record_data(id):
result = {}
if (id != None) and (isinstance(id, int)) and (id > 0):
record = env.storage.get_record_by_id(id)
weight = 1 if record is None else record.weight
pos = '' if record is None else record.positive_prompts
neg = '' if record is None else record.negative_prompts
isCheckPoint = False
flname = os.path.basename(record.location)
if (record.model_type == ModelType.CHECKPOINT):
isCheckPoint = True
pos = flname
elif(record.model_type == ModelType.LORA or record.model_type == ModelType.LYCORIS):
lora_on_disk = networks.available_networks.get(get_model_filename_without_extension(flname))
if lora_on_disk is None:
return {}
alias = lora_on_disk.get_alias()
activation_text = record.positive_prompts
preferred_weight = record.weight
pos = f'<lora:{alias}:' + (str(preferred_weight) if preferred_weight else '1') + '>'
if activation_text:
pos += " " + activation_text
negative_prompt = record.negative_prompts
if negative_prompt:
neg = negative_prompt
elif(record.model_type == ModelType.HYPER_NETWORK):
preferred_weight = record.weight
pos = f'<hypernet:{get_model_filename_without_extension(flname)}:{preferred_weight}>'
elif(record.model_type == ModelType.EMBEDDING):
embedding = sd_hijack.model_hijack.embedding_db.word_embeddings.get(get_model_filename_without_extension(flname))
if embedding is None:
return {}
if pos:
pos = embedding.name
if neg:
neg = embedding.name
elif(record.model_type == ModelType.VAE or record.model_type == ModelType.OTHER):
return {}
result = {
"id": id,
"positive_prompts": pos,
"negative_prompts": neg,
"checkpoint": isCheckPoint,
"weight": weight
}
return json.loads(json.dumps(result));
|