server.py 28.3 KB
Newer Older
pythongosssss's avatar
pythongosssss committed
1
2
3
import os
import sys
import asyncio
4
5
import traceback

pythongosssss's avatar
pythongosssss committed
6
import nodes
7
import folder_paths
8
import execution
pythongosssss's avatar
pythongosssss committed
9
import uuid
10
import urllib
pythongosssss's avatar
pythongosssss committed
11
import json
12
import glob
space-nuko's avatar
space-nuko committed
13
import struct
Garrett Sutula's avatar
Garrett Sutula committed
14
import ssl
15
import hashlib
16
from PIL import Image, ImageOps
Chris's avatar
Chris committed
17
from PIL.PngImagePlugin import PngInfo
18
19
from io import BytesIO

comfyanonymous's avatar
comfyanonymous committed
20
21
import aiohttp
from aiohttp import web
comfyanonymous's avatar
comfyanonymous committed
22
import logging
pythongosssss's avatar
pythongosssss committed
23

comfyanonymous's avatar
Style.  
comfyanonymous committed
24
import mimetypes
EllangoK's avatar
EllangoK committed
25
from comfy.cli_args import args
26
import comfy.utils
space-nuko's avatar
space-nuko committed
27
import comfy.model_management
28
import node_helpers
29
from app.frontend_management import FrontendManager
30
from app.user_manager import UserManager
space-nuko's avatar
space-nuko committed
31

32

space-nuko's avatar
space-nuko committed
33
34
class BinaryEventTypes:
    PREVIEW_IMAGE = 1
35
    UNENCODED_PREVIEW_IMAGE = 2
space-nuko's avatar
space-nuko committed
36

37
38
39
40
async def send_socket_catch_exception(function, message):
    try:
        await function(message)
    except (aiohttp.ClientError, aiohttp.ClientPayloadError, ConnectionResetError) as err:
comfyanonymous's avatar
comfyanonymous committed
41
        logging.warning("send error: {}".format(err))
space-nuko's avatar
space-nuko committed
42

43
44
45
46
47
48
49
@web.middleware
async def cache_control(request: web.Request, handler):
    response: web.Response = await handler(request)
    if request.path.endswith('.js') or request.path.endswith('.css'):
        response.headers.setdefault('Cache-Control', 'no-cache')
    return response

EllangoK's avatar
EllangoK committed
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
def create_cors_middleware(allowed_origin: str):
    @web.middleware
    async def cors_middleware(request: web.Request, handler):
        if request.method == "OPTIONS":
            # Pre-flight request. Reply successfully:
            response = web.Response()
        else:
            response = await handler(request)

        response.headers['Access-Control-Allow-Origin'] = allowed_origin
        response.headers['Access-Control-Allow-Methods'] = 'POST, GET, DELETE, PUT, OPTIONS'
        response.headers['Access-Control-Allow-Headers'] = 'Content-Type, Authorization'
        response.headers['Access-Control-Allow-Credentials'] = 'true'
        return response

    return cors_middleware
EllangoK's avatar
EllangoK committed
66

pythongosssss's avatar
pythongosssss committed
67
68
class PromptServer():
    def __init__(self, loop):
69
        PromptServer.instance = self
comfyanonymous's avatar
Style.  
comfyanonymous committed
70

71
        mimetypes.init()
pythongosssss's avatar
pythongosssss committed
72
        mimetypes.types_map['.js'] = 'application/javascript; charset=utf-8'
73

74
        self.user_manager = UserManager()
75
        self.supports = ["custom_nodes_from_web"]
pythongosssss's avatar
pythongosssss committed
76
77
78
79
        self.prompt_queue = None
        self.loop = loop
        self.messages = asyncio.Queue()
        self.number = 0
EllangoK's avatar
EllangoK committed
80
81

        middlewares = [cache_control]
82
83
        if args.enable_cors_header:
            middlewares.append(create_cors_middleware(args.enable_cors_header))
EllangoK's avatar
EllangoK committed
84

85
86
        max_upload_size = round(args.max_upload_size * 1024 * 1024)
        self.app = web.Application(client_max_size=max_upload_size, middlewares=middlewares)
