server.py 21 KB
Newer Older
pythongosssss's avatar
pythongosssss committed
1
2
3
4
import os
import sys
import asyncio
import nodes
5
import folder_paths
6
import execution
pythongosssss's avatar
pythongosssss committed
7
8
import uuid
import json
9
import glob
space-nuko's avatar
space-nuko committed
10
import struct
11
12
13
from PIL import Image
from io import BytesIO

pythongosssss's avatar
pythongosssss committed
14
15
16
17
18
19
20
21
22
23
try:
    import aiohttp
    from aiohttp import web
except ImportError:
    print("Module 'aiohttp' not installed. Please install it via:")
    print("pip install aiohttp")
    print("or")
    print("pip install -r requirements.txt")
    sys.exit()

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

space-nuko's avatar
space-nuko committed
29
30
31
32

class BinaryEventTypes:
    PREVIEW_IMAGE = 1

33
34
35
36
37
async def send_socket_catch_exception(function, message):
    try:
        await function(message)
    except (aiohttp.ClientError, aiohttp.ClientPayloadError, ConnectionResetError) as err:
        print("send error:", err)
space-nuko's avatar
space-nuko committed
38

39
40
41
42
43
44
45
@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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
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
62

pythongosssss's avatar
pythongosssss committed
63
64
class PromptServer():
    def __init__(self, loop):
65
        PromptServer.instance = self
comfyanonymous's avatar
Style.  
comfyanonymous committed
66

pythongosssss's avatar
pythongosssss committed
67
68
        mimetypes.init(); 
        mimetypes.types_map['.js'] = 'application/javascript; charset=utf-8'
pythongosssss's avatar
pythongosssss committed
69
70
71
72
        self.prompt_queue = None
        self.loop = loop
        self.messages = asyncio.Queue()
        self.number = 0
EllangoK's avatar
EllangoK committed
73
74

        middlewares = [cache_control]
75
76
        if args.enable_cors_header:
            middlewares.append(create_cors_middleware(args.enable_cors_header))
EllangoK's avatar
EllangoK committed
77
78

        self.app = web.Application(client_max_size=20971520, middlewares=middlewares)
pythongosssss's avatar
pythongosssss committed
79
80
        self.sockets = dict()
        self.web_root = os.path.join(os.path.dirname(
pythongosssss's avatar
pythongosssss committed
81
            os.path.realpath(__file__)), "web")
pythongosssss's avatar
pythongosssss committed
82
        routes = web.RouteTableDef()
83
        self.routes = routes
84
85
        self.last_node_id = None
        self.client_id = None
pythongosssss's avatar
pythongosssss committed
86
87
88
89
90

        @routes.get('/ws')
        async def websocket_handler(request):
            ws = web.WebSocketResponse()
            await ws.prepare(request)
91
92
93
94
95
            sid = request.rel_url.query.get('clientId', '')
            if sid:
                # Reusing existing session, remove old
                self.sockets.pop(sid, None)
            else:
96
                sid = uuid.uuid4().hex
97

pythongosssss's avatar
pythongosssss committed
98
            self.sockets[sid] = ws
99

pythongosssss's avatar
pythongosssss committed
100
101
102
            try:
                # Send initial state to the new client
                await self.send("status", { "status": self.get_queue_info(), 'sid': sid }, sid)
103
104
105
106
                # 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)
                    
pythongosssss's avatar
pythongosssss committed
107
108
109
110
                async for msg in ws:
                    if msg.type == aiohttp.WSMsgType.ERROR:
                        print('ws connection closed with exception %s' % ws.exception())
            finally:
111
                self.sockets.pop(sid, None)
pythongosssss's avatar
pythongosssss committed
112
113
114
115
116
            return ws

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

118
119
        @routes.get("/embeddings")
        def get_embeddings(self):
120
            embeddings = folder_paths.get_filename_list("embeddings")
121
122
            return web.json_response(list(map(lambda a: os.path.splitext(a)[0].lower(), embeddings)))

123
124
125
126
127
        @routes.get("/extensions")
        async def get_extensions(request):
            files = glob.glob(os.path.join(self.web_root, 'extensions/**/*.js'), recursive=True)
            return web.json_response(list(map(lambda f: "/" + os.path.relpath(f, self.web_root).replace("\\", "/"), files)))

128
129
        def get_dir_by_type(dir_type):
            if dir_type is None:
130
131
132
                dir_type = "input"

            if dir_type == "input":
133
134
135
136
137
138
                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()

139
            return type_dir, dir_type
140

comfyanonymous's avatar
comfyanonymous committed
141
        def image_upload(post, image_save_function=None):
ltdrdata's avatar
ltdrdata committed
142
            image = post.get("image")
143
            overwrite = post.get("overwrite")
ltdrdata's avatar
ltdrdata committed
144

comfyanonymous's avatar
comfyanonymous committed
145
            image_upload_type = post.get("type")
146
            upload_dir, image_upload_type = get_dir_by_type(image_upload_type)
