api.py 13.7 KB
Newer Older
1 2
import base64
import io
3
import time
4
import uvicorn
B
Bruno Seoane 已提交
5
from threading import Lock
S
Sena 已提交
6
from io import BytesIO
S
Sena 已提交
7
from gradio.processing_utils import decode_base64_to_file
B
Bruno Seoane 已提交
8
from fastapi import APIRouter, Depends, FastAPI, HTTPException
9 10 11
from fastapi.security import HTTPBasic, HTTPBasicCredentials
from secrets import compare_digest

12
import modules.shared as shared
13
from modules import sd_samplers, deepbooru
14
from modules.api.models import *
15
from modules.processing import StableDiffusionProcessingTxt2Img, StableDiffusionProcessingImg2Img, process_images
B
Bruno Seoane 已提交
16
from modules.extras import run_extras, run_pnginfo
S
Sena 已提交
17
from PIL import PngImagePlugin,Image
B
Bruno Seoane 已提交
18 19 20
from modules.sd_models import checkpoints_list
from modules.realesrgan_model import get_realesrgan_models
from typing import List
A
arcticfaded 已提交
21

B
Bruno Seoane 已提交
22 23 24 25
def upscaler_to_index(name: str):
    try:
        return [x.name.lower() for x in shared.sd_upscalers].index(name.lower())
    except:
B
Bruno Seoane 已提交
26
        raise HTTPException(status_code=400, detail=f"Invalid upscaler, needs to be on of these: {' , '.join([x.name for x in sd_upscalers])}")
27

28

29 30 31 32
def validate_sampler_name(name):
    config = sd_samplers.all_samplers_map.get(name, None)
    if config is None:
        raise HTTPException(status_code=404, detail="Sampler not found")
33

34
    return name
35

B
Bruno Seoane 已提交
36 37 38 39 40 41 42
def setUpscalers(req: dict):
    reqDict = vars(req)
    reqDict['extras_upscaler_1'] = upscaler_to_index(req.upscaler_1)
    reqDict['extras_upscaler_2'] = upscaler_to_index(req.upscaler_2)
    reqDict.pop('upscaler_1')
    reqDict.pop('upscaler_2')
    return reqDict
R
Roy Shilkrot 已提交
43

S
Sena 已提交
44 45 46 47
def decode_base64_to_image(encoding):
    if encoding.startswith("data:image/"):
        encoding = encoding.split(";")[1].split(",")[1]
    return Image.open(BytesIO(base64.b64decode(encoding)))
48

49
def encode_pil_to_base64(image):
E
evshiron 已提交
50 51 52 53 54 55 56 57 58 59 60 61 62 63 64
    with io.BytesIO() as output_bytes:

        # Copy any text-only metadata
        use_metadata = False
        metadata = PngImagePlugin.PngInfo()
        for key, value in image.info.items():
            if isinstance(key, str) and isinstance(value, str):
                metadata.add_text(key, value)
                use_metadata = True

        image.save(
            output_bytes, "PNG", pnginfo=(metadata if use_metadata else None)
        )
        bytes_data = output_bytes.getvalue()
    return base64.b64encode(bytes_data)
65 66


67
class Api:
B
Bruno Seoane 已提交
68
    def __init__(self, app: FastAPI, queue_lock: Lock):
69
        if shared.cmd_opts.api_auth:
J
Jim Hays 已提交
70
            self.credentials = dict()
71 72
            for auth in shared.cmd_opts.api_auth.split(","):
                user, password = auth.split(":")
J
Jim Hays 已提交
73
                self.credentials[user] = password
74

75
        self.router = APIRouter()
A
arcticfaded 已提交
76 77
        self.app = app
        self.queue_lock = queue_lock
78 79 80 81 82 83 84 85
        self.add_api_route("/sdapi/v1/txt2img", self.text2imgapi, methods=["POST"], response_model=TextToImageResponse)
        self.add_api_route("/sdapi/v1/img2img", self.img2imgapi, methods=["POST"], response_model=ImageToImageResponse)
        self.add_api_route("/sdapi/v1/extra-single-image", self.extras_single_image_api, methods=["POST"], response_model=ExtrasSingleImageResponse)
        self.add_api_route("/sdapi/v1/extra-batch-images", self.extras_batch_images_api, methods=["POST"], response_model=ExtrasBatchImagesResponse)
        self.add_api_route("/sdapi/v1/png-info", self.pnginfoapi, methods=["POST"], response_model=PNGInfoResponse)
        self.add_api_route("/sdapi/v1/progress", self.progressapi, methods=["GET"], response_model=ProgressResponse)
        self.add_api_route("/sdapi/v1/interrogate", self.interrogateapi, methods=["POST"])
        self.add_api_route("/sdapi/v1/interrupt", self.interruptapi, methods=["POST"])
