1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- from typing import Awaitable, Callable, Union
- from fastapi import FastAPI
- from fastapi.staticfiles import StaticFiles
- from . import globals
- from .native import Native
- class App(FastAPI):
- def __init__(self, **kwargs) -> None:
- super().__init__(**kwargs)
- self.native = Native()
- def on_connect(self, handler: Union[Callable, Awaitable]) -> None:
- """Called every time a new client connects to NiceGUI.
- The callback has an optional parameter of `nicegui.Client`.
- """
- globals.connect_handlers.append(handler)
- def on_disconnect(self, handler: Union[Callable, Awaitable]) -> None:
- """Called every time a new client disconnects from NiceGUI.
- The callback has an optional parameter of `nicegui.Client`.
- """
- globals.disconnect_handlers.append(handler)
- def on_startup(self, handler: Union[Callable, Awaitable]) -> None:
- """Called when NiceGUI is started or restarted.
- Needs to be called before `ui.run()`.
- """
- if globals.state == globals.State.STARTED:
- raise RuntimeError('Unable to register another startup handler. NiceGUI has already been started.')
- globals.startup_handlers.append(handler)
- def on_shutdown(self, handler: Union[Callable, Awaitable]) -> None:
- """Called when NiceGUI is shut down or restarted.
- When NiceGUI is shut down or restarted, all tasks still in execution will be automatically canceled.
- """
- globals.shutdown_handlers.append(handler)
- def on_exception(self, handler: Union[Callable, Awaitable]) -> None:
- """Called when an exception occurs.
- The callback has an optional parameter of `Exception`.
- """
- globals.exception_handlers.append(handler)
- def shutdown(self) -> None:
- """Shut down NiceGUI.
- This will programmatically stop the server.
- Only possible when auto-reload is disabled.
- """
- if globals.reload:
- raise Exception('calling shutdown() is not supported when auto-reload is enabled')
- globals.server.should_exit = True
- def add_static_files(self, url_path: str, local_directory: str) -> None:
- """Add static files.
- `add_static_files()` makes a local directory available at the specified endpoint, e.g. `'/static'`.
- This is useful for providing local data like images to the frontend.
- Otherwise the browser would not be able to access the files.
- Do only put non-security-critical files in there, as they are accessible to everyone.
- :param url_path: string that starts with a slash "/" and identifies the path at which the files should be served
- :param local_directory: local folder with files to serve as static content
- """
- if url_path == '/':
- raise ValueError('''Path cannot be "/", because it would hide NiceGUI's internal "/_nicegui" route.''')
- globals.app.mount(url_path, StaticFiles(directory=local_directory))
- def remove_route(self, path: str) -> None:
- """Remove routes with the given path."""
- self.routes[:] = [r for r in self.routes if getattr(r, 'path', None) != path]
|