2024-10-04 21:23:38 +03:00
|
|
|
mod database;
|
2024-10-05 03:27:09 +03:00
|
|
|
mod widget;
|
2024-10-05 17:10:31 +03:00
|
|
|
mod window;
|
2024-09-18 20:33:29 +03:00
|
|
|
|
2024-10-04 21:23:38 +03:00
|
|
|
use database::Database;
|
2024-10-05 03:27:09 +03:00
|
|
|
use widget::Widget;
|
2024-10-05 17:10:31 +03:00
|
|
|
use window::Window;
|
2024-09-24 23:08:40 +03:00
|
|
|
|
2024-10-09 10:50:41 +03:00
|
|
|
use adw::ApplicationWindow;
|
2024-09-24 23:08:40 +03:00
|
|
|
use gtk::{
|
2024-10-04 17:54:25 +03:00
|
|
|
gio::{AppInfo, AppLaunchContext, SimpleAction},
|
2024-10-05 03:27:09 +03:00
|
|
|
prelude::{ActionMapExt, GtkWindowExt},
|
2024-09-24 23:08:40 +03:00
|
|
|
};
|
2024-10-07 19:54:28 +03:00
|
|
|
use sqlite::Transaction;
|
|
|
|
use std::{path::PathBuf, sync::Arc};
|
2024-09-23 01:57:16 +03:00
|
|
|
|
2024-09-22 02:00:54 +03:00
|
|
|
pub struct Browser {
|
2024-09-23 13:50:59 +03:00
|
|
|
// Components
|
2024-10-03 20:03:43 +03:00
|
|
|
// header: Arc<Header>,
|
2024-10-06 18:20:36 +03:00
|
|
|
window: Arc<Window>,
|
2024-10-05 03:27:09 +03:00
|
|
|
widget: Arc<Widget>,
|
2024-09-22 02:00:54 +03:00
|
|
|
}
|
2024-09-21 20:48:12 +03:00
|
|
|
|
2024-09-22 17:34:22 +03:00
|
|
|
impl Browser {
|
2024-09-23 13:58:56 +03:00
|
|
|
// Construct
|
2024-09-22 17:34:22 +03:00
|
|
|
pub fn new(
|
2024-10-02 02:14:00 +03:00
|
|
|
// Extras
|
2024-10-04 17:54:25 +03:00
|
|
|
profile_path: PathBuf,
|
2024-09-30 13:43:46 +03:00
|
|
|
// Actions
|
2024-10-04 16:19:26 +03:00
|
|
|
action_tool_debug: Arc<SimpleAction>,
|
|
|
|
action_tool_profile_directory: Arc<SimpleAction>,
|
2024-09-30 13:43:46 +03:00
|
|
|
action_quit: Arc<SimpleAction>,
|
|
|
|
action_update: Arc<SimpleAction>,
|
|
|
|
action_tab_append: Arc<SimpleAction>,
|
|
|
|
action_tab_close: Arc<SimpleAction>,
|
|
|
|
action_tab_close_all: Arc<SimpleAction>,
|
2024-09-30 15:02:22 +03:00
|
|
|
action_tab_page_navigation_base: Arc<SimpleAction>,
|
|
|
|
action_tab_page_navigation_history_back: Arc<SimpleAction>,
|
|
|
|
action_tab_page_navigation_history_forward: Arc<SimpleAction>,
|
2024-09-30 14:49:37 +03:00
|
|
|
action_tab_page_navigation_reload: Arc<SimpleAction>,
|
2024-09-30 13:43:46 +03:00
|
|
|
action_tab_pin: Arc<SimpleAction>,
|
2024-09-23 18:51:48 +03:00
|
|
|
) -> Browser {
|
2024-10-09 10:50:41 +03:00
|
|
|
let window = Arc::new(Window::new(
|
2024-10-04 16:19:26 +03:00
|
|
|
action_tool_debug.clone(),
|
|
|
|
action_tool_profile_directory.clone(),
|
2024-09-28 03:10:07 +03:00
|
|
|
action_quit.clone(),
|
2024-10-09 10:50:41 +03:00
|
|
|
action_update.clone(),
|
2024-09-28 03:10:07 +03:00
|
|
|
action_tab_append.clone(),
|
|
|
|
action_tab_close.clone(),
|
|
|
|
action_tab_close_all.clone(),
|
2024-09-30 15:02:22 +03:00
|
|
|
action_tab_page_navigation_base.clone(),
|
|
|
|
action_tab_page_navigation_history_back.clone(),
|
|
|
|
action_tab_page_navigation_history_forward.clone(),
|
2024-09-30 14:49:37 +03:00
|
|
|
action_tab_page_navigation_reload.clone(),
|
2024-09-28 03:10:07 +03:00
|
|
|
action_tab_pin.clone(),
|
2024-09-28 01:53:16 +03:00
|
|
|
));
|
2024-09-28 01:29:05 +03:00
|
|
|
|
2024-10-09 10:50:41 +03:00
|
|
|
//window.gobject().append(header.gobject());
|
2024-09-23 01:57:16 +03:00
|
|
|
|
2024-09-28 01:29:05 +03:00
|
|
|
// Init widget
|
2024-10-09 10:50:41 +03:00
|
|
|
let widget = Arc::new(Widget::new(window.gobject()));
|
2024-09-23 18:51:48 +03:00
|
|
|
|
2024-10-03 01:30:13 +03:00
|
|
|
// Assign actions
|
2024-10-06 05:03:45 +03:00
|
|
|
widget.gobject().add_action(action_tool_debug.as_ref());
|
2024-10-05 03:27:09 +03:00
|
|
|
widget
|
2024-10-06 05:03:45 +03:00
|
|
|
.gobject()
|
2024-10-05 03:27:09 +03:00
|
|
|
.add_action(action_tool_profile_directory.as_ref());
|
2024-10-06 05:03:45 +03:00
|
|
|
widget.gobject().add_action(action_quit.as_ref());
|
|
|
|
widget.gobject().add_action(action_update.as_ref());
|
|
|
|
widget.gobject().add_action(action_tab_append.as_ref());
|
|
|
|
widget.gobject().add_action(action_tab_close.as_ref());
|
|
|
|
widget.gobject().add_action(action_tab_close_all.as_ref());
|
2024-10-05 03:27:09 +03:00
|
|
|
widget
|
2024-10-06 05:03:45 +03:00
|
|
|
.gobject()
|
2024-10-05 03:27:09 +03:00
|
|
|
.add_action(action_tab_page_navigation_base.as_ref());
|
|
|
|
widget
|
2024-10-06 05:03:45 +03:00
|
|
|
.gobject()
|
2024-10-05 03:27:09 +03:00
|
|
|
.add_action(action_tab_page_navigation_history_back.as_ref());
|
|
|
|
widget
|
2024-10-06 05:03:45 +03:00
|
|
|
.gobject()
|
2024-10-05 03:27:09 +03:00
|
|
|
.add_action(action_tab_page_navigation_history_forward.as_ref());
|
|
|
|
widget
|
2024-10-06 05:03:45 +03:00
|
|
|
.gobject()
|
2024-10-05 03:27:09 +03:00
|
|
|
.add_action(action_tab_page_navigation_reload.as_ref());
|
2024-10-06 05:03:45 +03:00
|
|
|
widget.gobject().add_action(action_tab_pin.as_ref());
|
2024-10-03 20:03:43 +03:00
|
|
|
|
|
|
|
// Init events
|
2024-10-04 16:19:26 +03:00
|
|
|
action_tool_debug.connect_activate({
|
2024-10-03 20:03:43 +03:00
|
|
|
let widget = widget.clone();
|
2024-09-28 01:29:05 +03:00
|
|
|
move |_, _| {
|
2024-10-06 05:03:45 +03:00
|
|
|
widget.gobject().emit_enable_debugging(true);
|
2024-09-28 01:29:05 +03:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2024-10-04 16:19:26 +03:00
|
|
|
action_tool_profile_directory.connect_activate({
|
|
|
|
move |_, _| {
|
2024-10-04 17:54:25 +03:00
|
|
|
// @TODO [4_10] https://docs.gtk.org/gtk4/class.FileLauncher.html
|
|
|
|
let _ = AppInfo::launch_default_for_uri(
|
|
|
|
&format!("file://{}", profile_path.to_string_lossy()),
|
|
|
|
Some(&AppLaunchContext::new()),
|
|
|
|
);
|
2024-10-04 16:19:26 +03:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2024-10-03 20:03:43 +03:00
|
|
|
action_quit.connect_activate({
|
|
|
|
let widget = widget.clone();
|
2024-09-28 01:29:05 +03:00
|
|
|
move |_, _| {
|
2024-10-06 05:03:45 +03:00
|
|
|
widget.gobject().close();
|
2024-09-28 01:29:05 +03:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2024-10-03 20:03:43 +03:00
|
|
|
action_update.connect_activate({
|
2024-10-06 04:39:00 +03:00
|
|
|
let window = window.clone();
|
2024-09-28 01:29:05 +03:00
|
|
|
move |_, _| {
|
2024-10-06 04:39:00 +03:00
|
|
|
window.update();
|
2024-09-28 01:29:05 +03:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2024-10-03 20:03:43 +03:00
|
|
|
action_tab_append.connect_activate({
|
2024-10-06 04:39:00 +03:00
|
|
|
let window = window.clone();
|
2024-09-28 01:53:16 +03:00
|
|
|
move |_, _| {
|
2024-10-06 04:39:00 +03:00
|
|
|
window.tab_append(None);
|
2024-09-28 01:53:16 +03:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2024-10-03 20:03:43 +03:00
|
|
|
action_tab_close.connect_activate({
|
2024-10-06 04:39:00 +03:00
|
|
|
let window = window.clone();
|
2024-09-28 01:53:16 +03:00
|
|
|
move |_, _| {
|
2024-10-06 04:39:00 +03:00
|
|
|
window.tab_close();
|
2024-09-28 01:53:16 +03:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2024-10-03 20:03:43 +03:00
|
|
|
action_tab_close_all.connect_activate({
|
2024-10-06 04:39:00 +03:00
|
|
|
let window = window.clone();
|
2024-09-28 01:53:16 +03:00
|
|
|
move |_, _| {
|
2024-10-06 04:39:00 +03:00
|
|
|
window.tab_close_all();
|
2024-09-28 01:53:16 +03:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2024-10-03 20:03:43 +03:00
|
|
|
action_tab_page_navigation_base.connect_activate({
|
2024-10-06 04:39:00 +03:00
|
|
|
let window = window.clone();
|
2024-09-30 15:02:22 +03:00
|
|
|
move |_, _| {
|
2024-10-06 04:39:00 +03:00
|
|
|
window.tab_page_navigation_base();
|
2024-09-30 15:02:22 +03:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2024-10-03 20:03:43 +03:00
|
|
|
action_tab_page_navigation_history_back.connect_activate({
|
2024-10-06 04:39:00 +03:00
|
|
|
let window = window.clone();
|
2024-10-03 20:03:43 +03:00
|
|
|
move |_, _| {
|
2024-10-06 04:39:00 +03:00
|
|
|
window.tab_page_navigation_history_back();
|
2024-10-03 20:03:43 +03:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
action_tab_page_navigation_history_forward.connect_activate({
|
2024-10-06 04:39:00 +03:00
|
|
|
let window = window.clone();
|
2024-10-03 20:03:43 +03:00
|
|
|
move |_, _| {
|
2024-10-06 04:39:00 +03:00
|
|
|
window.tab_page_navigation_history_forward();
|
2024-10-03 20:03:43 +03:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
action_tab_page_navigation_reload.connect_activate({
|
2024-10-06 04:39:00 +03:00
|
|
|
let window = window.clone();
|
2024-09-28 01:53:16 +03:00
|
|
|
move |_, _| {
|
2024-10-06 04:39:00 +03:00
|
|
|
window.tab_page_navigation_reload();
|
2024-09-28 01:53:16 +03:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2024-10-03 20:03:43 +03:00
|
|
|
action_tab_pin.connect_activate({
|
2024-10-06 04:39:00 +03:00
|
|
|
let window = window.clone();
|
2024-09-28 01:53:16 +03:00
|
|
|
move |_, _| {
|
2024-10-06 04:39:00 +03:00
|
|
|
window.tab_pin();
|
2024-09-28 01:53:16 +03:00
|
|
|
}
|
|
|
|
});
|
2024-10-03 15:38:34 +03:00
|
|
|
|
2024-10-03 20:03:43 +03:00
|
|
|
// Return new activated Browser struct
|
|
|
|
Self {
|
|
|
|
widget,
|
|
|
|
// header,
|
2024-10-06 18:20:36 +03:00
|
|
|
window,
|
2024-10-03 20:03:43 +03:00
|
|
|
}
|
2024-09-22 17:34:22 +03:00
|
|
|
}
|
2024-09-19 18:08:09 +03:00
|
|
|
|
2024-10-04 20:20:53 +03:00
|
|
|
// Actions
|
2024-10-07 21:10:12 +03:00
|
|
|
pub fn clean(&self, transaction: &Transaction, app_id: &i64) -> Result<(), String> {
|
|
|
|
match Database::records(transaction, app_id) {
|
2024-10-04 21:23:38 +03:00
|
|
|
Ok(records) => {
|
|
|
|
for record in records {
|
2024-10-07 21:10:12 +03:00
|
|
|
match Database::delete(transaction, &record.id) {
|
2024-10-04 21:23:38 +03:00
|
|
|
Ok(_) => {
|
|
|
|
// Delegate clean action to childs
|
2024-10-08 03:41:51 +03:00
|
|
|
self.window.clean(transaction, &record.id)?;
|
|
|
|
self.widget.clean(transaction, &record.id)?;
|
2024-10-07 21:10:12 +03:00
|
|
|
|
|
|
|
/* @TODO
|
2024-10-08 03:41:51 +03:00
|
|
|
self.header.clean(transaction, &record.id)?; */
|
2024-10-04 21:23:38 +03:00
|
|
|
}
|
2024-10-07 21:10:12 +03:00
|
|
|
Err(e) => return Err(e.to_string()),
|
2024-10-04 21:23:38 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2024-10-07 21:10:12 +03:00
|
|
|
Err(e) => return Err(e.to_string()),
|
2024-10-04 21:23:38 +03:00
|
|
|
}
|
2024-10-07 21:10:12 +03:00
|
|
|
|
|
|
|
Ok(())
|
2024-10-04 21:23:38 +03:00
|
|
|
}
|
|
|
|
|
2024-10-07 21:10:12 +03:00
|
|
|
pub fn restore(&self, transaction: &Transaction, app_id: &i64) -> Result<(), String> {
|
|
|
|
match Database::records(transaction, app_id) {
|
2024-10-05 15:32:03 +03:00
|
|
|
Ok(records) => {
|
|
|
|
for record in records {
|
|
|
|
// Delegate restore action to childs
|
2024-10-08 03:41:51 +03:00
|
|
|
self.widget.restore(transaction, &record.id)?;
|
|
|
|
self.window.restore(transaction, &record.id)?;
|
2024-10-07 21:10:12 +03:00
|
|
|
|
|
|
|
/* @TODO
|
2024-10-08 03:41:51 +03:00
|
|
|
self.header.restore(transaction, &record.id)?; */
|
2024-10-05 15:32:03 +03:00
|
|
|
}
|
|
|
|
}
|
2024-10-07 21:10:12 +03:00
|
|
|
Err(e) => return Err(e.to_string()),
|
2024-10-05 15:32:03 +03:00
|
|
|
}
|
2024-10-07 21:10:12 +03:00
|
|
|
|
|
|
|
Ok(())
|
2024-10-04 21:23:38 +03:00
|
|
|
}
|
|
|
|
|
2024-10-07 21:10:12 +03:00
|
|
|
pub fn save(&self, transaction: &Transaction, app_id: &i64) -> Result<(), String> {
|
|
|
|
match Database::add(transaction, app_id) {
|
2024-10-04 21:23:38 +03:00
|
|
|
Ok(_) => {
|
2024-10-07 21:10:12 +03:00
|
|
|
let id = Database::last_insert_id(transaction);
|
|
|
|
|
2024-10-04 21:23:38 +03:00
|
|
|
// Delegate save action to childs
|
2024-10-08 03:41:51 +03:00
|
|
|
self.widget.save(transaction, &id)?;
|
|
|
|
self.window.save(transaction, &id)?;
|
2024-10-07 21:10:12 +03:00
|
|
|
|
|
|
|
/* @TODO
|
2024-10-08 03:41:51 +03:00
|
|
|
self.header.save(transaction, &id)?; */
|
2024-10-04 21:23:38 +03:00
|
|
|
}
|
2024-10-07 21:10:12 +03:00
|
|
|
Err(e) => return Err(e.to_string()),
|
2024-10-04 21:23:38 +03:00
|
|
|
}
|
2024-10-07 21:10:12 +03:00
|
|
|
|
|
|
|
Ok(())
|
2024-10-04 21:23:38 +03:00
|
|
|
}
|
2024-10-04 20:20:53 +03:00
|
|
|
|
2024-09-22 17:34:22 +03:00
|
|
|
// Getters
|
2024-10-06 05:16:29 +03:00
|
|
|
pub fn gobject(&self) -> &ApplicationWindow {
|
2024-10-06 05:03:45 +03:00
|
|
|
&self.widget.gobject()
|
2024-09-22 12:42:34 +03:00
|
|
|
}
|
2024-10-07 19:54:28 +03:00
|
|
|
|
|
|
|
// Tools
|
|
|
|
pub fn migrate(tx: &Transaction) -> Result<(), String> {
|
|
|
|
// Migrate self components
|
|
|
|
if let Err(e) = Database::init(&tx) {
|
|
|
|
return Err(e.to_string());
|
|
|
|
}
|
|
|
|
|
|
|
|
// Delegate migration to childs
|
|
|
|
/* @TODO
|
2024-10-08 03:41:51 +03:00
|
|
|
Header::migrate(&tx)?; */
|
|
|
|
Window::migrate(&tx)?;
|
|
|
|
Widget::migrate(&tx)?;
|
2024-10-07 19:54:28 +03:00
|
|
|
|
|
|
|
// Success
|
|
|
|
Ok(())
|
|
|
|
}
|
2024-09-20 18:02:10 +03:00
|
|
|
}
|