pythongosssss's avatar
pythongosssss committed
87
        self.sockets = dict()
88
89
90
91
92
93
        self.web_root = (
            FrontendManager.init_frontend(args.front_end_version)
            if args.front_end_root is None
            else args.front_end_root
        )
        logging.info(f"[Prompt Server] web root: {self.web_root}")
pythongosssss's avatar
pythongosssss committed
94
        routes = web.RouteTableDef()
95
        self.routes = routes
96
97
        self.last_node_id = None
        self.client_id = None
pythongosssss's avatar
pythongosssss committed
98

99
100
        self.on_prompt_handlers = []

pythongosssss's avatar
pythongosssss committed
101
102
103
104
        @routes.get('/ws')
        async def websocket_handler(request):
            ws = web.WebSocketResponse()
            await ws.prepare(request)
105
106
107
108
109
            sid = request.rel_url.query.get('clientId', '')
            if sid:
                # Reusing existing session, remove old
                self.sockets.pop(sid, None)
            else:
110
                sid = uuid.uuid4().hex
111

pythongosssss's avatar
pythongosssss committed
112
            self.sockets[sid] = ws
113

pythongosssss's avatar
pythongosssss committed
114
115
116
            try:
                # Send initial state to the new client
                await self.send("status", { "status": self.get_queue_info(), 'sid': sid }, sid)
117
118
119
                # On reconnect if we are the currently executing client send the current node
                if self.client_id == sid and self.last_node_id is not None:
                    await self.send("executing", { "node": self.last_node_id }, sid)
comfyanonymous's avatar
comfyanonymous committed
120

pythongosssss's avatar
pythongosssss committed
121
122
                async for msg in ws:
                    if msg.type == aiohttp.WSMsgType.ERROR:
comfyanonymous's avatar
comfyanonymous committed
123
                        logging.warning('ws connection closed with exception %s' % ws.exception())
pythongosssss's avatar
pythongosssss committed
124
            finally:
125
                self.sockets.pop(sid, None)
pythongosssss's avatar
pythongosssss committed
126
127
128
129
130
            return ws

        @routes.get("/")
        async def get_root(request):
            return web.FileResponse(os.path.join(self.web_root, "index.html"))
131

132
133
        @routes.get("/embeddings")
        def get_embeddings(self):
134
            embeddings = folder_paths.get_filename_list("embeddings")
135
            return web.json_response(list(map(lambda a: os.path.splitext(a)[0], embeddings)))
136

137
138
        @routes.get("/extensions")
        async def get_extensions(request):
139
            files = glob.glob(os.path.join(
140
                glob.escape(self.web_root), 'extensions/**/*.js'), recursive=True)
comfyanonymous's avatar
comfyanonymous committed
141

142
            extensions = list(map(lambda f: "/" + os.path.relpath(f, self.web_root).replace("\\", "/"), files))
comfyanonymous's avatar
comfyanonymous committed
143

144
            for name, dir in nodes.EXTENSION_WEB_DIRS.items():
145
                files = glob.glob(os.path.join(glob.escape(dir), '**/*.js'), recursive=True)
146
147
148
149
                extensions.extend(list(map(lambda f: "/extensions/" + urllib.parse.quote(
                    name) + "/" + os.path.relpath(f, dir).replace("\\", "/"), files)))

            return web.json_response(extensions)
150

151
152
        def get_dir_by_type(dir_type):
            if dir_type is None:
153
154
155
                dir_type = "input"

            if dir_type == "input":
156
157
158
159
160
161
                type_dir = folder_paths.get_input_directory()
            elif dir_type == "temp":
                type_dir = folder_paths.get_temp_directory()
            elif dir_type == "output":
                type_dir = folder_paths.get_output_directory()

162
            return type_dir, dir_type
comfyanonymous's avatar
comfyanonymous committed
163

164
        def compare_image_hash(filepath, image):
165
166
            hasher = node_helpers.hasher()
            
167
168
            # function to compare hashes of two images to see if it already exists, fix to #3465
            if os.path.exists(filepath):
169
170
                a = hasher()
                b = hasher()
