2024-03-19 17:48:32 +00:00
|
|
|
from __future__ import annotations
|
|
|
|
|
2024-03-17 09:51:08 +00:00
|
|
|
import sys
|
|
|
|
import os.path
|
2024-03-13 04:27:54 +00:00
|
|
|
import webview
|
2024-03-15 13:55:53 +00:00
|
|
|
try:
|
|
|
|
from platformdirs import user_config_dir
|
|
|
|
has_platformdirs = True
|
|
|
|
except ImportError:
|
|
|
|
has_platformdirs = False
|
2024-03-13 04:27:54 +00:00
|
|
|
|
2024-04-06 14:30:35 +00:00
|
|
|
from g4f.gui.gui_parser import gui_parser
|
2024-03-16 09:48:37 +00:00
|
|
|
from g4f.gui.server.api import Api
|
2024-03-13 04:27:54 +00:00
|
|
|
import g4f.version
|
|
|
|
import g4f.debug
|
|
|
|
|
2024-03-15 13:55:53 +00:00
|
|
|
def run_webview(
|
|
|
|
debug: bool = False,
|
2024-04-06 14:37:19 +00:00
|
|
|
http_port: int = None,
|
2024-03-22 11:48:59 +00:00
|
|
|
ssl: bool = True,
|
2024-04-06 08:47:43 +00:00
|
|
|
storage_path: str = None,
|
|
|
|
gui: str = None
|
2024-03-15 13:55:53 +00:00
|
|
|
):
|
2024-03-17 09:51:08 +00:00
|
|
|
if getattr(sys, 'frozen', False):
|
|
|
|
dirname = sys._MEIPASS
|
|
|
|
else:
|
|
|
|
dirname = os.path.dirname(__file__)
|
2024-04-06 08:47:43 +00:00
|
|
|
webview.settings['OPEN_EXTERNAL_LINKS_IN_BROWSER'] = True
|
2024-03-19 17:48:32 +00:00
|
|
|
webview.settings['ALLOW_DOWNLOADS'] = True
|
2024-03-15 13:55:53 +00:00
|
|
|
webview.create_window(
|
|
|
|
f"g4f - {g4f.version.utils.current_version}",
|
2024-03-17 09:51:08 +00:00
|
|
|
os.path.join(dirname, "client/index.html"),
|
2024-03-16 09:48:37 +00:00
|
|
|
text_select=True,
|
|
|
|
js_api=Api(),
|
2024-03-15 13:55:53 +00:00
|
|
|
)
|
|
|
|
if has_platformdirs and storage_path is None:
|
|
|
|
storage_path = user_config_dir("g4f-webview")
|
2024-03-13 04:27:54 +00:00
|
|
|
webview.start(
|
|
|
|
private_mode=False,
|
2024-03-15 13:55:53 +00:00
|
|
|
storage_path=storage_path,
|
2024-03-16 09:48:37 +00:00
|
|
|
debug=debug,
|
2024-04-06 14:37:19 +00:00
|
|
|
http_port=http_port,
|
2024-04-06 08:47:43 +00:00
|
|
|
ssl=ssl,
|
|
|
|
gui=gui
|
2024-03-13 04:27:54 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
parser = gui_parser()
|
|
|
|
args = parser.parse_args()
|
2024-03-15 13:55:53 +00:00
|
|
|
if args.debug:
|
|
|
|
g4f.debug.logging = True
|
2024-03-16 09:48:37 +00:00
|
|
|
run_webview(args.debug)
|