Skip to content

Commit

Permalink
Authenticated Sysinfo
Browse files Browse the repository at this point in the history
  • Loading branch information
w-e-w committed Dec 27, 2024
1 parent 078d04e commit 82d4126
Show file tree
Hide file tree
Showing 5 changed files with 49 additions and 16 deletions.
22 changes: 22 additions & 0 deletions javascript/sysinfo.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
function downloadSysinfo() {
const content = document.querySelector('#internal-sysinfo-textbox textarea').value;
const now = new Date();
const year = now.getFullYear();
const month = String(now.getMonth() + 1).padStart(2, '0');
const day = String(now.getDate()).padStart(2, '0');
const hours = String(now.getHours()).padStart(2, '0');
const minutes = String(now.getMinutes()).padStart(2, '0');
const filename = `sysinfo-${year}-${month}-${day}-${hours}-${minutes}.json`;
const blob = new Blob([content], {type: 'application/json'});
const link = document.createElement('a');
link.href = URL.createObjectURL(blob);
link.download = filename;
link.click();
}

function openTabSysinfo() {
const content = document.querySelector('#internal-sysinfo-textbox textarea').value;
const blob = new Blob([content], {type: 'application/json'});
const url = URL.createObjectURL(blob);
window.open(url, '_blank');
}
5 changes: 4 additions & 1 deletion modules/api/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
from secrets import compare_digest

import modules.shared as shared
from modules import sd_samplers, deepbooru, sd_hijack, images, scripts, ui, postprocessing, errors, restart, shared_items, script_callbacks, infotext_utils, sd_models, sd_schedulers
from modules import sd_samplers, deepbooru, sd_hijack, images, scripts, ui, postprocessing, errors, restart, shared_items, script_callbacks, infotext_utils, sd_models, sd_schedulers, sysinfo
from modules.api import models
from modules.shared import opts
from modules.processing import StableDiffusionProcessingTxt2Img, StableDiffusionProcessingImg2Img, process_images
Expand All @@ -33,6 +33,7 @@
from contextlib import closing
from modules.progress import create_task_id, add_task_to_queue, start_task, finish_task, current_task


def script_name_to_index(name, scripts):
try:
return [script.title().lower() for script in scripts].index(name.lower())
Expand Down Expand Up @@ -244,6 +245,8 @@ def __init__(self, app: FastAPI, queue_lock: Lock):
self.add_api_route("/sdapi/v1/scripts", self.get_scripts_list, methods=["GET"], response_model=models.ScriptsList)
self.add_api_route("/sdapi/v1/script-info", self.get_script_info, methods=["GET"], response_model=list[models.ScriptInfo])
self.add_api_route("/sdapi/v1/extensions", self.get_extensions_list, methods=["GET"], response_model=list[models.ExtensionItem])
self.add_api_route("/internal/sysinfo", sysinfo.download_sysinfo, methods=["GET"])
self.add_api_route("/internal/sysinfo-download", lambda: sysinfo.download_sysinfo(attachment=True), methods=["GET"])

if shared.cmd_opts.api_server_stop:
self.add_api_route("/sdapi/v1/server-kill", self.kill_webui, methods=["POST"])
Expand Down
10 changes: 10 additions & 0 deletions modules/sysinfo.py
Original file line number Diff line number Diff line change
Expand Up @@ -213,3 +213,13 @@ def get_config():
return json.load(f)
except Exception as e:
return str(e)


def download_sysinfo(attachment=False):
from fastapi.responses import PlainTextResponse
from datetime import datetime

text = get()
filename = f"sysinfo-{datetime.utcnow().strftime('%Y-%m-%d-%H-%M')}.json"

return PlainTextResponse(text, headers={'Content-Disposition': f'{"attachment" if attachment else "inline"}; filename="{filename}"'})
16 changes: 2 additions & 14 deletions modules/ui.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import datetime
import mimetypes
import os
import sys
Expand All @@ -10,10 +9,10 @@
import gradio.utils
import numpy as np
from PIL import Image, PngImagePlugin # noqa: F401
from modules.call_queue import wrap_gradio_gpu_call, wrap_queued_call, wrap_gradio_call, wrap_gradio_call_no_job # noqa: F401
from modules.call_queue import wrap_gradio_gpu_call, wrap_queued_call, wrap_gradio_call, wrap_gradio_call_no_job # noqa: F401

