-
Notifications
You must be signed in to change notification settings - Fork 127
Expand file tree
/
Copy pathcommand.py
More file actions
407 lines (343 loc) · 11.9 KB
/
command.py
File metadata and controls
407 lines (343 loc) · 11.9 KB
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 typer
from typing_extensions import List, Annotated
from comfy_cli import tracking
from comfy_cli.env_checker import EnvChecker
import os
import subprocess
import sys
from rich import print
import uuid
from comfy_cli.config_manager import ConfigManager
from comfy_cli.workspace_manager import WorkspaceManager
app = typer.Typer()
manager_app = typer.Typer()
workspace_manager = WorkspaceManager()
def execute_cm_cli(ctx: typer.Context, args, channel=None, mode=None, silent=False):
_config_manager = ConfigManager()
workspace_path = workspace_manager.get_workspace_path(ctx)
comfyui_path = os.path.join(workspace_path, "ComfyUI")
if not os.path.exists(comfyui_path):
print(f"\nComfyUI not found: {comfyui_path}\n", file=sys.stderr)
raise typer.Exit(code=1)
cm_cli_path = os.path.join(
comfyui_path, "custom_nodes", "ComfyUI-Manager", "cm-cli.py"
)
if not os.path.exists(cm_cli_path):
print(f"\nComfyUI-Manager not found: {cm_cli_path}\n", file=sys.stderr)
raise typer.Exit(code=1)
cmd = [sys.executable, cm_cli_path] + args
if channel is not None:
cmd += ["--channel", channel]
if mode is not None:
cmd += ["--mode", channel]
new_env = os.environ.copy()
session_path = os.path.join(
_config_manager.get_config_path(), "tmp", str(uuid.uuid4())
)
new_env["__COMFY_CLI_SESSION__"] = session_path
new_env["COMFYUI_PATH"] = comfyui_path
print(f"Execute from: {comfyui_path}")
if silent:
subprocess.run(
cmd, env=new_env, stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL
)
else:
subprocess.run(cmd, env=new_env)
workspace_manager.set_recent_workspace(workspace_path)
def validate_comfyui_manager(_env_checker):
manager_path = _env_checker.get_comfyui_manager_path()
if manager_path is None:
print(
f"[bold red]If ComfyUI is not installed, this feature cannot be used.[/bold red]"
)
raise typer.Exit(code=1)
elif not os.path.exists(manager_path):
print(
f"[bold red]If ComfyUI-Manager is not installed, this feature cannot be used.[/bold red] \\[{manager_path}]"
)
raise typer.Exit(code=1)
elif not os.path.exists(os.path.join(manager_path, ".git")):
print(
f"[bold red]The ComfyUI-Manager installation is invalid. This feature cannot be used.[/bold red] \\[{manager_path}]"
)
raise typer.Exit(code=1)
@app.command("save-snapshot", help="Save a snapshot of the current ComfyUI environment")
@tracking.track_command("node")
def save_snapshot(
ctx: typer.Context,
output: Annotated[
str,
"--output",
typer.Option(
show_default=False, help="Specify the output file path. (.json/.yaml)"
),
] = None,
):
if output is None:
execute_cm_cli(ctx, ["save-snapshot"])
else:
output = os.path.abspath(output) # to compensate chdir
execute_cm_cli(ctx, ["save-snapshot", "--output", output])
@app.command("restore-snapshot")
@tracking.track_command("node")
def restore_snapshot(ctx: typer.Context, path: str):
path = os.path.abspath(path)
execute_cm_cli(ctx, ["restore-snapshot", path])
@app.command("restore-dependencies")
@tracking.track_command("node")
def restore_dependencies(ctx: typer.Context):
execute_cm_cli(ctx, ["restore-dependencies"])
@manager_app.command("disable-gui")
@tracking.track_command("node")
def disable_gui(ctx: typer.Context):
execute_cm_cli(ctx, ["cli-only-mode", "enable"])
@manager_app.command("enable-gui")
@tracking.track_command("node")
def enable_gui(ctx: typer.Context):
execute_cm_cli(ctx, ["cli-only-mode", "disable"])
@manager_app.command()
@tracking.track_command("node")
def clear(ctx: typer.Context, path: str):
path = os.path.abspath(path)
execute_cm_cli(ctx, ["clear", path])
@app.command()
@tracking.track_command("node")
def show(
ctx: typer.Context,
args: List[str] = typer.Argument(
...,
help="[installed|enabled|not-installed|disabled|all|snapshot|snapshot-list]",
),
channel: Annotated[
str,
"--channel",
typer.Option(show_default=False, help="Specify the operation mode"),
] = None,
mode: Annotated[
str, "--mode", typer.Option(show_default=False, help="[remote|local|cache]")
] = None,
):
valid_commands = [
"installed",
"enabled",
"not-installed",
"disabled",
"all",
"snapshot",
"snapshot-list",
]
if not args or len(args) > 1 or args[0] not in valid_commands:
typer.echo(f"Invalid command: `show {' '.join(args)}`", err=True)
raise typer.Exit(code=1)
valid_modes = ["remote", "local", "cache"]
if mode and mode.lower() not in valid_modes:
typer.echo(
f"Invalid mode: {mode}. Allowed modes are 'remote', 'local', 'cache'.",
err=True,
)
raise typer.Exit(code=1)
execute_cm_cli(ctx, ["show"] + args, channel, mode)
@app.command("simple-show")
@tracking.track_command("node")
def simple_show(
ctx: typer.Context,
args: List[str] = typer.Argument(
...,
help="[installed|enabled|not-installed|disabled|all|snapshot|snapshot-list]",
),
channel: Annotated[
str,
"--channel",
typer.Option(show_default=False, help="Specify the operation mode"),
] = None,
mode: Annotated[
str, "--mode", typer.Option(show_default=False, help="[remote|local|cache]")
] = None,
):
valid_commands = [
"installed",
"enabled",
"not-installed",
"disabled",
"all",
"snapshot",
"snapshot-list",
]
if not args or len(args) > 1 or args[0] not in valid_commands:
typer.echo(f"Invalid command: `show {' '.join(args)}`", err=True)
raise typer.Exit(code=1)
valid_modes = ["remote", "local", "cache"]
if mode and mode.lower() not in valid_modes:
typer.echo(
f"Invalid mode: {mode}. Allowed modes are 'remote', 'local', 'cache'.",
err=True,
)
raise typer.Exit(code=1)
execute_cm_cli(ctx, ["simple-show"] + args, channel, mode)
# install, reinstall, uninstall
@app.command()
@tracking.track_command("node")
def install(
ctx: typer.Context,
args: List[str] = typer.Argument(..., help="install custom nodes"),
channel: Annotated[
str,
"--channel",
typer.Option(show_default=False, help="Specify the operation mode"),
] = None,
mode: Annotated[
str, "--mode", typer.Option(show_default=False, help="[remote|local|cache]")
] = None,
):
if "all" in args:
typer.echo(f"Invalid command: {mode}. `install all` is not allowed", err=True)
raise typer.Exit(code=1)
valid_modes = ["remote", "local", "cache"]
if mode and mode.lower() not in valid_modes:
typer.echo(
f"Invalid mode: {mode}. Allowed modes are 'remote', 'local', 'cache'.",
err=True,
)
raise typer.Exit(code=1)
execute_cm_cli(ctx, ["install"] + args, channel, mode)
@app.command()
@tracking.track_command("node")
def reinstall(
ctx: typer.Context,
args: List[str] = typer.Argument(..., help="reinstall custom nodes"),
channel: Annotated[
str,
"--channel",
typer.Option(show_default=False, help="Specify the operation mode"),
] = None,
mode: Annotated[
str, "--mode", typer.Option(show_default=False, help="[remote|local|cache]")
] = None,
):
if "all" in args:
typer.echo(f"Invalid command: {mode}. `reinstall all` is not allowed", err=True)
raise typer.Exit(code=1)
valid_modes = ["remote", "local", "cache"]
if mode and mode.lower() not in valid_modes:
typer.echo(
f"Invalid mode: {mode}. Allowed modes are 'remote', 'local', 'cache'.",
err=True,
)
raise typer.Exit(code=1)
execute_cm_cli(ctx, ["reinstall"] + args, channel, mode)
@app.command()
@tracking.track_command("node")
def uninstall(
ctx: typer.Context,
args: List[str] = typer.Argument(..., help="uninstall custom nodes"),
channel: Annotated[
str,
"--channel",
typer.Option(show_default=False, help="Specify the operation mode"),
] = None,
mode: Annotated[
str, "--mode", typer.Option(show_default=False, help="[remote|local|cache]")
] = None,
):
if "all" in args:
typer.echo(f"Invalid command: {mode}. `uninstall all` is not allowed", err=True)
raise typer.Exit(code=1)
valid_modes = ["remote", "local", "cache"]
if mode and mode.lower() not in valid_modes:
typer.echo(
f"Invalid mode: {mode}. Allowed modes are 'remote', 'local', 'cache'.",
err=True,
)
raise typer.Exit(code=1)
execute_cm_cli(ctx, ["uninstall"] + args, channel, mode)
# `update, disable, enable, fix` allows `all` param
@app.command()
@tracking.track_command("node")
def update(
ctx: typer.Context,
args: List[str] = typer.Argument(..., help="update custom nodes"),
channel: Annotated[
str,
"--channel",
typer.Option(show_default=False, help="Specify the operation mode"),
] = None,
mode: Annotated[
str, "--mode", typer.Option(show_default=False, help="[remote|local|cache]")
] = None,
):
valid_modes = ["remote", "local", "cache"]
if mode and mode.lower() not in valid_modes:
typer.echo(
f"Invalid mode: {mode}. Allowed modes are 'remote', 'local', 'cache'.",
err=True,
)
raise typer.Exit(code=1)
execute_cm_cli(ctx, ["update"] + args, channel, mode)
@app.command()
@tracking.track_command("node")
def disable(
ctx: typer.Context,
args: List[str] = typer.Argument(..., help="disable custom nodes"),
channel: Annotated[
str,
"--channel",
typer.Option(show_default=False, help="Specify the operation mode"),
] = None,
mode: Annotated[
str, "--mode", typer.Option(show_default=False, help="[remote|local|cache]")
] = None,
):
valid_modes = ["remote", "local", "cache"]
if mode and mode.lower() not in valid_modes:
typer.echo(
f"Invalid mode: {mode}. Allowed modes are 'remote', 'local', 'cache'.",
err=True,
)
raise typer.Exit(code=1)
execute_cm_cli(ctx, ["disable"] + args, channel, mode)
@app.command()
@tracking.track_command("node")
def enable(
ctx: typer.Context,
args: List[str] = typer.Argument(..., help="enable custom nodes"),
channel: Annotated[
str,
"--channel",
typer.Option(show_default=False, help="Specify the operation mode"),
] = None,
mode: Annotated[
str, "--mode", typer.Option(show_default=False, help="[remote|local|cache]")
] = None,
):
valid_modes = ["remote", "local", "cache"]
if mode and mode.lower() not in valid_modes:
typer.echo(
f"Invalid mode: {mode}. Allowed modes are 'remote', 'local', 'cache'.",
err=True,
)
raise typer.Exit(code=1)
execute_cm_cli(ctx, ["enable"] + args, channel, mode)
@app.command()
@tracking.track_command("node")
def fix(
ctx: typer.Context,
args: List[str] = typer.Argument(
..., help="fix dependencies for specified custom nodes"
),
channel: Annotated[
str,
"--channel",
typer.Option(show_default=False, help="Specify the operation mode"),
] = None,
mode: Annotated[
str, "--mode", typer.Option(show_default=False, help="[remote|local|cache]")
] = None,
):
valid_modes = ["remote", "local", "cache"]
if mode and mode.lower() not in valid_modes:
typer.echo(
f"Invalid mode: {mode}. Allowed modes are 'remote', 'local', 'cache'.",
err=True,
)
raise typer.Exit(code=1)
execute_cm_cli(ctx, ["fix"] + args, channel, mode)