pythongosssss's avatar
pythongosssss committed
147
148
149
150
151
152

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

comfyanonymous's avatar
comfyanonymous committed
153
154
155
156
157
158
159
160
161
                subfolder = post.get("subfolder", "")
                full_output_folder = os.path.join(upload_dir, os.path.normpath(subfolder))

                if os.path.commonpath((upload_dir, os.path.abspath(full_output_folder))) != upload_dir:
                    return web.Response(status=400)

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

pythongosssss's avatar
pythongosssss committed
162
                split = os.path.splitext(filename)
comfyanonymous's avatar
comfyanonymous committed
163
164
                filepath = os.path.join(full_output_folder, filename)

165
166
167
168
169
170
171
172
                if overwrite is not None and (overwrite == "true" or overwrite == "1"):
                    pass
                else:
                    i = 1
                    while os.path.exists(filepath):
                        filename = f"{split[0]} ({i}){split[1]}"
                        filepath = os.path.join(full_output_folder, filename)
                        i += 1
pythongosssss's avatar
pythongosssss committed
173

comfyanonymous's avatar
comfyanonymous committed
174
175
176
177
178
                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
179

comfyanonymous's avatar
comfyanonymous committed
180
                return web.json_response({"name" : filename, "subfolder": subfolder, "type": image_upload_type})
pythongosssss's avatar
pythongosssss committed
181
182
183
            else:
                return web.Response(status=400)

comfyanonymous's avatar
comfyanonymous committed
184
185
186
187
188
        @routes.post("/upload/image")
        async def upload_image(request):
            post = await request.post()
            return image_upload(post)

189
190
191
192
        @routes.post("/upload/mask")
        async def upload_mask(request):
            post = await request.post()

comfyanonymous's avatar
comfyanonymous committed
193
194
            def image_save_function(image, post, filepath):
                original_pil = Image.open(post.get("original_image").file).convert('RGBA')
195
196
197
198
199
                mask_pil = Image.open(image.file).convert('RGBA')

                # alpha copy
                new_alpha = mask_pil.getchannel('A')
                original_pil.putalpha(new_alpha)
200
                original_pil.save(filepath, compress_level=4)
201

comfyanonymous's avatar
comfyanonymous committed
202
            return image_upload(post, image_save_function)
pythongosssss's avatar
pythongosssss committed
203

204
        @routes.get("/view")
pythongosssss's avatar
pythongosssss committed
205
        async def view_image(request):
m957ymj75urz's avatar
m957ymj75urz committed
206
            if "filename" in request.rel_url.query:
207
208
209
210
211
212
213
214
215
216
217
                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)

218
                if output_dir is None:
pythongosssss's avatar
pythongosssss committed
219
220
                    return web.Response(status=400)

221
                if "subfolder" in request.rel_url.query:
m957ymj75urz's avatar
m957ymj75urz committed
222
                    full_output_dir = os.path.join(output_dir, request.rel_url.query["subfolder"])
223
                    if os.path.commonpath((os.path.abspath(full_output_dir), output_dir)) != output_dir:
m957ymj75urz's avatar
m957ymj75urz committed
224
225
                        return web.Response(status=403)
                    output_dir = full_output_dir
226

227
228
                filename = os.path.basename(filename)
                file = os.path.join(output_dir, filename)
m957ymj75urz's avatar
m957ymj75urz committed
229

pythongosssss's avatar
pythongosssss committed
230
                if os.path.isfile(file):
231
232
233
234
                    if 'preview' in request.rel_url.query:
                        with Image.open(file) as img:
                            preview_info = request.rel_url.query['preview'].split(';')

235
236
237
                            image_format = preview_info[0]
                            if image_format not in ['webp', 'jpeg']:
                                image_format = 'webp'
238
239
240
241
242
243

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

                            buffer = BytesIO()
244
245
246
                            if image_format in ['jpeg']:
                                img = img.convert("RGB")
                            img.save(buffer, format=image_format, quality=quality)
247
248
249
250
251
                            buffer.seek(0)

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

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
                    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
291
            return web.Response(status=404)
292

293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
        @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
316
317
        @routes.get("/system_stats")
        async def get_queue(request):
318
319
            device = comfy.model_management.get_torch_device()
            device_name = comfy.model_management.get_torch_device_name(device)
space-nuko's avatar
space-nuko committed
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
            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 = {
                "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
337
338
339
        @routes.get("/prompt")
        async def get_prompt(request):
            return web.json_response(self.get_queue_info())
340

341
342
343
344
345
346
347
348
349
350
351
        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
            info['description'] = ''
            info['category'] = 'sd'
352
353
354
355
356
            if hasattr(obj_class, 'OUTPUT_NODE') and obj_class.OUTPUT_NODE == True:
                info['output_node'] = True
            else:
                info['output_node'] = False

357
358
359
360
            if hasattr(obj_class, 'CATEGORY'):
                info['category'] = obj_class.CATEGORY
            return info

pythongosssss's avatar
pythongosssss committed
361
362
363
364
        @routes.get("/object_info")
        async def get_object_info(request):
            out = {}
            for x in nodes.NODE_CLASS_MAPPINGS:
365
366
367
368
369
370
371
372
373
                out[x] = node_info(x)
            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
374
            return web.json_response(out)
375

pythongosssss's avatar
pythongosssss committed
376
377
        @routes.get("/history")
        async def get_history(request):
378
379
            return web.json_response(self.prompt_queue.get_history())

380
381
382
383
384
        @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
385
386
387
388
389
390
391
        @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)
