server.py 10.6 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
pythongosssss's avatar
pythongosssss committed
10
11
12
13
14
15
16
17
18
19
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
20
import mimetypes
pythongosssss's avatar
pythongosssss committed
21

22
23
24
25
26
27
28
29

@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

pythongosssss's avatar
pythongosssss committed
30
31
class PromptServer():
    def __init__(self, loop):
32
        PromptServer.instance = self
comfyanonymous's avatar
Style.  
comfyanonymous committed
33

pythongosssss's avatar
pythongosssss committed
34
35
        mimetypes.init(); 
        mimetypes.types_map['.js'] = 'application/javascript; charset=utf-8'
pythongosssss's avatar
pythongosssss committed
36
37
38
39
        self.prompt_queue = None
        self.loop = loop
        self.messages = asyncio.Queue()
        self.number = 0
40
        self.app = web.Application(client_max_size=20971520, middlewares=[cache_control])
pythongosssss's avatar
pythongosssss committed
41
42
        self.sockets = dict()
        self.web_root = os.path.join(os.path.dirname(
pythongosssss's avatar
pythongosssss committed
43
            os.path.realpath(__file__)), "web")
pythongosssss's avatar
pythongosssss committed
44
        routes = web.RouteTableDef()
45
        self.routes = routes
46
47
        self.last_node_id = None
        self.client_id = None
pythongosssss's avatar
pythongosssss committed
48
49
50
51
52

        @routes.get('/ws')
        async def websocket_handler(request):
            ws = web.WebSocketResponse()
            await ws.prepare(request)
53
54
55
56
57
58
59
            sid = request.rel_url.query.get('clientId', '')
            if sid:
                # Reusing existing session, remove old
                self.sockets.pop(sid, None)
            else:
                sid = uuid.uuid4().hex      

pythongosssss's avatar
pythongosssss committed
60
            self.sockets[sid] = ws
61

pythongosssss's avatar
pythongosssss committed
62
63
64
            try:
                # Send initial state to the new client
                await self.send("status", { "status": self.get_queue_info(), 'sid': sid }, sid)
65
66
67
68
                # 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
69
70
71
72
                async for msg in ws:
                    if msg.type == aiohttp.WSMsgType.ERROR:
                        print('ws connection closed with exception %s' % ws.exception())
            finally:
73
                self.sockets.pop(sid, None)
pythongosssss's avatar
pythongosssss committed
74
75
76
77
78
            return ws

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

80
81
        @routes.get("/embeddings")
        def get_embeddings(self):
82
            embeddings = folder_paths.get_filename_list("embeddings")
83
84
            return web.json_response(list(map(lambda a: os.path.splitext(a)[0].lower(), embeddings)))

85
86
87
88
89
        @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)))

pythongosssss's avatar
pythongosssss committed
90
91
        @routes.post("/upload/image")
        async def upload_image(request):
pythongosssss's avatar
pythongosssss committed
92
            upload_dir = os.path.join(os.path.dirname(os.path.realpath(__file__)), "input")
pythongosssss's avatar
pythongosssss committed
93
94
95
96
97
98
99
100
101
102
103
104

            if not os.path.exists(upload_dir):
                os.makedirs(upload_dir)
            
            post = await request.post()
            image = post.get("image")

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

pythongosssss's avatar
pythongosssss committed
105
106
107
108
109
110
111
112
113
                split = os.path.splitext(filename)
                i = 1
                while os.path.exists(os.path.join(upload_dir, filename)):
                    filename = f"{split[0]} ({i}){split[1]}"
                    i += 1

                filepath = os.path.join(upload_dir, filename)

                with open(filepath, "wb") as f:
pythongosssss's avatar
pythongosssss committed
114
115
116
117
118
119
120
                    f.write(image.file.read())
                
                return web.json_response({"name" : filename})
            else:
                return web.Response(status=400)


121
        @routes.get("/view")
pythongosssss's avatar
pythongosssss committed
122
        async def view_image(request):
m957ymj75urz's avatar
m957ymj75urz committed
123
            if "filename" in request.rel_url.query:
pythongosssss's avatar
pythongosssss committed
124
                type = request.rel_url.query.get("type", "output")
125
                if type not in ["output", "input", "temp"]:
pythongosssss's avatar
pythongosssss committed
126
127
128
                    return web.Response(status=400)

                output_dir = os.path.join(os.path.dirname(os.path.realpath(__file__)), type)
129
                if "subfolder" in request.rel_url.query:
m957ymj75urz's avatar
m957ymj75urz committed
130
                    full_output_dir = os.path.join(output_dir, request.rel_url.query["subfolder"])