171
172
173
174
175
176
177
                with open(filepath, "rb") as f:
                    a.update(f.read())
                    b.update(image.file.read())
                    image.file.seek(0)
                    f.close()
                return a.hexdigest() == b.hexdigest()
            return False
comfyanonymous's avatar
comfyanonymous committed
178

comfyanonymous's avatar
comfyanonymous committed
179
        def image_upload(post, image_save_function=None):
ltdrdata's avatar
ltdrdata committed
180
            image = post.get("image")
181
            overwrite = post.get("overwrite")
182
            image_is_duplicate = False
ltdrdata's avatar
ltdrdata committed
183

comfyanonymous's avatar
comfyanonymous committed
184
            image_upload_type = post.get("type")
185
            upload_dir, image_upload_type = get_dir_by_type(image_upload_type)
pythongosssss's avatar
pythongosssss committed
186
187
188
189
190
191

            if image and image.file:
                filename = image.filename
                if not filename:
                    return web.Response(status=400)

comfyanonymous's avatar
comfyanonymous committed
192
193
                subfolder = post.get("subfolder", "")
                full_output_folder = os.path.join(upload_dir, os.path.normpath(subfolder))
comfyanonymous's avatar
comfyanonymous committed
194
                filepath = os.path.abspath(os.path.join(full_output_folder, filename))
comfyanonymous's avatar
comfyanonymous committed
195

comfyanonymous's avatar
comfyanonymous committed
196
                if os.path.commonpath((upload_dir, filepath)) != upload_dir:
comfyanonymous's avatar
comfyanonymous committed
197
198
199
200
201
                    return web.Response(status=400)

                if not os.path.exists(full_output_folder):
                    os.makedirs(full_output_folder)

pythongosssss's avatar
pythongosssss committed
202
                split = os.path.splitext(filename)
comfyanonymous's avatar
comfyanonymous committed
203

204
205
206
207
208
                if overwrite is not None and (overwrite == "true" or overwrite == "1"):
                    pass
                else:
                    i = 1
                    while os.path.exists(filepath):
209
210
211
                        if compare_image_hash(filepath, image): #compare hash to prevent saving of duplicates with same name, fix for #3465
                            image_is_duplicate = True
                            break
212
213
214
                        filename = f"{split[0]} ({i}){split[1]}"
                        filepath = os.path.join(full_output_folder, filename)
                        i += 1
pythongosssss's avatar
pythongosssss committed
215

comfyanonymous's avatar
comfyanonymous committed
216
                if not image_is_duplicate:
217
218
219
220
221
                    if image_save_function is not None:
                        image_save_function(image, post, filepath)
                    else:
                        with open(filepath, "wb") as f:
                            f.write(image.file.read())
pythongosssss's avatar
pythongosssss committed
222

comfyanonymous's avatar
comfyanonymous committed
223
                return web.json_response({"name" : filename, "subfolder": subfolder, "type": image_upload_type})
pythongosssss's avatar
pythongosssss committed
224
225
226
            else:
                return web.Response(status=400)

comfyanonymous's avatar
comfyanonymous committed
227
228
229
230
231
        @routes.post("/upload/image")
        async def upload_image(request):
            post = await request.post()
            return image_upload(post)

232

233
234
235
236
        @routes.post("/upload/mask")
        async def upload_mask(request):
            post = await request.post()

comfyanonymous's avatar
comfyanonymous committed
237
            def image_save_function(image, post, filepath):
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
                original_ref = json.loads(post.get("original_ref"))
                filename, output_dir = folder_paths.annotated_filepath(original_ref['filename'])

                # validation for security: prevent accessing arbitrary path
                if filename[0] == '/' or '..' in filename:
                    return web.Response(status=400)

                if output_dir is None:
                    type = original_ref.get("type", "output")
                    output_dir = folder_paths.get_directory_by_type(type)

                if output_dir is None:
                    return web.Response(status=400)

                if original_ref.get("subfolder", "") != "":
                    full_output_dir = os.path.join(output_dir, original_ref["subfolder"])
                    if os.path.commonpath((os.path.abspath(full_output_dir), output_dir)) != output_dir:
                        return web.Response(status=403)
                    output_dir = full_output_dir
257