392

pythongosssss's avatar
pythongosssss committed
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
        @routes.post("/prompt")
        async def post_prompt(request):
            print("got prompt")
            resp_code = 200
            out_string = ""
            json_data =  await request.json()

            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"]
412
                valid = execution.validate_prompt(prompt)
pythongosssss's avatar
pythongosssss committed
413
414
415
416
417
418
419
                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]:
420
                    prompt_id = str(uuid.uuid4())
comfyanonymous's avatar
comfyanonymous committed
421
422
                    outputs_to_execute = valid[2]
                    self.prompt_queue.put((number, prompt_id, prompt, extra_data, outputs_to_execute))
423
                    return web.json_response({"prompt_id": prompt_id, "number": number})
pythongosssss's avatar
pythongosssss committed
424
425
                else:
                    print("invalid prompt:", valid[1])
426
                    return web.json_response({"error": valid[1], "node_errors": valid[3]}, status=400)
427
            else:
428
                return web.json_response({"error": "no prompt", "node_errors": []}, status=400)
pythongosssss's avatar
pythongosssss committed
429
430
431
432
433
434
435
436
437
438

        @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
439
                    delete_func = lambda a: a[1] == id_to_delete
pythongosssss's avatar
pythongosssss committed
440
                    self.prompt_queue.delete_queue_item(delete_func)
comfyanonymous's avatar
comfyanonymous committed
441

pythongosssss's avatar
pythongosssss committed
442
            return web.Response(status=200)
pythongosssss's avatar
pythongosssss committed
443
444
445
446
447
448

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

pythongosssss's avatar
pythongosssss committed
449
450
451
452
453
        @routes.post("/history")
        async def post_history(request):
            json_data =  await request.json()
            if "clear" in json_data:
                if json_data["clear"]:
454
                    self.prompt_queue.wipe_history()
pythongosssss's avatar
pythongosssss committed
455
456
457
            if "delete" in json_data:
                to_delete = json_data['delete']
                for id_to_delete in to_delete:
458
459
                    self.prompt_queue.delete_history_item(id_to_delete)

pythongosssss's avatar
pythongosssss committed
460
            return web.Response(status=200)
461
462
463
        
    def add_routes(self):
        self.app.add_routes(self.routes)
pythongosssss's avatar
pythongosssss committed
464
        self.app.add_routes([
465
            web.static('/', self.web_root, follow_symlinks=True),
pythongosssss's avatar
pythongosssss committed
466
467
468
469
470
471
472
473
474
475
        ])

    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):
space-nuko's avatar
space-nuko committed
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
        if isinstance(data, (bytes, bytearray)):
            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

    async def send_bytes(self, event, data, sid=None):
        message = self.encode_bytes(event, data)

        if sid is None:
            for ws in self.sockets.values():
495
                await send_socket_catch_exception(ws.send_bytes, message)
space-nuko's avatar
space-nuko committed
496
        elif sid in self.sockets:
497
            await send_socket_catch_exception(self.sockets[sid].send_bytes, message)
space-nuko's avatar
space-nuko committed
498
499

    async def send_json(self, event, data, sid=None):
pythongosssss's avatar
pythongosssss committed
500
501
502
503
        message = {"type": event, "data": data}

        if sid is None:
            for ws in self.sockets.values():
504
                await send_socket_catch_exception(ws.send_json, message)
pythongosssss's avatar
pythongosssss committed
505
        elif sid in self.sockets:
506
            await send_socket_catch_exception(self.sockets[sid].send_json, message)
pythongosssss's avatar
pythongosssss committed
507
508
509
510

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

pythongosssss's avatar
pythongosssss committed
512
513
514
515
516
517
518
519
    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)

520
    async def start(self, address, port, verbose=True, call_on_start=None):
pythongosssss's avatar
pythongosssss committed
521
522
523
524
        runner = web.AppRunner(self.app)
        await runner.setup()
        site = web.TCPSite(runner, address, port)
        await site.start()
525

pythongosssss's avatar
pythongosssss committed
526
527
        if address == '':
            address = '0.0.0.0'
comfyanonymous's avatar
comfyanonymous committed
528
529
530
        if verbose:
            print("Starting server\n")
            print("To see the GUI go to: http://{}:{}".format(address, port))
531
532
533
        if call_on_start is not None:
            call_on_start(address, port)