131
                    if os.path.commonpath((os.path.abspath(full_output_dir), output_dir)) != output_dir:
m957ymj75urz's avatar
m957ymj75urz committed
132
133
                        return web.Response(status=403)
                    output_dir = full_output_dir
134

135
136
137
                filename = request.rel_url.query["filename"]
                filename = os.path.basename(filename)
                file = os.path.join(output_dir, filename)
m957ymj75urz's avatar
m957ymj75urz committed
138

pythongosssss's avatar
pythongosssss committed
139
                if os.path.isfile(file):
140
                    return web.FileResponse(file, headers={"Content-Disposition": f"filename=\"{filename}\""})
pythongosssss's avatar
pythongosssss committed
141
142
                
            return web.Response(status=404)
143

pythongosssss's avatar
pythongosssss committed
144
145
146
        @routes.get("/prompt")
        async def get_prompt(request):
            return web.json_response(self.get_queue_info())
147

pythongosssss's avatar
pythongosssss committed
148
149
150
151
152
153
154
155
        @routes.get("/object_info")
        async def get_object_info(request):
            out = {}
            for x in nodes.NODE_CLASS_MAPPINGS:
                obj_class = nodes.NODE_CLASS_MAPPINGS[x]
                info = {}
                info['input'] = obj_class.INPUT_TYPES()
                info['output'] = obj_class.RETURN_TYPES
156
                info['output_name'] = obj_class.RETURN_NAMES if hasattr(obj_class, 'RETURN_NAMES') else info['output']
pythongosssss's avatar
pythongosssss committed
157
158
159
160
161
162
163
                info['name'] = x #TODO
                info['description'] = ''
                info['category'] = 'sd'
                if hasattr(obj_class, 'CATEGORY'):
                    info['category'] = obj_class.CATEGORY
                out[x] = info
            return web.json_response(out)
164

pythongosssss's avatar
pythongosssss committed
165
166
        @routes.get("/history")
        async def get_history(request):
167
168
            return web.json_response(self.prompt_queue.get_history())

pythongosssss's avatar
pythongosssss committed
169
170
171
172
173
174
175
        @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)
176

pythongosssss's avatar
pythongosssss committed
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
        @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"]
196
                valid = execution.validate_prompt(prompt)
pythongosssss's avatar
pythongosssss committed
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
                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]:
                    self.prompt_queue.put((number, id(prompt), prompt, extra_data))
                else:
                    resp_code = 400
                    out_string = valid[1]
                    print("invalid prompt:", valid[1])

            return web.Response(body=out_string, status=resp_code)
        
        @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:
                    delete_func = lambda a: a[1] == int(id_to_delete)
                    self.prompt_queue.delete_queue_item(delete_func)
                    
            return web.Response(status=200)
pythongosssss's avatar
pythongosssss committed
225
226
227
228
229
230

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

pythongosssss's avatar
pythongosssss committed
231
232
233
234
235
        @routes.post("/history")
        async def post_history(request):
            json_data =  await request.json()
            if "clear" in json_data:
                if json_data["clear"]:
236
                    self.prompt_queue.wipe_history()
pythongosssss's avatar
pythongosssss committed
237
238
239
            if "delete" in json_data:
                to_delete = json_data['delete']
                for id_to_delete in to_delete:
240
241
                    self.prompt_queue.delete_history_item(id_to_delete)

pythongosssss's avatar
pythongosssss committed
242
            return web.Response(status=200)
243
244
245
        
    def add_routes(self):
        self.app.add_routes(self.routes)
pythongosssss's avatar
pythongosssss committed
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
        self.app.add_routes([
            web.static('/', self.web_root),
        ])

    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):
        message = {"type": event, "data": data}
       
        if isinstance(message, str) == False:
            message = json.dumps(message)

        if sid is None:
            for ws in self.sockets.values():
                await ws.send_str(message)
        elif sid in self.sockets:
            await self.sockets[sid].send_str(message)

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

pythongosssss's avatar
pythongosssss committed
273
274
275
276
277
278
279
280
    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)

281
    async def start(self, address, port, verbose=True, call_on_start=None):
pythongosssss's avatar
pythongosssss committed
282
283
284
285
        runner = web.AppRunner(self.app)
        await runner.setup()
        site = web.TCPSite(runner, address, port)
        await site.start()
286

pythongosssss's avatar
pythongosssss committed
287
288
        if address == '':
            address = '0.0.0.0'
comfyanonymous's avatar
comfyanonymous committed
289
290
291
        if verbose:
            print("Starting server\n")
            print("To see the GUI go to: http://{}:{}".format(address, port))
292
293
294
        if call_on_start is not None:
            call_on_start(address, port)