258
259
260
261
                file = os.path.join(output_dir, filename)

                if os.path.isfile(file):
                    with Image.open(file) as original_pil:
Chris's avatar
Chris committed
262
                        metadata = PngInfo()
Chris's avatar
Chris committed
263
264
265
                        if hasattr(original_pil,'text'):
                            for key in original_pil.text:
                                metadata.add_text(key, original_pil.text[key])
266
267
268
269
270
271
                        original_pil = original_pil.convert('RGBA')
                        mask_pil = Image.open(image.file).convert('RGBA')

                        # alpha copy
                        new_alpha = mask_pil.getchannel('A')
                        original_pil.putalpha(new_alpha)
Chris's avatar
Chris committed
272
                        original_pil.save(filepath, compress_level=4, pnginfo=metadata)
273

comfyanonymous's avatar
comfyanonymous committed
274
            return image_upload(post, image_save_function)
pythongosssss's avatar
pythongosssss committed
275

276
        @routes.get("/view")
pythongosssss's avatar
pythongosssss committed
277
        async def view_image(request):
m957ymj75urz's avatar
m957ymj75urz committed
278
            if "filename" in request.rel_url.query:
279
280
281
282
283
284
285
286
287
288
289
                filename = request.rel_url.query["filename"]
                filename,output_dir = folder_paths.annotated_filepath(filename)

                # validation for security: prevent accessing arbitrary path
                if filename[0] == '/' or '..' in filename:
                    return web.Response(status=400)

                if output_dir is None:
                    type = request.rel_url.query.get("type", "output")
                    output_dir = folder_paths.get_directory_by_type(type)

290
                if output_dir is None:
pythongosssss's avatar
pythongosssss committed
291
292
                    return web.Response(status=400)

293
                if "subfolder" in request.rel_url.query:
m957ymj75urz's avatar
m957ymj75urz committed
294
                    full_output_dir = os.path.join(output_dir, request.rel_url.query["subfolder"])
295
                    if os.path.commonpath((os.path.abspath(full_output_dir), output_dir)) != output_dir:
m957ymj75urz's avatar
m957ymj75urz committed
296
297
                        return web.Response(status=403)
                    output_dir = full_output_dir
298

299
300
                filename = os.path.basename(filename)
                file = os.path.join(output_dir, filename)
m957ymj75urz's avatar
m957ymj75urz committed
301

pythongosssss's avatar
pythongosssss committed
302
                if os.path.isfile(file):
303
304
305
                    if 'preview' in request.rel_url.query:
                        with Image.open(file) as img:
                            preview_info = request.rel_url.query['preview'].split(';')
306
                            image_format = preview_info[0]
307
                            if image_format not in ['webp', 'jpeg'] or 'a' in request.rel_url.query.get('channel', ''):
308
                                image_format = 'webp'
309
310
311
312
313
314

                            quality = 90
                            if preview_info[-1].isdigit():
                                quality = int(preview_info[-1])

                            buffer = BytesIO()
315
                            if image_format in ['jpeg'] or request.rel_url.query.get('channel', '') == 'rgb':
316
317
                                img = img.convert("RGB")
                            img.save(buffer, format=image_format, quality=quality)
318
319
320
321
322
                            buffer.seek(0)

                            return web.Response(body=buffer.read(), content_type=f'image/{image_format}',
                                                headers={"Content-Disposition": f"filename=\"{filename}\""})

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
                    if 'channel' not in request.rel_url.query:
                        channel = 'rgba'
                    else:
                        channel = request.rel_url.query["channel"]

                    if channel == 'rgb':
                        with Image.open(file) as img:
                            if img.mode == "RGBA":
                                r, g, b, a = img.split()
                                new_img = Image.merge('RGB', (r, g, b))
                            else:
                                new_img = img.convert("RGB")

                            buffer = BytesIO()
                            new_img.save(buffer, format='PNG')
                            buffer.seek(0)

                            return web.Response(body=buffer.read(), content_type='image/png',
                                                headers={"Content-Disposition": f"filename=\"{filename}\""})

                    elif channel == 'a':
                        with Image.open(file) as img:
                            if img.mode == "RGBA":
                                _, _, _, a = img.split()
                            else:
                                a = Image.new('L', img.size, 255)

                            # alpha img
                            alpha_img = Image.new('RGBA', img.size)
                            alpha_img.putalpha(a)
                            alpha_buffer = BytesIO()
                            alpha_img.save(alpha_buffer, format='PNG')
                            alpha_buffer.seek(0)

                            return web.Response(body=alpha_buffer.read(), content_type='image/png',
                                                headers={"Content-Disposition": f"filename=\"{filename}\""})
                    else:
                        return web.FileResponse(file, headers={"Content-Disposition": f"filename=\"{filename}\""})

