1
+ import os
2
+ import subprocess
3
+ import json
4
+ import logging
5
+ from .utils import compute_sha256 , windows_to_linux_path
6
+
7
+ ComfyUIModelLoaders = {
8
+ 'VAELoader' : (["vae_name" ], "vae" ),
9
+ 'CheckpointLoader' : (["ckpt_name" ], "checkpoints" ),
10
+ 'CheckpointLoaderSimple' : (["ckpt_name" ], "checkpoints" ),
11
+ 'DiffusersLoader' : (["model_path" ], "diffusers" ),
12
+ 'unCLIPCheckpointLoader' : (["ckpt_name" ], "checkpoints" ),
13
+ 'LoraLoader' : (["lora_name" ], "loras" ),
14
+ 'LoraLoaderModelOnly' : (["lora_name" ], "loras" ),
15
+ 'ControlNetLoader' : (["control_net_name" ], "controlnet" ),
16
+ 'DiffControlNetLoader' : (["control_net_name" ], "controlnet" ),
17
+ 'UNETLoader' : (["unet_name" ], "unet" ),
18
+ 'CLIPLoader' : (["clip_name" ], "clip" ),
19
+ 'DualCLIPLoader' : (["clip_name1" , "clip_name2" ], "clip" ),
20
+ 'CLIPVisionLoader' : (["clip_name" ], "clip_vision" ),
21
+ 'StyleModelLoader' : (["style_model_name" ], "style_models" ),
22
+ 'GLIGENLoader' : (["gligen_name" ], "gligen" ),
23
+ }
24
+
25
+
26
+ ComfyUIFileLoaders = {
27
+ 'VAELoader' : (["vae_name" ], "vae" ),
28
+ 'CheckpointLoader' : (["ckpt_name" ], "checkpoints" ),
29
+ 'CheckpointLoaderSimple' : (["ckpt_name" ], "checkpoints" ),
30
+ 'DiffusersLoader' : (["model_path" ], "diffusers" ),
31
+ 'unCLIPCheckpointLoader' : (["ckpt_name" ], "checkpoints" ),
32
+ 'LoraLoader' : (["lora_name" ], "loras" ),
33
+ 'LoraLoaderModelOnly' : (["lora_name" ], "loras" ),
34
+ 'ControlNetLoader' : (["control_net_name" ], "controlnet" ),
35
+ 'DiffControlNetLoader' : (["control_net_name" ], "controlnet" ),
36
+ 'UNETLoader' : (["unet_name" ], "unet" ),
37
+ 'CLIPLoader' : (["clip_name" ], "clip" ),
38
+ 'DualCLIPLoader' : (["clip_name1" , "clip_name2" ], "clip" ),
39
+ 'CLIPVisionLoader' : (["clip_name" ], "clip_vision" ),
40
+ 'StyleModelLoader' : (["style_model_name" ], "style_models" ),
41
+ 'GLIGENLoader' : (["gligen_name" ], "gligen" ),
42
+ }
43
+
44
+
45
+ model_list_json = json .load (open (os .path .join (os .path .dirname (__file__ ), "model_info.json" )))
46
+ def handle_model_info (ckpt_path ):
47
+ ckpt_path = windows_to_linux_path (ckpt_path )
48
+ filename = os .path .basename (ckpt_path )
49
+ dirname = os .path .dirname (ckpt_path )
50
+ save_path = dirname .split ('/' , 1 )[1 ]
51
+ metadata_path = ckpt_path + ".json"
52
+ if os .path .isfile (metadata_path ):
53
+ metadata = json .load (open (metadata_path ))
54
+ model_id = metadata ["id" ]
55
+ else :
56
+ logging .info (f"computing sha256 of { ckpt_path } " )
57
+ model_id = compute_sha256 (ckpt_path )
58
+ data = {
59
+ "id" : model_id ,
60
+ "save_path" : save_path ,
61
+ "filename" : filename ,
62
+ }
63
+ json .dump (data , open (metadata_path , "w" ))
64
+ if model_id in model_list_json :
65
+ urls = [item ["url" ] for item in model_list_json [model_id ]["links" ]][:10 ] # use the top 10
66
+ else :
67
+ urls = []
68
+
69
+ item = {
70
+ "filename" : filename ,
71
+ "save_path" : save_path ,
72
+ "urls" : urls ,
73
+ }
74
+ return model_id , item
75
+
76
+
77
+ def inspect_repo_version (module_path ):
78
+ # Get the remote repository URL
79
+ try :
80
+ remote_url = subprocess .check_output (
81
+ ['git' , 'config' , '--get' , 'remote.origin.url' ],
82
+ cwd = module_path
83
+ ).strip ().decode ()
84
+ except subprocess .CalledProcessError :
85
+ return {"error" : "Failed to get remote repository URL" }
86
+
87
+ # Get the latest commit hash
88
+ try :
89
+ commit_hash = subprocess .check_output (
90
+ ['git' , 'rev-parse' , 'HEAD' ],
91
+ cwd = module_path
92
+ ).strip ().decode ()
93
+ except subprocess .CalledProcessError :
94
+ return {"error" : "Failed to get commit hash" }
95
+
96
+ # Create and return the JSON result
97
+ result = {
98
+ "repo" : remote_url ,
99
+ "commit" : commit_hash
100
+ }
101
+ return result
102
+
103
+
104
+ def resolve_dependencies (prompt ): # resolve custom nodes and models at the same time
105
+ from nodes import NODE_CLASS_MAPPINGS
106
+ custom_nodes = []
107
+ ckpt_paths = []
108
+ for node_id , node_info in prompt .items ():
109
+ node_class_type = node_info ["class_type" ]
110
+ node_cls = NODE_CLASS_MAPPINGS [node_class_type ]
111
+ if hasattr (node_cls , "RELATIVE_PYTHON_MODULE" ):
112
+ custom_nodes .append (node_cls .RELATIVE_PYTHON_MODULE )
113
+ if node_class_type in ComfyUIModelLoaders :
114
+ input_names , save_path = ComfyUIModelLoaders [node_class_type ]
115
+ for input_name in input_names :
116
+ ckpt_path = os .path .join ("models" , save_path , node_info ["inputs" ][input_name ])
117
+ ckpt_paths .append (ckpt_path )
118
+
119
+ ckpt_paths = list (set (ckpt_paths ))
120
+ custom_nodes = list (set (custom_nodes ))
121
+ # step 1: custom nodes
122
+ custom_nodes_list = [inspect_repo_version (custom_node .replace ("." , "/" )) for custom_node in custom_nodes ]
123
+
124
+ # step 2: models
125
+ models_dict = {}
126
+ for ckpt_path in ckpt_paths :
127
+ model_id , item = handle_model_info (ckpt_path )
128
+ models_dict [model_id ] = item
129
+
130
+ # step 1: handle the custom nodes version
131
+ import pdb ; pdb .set_trace ()
132
+ # return ckpt_pat
133
+ # # step 1:
134
+ # for class_type in
0 commit comments