2021-08-17 12:59:58 +02:00
|
|
|
# Standard Packages
|
2022-08-06 01:37:52 +02:00
|
|
|
import sys
|
2022-08-05 22:49:48 +02:00
|
|
|
import webbrowser
|
2021-08-17 12:59:58 +02:00
|
|
|
|
|
|
|
# External Packages
|
|
|
|
import uvicorn
|
2022-08-06 01:37:52 +02:00
|
|
|
from fastapi import FastAPI
|
2021-11-27 16:49:33 +01:00
|
|
|
from fastapi.staticfiles import StaticFiles
|
2022-08-05 22:49:48 +02:00
|
|
|
from PyQt6 import QtCore, QtGui, QtWidgets
|
2021-08-17 12:59:58 +02:00
|
|
|
|
|
|
|
# Internal Packages
|
2022-08-06 01:37:52 +02:00
|
|
|
from src.utils import constants
|
|
|
|
from src.configure import initialize_server
|
|
|
|
from src.router import router
|
2021-08-17 12:59:58 +02:00
|
|
|
|
2022-01-12 15:06:32 +01:00
|
|
|
|
2022-08-06 01:37:52 +02:00
|
|
|
# Initialize the Application Server
|
|
|
|
app = FastAPI()
|
|
|
|
app.mount("/static", StaticFiles(directory=constants.web_directory), name="static")
|
|
|
|
app.include_router(router)
|
2022-08-05 22:49:48 +02:00
|
|
|
|
|
|
|
|
|
|
|
def run():
|
|
|
|
# Setup Application Server
|
2022-08-06 01:37:52 +02:00
|
|
|
host, port, socket = initialize_server(sys.argv[1:])
|
2022-08-05 22:49:48 +02:00
|
|
|
|
|
|
|
# Setup GUI
|
|
|
|
gui = QtWidgets.QApplication([])
|
|
|
|
gui.setQuitOnLastWindowClosed(False)
|
|
|
|
tray = create_system_tray()
|
|
|
|
|
2021-08-16 02:50:08 +02:00
|
|
|
# Start Application Server
|
2022-08-05 22:49:48 +02:00
|
|
|
server = ServerThread(app, host, port, socket)
|
|
|
|
server.start()
|
|
|
|
gui.aboutToQuit.connect(server.terminate)
|
|
|
|
|
|
|
|
# Start the GUI
|
|
|
|
tray.show()
|
|
|
|
gui.exec()
|
|
|
|
|
|
|
|
|
|
|
|
class ServerThread(QtCore.QThread):
|
|
|
|
def __init__(self, app, host=None, port=None, socket=None):
|
|
|
|
super(ServerThread, self).__init__()
|
|
|
|
self.app = app
|
|
|
|
self.host = host
|
|
|
|
self.port = port
|
|
|
|
self.socket = socket
|
|
|
|
|
|
|
|
def __del__(self):
|
|
|
|
self.wait()
|
|
|
|
|
|
|
|
def run(self):
|
|
|
|
if self.socket:
|
|
|
|
uvicorn.run(app, proxy_headers=True, uds=self.socket)
|
|
|
|
else:
|
|
|
|
uvicorn.run(app, host=self.host, port=self.port)
|
|
|
|
|
|
|
|
|
|
|
|
def create_system_tray():
|
|
|
|
"""Create System Tray with Menu
|
|
|
|
Menu Actions should contain
|
|
|
|
1. option to open search page at localhost:8000/
|
|
|
|
2. option to open config page at localhost:8000/config
|
|
|
|
3. to quit
|
|
|
|
"""
|
|
|
|
|
|
|
|
# Create the system tray with icon
|
2022-08-06 01:37:52 +02:00
|
|
|
icon_path = constants.web_directory / 'assets/icons/favicon-144x144.png'
|
2022-08-05 22:49:48 +02:00
|
|
|
icon = QtGui.QIcon(f'{icon_path.absolute()}')
|
|
|
|
tray = QtWidgets.QSystemTrayIcon(icon)
|
|
|
|
tray.setVisible(True)
|
|
|
|
|
|
|
|
# Create the menu and menu actions
|
|
|
|
menu = QtWidgets.QMenu()
|
|
|
|
menu_actions = [
|
|
|
|
('Search', lambda: webbrowser.open('http://localhost:8000/')),
|
|
|
|
('Configure', lambda: webbrowser.open('http://localhost:8000/config')),
|
|
|
|
('Quit', quit),
|
|
|
|
]
|
|
|
|
|
|
|
|
# Add the menu actions to the menu
|
|
|
|
for action_text, action_function in menu_actions:
|
|
|
|
menu_action = QtGui.QAction(action_text, menu)
|
|
|
|
menu_action.triggered.connect(action_function)
|
|
|
|
menu.addAction(menu_action)
|
|
|
|
|
|
|
|
# Add the menu to the system tray
|
|
|
|
tray.setContextMenu(menu)
|
|
|
|
|
|
|
|
return tray
|
2022-08-02 19:13:14 +02:00
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
run()
|