pythongosssss's avatar
pythongosssss committed
362
            return web.Response(status=404)
363

364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
        @routes.get("/view_metadata/{folder_name}")
        async def view_metadata(request):
            folder_name = request.match_info.get("folder_name", None)
            if folder_name is None:
                return web.Response(status=404)
            if not "filename" in request.rel_url.query:
                return web.Response(status=404)

            filename = request.rel_url.query["filename"]
            if not filename.endswith(".safetensors"):
                return web.Response(status=404)

            safetensors_path = folder_paths.get_full_path(folder_name, filename)
            if safetensors_path is None:
                return web.Response(status=404)
            out = comfy.utils.safetensors_header(safetensors_path, max_size=1024*1024)
            if out is None:
                return web.Response(status=404)
            dt = json.loads(out)
            if not "__metadata__" in dt:
                return web.Response(status=404)
            return web.json_response(dt["__metadata__"])

space-nuko's avatar
space-nuko committed
387
388
        @routes.get("/system_stats")
        async def get_queue(request):
389
390
            device = comfy.model_management.get_torch_device()
            device_name = comfy.model_management.get_torch_device_name(device)
space-nuko's avatar
space-nuko committed
391
392
393
            vram_total, torch_vram_total = comfy.model_management.get_total_memory(device, torch_total_too=True)
            vram_free, torch_vram_free = comfy.model_management.get_free_memory(device, torch_free_too=True)
            system_stats = {
394
395
396
397
398
                "system": {
                    "os": os.name,
                    "python_version": sys.version,
                    "embedded_python": os.path.split(os.path.split(sys.executable)[0])[1] == "python_embeded"
                },
space-nuko's avatar
space-nuko committed
399
400
401
402
403
404
405
406
407
408
409
410
411
412
                "devices": [
                    {
                        "name": device_name,
                        "type": device.type,
                        "index": device.index,
                        "vram_total": vram_total,
                        "vram_free": vram_free,
                        "torch_vram_total": torch_vram_total,
                        "torch_vram_free": torch_vram_free,
                    }
                ]
            }
            return web.json_response(system_stats)

pythongosssss's avatar
pythongosssss committed
413
414
415
        @routes.get("/prompt")
        async def get_prompt(request):
            return web.json_response(self.get_queue_info())
416

417
418
419
420
421
422
423
424
425
        def node_info(node_class):
            obj_class = nodes.NODE_CLASS_MAPPINGS[node_class]
            info = {}
            info['input'] = obj_class.INPUT_TYPES()
            info['output'] = obj_class.RETURN_TYPES
            info['output_is_list'] = obj_class.OUTPUT_IS_LIST if hasattr(obj_class, 'OUTPUT_IS_LIST') else [False] * len(obj_class.RETURN_TYPES)
            info['output_name'] = obj_class.RETURN_NAMES if hasattr(obj_class, 'RETURN_NAMES') else info['output']
            info['name'] = node_class
            info['display_name'] = nodes.NODE_DISPLAY_NAME_MAPPINGS[node_class] if node_class in nodes.NODE_DISPLAY_NAME_MAPPINGS.keys() else node_class
Chris's avatar
Chris committed
426
            info['description'] = obj_class.DESCRIPTION if hasattr(obj_class,'DESCRIPTION') else ''
427
            info['python_module'] = getattr(obj_class, "RELATIVE_PYTHON_MODULE", "nodes")
428
            info['category'] = 'sd'
429
430
431
432
433
            if hasattr(obj_class, 'OUTPUT_NODE') and obj_class.OUTPUT_NODE == True:
                info['output_node'] = True
            else:
                info['output_node'] = False