from modules import gradio_extensons, sd_schedulers # noqa: F401
from modules import sd_hijack, sd_models, script_callbacks, ui_extensions, deepbooru, extra_networks, ui_common, ui_postprocessing, progress, ui_loadsave, shared_items, ui_settings, timer, sysinfo, ui_checkpoint_merger, scripts, sd_samplers, processing, ui_extra_networks, ui_toprow, launch_utils
from modules import sd_hijack, sd_models, script_callbacks, ui_extensions, deepbooru, extra_networks, ui_common, ui_postprocessing, progress, ui_loadsave, shared_items, ui_settings, timer, ui_checkpoint_merger, scripts, sd_samplers, processing, ui_extra_networks, ui_toprow, launch_utils
from modules.ui_components import FormRow, FormGroup, ToolButton, FormHTML, InputAccordion, ResizeHandleRow
from modules.paths import script_path
from modules.ui_common import create_refresh_button
Expand Down Expand Up @@ -1223,16 +1222,5 @@ def quicksettings_hint():

app.add_api_route("/internal/profile-startup", lambda: timer.startup_record, methods=["GET"])

def download_sysinfo(attachment=False):
from fastapi.responses import PlainTextResponse

text = sysinfo.get()
filename = f"sysinfo-{datetime.datetime.utcnow().strftime('%Y-%m-%d-%H-%M')}.json"

return PlainTextResponse(text, headers={'Content-Disposition': f'{"attachment" if attachment else "inline"}; filename="{filename}"'})

app.add_api_route("/internal/sysinfo", download_sysinfo, methods=["GET"])
app.add_api_route("/internal/sysinfo-download", lambda: download_sysinfo(attachment=True), methods=["GET"])

import fastapi.staticfiles
app.mount("/webui-assets", fastapi.staticfiles.StaticFiles(directory=launch_utils.repo_dir('stable-diffusion-webui-assets')), name="webui-assets")
12 changes: 11 additions & 1 deletion modules/ui_settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,17 @@ def create_ui(self, loadsave, dummy_component):
loadsave.create_ui()

with gr.TabItem("Sysinfo", id="sysinfo", elem_id="settings_tab_sysinfo"):
gr.HTML('<a href="./internal/sysinfo-download" class="sysinfo_big_link" download>Download system info</a><br /><a href="./internal/sysinfo" target="_blank">(or open as text in a new page)</a>', elem_id="sysinfo_download")
with gr.Row():
download_sysinfo = gr.Button(value='Download system info', elem_id="internal-download-sysinfo", visible=False)
open_sysinfo = gr.Button(value='Open as text in a new page', elem_id="internal-open-sysinfo", visible=False)
sysinfo_textbox = gr.Textbox('', elem_id='internal-sysinfo-textbox', interactive=False, visible=False)
sysinfo_html = gr.HTML('''<a class="sysinfo_big_link" onclick="gradioApp().getElementById('internal-download-sysinfo').click();">Download system info</a><br/><a onclick="gradioApp().getElementById('internal-open-sysinfo').click();">(or open as text in a new page)</a>''', elem_id="sysinfo_download")

def get_sysinfo():
return sysinfo.get(), gr.update()

download_sysinfo.click(fn=get_sysinfo, outputs=[sysinfo_textbox, sysinfo_html], show_progress=True).then(fn=None, _js='downloadSysinfo')
open_sysinfo.click(fn=get_sysinfo, outputs=[sysinfo_textbox, sysinfo_html], show_progress=True).then(fn=None, _js='openTabSysinfo')

with gr.Row():
with gr.Column(scale=1):
Expand Down

0 comments on commit 82d4126

Please sign in to comment.