forked from civitai/civitai_comfy_nodes
-
Notifications
You must be signed in to change notification settings - Fork 1
/
CivitAI_Model.py
551 lines (461 loc) · 25.3 KB
/
CivitAI_Model.py
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
import concurrent.futures
import os
import re
import json
import time
import threading
import hashlib
import requests
from tqdm import tqdm
import comfy.utils
import folder_paths
ROOT_PATH = os.path.dirname(os.path.abspath(__file__))
MSG_PREFIX = '\33[1m\33[34m[CivitAI] \33[0m'
WARN_PREFIX = '\33[1m\33[34m[CivitAI]\33[0m\33[93m Warning: \33[0m'
ERR_PREFIX = '\33[1m\33[31m[CivitAI]\33[0m\33[1m Error: \33[0m'
class CivitAI_Model:
'''
CivitAI Model Class © Civitai 2023
Written by Jordan Thompson
Provides general model file downloading from CivitAI API v1
'''
api = 'https://civitai.com/api/v1'
num_chunks = 8
chunk_size = 1024
max_retries = 120
debug_response = False
warning = False
def __init__(self, model_id, save_path, model_paths, model_types=[], token=None, model_version=None, download_chunks=None, max_download_retries=None, warning=True, debug_response=False):
self.model_id = model_id
self.version = model_version
self.type = None
self.valid_types = model_types
self.model_path = save_path
self.model_paths = model_paths
self.name = None
self.name_friendly = None
self.download_url = None
self.file_details = None
self.file_id = None
self.file_sha256 = None
self.file_size = 0
self.trained_words = None
self.warning = warning
if download_chunks:
self.num_chunks = int(download_chunks)
if token:
self.token = token
if max_download_retries:
self.max_retries = int(max_download_retries)
if debug_response:
self.debug_response = True
self.details()
def details(self):
# CHECK FOR EXISTING MODEL DATA
model_name = self.model_cached_name(self.model_id, self.version)
if model_name and self.model_exists_disk(model_name):
history_file_path = os.path.join(ROOT_PATH, 'download_history.json')
if os.path.exists(history_file_path):
with open(history_file_path, 'r', encoding='utf-8') as history_file:
download_history = json.load(history_file)
model_id_str = str(self.model_id)
version_id = int(self.version) if self.version else None
file_id = int(self.file_id) if self.file_id else None
if model_id_str in download_history:
file_details_list = download_history[model_id_str]
for file_details in file_details_list:
files = file_details.get('files')
model_version = file_details.get('id')
if model_version and model_version == version_id:
if files:
for file in files:
file_version = file.get('id')
name = file.get('name')
if file_id and file_id == file_version:
self.name = name
self.name_friendly = file.get('name_friendly')
self.download_url = f"{file.get('downloadUrl')}?token={self.token}"
self.trained_words = file.get('trained_words')
self.file_details = file
self.file_id = file_version
self.model_id = self.model_id
self.version = int(file.get('id'))
self.type = file.get('model_type', 'Model')
self.file_size = file.get('sizeKB', 0) * 1024
hashes = file.get('hashes')
if hashes:
self.file_sha256 = hashes.get('SHA256')
return self.name, self.file_details
elif self.model_exists_disk(name):
self.name = name
self.name_friendly = file.get('name_friendly')
self.download_url = file.get('downloadUrl')
self.trained_words = file.get('trained_words')
self.file_details = file
self.file_id = file_version
self.model_id = self.model_id
self.version = int(file.get('id'))
self.type = file.get('model_type', 'Model')
self.file_size = file.get('sizeKB', 0) * 1024
hashes = file.get('hashes')
if hashes:
self.file_sha256 = hashes.get('SHA256')
return self.name, self.file_details
del download_history
# NO CACHE DATA FOUND | DOWNLOAD MODEL DETAILS
model_url = f'{self.api}/models/{self.model_id}'
response = requests.get(model_url)
if response.status_code == 200:
model_data = response.json()
if self.debug_response:
print(f"{MSG_PREFIX}API Response:")
print(''); print('')
from pprint import pprint
pprint(model_data, indent=4)
print(''); print('')
model_versions = model_data.get('modelVersions')
model_type = model_data.get('type', 'Model')
self.type = model_type
model_friendly_name = model_data.get('name', 'Unknown')
if model_type not in self.valid_types:
raise Exception(f"{ERR_PREFIX}The model you requested is not a valid `{', '.join(self.valid_types)}`. Aborting!")
if self.version:
for version in model_versions:
version_id = version.get('id')
files = version.get('files')
trained_words = version.get('trainedWords', [])
model_download_url = version.get('downloadUrl', '')
if version_id == self.version and files:
for file in files:
download_url = file.get('downloadUrl')
if download_url == model_download_url:
self.download_url = download_url + f"?token={self.token}"
self.file_details = file
self.file_id = file.get('id')
self.name = file.get('name')
self.trained_words = trained_words
self.file_details.update({'model_type': self.type, "trained_words": trained_words})
self.file_size = file.get('sizeKB', 0) * 1024
hashes = self.file_details.get('hashes')
if hashes:
self.file_sha256 = hashes.get('SHA256')
return self.download_url, self.file_details
else:
version = model_versions[0]
if version:
version_id = version.get('id')
files = version.get('files')
model_download_url = version.get('downloadUrl', '')
trained_words = version.get('trainedWords', [])
for file in files:
download_url = file.get('downloadUrl')
if download_url == model_download_url:
self.download_url = download_url + f"?token={self.token}"
self.file_details = file
self.file_id = file.get('id')
self.name = file.get('name')
self.trained_words = trained_words
self.file_details.update({'model_type': self.type, "trained_words": trained_words})
self.file_size = file.get('sizeKB', 0) * 1024
hashes = self.file_details.get('hashes')
if hashes:
self.file_sha256 = hashes.get('SHA256')
return self.download_url, self.file_details
else:
raise Exception(f"{ERR_PREFIX}No cached model or model data found, and unable to reach CivitAI! Response Code: {response.status_code}\n Please try again later.")
def download(self):
# DOWNLAOD BYTE CHUNK
def download_chunk(chunk_id, url, chunk_size, start_byte, end_byte, file_path, total_pbar, comfy_pbar, max_retries=30):
retries = 0
retry_delay = 5
chunk_complete = False
downloaded_bytes = 0
while retries <= max_retries:
try:
headers = {'Range': f'bytes={start_byte + downloaded_bytes}-{end_byte}'}
response = requests.get(url, headers=headers, stream=True, timeout=10)
if response.status_code == 206:
with open(file_path, 'r+b') as file:
if retries > 0:
print(f"{MSG_PREFIX}Chunk {chunk_id} re-established in {retry_delay}s")
total_pbar.update()
time.sleep(retry_delay * 10)
total_pbar.set_postfix_str('')
file.seek(start_byte + downloaded_bytes)
for chunk in response.iter_content(chunk_size=chunk_size):
file.write(chunk)
total_pbar.update(len(chunk))
comfy_pbar.update(len(chunk))
downloaded_bytes += len(chunk)
retries = 0
if start_byte + downloaded_bytes >= end_byte:
chunk_complete = True
break
comfy_pbar.set_postfix_str(f"Chunk {chunk_id}: {downloaded_bytes} bytes downloaded")
else:
raise Exception(f"{ERR_PREFIX}Unable to establish download connection.")
except (requests.exceptions.RequestException, Exception) as e:
# We shouldn't warn on chunk loss, since end chunks may not be able to be established due to remaining filesize
#print(f"{WARN_PREFIX}Chunk {chunk_id} connection lost")
total_pbar.update()
time.sleep(retry_delay)
retries += 1
if retries > max_retries:
print(f"{ERR_PREFIX}Chunk {chunk_id} failed to download after {max_retries} retries.")
break
if chunk_complete:
break
if not chunk_complete:
raise Exception(f"{ERR_PREFIX}Unable to re-establish connection to CivitAI.")
# GET FILE SIZE
def get_total_file_size(url):
response = requests.get(url, stream=True)
content_length = response.headers.get('Content-Length')
if content_length is not None and content_length.isdigit():
return int(content_length)
response = requests.get(url, headers={'Range': 'bytes=0-999999999'}, stream=True)
content_range = response.headers.get('Content-Range')
if content_range:
total_bytes = int(re.search(r'/(\d+)', content_range).group(1))
return total_bytes
if self.file_size:
return self.file_size
return None
# RESOLVE MODEL ID/VERSION TO FILENAME
model_name = self.model_cached_name(self.model_id, self.version)
if model_name:
model_path = self.model_exists_disk(model_name)
if model_path:
model_sha256 = CivitAI_Model.calculate_sha256(model_path)
if self.name == model_name:
print(f"{MSG_PREFIX}Loading {self.type}: {self.name} (https://civitai.com/models/{self.model_id}/?modelVersionId={self.version})")
print(f"{MSG_PREFIX}{self.type} SHA256: {model_sha256}")
print(f"{MSG_PREFIX}Loading {self.type} from disk: {model_path}")
self.name = model_name
return True
if not self.name:
response = requests.head(self.download_url)
if 'Content-Disposition' in response.headers:
content_disposition = response.headers['Content-Disposition']
self.name = re.findall("filename=(.+)", content_disposition)[0].strip('"')
else:
self.name = self.download_url.split('/')[-1]
# NO MODEL FOUND! | DOWNLOAD MODEL FROM CIVITAI
print(f"{MSG_PREFIX}Downloading `{self.name}` from `{self.download_url}`")
save_path = os.path.join(self.model_path, self.name) # Assume default comfy folder, unless we take user input on extra paths
# EXISTING MODEL FOUND -- CHECK SHA256
if os.path.exists(save_path):
print(f"{MSG_PREFIX}{self.type} file already exists at: {save_path}")
self.dump_file_details()
existing_sha256 = CivitAI_Model.calculate_sha256(save_path)
if existing_sha256 == self.file_sha256:
print(f"{MSG_PREFIX}{self.type} SHA256: {existing_sha256}")
return True
else:
print(f"{ERR_PREFIX}Existing {self.type} file's SHA256 does not match. Retrying download...")
# NO MODEL OR MODEL DATA AVAILABLE -- DOWNLOAD MODEL FROM CIVITAI
response = requests.head(self.download_url)
total_file_size = total_file_size = get_total_file_size(self.download_url)
response = requests.get(self.download_url, stream=True)
if response.status_code != requests.codes.ok:
raise Exception(f"{ERR_PREFIX}Failed to download {self.type} file from CivitAI. Status code: {response.status_code}")
with open(save_path, 'wb') as file:
file.seek(total_file_size - 1)
file.write(b'\0')
futures = []
with concurrent.futures.ThreadPoolExecutor(max_workers=self.num_chunks) as executor:
total_pbar = tqdm(total=total_file_size, unit='B', unit_scale=True, unit_divisor=1024, leave=True)
comfy_pbar = comfy.utils.ProgressBar(total_file_size)
comfy_pbar.update(0)
for i in range(self.num_chunks):
start_byte = i * (total_file_size // self.num_chunks)
end_byte = start_byte + (total_file_size // self.num_chunks) - 1
if i == self.num_chunks - 1:
end_byte = total_file_size - 1
future = executor.submit(download_chunk, i, self.download_url, self.chunk_size, start_byte, end_byte, save_path, total_pbar, comfy_pbar, self.max_retries)
futures.append(future)
for future in futures:
future.result()
total_pbar.close()
model_sha256 = CivitAI_Model.calculate_sha256(save_path)
if model_sha256 == self.file_sha256:
print(f"{MSG_PREFIX}Loading {self.type}: {self.name} (https://civitai.com/models/{self.model_id}/?modelVersionId={self.version})")
print(f"{MSG_PREFIX}{self.type} SHA256: {model_sha256}")
self.dump_file_details()
return True
else:
os.remove(save_path) # Remove Invalid / Broken / Insecure download file
raise Exception(f"{ERR_PREFIX}{self.type} file's SHA256 does not match expected value after retry. Aborting download.")
# DUMP MODEL DETAILS TO DOWNLOAD HISTORY
def dump_file_details(self):
history_file_path = os.path.join(ROOT_PATH, 'download_history.json')
if not self.file_details:
return
if os.path.exists(history_file_path):
with open(history_file_path, 'r', encoding='utf-8') as history_file:
download_history = json.load(history_file)
else:
download_history = {}
model_id_str = str(self.model_id)
if model_id_str in download_history:
model_versions = download_history[model_id_str]
for version_details in model_versions:
if version_details.get('id') == self.version:
files = version_details.get('files', [])
for file_details in files:
if file_details.get('downloadUrl') == self.download_url:
return
version_details.setdefault('files', []).append(self.file_details)
break
else:
download_history[model_id_str].append({
'id': self.version,
'files': [self.file_details],
})
else:
download_history[model_id_str] = [{
'id': self.version,
'files': [self.file_details],
}]
with open(history_file_path, 'w', encoding='utf-8') as history_file:
json.dump(download_history, history_file, indent=4, ensure_ascii=False)
# RESOLVE ID/VERSION TO FILENAME
def model_cached_name(self, model_id, version_id):
history_file_path = os.path.join(ROOT_PATH, 'download_history.json')
if os.path.exists(history_file_path):
with open(history_file_path, 'r') as history_file:
download_history = json.load(history_file)
model_id_str = str(model_id)
version_id = int(version_id) if version_id else None
if model_id_str in download_history:
file_details_list = download_history[model_id_str]
for file_details in file_details_list:
version = file_details.get('id')
files = file_details.get('files')
if files:
for file in files:
name = file.get('name')
if version_id and version_id == version:
return name
elif self.model_exists_disk(name):
return name
return None
# CEHCK FOR MODEL ON DISK
def model_exists_disk(self, name):
for path in self.model_paths:
if path and name:
full_path = os.path.join(path, name)
if os.path.exists(full_path):
if os.path.getsize(full_path) <= 0:
os.remove(full_path)
else:
return full_path
return False
# CEHCK FOR MODEL ON DISK
def model_path(filename, search_paths):
filename, _ = os.path.splitext(filename)
for path in search_paths:
print(path)
for root, dirs, files in os.walk(path):
for file in files:
name, ext = os.path.splitext(file)
print(name)
if name.lower() == filename.lower():
return os.path.join(root, file)
return None
# CALCULATE SHA256
@staticmethod
def calculate_sha256(file_path):
sha256_hash = hashlib.sha256()
if file_path and os.path.exists(file_path):
with open(file_path, "rb") as f:
for byte_block in iter(lambda: f.read(4096), b""):
sha256_hash.update(byte_block)
return sha256_hash.hexdigest().upper()
return 0
# STATIC HASH LOOKUP FOR MANUAL LOADING
@staticmethod
def sha256_lookup(file_path):
hash_value = CivitAI_Model.calculate_sha256(file_path)
history_file_path = os.path.join(ROOT_PATH, 'download_history.json')
if os.path.exists(history_file_path):
with open(history_file_path, 'r', encoding='utf-8') as history_file:
download_history = json.load(history_file)
for model_id, model_versions in download_history.items():
for version in model_versions:
version_id = version.get('id')
if version_id:
for file_details in version.get('files', []):
if file_details and file_details.get('hashes', {}).get('SHA256', '').upper() == hash_value:
model_type = file_details.get('model_type', 'Model')
print(f"{MSG_PREFIX}Loading {model_type}: {os.path.basename(file_path)} (https://civitai.com/models/{model_id}/?modelVersionId={version_id})")
print(f"{MSG_PREFIX}{model_type} Sha256: {hash_value}")
return (model_id, version_id, file_details)
api = f"{CivitAI_Model.api}/model-versions/by-hash/{hash_value}"
response = requests.get(api)
if response.status_code == 200:
model_details = response.json()
if model_details:
model_id = model_details.get('modelId')
version_id = model_details.get('id')
model_info = model_details.get('model')
trained_words = model_details.get('trainedWords', [])
model_type = model_info.get('type', 'Model')
if model_info:
model_type = model_info.get('type', 'Model')
model_versions = model_details.get('files', [])
for file_details in model_versions:
hashes = file_details.get('hashes')
if hashes and hash_value in hashes.values():
print(f"{MSG_PREFIX}Loading {model_type}: {os.path.basename(file_path)} (https://civitai.com/models/{model_id}/?modelVersionId={version_id})")
print(f"{MSG_PREFIX}{model_type} Sha256: {hash_value}")
file_details.update({"model_type": model_type, "trained_words": trained_words})
CivitAI_Model.push_download_history(model_id, model_type, file_details)
return (model_id, version_id, file_details)
else:
if CivitAI_Model.warning:
print(f"{WARN_PREFIX}Unable to determine `{os.path.basename(file_path)}` source on CivitAI.")
else:
if CivitAI_Model.warning:
print(f"{WARN_PREFIX}Unable to determine `{os.path.basename(file_path)}` source on CivitAI.")
return (None, None, None)
# STATIC DOWNLOAD HISTORY PUSH
@staticmethod
def push_download_history(model_id, model_type, file_details):
history_file_path = os.path.join(ROOT_PATH, 'download_history.json')
if not file_details:
return
file_details['model_type'] = model_type
if os.path.exists(history_file_path):
with open(history_file_path, 'r', encoding='utf-8') as history_file:
download_history = json.load(history_file)
model_id_str = str(model_id)
if model_id_str in download_history:
model_versions = download_history[model_id_str]
for version_details in model_versions:
if version_details.get('id') == file_details.get('id'):
files = version_details.get('files', [])
for file_info in files:
if file_info.get('downloadUrl') == file_details.get('downloadUrl'):
return
version_details.setdefault('files', []).append(file_details)
break
else:
download_history[model_id_str].append({
'id': file_details.get('id'),
'files': [file_details],
})
else:
download_history[model_id_str] = [{
'id': file_details.get('id'),
'files': [file_details],
}]
else:
download_history = {
str(model_id): [{
'id': file_details.get('id'),
'files': [file_details],
}]
}
with open(history_file_path, 'w', encoding='utf-8') as history_file:
json.dump(download_history, history_file, indent=4, ensure_ascii=False)