434
435
436
437
            if hasattr(obj_class, 'CATEGORY'):
                info['category'] = obj_class.CATEGORY
            return info

pythongosssss's avatar
pythongosssss committed
438
439
440
441
        @routes.get("/object_info")
        async def get_object_info(request):
            out = {}
            for x in nodes.NODE_CLASS_MAPPINGS:
442
443
444
                try:
                    out[x] = node_info(x)
                except Exception as e:
445
446
                    logging.error(f"[ERROR] An error occurred while retrieving information for the '{x}' node.")
                    logging.error(traceback.format_exc())
447
448
449
450
451
452
453
454
            return web.json_response(out)

        @routes.get("/object_info/{node_class}")
        async def get_object_info_node(request):
            node_class = request.match_info.get("node_class", None)
            out = {}
            if (node_class is not None) and (node_class in nodes.NODE_CLASS_MAPPINGS):
                out[node_class] = node_info(node_class)
pythongosssss's avatar
pythongosssss committed
455
            return web.json_response(out)
456

pythongosssss's avatar
pythongosssss committed
457
458
        @routes.get("/history")
        async def get_history(request):
459
460
461
462
            max_items = request.rel_url.query.get("max_items", None)
            if max_items is not None:
                max_items = int(max_items)
            return web.json_response(self.prompt_queue.get_history(max_items=max_items))
463

464
465
466
467
468
        @routes.get("/history/{prompt_id}")
        async def get_history(request):
            prompt_id = request.match_info.get("prompt_id", None)
            return web.json_response(self.prompt_queue.get_history(prompt_id=prompt_id))

pythongosssss's avatar
pythongosssss committed
469
470
471
472
473
474
475
        @routes.get("/queue")
        async def get_queue(request):
            queue_info = {}
            current_queue = self.prompt_queue.get_current_queue()
            queue_info['queue_running'] = current_queue[0]
            queue_info['queue_pending'] = current_queue[1]
            return web.json_response(queue_info)
476

pythongosssss's avatar
pythongosssss committed
477
478
        @routes.post("/prompt")
        async def post_prompt(request):
comfyanonymous's avatar
comfyanonymous committed
479
            logging.info("got prompt")
pythongosssss's avatar
pythongosssss committed
480
481
482
            resp_code = 200
            out_string = ""
            json_data =  await request.json()
483
            json_data = self.trigger_on_prompt(json_data)
pythongosssss's avatar
pythongosssss committed
484
485
486
487
488
489
490
491
492
493
494
495
496

            if "number" in json_data:
                number = float(json_data['number'])
            else:
                number = self.number
                if "front" in json_data:
                    if json_data['front']:
                        number = -number

                self.number += 1

            if "prompt" in json_data:
                prompt = json_data["prompt"]
497
                valid = execution.validate_prompt(prompt)
pythongosssss's avatar
pythongosssss committed
498
499
500
501
502
503
504
                extra_data = {}
                if "extra_data" in json_data:
                    extra_data = json_data["extra_data"]

                if "client_id" in json_data:
                    extra_data["client_id"] = json_data["client_id"]
                if valid[0]:
505
                    prompt_id = str(uuid.uuid4())
comfyanonymous's avatar
comfyanonymous committed
506
507
                    outputs_to_execute = valid[2]
                    self.prompt_queue.put((number, prompt_id, prompt, extra_data, outputs_to_execute))
508
509
                    response = {"prompt_id": prompt_id, "number": number, "node_errors": valid[3]}
                    return web.json_response(response)
pythongosssss's avatar
pythongosssss committed
510
                else:
comfyanonymous's avatar
comfyanonymous committed
511
                    logging.warning("invalid prompt: {}".format(valid[1]))
512
                    return web.json_response({"error": valid[1], "node_errors": valid[3]}, status=400)
513
            else:
514
                return web.json_response({"error": "no prompt", "node_errors": []}, status=400)
pythongosssss's avatar
pythongosssss committed
515
516
517
518
519
520
521
522
523
524

        @routes.post("/queue")
        async def post_queue(request):
            json_data =  await request.json()
            if "clear" in json_data:
                if json_data["clear"]:
                    self.prompt_queue.wipe_queue()
            if "delete" in json_data:
                to_delete = json_data['delete']
                for id_to_delete in to_delete:
