File size: 14,897 Bytes
34097e9 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 |
import json
import requests
import io
import base64
from PIL import Image, PngImagePlugin
import asyncio
import httpx
import os
import time
import serverHelper
import prompt_shortcut
import metadata_to_json
import search
sd_url = os.environ.get('SD_URL', 'http://127.0.0.1:7860')
async def txt2ImgRequest(payload):
# payload = {
# "prompt": "cute cat, kitten",
# "steps": 10
# }
print("payload: ",payload)
if(payload['use_prompt_shortcut']): # use edit prompt
#edit prompt, replaceShortcut(prompt)
prompt_shortcut_dict = prompt_shortcut.load()
prompt_shortcut_dict.update(payload["prompt_shortcut_ui_dict"])
payload['prompt'] = prompt_shortcut.replaceShortcut(payload['prompt'],prompt_shortcut_dict)
# edit negative prompt, replaceShortcut(negative_prompt)
payload['negative_prompt'] = prompt_shortcut.replaceShortcut(payload['negative_prompt'],prompt_shortcut_dict)
#request the images to be generated
request_path = "/sdapi/v1/txt2img"
async with httpx.AsyncClient() as client:
response = await client.post(url=f'{sd_url}/sdapi/v1/txt2img', json=payload, timeout=None)
r = response.json()
#create a directory to store the images at
# dirName = f'{time.time()}'
# dir_fullpath,dirName = serverHelper.makeDirPathName()
uniqueDocumentId = payload['uniqueDocumentId']
dir_fullpath,dirName = serverHelper.getUniqueDocumentDirPathName(uniqueDocumentId)
serverHelper.createFolder(dir_fullpath)
image_paths = []
#for each image store the prompt and settings in the meta data
metadata = []
images_info = []
for i in r['images']:
image = Image.open(io.BytesIO(base64.b64decode(i.split(",",1)[0])))
png_payload = {
"image": "data:image/png;base64," + i
}
response2 = await client.post(url=f'{sd_url}/sdapi/v1/png-info', json=png_payload)
pnginfo = PngImagePlugin.PngInfo()
pnginfo.add_text("parameters", response2.json().get("info"))
image_name = f'output- {time.time()}.png'
image_path = f'output/{dirName}/{image_name}'
image_paths.append(image_path)
image.save(f'./{image_path}', pnginfo=pnginfo)
metadata_info = response2.json().get("info")
metadata_json = metadata_to_json.convertMetadataToJson(metadata_info)
metadata.append(metadata_json)
images_info.append({"base64":i,"path":image_path})
print("metadata_json: ", metadata_json)
return dirName,images_info,metadata
import base64
from io import BytesIO
def img_2_b64(image):
buff = BytesIO()
image.save(buff, format="PNG")
img_byte = base64.b64encode(buff.getvalue())
img_str = img_byte.decode("utf-8")
return img_str
from typing import Union
from fastapi import FastAPI
from fastapi import APIRouter, Request
router = APIRouter()
@router.get("/")
def read_root():
return {"Hello": "World"}
@router.get("/version")
def getVersion():
manifest_dir = "..\..\manifest.json"
manifest = {'version': '0.0.0'}
version = "0.0.0"
try:
with open(manifest_dir, 'r') as f:
manifest = json.load(f)
version = manifest['version']
except:
print("couldn't read the manifest.json")
return {"version": f"v{version}"}
# @router.post("/txt2img/")
# async def txt2ImgHandle(payload:Payload):
# print("txt2ImgHandle: \n")
# txt2ImgRequest(payload)
# return {"prompt":payload.prompt,"images": ""}
from fastapi import Request, Response
import img2imgapi
@router.post("/sd_url/")
async def changeSdUrl(request:Request):
global sd_url
try:
payload = await request.json()
print("changeSdUrl: payload:",payload)
print(f"change sd url from {sd_url} to {payload['sd_url']} \n")
sd_url = payload['sd_url']
except:
print("error occurred in changeSdUrl()")
# response.body = resp.content
# return {}
return {"sd_url":sd_url}
@router.post("/txt2img/")
async def txt2ImgHandle(request:Request):
print("txt2ImgHandle: \n")
payload = await request.json()
dir_name,images_info,metadata, = await txt2ImgRequest(payload)
# return {"prompt":payload.prompt,"images": ""}
return {"payload": payload,"dir_name": dir_name,"images_info":images_info,"metadata":metadata}
@router.post("/img2img/")
async def img2ImgHandle(request:Request):
print("img2ImgHandle: \n")
payload = await request.json()
dir_name,images_info,metadata = await img2imgapi.img2ImgRequest(sd_url,payload)
# return {"prompt":payload.prompt,"images": ""}
return {"payload": payload,"dir_name": dir_name,"images_info":images_info,"metadata":metadata}
@router.post("/getInitImage/")
async def getInitImageHandle(request:Request):
print("getInitImageHandle: \n")
payload = await request.json()
print("payload:",payload)
init_img_dir = "./init_images"
init_img_name = payload["init_image_name"]# change this to "image_name"
numOfAttempts = 3
init_img_str = ""
for i in range(numOfAttempts):
try:
image_path = f"{init_img_dir}/{init_img_name}"
init_img = Image.open(image_path)
init_img_str = img_2_b64(init_img)
# # If file exists, delete it.
# if os.path.isfile(image_path):
# os.remove(image_path)
except:
print(f"exception:fail to read an image file {image_path}, will try again {i} of {numOfAttempts}")
#sleep for one second every time you try to read an image and fail
time.sleep(1)
continue;
return {"payload": payload,"init_image_str":init_img_str}
@router.get('/config')
async def sdapi(request: Request, response: Response):
try:
resp = requests.get(url=f'{sd_url}/config', params=request.query_params)
response.status_code = resp.status_code
response.body = resp.content
except:
print(f'exception: fail to send request to {sd_url}/config')
print(f'{request}')
return response
@router.get('/sdapi/v1/{path:path}')
async def sdapi(path: str, request: Request, response: Response):
try:
resp = requests.get(url=f'{sd_url}/sdapi/v1/{path}', params=request.query_params)
response.status_code = resp.status_code
response.body = resp.content
except:
print(f'exception: fail to send request to {sd_url}/sdapi/v1/{path}')
print(f'{request}')
return response
@router.post('/sdapi/v1/{path:path}')
async def sdapi(path: str, request: Request, response: Response):
try:
json = await request.json()
except:
json = {}
try:
# if(path =="interrupt"):
# resp = requests.post(url=f'{sd_url}/sdapi/v1/{path}', params=request.query_params)
# else:
# resp = requests.post(url=f'{sd_url}/sdapi/v1/{path}', params=request.query_params, json=await request.json())
resp = requests.post(url=f'{sd_url}/sdapi/v1/{path}', params=request.query_params, json=json)
response.status_code = resp.status_code
response.body = resp.content
except:
print(f'exception: fail to send request to {sd_url}/sdapi/v1/{path}')
print(f'{request}')
return response
# async def base64ToPng(base64_image,image_path):
# base64_img_bytes = base64_image.encode('utf-8')
# with open(image_path, 'wb') as file_to_save:
# decoded_image_data = base64.decodebytes(base64_img_bytes)
# file_to_save.write(decoded_image_data)
@router.post('/save/png/')
async def savePng(request:Request):
print("savePng()")
try:
json = await request.json()
except:
json = {}
print("json:",json)
try:
folder = './init_images'
image_path = f"{folder}/{json['image_name']}"
await img2imgapi.base64ToPng(json['base64'],image_path)
return {"status":f"{json['image_name']} has been saved"}
except:
print(f'{request}')
return {"error": "error message: could not save the image file"}
@router.post('/search/image/')
async def searchImage(request:Request):
try:
json = await request.json()
except:
json = {}
try:
keywords = json.get('keywords','cute dogs')
images = await search.imageSearch(keywords)
print(images)
return {"images":images}
except:
print("keywords",keywords)
# print(f'{request}')
return {"error": "error message: can't preform an image search"}
@router.post('/mask/expansion/')
async def maskExpansionHandler(request:Request):
try:
json = await request.json()
except:
json = {}
try:
# keywords = json.get('keywords','cute dogs')
base64_mask_image = json['mask']
mask_expansion = json['mask_expansion']
#convert base64 to img
await img2imgapi.base64ToPng(base64_mask_image,"original_mask.png")#save a copy of the mask for debugging
mask_image = img2imgapi.b64_2_img(base64_mask_image)
expanded_mask_img = img2imgapi.maskExpansion(mask_image,mask_expansion)
base64_expanded_mask_image = img2imgapi.img_2_b64(expanded_mask_img)
await img2imgapi.base64ToPng(base64_expanded_mask_image,"expanded_mask.png")#save a copy of the mask of the expanded_mask for debugging
print("successful mask expansion operation")
return {"mask":base64_expanded_mask_image}
except:
print("request",request)
raise Exception(f"couldn't preform mask expansion")
# return response
return {"error": "error message: can't preform an mask expansion"}
@router.post('/history/load')
async def loadHistory(request: Request):
# {'image_paths','metadata_setting'}
history = {}
try:
json = await request.json()
except:
json = {}
try:
uniqueDocumentId = json['uniqueDocumentId']
import glob
image_paths = glob.glob(f'./output/{uniqueDocumentId}/*.png')
settings_paths = glob.glob(f'./output/{uniqueDocumentId}/*.json')#note: why is we are not using settings_paths?
print("loadHistory: image_paths:", image_paths)
history['image_paths'] = image_paths
history['metadata_jsons'] = []
history['base64_images'] = []
for image_path in image_paths:
print("image_path: ", image_path)
metadata_dict = metadata_to_json.createMetadataJsonFileIfNotExist(image_path)
history['metadata_jsons'].routerend(metadata_dict)
img = Image.open(image_path)
base64_image = img_2_b64(img)
history['base64_images'].routerend(base64_image)
except:
print(f'{request}')
#reverse the order so that newer generated images path will be shown first
history['image_paths'].reverse()
history['metadata_jsons'].reverse()
history['base64_images'].reverse()
return {"image_paths":history['image_paths'], "metadata_jsons":history['metadata_jsons'],"base64_images": history['base64_images']}
@router.post('/prompt_shortcut/load')
async def loadPromptShortcut(request: Request):
prompt_shortcut_json = {}
try:
json = await request.json()
except:
json = {}
try:
prompt_shortcut_json = prompt_shortcut.load()
# response.body = {"prompt_shortcut":prompt_shortcut}
# response.status_code = 200
except:
# print(f'exception: fail to send request to {sd_url}/sdapi/v1/{path}')
print(f'{request}')
# return response
return {"prompt_shortcut":prompt_shortcut_json}
@router.post('/prompt_shortcut/save')
async def loadPromptShortcut(request: Request):
prompt_shortcut_json = {}
try:
json = await request.json()
except:
json = {}
try:
print("json: ",json)
print("json['prompt_shortcut']: ",json['prompt_shortcut'])
# save the prompt shortcut to the prompt_shortcut.json
prompt_shortcut_json = json['prompt_shortcut']
# response.body = {"prompt_shortcut":prompt_shortcut}
# response.body = {"prompt_shortcut":prompt_shortcut}
prompt_shortcut.writeToJson("prompt_shortcut.json",prompt_shortcut_json)
except:
# print(f'exception: fail to send request to {sd_url}/sdapi/v1/{path}')
print(f'error occurred durning reading the request {request}')
# return response
return {"prompt_shortcut":prompt_shortcut_json}
@router.post("/swapModel")
async def swapModel(request:Request):
print("swapModel: \n")
payload = await request.json()
print("payload:",payload)
model_title = payload.title
option_payload = {
# "sd_model_checkpoint": "Anything-V3.0-pruned.ckpt [2700c435]"
"sd_model_checkpoint": model_title
}
response = requests.post(url=f'{sd_url}/sdapi/v1/options', json=option_payload)
import webbrowser
@router.post("/open/url/")
async def openUrl(request:Request):
try:
json = await request.json()
except:
json = {}
url = ""
print("json: ",json)
try:
url = json['url']
webbrowser.open(url) # Go to example.com
except:
# print(f'exception: fail to send request to {sd_url}/sdapi/v1/{path}')
print(f'an error has occurred durning processing the request {request}')
# return response
return {"url":url}
@router.get('/lora/list')
async def list_available_loras():
lora_dict = {}
try:
from modules import shared
import glob
os.makedirs(shared.cmd_opts.lora_dir, exist_ok=True)
candidates = \
glob.glob(os.path.join(shared.cmd_opts.lora_dir, '**/*.pt'), recursive=True) + \
glob.glob(os.path.join(shared.cmd_opts.lora_dir, '**/*.safetensors'), recursive=True) + \
glob.glob(os.path.join(shared.cmd_opts.lora_dir, '**/*.ckpt'), recursive=True)
for filename in sorted(candidates, key=str.lower):
if os.path.isdir(filename):
continue
name = os.path.splitext(os.path.basename(filename))[0]
print("lora name: ",name)
# available_loras[name] = LoraOnDisk(name, filename)
lora_dict[name] = name
except Exception as e:
print("list_available_loras() error ",repr(e),e)
return lora_dict
app = FastAPI()
app.include_router(router) |