5
5
from concurrent .futures import ThreadPoolExecutor , as_completed
6
6
import folder_paths
7
7
8
- from .utils .utils import compute_sha256
8
+ from .utils .utils import compute_sha256 , get_alphanumeric_hash
9
9
10
10
ext_to_type = {
11
11
# image
27
27
'.m4a' : 'audio/mp4' ,
28
28
}
29
29
30
- def upload_file_to_myshell (local_file : str ) -> str :
30
+ def upload_file_to_myshell (local_file : str , target_path : str , is_abs ) -> str :
31
31
''' Now we only support upload file one-by-one
32
32
'''
33
33
MYSHELL_KEY = os .environ .get ('MYSHELL_KEY' , "OPENSOURCE_FIXED" )
@@ -51,8 +51,8 @@ def upload_file_to_myshell(local_file: str) -> str:
51
51
response = requests .request ("POST" , server_url , headers = headers , files = files )
52
52
if response .status_code == 200 :
53
53
end_time = time .time ()
54
- logging .info (f"{ local_file } uploaded, time elapsed: { end_time - start_time } " )
55
- return [sha256sum , response .json ()['url' ], local_file ]
54
+ logging .info (f"{ local_file } uploaded, time elapsed: { end_time - start_time } , will be saved to { target_path } " )
55
+ return [sha256sum , response .json ()['url' ], target_path , is_abs ]
56
56
else :
57
57
raise Exception (
58
58
f"[HTTP ERROR] { response .status_code } - { response .text } \n "
@@ -66,16 +66,25 @@ def collect_local_file(item, mapping_dict={}):
66
66
abspath = os .path .abspath (item )
67
67
input_abspath = os .path .join (input_dir , item )
68
68
# required file type
69
+ is_abs = False
69
70
if os .path .isfile (abspath ):
70
71
fpath = abspath
72
+ is_abs = True
73
+
71
74
elif os .path .isfile (input_abspath ):
72
75
fpath = input_abspath
73
76
else :
74
77
fpath = None
75
78
if fpath is not None :
76
79
ext = os .path .splitext (fpath )[1 ]
77
80
if ext .lower () in ext_to_type .keys ():
78
- mapping_dict [item ] = fpath
81
+ if is_abs : # if use abs path, replace it
82
+ filename_hash = get_alphanumeric_hash (abspath )[:16 ]
83
+ count = len (mapping_dict )
84
+ target_path = f"/ShellAgentDeploy/ComfyUI/input/{ filename_hash } _{ count :06d} { ext } "
85
+ mapping_dict [item ] = (fpath , target_path , is_abs )
86
+ else :
87
+ mapping_dict [item ] = (fpath , fpath , is_abs )
79
88
return
80
89
else :
81
90
return
@@ -86,7 +95,7 @@ def process_local_file_path_async(mapping_dict, max_workers=10):
86
95
start_time = time .time ()
87
96
with ThreadPoolExecutor (max_workers = max_workers ) as executor :
88
97
# Submit tasks to the executor
89
- futures = {executor .submit (upload_file_to_myshell , full_path ): filename for filename , full_path in mapping_dict .items ()}
98
+ futures = {executor .submit (upload_file_to_myshell , source_path , target_path , is_abs ): filename for filename , ( source_path , target_path , is_abs ) in mapping_dict .items ()}
90
99
logging .info ("submit done" )
91
100
# Collect the results as they complete
92
101
for future in as_completed (futures ):
0 commit comments