Bavarder/src/main.py

282 lines
9.3 KiB
Python
Raw Normal View History

2023-04-26 18:22:27 +05:30
# main.py
#
# Copyright 2023 Me
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
# SPDX-License-Identifier: GPL-3.0-or-later
import sys
import gi
2023-04-27 04:02:45 +05:30
import sys
2023-04-27 17:18:50 +05:30
import threading
2023-04-27 17:54:21 +05:30
import socket
2023-04-30 20:01:54 +05:30
import json
2023-04-26 18:22:27 +05:30
2023-04-27 17:18:50 +05:30
gi.require_version("Gtk", "4.0")
gi.require_version("Adw", "1")
gi.require_version("Gdk", "4.0")
2023-04-29 20:59:45 +05:30
gi.require_version('Gst', '1.0')
2023-04-26 18:22:27 +05:30
2023-04-29 20:59:45 +05:30
from gi.repository import Gtk, Gio, Adw, Gdk, GLib, Gst
2023-04-26 18:22:27 +05:30
from .window import BavarderWindow
2023-04-27 04:02:45 +05:30
from .preferences import Preferences
from .constants import app_id, version
2023-04-29 20:59:45 +05:30
from hgchat import HGChat
from gtts import gTTS
from tempfile import NamedTemporaryFile
2023-04-26 18:22:27 +05:30
2023-04-30 20:01:54 +05:30
from .provider import PROVIDERS
2023-04-26 18:22:27 +05:30
class BavarderApplication(Adw.Application):
"""The main application singleton class."""
def __init__(self):
2023-04-27 17:18:50 +05:30
super().__init__(
application_id="io.github.Bavarder.Bavarder",
2023-04-27 17:18:50 +05:30
flags=Gio.ApplicationFlags.DEFAULT_FLAGS,
)
2023-04-30 20:01:54 +05:30
self.create_action("quit", self.on_quit, ["<primary>q"])
2023-04-27 17:18:50 +05:30
self.create_action("about", self.on_about_action)
self.create_action("preferences", self.on_preferences_action)
self.create_action("copy_prompt", self.on_copy_prompt_action)
self.create_action("copy_bot", self.on_copy_bot_action)
self.create_action("ask", self.on_ask_action, ["<primary>Return"])
2023-04-29 20:59:45 +05:30
self.create_action("speak", self.on_speak_action, ["<primary>S"])
self.create_action("listen", self.on_listen_action, ["<primary>L"])
2023-04-27 04:02:45 +05:30
self.settings = Gio.Settings(schema_id="io.github.Bavarder.Bavarder")
2023-04-27 04:02:45 +05:30
self.clear_after_send = self.settings.get_boolean("clear-after-send")
2023-04-26 18:22:27 +05:30
2023-04-30 20:01:54 +05:30
self.enabled_providers = set(self.settings.get_strv("enabled-providers"))
self.latest_provider = self.settings.get_string("latest-provider")
self.latest_provider = "huggingchat"
2023-04-29 20:59:45 +05:30
# GStreamer playbin object and related setup
Gst.init(None)
self.player = Gst.ElementFactory.make('playbin', 'player')
self.pipeline = Gst.Pipeline()
# bus = self.player.get_bus()
# bus.add_signal_watch()
# bus.connect('message', self.on_gst_message)
self.player_event = threading.Event() # An event for letting us know when Gst is done playing
2023-04-30 20:01:54 +05:30
def on_quit(self, action, param):
"""Called when the user activates the Quit action."""
self.settings.set_strv("enabled-providers", list(self.enabled_providers))
self.settings.set_string("latest-provider", self.get_provider().slug)
self.save_providers()
self.quit()
def save_providers(self):
r = {}
for k, p in self.providers.items():
r[k] = json.dumps(p.save())
self.settings.set_value("providers-data", r)
print(r)
def get_provider(self):
print(self.providers)
return self.providers[self.win.provider_selector.props.selected]
2023-04-29 20:59:45 +05:30
2023-04-26 18:22:27 +05:30
def do_activate(self):
"""Called when the application is activated.
We raise the application's main window, creating it if
necessary.
"""
2023-04-27 04:02:45 +05:30
self.win = self.props.active_window
if not self.win:
self.win = BavarderWindow(application=self)
self.win.present()
2023-04-26 18:22:27 +05:30
2023-04-27 17:54:21 +05:30
self.win.response_stack.set_visible_child_name("page_response")
2023-04-30 20:01:54 +05:30
self.provider_selector_model = Gtk.StringList()
self.providers = {}
self.providers_data = self.settings.get_value("providers-data")
print(self.providers_data)
for provider, i in zip(self.enabled_providers, range(len(self.enabled_providers))):
try:
self.provider_selector_model.append(PROVIDERS[provider].name)
self.providers[i] = PROVIDERS[provider](self.win, self, self.providers_data[i])
except KeyError:
self.providers[i] = PROVIDERS[provider](self.win, self, None)
self.win.provider_selector.set_model(self.provider_selector_model)
for k, p in self.providers.items():
if p.slug == self.latest_provider:
self.win.provider_selector.set_selected(k)
break
2023-04-26 18:22:27 +05:30
def on_about_action(self, widget, _):
"""Callback for the app.about action."""
2023-04-27 17:18:50 +05:30
about = Adw.AboutWindow(
transient_for=self.props.active_window,
application_name="Bavarder",
application_icon=app_id,
developer_name="0xMRTT",
developers=["0xMRTT https://github.com/0xMRTT"],
2023-04-27 18:01:42 +05:30
designers=["David Lapshin https://github.com/daudix-UFO"],
2023-04-27 17:18:50 +05:30
documenters=[],
license_type=Gtk.License.GPL_3_0,
version=version,
copyright="© 2023 0xMRTT",
)
about.add_acknowledgement_section(
"Special thanks to",
[
"Telegraph https://apps.gnome.org/app/io.github.fkinoshita.Telegraph",
"BAIChat https://chatbot.theb.ai/",
],
)
2023-04-26 18:22:27 +05:30
about.present()
def on_preferences_action(self, widget, _):
"""Callback for the app.preferences action."""
2023-04-27 17:18:50 +05:30
print("app.preferences action activated")
2023-04-26 18:22:27 +05:30
2023-04-27 17:18:50 +05:30
preferences = Preferences(
application=self, transient_for=self.props.active_window
)
2023-04-27 04:02:45 +05:30
preferences.present()
def on_copy_prompt_action(self, widget, _):
"""Callback for the app.copy_prompt action."""
2023-04-27 17:18:50 +05:30
2023-04-27 04:02:45 +05:30
toast = Adw.Toast()
text = self.win.prompt_text_view.get_buffer()
2023-04-27 17:18:50 +05:30
toast.set_title("Text copied")
2023-04-27 04:02:45 +05:30
(start, end) = text.get_bounds()
text = text.get_text(start, end, False)
2023-04-27 17:18:50 +05:30
if len(text) == 0:
2023-04-27 04:02:45 +05:30
return
Gdk.Display.get_default().get_clipboard().set(text)
self.win.toast_overlay.add_toast(toast)
def on_copy_bot_action(self, widget, _):
"""Callback for the app.copy_bot action."""
toast = Adw.Toast()
text = self.win.bot_text_view.get_buffer()
2023-04-27 17:18:50 +05:30
toast.set_title("Text copied")
2023-04-27 04:02:45 +05:30
(start, end) = text.get_bounds()
text = text.get_text(start, end, False)
2023-04-27 17:18:50 +05:30
if len(text) == 0:
2023-04-27 04:02:45 +05:30
return
Gdk.Display.get_default().get_clipboard().set(text)
self.win.toast_overlay.add_toast(toast)
def ask(self, prompt):
2023-04-30 20:01:54 +05:30
print(self.provider)
print(self.providers[self.provider])
return self.providers[self.provider].ask(prompt)
2023-04-30 20:00:50 +05:30
def update_response(self, response):
self.win.bot_text_view.get_buffer().set_text(response)
2023-04-27 04:02:45 +05:30
def on_ask_action(self, widget, _):
"""Callback for the app.ask action."""
2023-04-27 17:18:50 +05:30
self.win.spinner.start()
self.win.ask_button.set_visible(False)
2023-04-27 17:54:21 +05:30
self.win.wait_button.set_visible(True)
2023-04-27 04:02:45 +05:30
self.prompt = self.win.prompt_text_view.get_buffer().props.text
2023-04-30 20:01:54 +05:30
self.provider = self.win.provider_selector.props.selected
2023-04-27 17:18:50 +05:30
def thread_run():
response = self.ask(self.prompt)
GLib.idle_add(cleanup, response)
def cleanup(response):
self.win.spinner.stop()
self.win.ask_button.set_visible(True)
2023-04-27 17:54:21 +05:30
self.win.wait_button.set_visible(False)
2023-04-27 17:18:50 +05:30
t.join()
self.win.bot_text_view.get_buffer().set_text(response)
if self.clear_after_send:
self.win.prompt_text_view.get_buffer().set_text("")
2023-04-27 04:02:45 +05:30
2023-04-27 17:18:50 +05:30
t = threading.Thread(target=thread_run)
t.start()
2023-04-27 04:02:45 +05:30
2023-04-29 20:59:45 +05:30
def on_speak_action(self, widget, _):
"""Callback for the app.speak action."""
print("app.speak action activated")
try:
with NamedTemporaryFile() as file_to_play:
tts = gTTS(self.win.bot_text_view.get_buffer().props.text)
tts.write_to_fp(file_to_play)
file_to_play.seek(0)
self._play_audio(file_to_play.name)
except Exception as exc:
print(exc)
def _play_audio(self, path):
uri = 'file://' + path
self.player.set_property('uri', uri)
self.pipeline.add(self.player)
self.pipeline.set_state(Gst.State.PLAYING)
self.player.set_state(Gst.State.PLAYING)
def on_listen_action(self, widget, _):
"""Callback for the app.listen action."""
print("app.listen action activated")
2023-04-26 18:22:27 +05:30
def create_action(self, name, callback, shortcuts=None):
"""Add an application action.
Args:
name: the name of the action
callback: the function to be called when the action is
activated
shortcuts: an optional list of accelerators
"""
action = Gio.SimpleAction.new(name, None)
action.connect("activate", callback)
self.add_action(action)
if shortcuts:
self.set_accels_for_action(f"app.{name}", shortcuts)
def main(version):
"""The application's entry point."""
app = BavarderApplication()
return app.run(sys.argv)