comfyanonymous's avatar
comfyanonymous committed
525
                    delete_func = lambda a: a[1] == id_to_delete
pythongosssss's avatar
pythongosssss committed
526
                    self.prompt_queue.delete_queue_item(delete_func)
comfyanonymous's avatar
comfyanonymous committed
527

pythongosssss's avatar
pythongosssss committed
528
            return web.Response(status=200)
pythongosssss's avatar
pythongosssss committed
529
530
531
532
533
534

        @routes.post("/interrupt")
        async def post_interrupt(request):
            nodes.interrupt_processing()
            return web.Response(status=200)

535
        @routes.post("/free")
ramyma's avatar
ramyma committed
536
        async def post_free(request):
537
538
539
540
541
542
543
544
545
            json_data = await request.json()
            unload_models = json_data.get("unload_models", False)
            free_memory = json_data.get("free_memory", False)
            if unload_models:
                self.prompt_queue.set_flag("unload_models", unload_models)
            if free_memory:
                self.prompt_queue.set_flag("free_memory", free_memory)
            return web.Response(status=200)

pythongosssss's avatar
pythongosssss committed
546
547
548
549
550
        @routes.post("/history")
        async def post_history(request):
            json_data =  await request.json()
            if "clear" in json_data:
                if json_data["clear"]:
551
                    self.prompt_queue.wipe_history()
pythongosssss's avatar
pythongosssss committed
552
553
554
            if "delete" in json_data:
                to_delete = json_data['delete']
                for id_to_delete in to_delete:
555
556
                    self.prompt_queue.delete_history_item(id_to_delete)

pythongosssss's avatar
pythongosssss committed
557
            return web.Response(status=200)
558

559
    def add_routes(self):
560
        self.user_manager.add_routes(self.routes)
561
562
563
564
565
566
567
568

        # Prefix every route with /api for easier matching for delegation.
        # This is very useful for frontend dev server, which need to forward
        # everything except serving of static files.
        # Currently both the old endpoints without prefix and new endpoints with
        # prefix are supported.
        api_routes = web.RouteTableDef()
        for route in self.routes:
Chenlei Hu's avatar
Chenlei Hu committed
569
570
571
572
            # Custom nodes might add extra static routes. Only process non-static
            # routes to add /api prefix.
            if isinstance(route, web.RouteDef):
                api_routes.route(route.method, "/api" + route.path)(route.handler, **route.kwargs)
573
        self.app.add_routes(api_routes)
574
        self.app.add_routes(self.routes)
575
576
577

        for name, dir in nodes.EXTENSION_WEB_DIRS.items():
            self.app.add_routes([
578
                web.static('/extensions/' + urllib.parse.quote(name), dir),
579
580
            ])

pythongosssss's avatar
pythongosssss committed
581
        self.app.add_routes([
582
            web.static('/', self.web_root),
pythongosssss's avatar
pythongosssss committed
583
584
585
586
587
588
589
590
591
592
        ])

    def get_queue_info(self):
        prompt_info = {}
        exec_info = {}
        exec_info['queue_remaining'] = self.prompt_queue.get_tasks_remaining()
        prompt_info['exec_info'] = exec_info
        return prompt_info

    async def send(self, event, data, sid=None):
593
594
595
        if event == BinaryEventTypes.UNENCODED_PREVIEW_IMAGE:
            await self.send_image(data, sid=sid)
        elif isinstance(data, (bytes, bytearray)):
space-nuko's avatar
space-nuko committed
596
597
598
599
600
601
602
603
604
605
606
607
608
            await self.send_bytes(event, data, sid)
        else:
            await self.send_json(event, data, sid)

    def encode_bytes(self, event, data):
        if not isinstance(event, int):
            raise RuntimeError(f"Binary event types must be integers, got {event}")

        packed = struct.pack(">I", event)
        message = bytearray(packed)
        message.extend(data)
        return message