86
        self.add_api_route("/sdapi/v1/skip", self.skip, methods=["POST"])
87 88 89 90 91 92 93 94 95
        self.add_api_route("/sdapi/v1/options", self.get_config, methods=["GET"], response_model=OptionsModel)
        self.add_api_route("/sdapi/v1/options", self.set_config, methods=["POST"])
        self.add_api_route("/sdapi/v1/cmd-flags", self.get_cmd_flags, methods=["GET"], response_model=FlagsModel)
        self.add_api_route("/sdapi/v1/samplers", self.get_samplers, methods=["GET"], response_model=List[SamplerItem])
        self.add_api_route("/sdapi/v1/upscalers", self.get_upscalers, methods=["GET"], response_model=List[UpscalerItem])
        self.add_api_route("/sdapi/v1/sd-models", self.get_sd_models, methods=["GET"], response_model=List[SDModelItem])
        self.add_api_route("/sdapi/v1/hypernetworks", self.get_hypernetworks, methods=["GET"], response_model=List[HypernetworkItem])
        self.add_api_route("/sdapi/v1/face-restorers", self.get_face_restorers, methods=["GET"], response_model=List[FaceRestorerItem])
        self.add_api_route("/sdapi/v1/realesrgan-models", self.get_realesrgan_models, methods=["GET"], response_model=List[RealesrganItem])
J
Jim Hays 已提交
96
        self.add_api_route("/sdapi/v1/prompt-styles", self.get_prompt_styles, methods=["GET"], response_model=List[PromptStyleItem])
97 98
        self.add_api_route("/sdapi/v1/artist-categories", self.get_artists_categories, methods=["GET"], response_model=List[str])
        self.add_api_route("/sdapi/v1/artists", self.get_artists, methods=["GET"], response_model=List[ArtistItem])
D
Dean Hopkins 已提交
99
        self.add_api_route("/sdapi/v1/refresh-checkpoints", self.refresh_checkpoints, methods=["POST"])
100 101 102 103 104 105

    def add_api_route(self, path: str, endpoint, **kwargs):
        if shared.cmd_opts.api_auth:
            return self.app.add_api_route(path, endpoint, dependencies=[Depends(self.auth)], **kwargs)
        return self.app.add_api_route(path, endpoint, **kwargs)

J
Jim Hays 已提交
106 107 108
    def auth(self, credentials: HTTPBasicCredentials = Depends(HTTPBasic())):
        if credentials.username in self.credentials:
            if compare_digest(credentials.password, self.credentials[credentials.username]):
109 110 111
                return True

        raise HTTPException(status_code=401, detail="Incorrect username or password", headers={"WWW-Authenticate": "Basic"})
112

113
    def text2imgapi(self, txt2imgreq: StableDiffusionTxt2ImgProcessingAPI):
A
arcticfaded 已提交
114
        populate = txt2imgreq.copy(update={ # Override __init__ params
E
evshiron 已提交
115
            "sd_model": shared.sd_model,
116
            "sampler_name": validate_sampler_name(txt2imgreq.sampler_name or txt2imgreq.sampler_index),
A
arcticfaded 已提交
117 118
            "do_not_save_samples": True,
            "do_not_save_grid": True
A
arcticfaded 已提交
119 120
            }
        )
121 122
        if populate.sampler_name:
            populate.sampler_index = None  # prevent a warning later on
A
arcticfaded 已提交
123 124
        p = StableDiffusionProcessingTxt2Img(**vars(populate))
        # Override object param
125 126 127

        shared.state.begin()

A
arcticfaded 已提交
128 129
        with self.queue_lock:
            processed = process_images(p)
130

131
        shared.state.end()
E
evshiron 已提交
132

B
Bruno Seoane 已提交
133
        b64images = list(map(encode_pil_to_base64, processed.images))
E
evshiron 已提交
134

135
        return TextToImageResponse(images=b64images, parameters=vars(txt2imgreq), info=processed.js())
136

137 138 139
    def img2imgapi(self, img2imgreq: StableDiffusionImg2ImgProcessingAPI):
        init_images = img2imgreq.init_images
        if init_images is None:
E
evshiron 已提交
140
            raise HTTPException(status_code=404, detail="Init image not found")
141

S
Stephen 已提交
142 143
        mask = img2imgreq.mask
        if mask:
