File size: 16,046 Bytes
e9c50ee 4885fba 6b39756 e9c50ee 5291fa8 ba12a9f 5291fa8 9a029ca e9c50ee 6b39756 9a029ca a2e360c e9c50ee 6b39756 a2e360c 6b39756 a2e360c e9c50ee 6b39756 e9c50ee 6b39756 7c3ba6d 076fb4a ba12a9f e9c50ee 076fb4a fb24a43 ba12a9f fb24a43 e9c50ee 35a8477 e9c50ee 076fb4a c199e36 076fb4a e9c50ee fb24a43 e9c50ee fb24a43 e9c50ee fb24a43 e9c50ee 076fb4a e9c50ee 076fb4a e9c50ee 076fb4a e9c50ee 076fb4a e9c50ee 076fb4a e9c50ee 076fb4a 9dc4ed3 98f4346 9dc4ed3 98f4346 076fb4a 4885fba 9dc4ed3 9a029ca 9dc4ed3 98f4346 85b33d8 98f4346 85b33d8 98f4346 9dc4ed3 98f4346 9dc4ed3 e33603e 9dc4ed3 076fb4a b04fc19 076fb4a 99457c7 076fb4a 99457c7 076fb4a 99457c7 076fb4a d2a82d9 076fb4a e9c50ee 076fb4a e9c50ee 076fb4a e9c50ee 6b39756 e9c50ee 6b39756 e9c50ee 6b39756 e9c50ee ba12a9f e9c50ee 9dc4ed3 e9c50ee b04fc19 076fb4a 9dc4ed3 6b39756 e9c50ee 9dc4ed3 076fb4a 9dc4ed3 e9c50ee 6b39756 e9c50ee 9a029ca ba12a9f 9edba37 ba12a9f 9edba37 ba12a9f 076fb4a b04fc19 076fb4a e9c50ee b04fc19 e9c50ee 5291fa8 e9c50ee |
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 |
import requests
import os
import gradio as gr
from huggingface_hub import update_repo_visibility, whoami, upload_folder, create_repo, upload_file, update_repo_visibility, file_exists
import subprocess
import gradio as gr
import re
import uuid
from typing import Optional
import json
from apscheduler.schedulers.background import BackgroundScheduler
from huggingface_hub import Repository, HfApi
api = HfApi()
def restart_space():
api.restart_space(repo_id="civitaiarchive/civitai-to-hf-uploader", token=os.environ["HF_TOKEN"])
BOOLPARM = {
# Raw label conversion.
"Default": None,
"Include": True,
"Exclude": False,
# Url parm conversion.
True: "true",
False: "false",
None: "", # Should not pass parm in this case.
}
def download_file(url, file_path, folder, api_key=None):
headers = {}
full_path = os.path.join(folder, file_path)
os.makedirs(os.path.dirname(full_path), exist_ok=True)
curl_cmd = ['curl', '--fail', '-L', '-o', full_path, url]
# Always use API key if provided
if api_key:
curl_cmd.extend(['-H', f'Authorization: Bearer {api_key}'])
try:
result = subprocess.run(curl_cmd, check=True, capture_output=True, text=True)
except subprocess.CalledProcessError as e:
if ('401' in e.stderr or '403' in e.stderr) and not api_key:
# Try again with authorization
api_key = os.environ.get("CIVITAI_API_KEY")
curl_cmd.extend(['-H', f'Authorization: Bearer {api_key}'])
try:
result = subprocess.run(curl_cmd, check=True, capture_output=True, text=True)
except subprocess.CalledProcessError as e:
raise gr.Error(f"Error downloading file with authorization: {e.stderr}")
else:
raise gr.Error(f"Error downloading file: {e.stderr}")
except Exception as e:
raise gr.Error(f"Error downloading file: {str(e)}")
def get_model_meta(model):
"""Read model metadata from json (api/models format).
Includes all versions, files and images therein.
"""
dfiles = dict()
dimages = dict()
for version in model['modelVersions']:
mainfile = ""
for file in version['files']:
if mainfile == "":
mainfile = os.path.splitext(file['name'])[0]
dfiles[str(model['id']) + '/' + str(version['id']) + '/' + file['name']] = {
'rawModelId': model['id'],
'rawVersionId': version['id'],
'rawFilename': file['name'],
'downloadUrl': file['downloadUrl'],
'modelId': model['name'] + ' - ' + version['name'], # Not used?
'modelUrl': f"https://civitai.com/models/{model['id']}?modelVersionId={version['id']}",
'author': model['creator']['username'],
'authorUrl': f"https://civitai.com/user/{model['creator']['username']}",
'mirrorUrl': f"https://civitaiarchive.com/models/{model['id']}?modelVersionId={version['id']}",
}
for image in version['images']:
# Image ids can be used for direct access,
# but we also need to rename them to the model file to give an indication of attachment.
vext = os.path.splitext(image['url'])[-1]
imagename = mainfile + '-ID' + str(image['id']) + '.preview' + vext
dimages[str(model['id']) + '/' + str(version['id']) + '/' + imagename] = {
'rawModelId': model['id'],
'rawVersionId': version['id'],
'rawFilename': imagename,
'downloadUrl': image['url'],
'modelId': model['name'] + ' - ' + version['name'], # Not used?
'modelUrl': f"https://civitai.com/models/{model['id']}?modelVersionId={version['id']}",
'author': model['creator']['username'],
'authorUrl': f"https://civitai.com/user/{model['creator']['username']}",
'mirrorUrl': f"https://civitaiarchive.com/models/{model['id']}?modelVersionId={version['id']}",
# Tags which might be used for filtering in future.
'nsfwLevel': image['nsfwLevel'], # 1 is sfw, 4 is suggestive, 8+ is explicit.
'poi': image['poi'], # Real person. Content was purged.
'type': image['type'], # image or video. We already have the extension.
}
return (dfiles, dimages)
def get_files_by_username(username, api_key=None, nsfw=None, hidden=None):
url = f"https://civitai.com/api/v1/models?username={username}&limit=100"
output = {}
images = {}
headers = {}
if nsfw is not None:
url = url + f"&nsfw={BOOLPARM[nsfw]}"
if hidden is not None:
url = url + f"&hidden={BOOLPARM[hidden]}"
gr.Info(f"SBM url: {url}")
if api_key:
headers['Authorization'] = f'Bearer {api_key}'
while url:
response = requests.get(url, headers=headers, timeout=180)
data = response.json()
# Add current page items to the list
for model in data['items']:
(dfiles, dimages) = get_model_meta(model)
output.update(dfiles)
images.update(dimages)
metadata = data.get('metadata', {})
url = metadata.get('nextPage', None)
return (output, images)
def get_files_by_model_id(model_id, api_key=None):
api_url = f"https://civitai.com/api/v1/models/{model_id}"
headers = {}
if api_key:
headers['Authorization'] = f'Bearer {api_key}'
try:
response = requests.get(api_url, headers=headers)
response.raise_for_status()
model = response.json()
output = {}
images = {}
(dfiles, dimages) = get_model_meta(model)
output.update(dfiles)
images.update(dimages)
return (output, images)
except requests.exceptions.RequestException as e:
raise gr.Error("Something went wrong in fetching CivitAI API")
def process_url(url, profile, user_repo_id, oauth_token, folder, api_key=None, nsfw=None, hidden=None, indimages = False):
if url.startswith("https://civitai.com/models/"):
model_id = url.split('/')[4]
(files, images) = get_files_by_model_id(model_id, api_key)
elif url.startswith("https://civitai.com/user/"):
username = url.split('/')[4]
(files, images) = get_files_by_username(username, api_key, nsfw, hidden)
else:
raise gr.Error("Unknown CivitAI URL format, please provide model URL or user profile URL")
total_files = len(files)
total_images = len(images)
gr.Info(f"Found {total_files} files to download, {total_images} images")
downloaded_files = {}
current_file = 1
for dl_path, data in files.items():
try:
download_url = data['downloadUrl']
filename = data["rawFilename"]
if file_exists(
repo_id = user_repo_id,
filename = dl_path,
token = oauth_token
):
gr.Info(f"Skipping {filename}, folder exists {dl_path}")
continue
gr.Info(f"Downloading {filename} ({current_file}/{total_files})")
download_file(download_url, dl_path, folder, api_key)
# Upload the model and card
gr.Info(f"Uploading {filename} ({current_file}/{total_files})")
base_folder = os.path.join(folder, os.path.dirname(dl_path))
# Create README.md file
readme = f"""
Author: [{data['author']}]({data['authorUrl']})
Model: [{data['modelUrl']}]({data['modelUrl']})
Mirror: [{data['mirrorUrl']}]({data['mirrorUrl']})
"""
with open(os.path.join(base_folder, "README.md"), "w") as f:
f.write(readme)
upload_folder(
folder_path=base_folder,
repo_id=user_repo_id,
repo_type="model",
path_in_repo=os.path.dirname(dl_path),
token=oauth_token
)
downloaded_files[dl_path] = download_url
except Exception as e:
gr.Warning(f"Failed to download {dl_path}: {str(e)}")
finally:
current_file += 1
# Download images if the model has been downloaded.
downloaded_images = {}
current_image = 1
gr.Info(f"SBM get images {indimages}")
if not indimages:
gr.Info(f"Skipping all images.")
else:
for dl_path, data in images.items():
try:
download_url = data['downloadUrl']
filename = data["rawFilename"]
checkread = os.path.join(os.path.dirname(dl_path), "README.md")
if not file_exists(
# Not sure if there's a "folder_exists", but file exists over the parent folder does not work.
repo_id = user_repo_id,
filename = checkread,
token = oauth_token
):
gr.Info(f"Skipping {filename}, model was not created {checkread}")
continue
if file_exists(
repo_id = user_repo_id,
filename = dl_path,
token = oauth_token
):
gr.Info(f"Skipping {filename}, folder exists {dl_path}")
continue
# Image download should be no different.
gr.Info(f"Downloading {filename} ({current_image}/{total_images})")
download_file(download_url, dl_path, folder, api_key)
# Upload the image only.
gr.Info(f"Uploading {filename} ({current_image}/{total_images})")
base_folder = os.path.join(folder, os.path.dirname(dl_path))
upload_folder(
folder_path=base_folder,
repo_id=user_repo_id,
repo_type="model",
path_in_repo=os.path.dirname(dl_path),
token=oauth_token
)
downloaded_images[dl_path] = download_url
except Exception as e:
gr.Warning(f"Failed to download {dl_path}: {str(e)}")
finally:
current_image += 1
return (files, images)
def add_mirror(repo_id):
response = requests.post("https://civitaiarchive.com/api/mirrors",
headers={
"Authorization": f"Bearer {os.environ['CIVITAIARCHIVE_API_KEY']}",
"Content-Type": "application/json"
},
json={
"type": "huggingface",
"url": repo_id
})
if response.status_code == 200:
gr.Info("Added mirror to CivitaiArchive.com")
else:
gr.Error("Failed to add mirror to CivitaiArchive.com")
def upload_civit_to_hf(profile: Optional[gr.OAuthProfile], oauth_token: gr.OAuthToken, url, destination_repo, civitai_api_key=None, nsfw=None, hidden=None, indimages=False):
if not profile.name:
raise gr.Error("Are you sure you are logged in?")
if not destination_repo:
raise gr.Error("Please provide a destination repository name")
# validate destination repo is alphanumeric
if not re.match(r'^[a-zA-Z0-9_-]+$', destination_repo):
raise gr.Error("Destination repository name must contain only alphanumeric characters, underscores, and hyphens")
# Convert bool flags.
nsfw = BOOLPARM[nsfw]
hidden = BOOLPARM[hidden]
folder = str(uuid.uuid4())
os.makedirs(folder, exist_ok=False)
gr.Info(f"Starting download from {url}")
try:
user_repo_id = f"{profile.username}/{destination_repo}"
# Try to create repo only if it doesn't exist
try:
create_repo(repo_id=user_repo_id, private=True, exist_ok=False, token=oauth_token.token)
gr.Info(f"Created new repository {user_repo_id}")
except Exception as e:
gr.Info(f"Repository {user_repo_id} already exists, will update it")
update_repo_visibility(repo_id=user_repo_id, private=False, token=oauth_token.token)
gr.Info(f"SBM get images upload {indimages}")
(files, images) = process_url(url, profile, user_repo_id, oauth_token.token, folder, civitai_api_key, nsfw, hidden, indimages)
if not files or len(files.keys()) == 0:
raise gr.Error("No files were copied. Something went wrong.")
gr.Info(f"Copied {len(files)} files")
if indimages:
gr.Info(f"Copied {len(images)} images")
results = []
results.append(f"## [{user_repo_id}](https://huggingface.co/{user_repo_id})")
if not results:
raise gr.Error("Failed to upload any models. Please check the logs for details.")
add_mirror(user_repo_id)
return "# Models uploaded to 🤗!\n" + "\n".join(results)
except Exception as e:
print(e)
raise gr.Error(f"Error during upload process: {str(e)}")
finally:
# Cleanup
if os.path.exists(folder):
import shutil
shutil.rmtree(folder)
css = '''
#login {
width: 100% !important;
margin: 0 auto;
}
#disabled_upload{
opacity: 0.5;
pointer-events:none;
}
'''
with gr.Blocks(css=css) as demo:
gr.Markdown('''# Upload CivitAI models to HuggingFace
You can upload either:
- A single model by providing a CivitAI model URL (e.g., https://civitai.com/models/144684)
- All models from a user by providing their profile URL (e.g., https://civitai.com/user/username)
This will create a new HuggingFace repository under your username if it doesn't exist.
Once uploaded, it will add this repository to CivitaiArchive.com as a mirror.
''')
gr.LoginButton(elem_id="login")
with gr.Column() :
submit_source_civit = gr.Textbox(
placeholder="https://civitai.com/models/144684 or https://civitai.com/user/username",
label="CivitAI URL",
info="Enter either a model URL or user profile URL",
)
destination_repo = gr.Textbox(
placeholder="my-awesome-model",
label="HF Repo Name",
info="Name for the HuggingFace repository (a new one will be created if it doesn't exist)",
)
civitai_api_key = gr.Textbox(
placeholder="Your CivitAI API key (optional)",
label="CivitAI API Key",
info="Optional: Provide your own CivitAI API key to avoid rate limits. If not provided, a default key will be used.",
)
include_nsfw = gr.Dropdown(
choices=["Default", "Include", "Exclude"],
value="Include",
label="Nsfw models",
info="Optional: Include, exclude or do not specify inclusion of nsfw models.",
)
include_hidden = gr.Dropdown(
choices=["Default", "Include", "Exclude"],
value="Default",
label="Hidden models",
info="Optional: Include, exclude or do not specify inclusion of hidden models.",
)
upload_images = gr.Checkbox(
value=True,
interactive=True, # Mandatory, otherwise disables the control.
label="Upload images",
info="Optional: Upload images alongside the models for future access. Beware content restrictions."
)
instructions = gr.HTML("")
submit_button_civit = gr.Button("Upload to Hugging Face", interactive=True)
output = gr.Markdown(label="Upload Progress")
submit_button_civit.click(
fn=upload_civit_to_hf,
inputs=[submit_source_civit, destination_repo, civitai_api_key, include_nsfw, include_hidden, upload_images],
outputs=[output]
)
scheduler = BackgroundScheduler()
scheduler.add_job(restart_space, 'interval', seconds=3600)
scheduler.start()
demo.queue(default_concurrency_limit=50)
demo.launch() |