609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
    async def send_image(self, image_data, sid=None):
        image_type = image_data[0]
        image = image_data[1]
        max_size = image_data[2]
        if max_size is not None:
            if hasattr(Image, 'Resampling'):
                resampling = Image.Resampling.BILINEAR
            else:
                resampling = Image.ANTIALIAS

            image = ImageOps.contain(image, (max_size, max_size), resampling)
        type_num = 1
        if image_type == "JPEG":
            type_num = 1
        elif image_type == "PNG":
            type_num = 2

        bytesIO = BytesIO()
        header = struct.pack(">I", type_num)
        bytesIO.write(header)
629
        image.save(bytesIO, format=image_type, quality=95, compress_level=1)
630
631
632
        preview_bytes = bytesIO.getvalue()
        await self.send_bytes(BinaryEventTypes.PREVIEW_IMAGE, preview_bytes, sid=sid)

space-nuko's avatar
space-nuko committed
633
634
635
636
    async def send_bytes(self, event, data, sid=None):
        message = self.encode_bytes(event, data)

        if sid is None:
637
638
            sockets = list(self.sockets.values())
            for ws in sockets:
639
                await send_socket_catch_exception(ws.send_bytes, message)
space-nuko's avatar
space-nuko committed
640
        elif sid in self.sockets:
641
            await send_socket_catch_exception(self.sockets[sid].send_bytes, message)
space-nuko's avatar
space-nuko committed
642
643

    async def send_json(self, event, data, sid=None):
pythongosssss's avatar
pythongosssss committed
644
645
646
        message = {"type": event, "data": data}

        if sid is None:
647
648
            sockets = list(self.sockets.values())
            for ws in sockets:
649
                await send_socket_catch_exception(ws.send_json, message)
pythongosssss's avatar
pythongosssss committed
650
        elif sid in self.sockets:
651
            await send_socket_catch_exception(self.sockets[sid].send_json, message)
pythongosssss's avatar
pythongosssss committed
652
653
654
655

    def send_sync(self, event, data, sid=None):
        self.loop.call_soon_threadsafe(
            self.messages.put_nowait, (event, data, sid))
656

pythongosssss's avatar
pythongosssss committed
657
658
659
660
661
662
663
664
    def queue_updated(self):
        self.send_sync("status", { "status": self.get_queue_info() })

    async def publish_loop(self):
        while True:
            msg = await self.messages.get()
            await self.send(*msg)

665
    async def start(self, address, port, verbose=True, call_on_start=None):
666
        runner = web.AppRunner(self.app, access_log=None)
pythongosssss's avatar
pythongosssss committed
667
        await runner.setup()
Garrett Sutula's avatar
Garrett Sutula committed
668
669
670
671
672
673
674
675
676
        ssl_ctx = None
        scheme = "http"
        if args.tls_keyfile and args.tls_certfile:
                ssl_ctx = ssl.SSLContext(protocol=ssl.PROTOCOL_TLS_SERVER, verify_mode=ssl.CERT_NONE)
                ssl_ctx.load_cert_chain(certfile=args.tls_certfile,
                                keyfile=args.tls_keyfile)
                scheme = "https"

        site = web.TCPSite(runner, address, port, ssl_context=ssl_ctx)
pythongosssss's avatar
pythongosssss committed
677
        await site.start()
678

comfyanonymous's avatar
comfyanonymous committed
679
        if verbose:
comfyanonymous's avatar
comfyanonymous committed
680
            logging.info("Starting server\n")
Garrett Sutula's avatar
Garrett Sutula committed
681
            logging.info("To see the GUI go to: {}://{}:{}".format(scheme, address, port))
682
        if call_on_start is not None:
Garrett Sutula's avatar
Garrett Sutula committed
683
            call_on_start(scheme, address, port)
684

685
686
687
688
689
690
691
692
    def add_on_prompt_handler(self, handler):
        self.on_prompt_handlers.append(handler)

    def trigger_on_prompt(self, json_data):
        for handler in self.on_prompt_handlers:
            try:
                json_data = handler(json_data)
            except Exception as e:
comfyanonymous's avatar
comfyanonymous committed
693
                logging.warning(f"[ERROR] An error occurred during the on_prompt_handler processing")
694
                logging.warning(traceback.format_exc())
695
696

        return json_data