S
Sena 已提交
144
            mask = decode_base64_to_image(mask)
S
Stephen 已提交
145

146
        populate = img2imgreq.copy(update={ # Override __init__ params
E
evshiron 已提交
147
            "sd_model": shared.sd_model,
148
            "sampler_name": validate_sampler_name(img2imgreq.sampler_name or img2imgreq.sampler_index),
149
            "do_not_save_samples": True,
E
evshiron 已提交
150
            "do_not_save_grid": True,
S
Stephen 已提交
151
            "mask": mask
152 153
            }
        )
154 155
        if populate.sampler_name:
            populate.sampler_index = None  # prevent a warning later on
156 157 158 159

        args = vars(populate)
        args.pop('include_init_images', None)  # this is meant to be done by "exclude": True in model, but it's for a reason that I cannot determine.
        p = StableDiffusionProcessingImg2Img(**args)
160

Y
Bug fix  
ywx9 已提交
161
        p.init_images = [decode_base64_to_image(x) for x in init_images]
162 163 164

        shared.state.begin()

165 166
        with self.queue_lock:
            processed = process_images(p)
167 168

        shared.state.end()
E
evshiron 已提交
169

B
Bruno Seoane 已提交
170
        b64images = list(map(encode_pil_to_base64, processed.images))
171

172
        if not img2imgreq.include_init_images:
173 174 175
            img2imgreq.init_images = None
            img2imgreq.mask = None

176
        return ImageToImageResponse(images=b64images, parameters=vars(img2imgreq), info=processed.js())
177

B
Bruno Seoane 已提交
178
    def extras_single_image_api(self, req: ExtrasSingleImageRequest):
B
Bruno Seoane 已提交
179
        reqDict = setUpscalers(req)
B
Bruno Seoane 已提交
180

B
Bruno Seoane 已提交
181
        reqDict['image'] = decode_base64_to_image(reqDict['image'])
B
Bruno Seoane 已提交
182 183

        with self.queue_lock:
184
            result = run_extras(extras_mode=0, image_folder="", input_dir="", output_dir="", save_output=False, **reqDict)
B
Bruno Seoane 已提交
185

B
Bruno Seoane 已提交
186
        return ExtrasSingleImageResponse(image=encode_pil_to_base64(result[0][0]), html_info=result[1])
187 188

    def extras_batch_images_api(self, req: ExtrasBatchImagesRequest):
B
Bruno Seoane 已提交
189
        reqDict = setUpscalers(req)
190

B
Bruno Seoane 已提交
191 192 193 194 195 196
        def prepareFiles(file):
            file = decode_base64_to_file(file.data, file_path=file.name)
            file.orig_name = file.name
            return file

        reqDict['image_folder'] = list(map(prepareFiles, reqDict['imageList']))
197 198 199
        reqDict.pop('imageList')

        with self.queue_lock:
200
            result = run_extras(extras_mode=1, image="", input_dir="", output_dir="", save_output=False, **reqDict)
201

B
Bruno Seoane 已提交
202
        return ExtrasBatchImagesResponse(images=list(map(encode_pil_to_base64, result[0])), html_info=result[1])
203

B
Bruno Seoane 已提交
204
    def pnginfoapi(self, req: PNGInfoRequest):
B
Bruno Seoane 已提交
205 206 207 208 209 210
        if(not req.image.strip()):
            return PNGInfoResponse(info="")

        result = run_pnginfo(decode_base64_to_image(req.image.strip()))

        return PNGInfoResponse(info=result[1])
211

212
    def progressapi(self, req: ProgressRequest = Depends()):
E
evshiron 已提交
213 214 215
        # copy from check_progress_call of ui.py

        if shared.state.job_count == 0:
E
evshiron 已提交
216
            return ProgressResponse(progress=0, eta_relative=0, state=shared.state.dict())
E
evshiron 已提交
217 218 219 220 221 222 223 224 225 226 227 228 229 230 231

        # avoid dividing zero
        progress = 0.01

        if shared.state.job_count > 0:
            progress += shared.state.job_no / shared.state.job_count
        if shared.state.sampling_steps > 0:
            progress += 1 / shared.state.job_count * shared.state.sampling_step / shared.state.sampling_steps

        time_since_start = time.time() - shared.state.time_start
        eta = (time_since_start/progress)
        eta_relative = eta-time_since_start

        progress = min(progress, 1)

A
AUTOMATIC 已提交
232
        shared.state.set_current_image()
233

234
        current_image = None
235
        if shared.state.current_image and not req.skip_current_image:
236 237 238
            current_image = encode_pil_to_base64(shared.state.current_image)

        return ProgressResponse(progress=progress, eta_relative=eta_relative, state=shared.state.dict(), current_image=current_image)
E
evshiron 已提交
239

240
    def interrogateapi(self, interrogatereq: InterrogateRequest):
R
Roy Shilkrot 已提交
241 242
        image_b64 = interrogatereq.image
        if image_b64 is None:
J
Jim Hays 已提交
243
            raise HTTPException(status_code=404, detail="Image not found")
R
Roy Shilkrot 已提交
244

245 246
        img = decode_base64_to_image(image_b64)
        img = img.convert('RGB')
R
Roy Shilkrot 已提交
247 248 249

        # Override object param
        with self.queue_lock:
250 251 252
            if interrogatereq.model == "clip":
                processed = shared.interrogator.interrogate(img)
            elif interrogatereq.model == "deepdanbooru":
253
                processed = deepbooru.model.tag(img)
254 255
            else:
                raise HTTPException(status_code=404, detail="Model not found")
J
Jim Hays 已提交
256

257
        return InterrogateResponse(caption=processed)
258

E
evshiron 已提交
259 260 261 262 263
    def interruptapi(self):
        shared.state.interrupt()

        return {}

B
Bruno Seoane 已提交
264 265 266
    def skip(self):
        shared.state.skip()

B
Bruno Seoane 已提交
267 268 269 270 271 272 273 274
    def get_config(self):
        options = {}
        for key in shared.opts.data.keys():
            metadata = shared.opts.data_labels.get(key)
            if(metadata is not None):
                options.update({key: shared.opts.data.get(key, shared.opts.data_labels.get(key).default)})
            else:
                options.update({key: shared.opts.data.get(key, None)})
275

B
Bruno Seoane 已提交
276
        return options
277

B
Bruno Seoane 已提交
278
    def set_config(self, req: Dict[str, Any]):
279 280
        for k, v in req.items():
            shared.opts.set(k, v)
B
Bruno Seoane 已提交
281 282 283 284 285 286 287 288

        shared.opts.save(shared.config_filename)
        return

    def get_cmd_flags(self):
        return vars(shared.cmd_opts)

    def get_samplers(self):
289
        return [{"name": sampler[0], "aliases":sampler[2], "options":sampler[3]} for sampler in sd_samplers.all_samplers]
B
Bruno Seoane 已提交
290 291 292

    def get_upscalers(self):
        upscalers = []
293

B
Bruno Seoane 已提交
294 295 296
        for upscaler in shared.sd_upscalers:
            u = upscaler.scaler
            upscalers.append({"name":u.name, "model_name":u.model_name, "model_path":u.model_path, "model_url":u.model_url})
297

B
Bruno Seoane 已提交
298
        return upscalers
299

B
Bruno Seoane 已提交
300 301 302 303 304 305 306 307 308 309 310
    def get_sd_models(self):
        return [{"title":x.title, "model_name":x.model_name, "hash":x.hash, "filename": x.filename, "config": x.config} for x in checkpoints_list.values()]

    def get_hypernetworks(self):
        return [{"name": name, "path": shared.hypernetworks[name]} for name in shared.hypernetworks]

    def get_face_restorers(self):
        return [{"name":x.name(), "cmd_dir": getattr(x, "cmd_dir", None)} for x in shared.face_restorers]

    def get_realesrgan_models(self):
        return [{"name":x.name,"path":x.data_path, "scale":x.scale} for x in get_realesrgan_models(None)]
311

J
Jim Hays 已提交
312
    def get_prompt_styles(self):
B
Bruno Seoane 已提交
313 314
        styleList = []
        for k in shared.prompt_styles.styles:
315
            style = shared.prompt_styles.styles[k]
316
            styleList.append({"name":style[0], "prompt": style[1], "negative_prompt": style[2]})
B
Bruno Seoane 已提交
317 318 319 320 321 322 323 324

        return styleList

    def get_artists_categories(self):
        return shared.artist_db.cats

    def get_artists(self):
        return [{"name":x[0], "score":x[1], "category":x[2]} for x in shared.artist_db.artists]
325

D
Dean Hopkins 已提交
326 327
    def refresh_checkpoints(self):
        shared.refresh_checkpoints()
E
evshiron 已提交
328

329
    def launch(self, server_name, port):
A
arcticfaded 已提交
330 331
        self.app.include_router(self.router)
        uvicorn.run(self.app, host=server_name, port=port)