anotherim-desktop/main/src/ui/conversation_view_controller.vala

296 lines
12 KiB
Vala
Raw Normal View History

using Gee;
using Gdk;
using Gtk;
using Dino.Entities;
namespace Dino.Ui {
enum Target {
URI_LIST,
STRING
}
2022-02-14 13:55:59 +00:00
//const TargetEntry[] target_list = {
// { "text/uri-list", 0, Target.URI_LIST }
//};
public class ConversationViewController : Object {
public new string? conversation_display_name { get; set; }
public string? conversation_topic { get; set; }
private Application app;
private ConversationView view;
2020-04-22 13:44:12 +00:00
private Widget? overlay_dialog;
private ConversationTitlebar titlebar;
public SearchMenuEntry search_menu_entry = new SearchMenuEntry();
2022-02-14 13:55:59 +00:00
public ListView list_view = new ListView(null, null);
private ChatInputController chat_input_controller;
private StreamInteractor stream_interactor;
private Conversation? conversation;
public ConversationViewController(ConversationView view, ConversationTitlebar titlebar, StreamInteractor stream_interactor) {
this.view = view;
this.titlebar = titlebar;
this.stream_interactor = stream_interactor;
this.app = GLib.Application.get_default() as Application;
this.chat_input_controller = new ChatInputController(view.chat_input, stream_interactor);
2022-02-14 13:55:59 +00:00
// chat_input_controller.activate_last_message_correction.connect(view.conversation_frame.activate_last_message_correction);
chat_input_controller.file_picker_selected.connect(open_file_picker);
chat_input_controller.clipboard_pasted.connect(on_clipboard_paste);
view.conversation_frame.init(stream_interactor);
// drag 'n drop file upload
2022-02-14 13:55:59 +00:00
// view.drag_data_received.connect(this.on_drag_data_received);
// forward key presses
2022-02-14 13:55:59 +00:00
// view.chat_input.key_press_event.connect(forward_key_press_to_chat_input);
// view.conversation_frame.key_press_event.connect(forward_key_press_to_chat_input);
// titlebar.key_press_event.connect(forward_key_press_to_chat_input);
2022-02-14 13:55:59 +00:00
// goto-end floating button
var vadjustment = view.conversation_frame.scrolled.vadjustment;
vadjustment.notify["value"].connect(() => {
bool button_active = vadjustment.value < vadjustment.upper - vadjustment.page_size;
view.goto_end_revealer.reveal_child = button_active;
view.goto_end_revealer.visible = button_active;
});
view.goto_end_button.clicked.connect(() => {
view.conversation_frame.initialize_for_conversation(conversation);
});
// Update conversation display name & topic
this.bind_property("conversation-display-name", titlebar, "title");
this.bind_property("conversation-topic", titlebar, "subtitle");
stream_interactor.get_module(MucManager.IDENTITY).room_info_updated.connect((account, jid) => {
if (conversation != null && conversation.counterpart.equals_bare(jid) && conversation.account.equals(account)) {
update_conversation_display_name();
}
});
stream_interactor.get_module(MucManager.IDENTITY).private_room_occupant_updated.connect((account, room, occupant) => {
if (conversation != null && conversation.counterpart.equals_bare(room.bare_jid) && conversation.account.equals(account)) {
update_conversation_display_name();
}
});
stream_interactor.get_module(MucManager.IDENTITY).subject_set.connect((account, jid, subject) => {
if (conversation != null && conversation.counterpart.equals_bare(jid) && conversation.account.equals(account)) {
update_conversation_topic(subject);
}
});
2021-08-24 17:35:00 +00:00
stream_interactor.get_module(RosterManager.IDENTITY).updated_roster_item.connect((account, jid, roster_item) => {
if (conversation.account.equals(account) && conversation.counterpart.equals(jid)) {
update_conversation_display_name();
}
});
2020-04-22 13:44:12 +00:00
stream_interactor.get_module(FileManager.IDENTITY).upload_available.connect(update_file_upload_status);
// Headerbar plugins
app.plugin_registry.register_contact_titlebar_entry(new MenuEntry(stream_interactor));
app.plugin_registry.register_contact_titlebar_entry(search_menu_entry);
app.plugin_registry.register_contact_titlebar_entry(new OccupantsEntry(stream_interactor));
2021-03-19 22:09:56 +00:00
app.plugin_registry.register_contact_titlebar_entry(new CallTitlebarEntry(stream_interactor));
foreach(var entry in app.plugin_registry.conversation_titlebar_entries) {
2022-02-14 13:55:59 +00:00
Widget? button = entry.get_widget(Plugins.WidgetType.GTK4) as Widget;
if (button == null) {
continue;
}
titlebar.insert_button(button);
}
2022-02-14 13:55:59 +00:00
// AccelGroup accel_group = new AccelGroup();
// accel_group.connect(Gdk.Key.U, ModifierType.CONTROL_MASK, AccelFlags.VISIBLE, () => {
// if (conversation == null) return false;
// stream_interactor.get_module(FileManager.IDENTITY).is_upload_available.begin(conversation, (_, res) => {
// if (stream_interactor.get_module(FileManager.IDENTITY).is_upload_available.end(res)) {
// open_file_picker();
// }
// });
// return false;
// });
// ((Gtk.Window)view.get_toplevel()).add_accel_group(accel_group);
}
public void select_conversation(Conversation? conversation, bool default_initialize_conversation) {
2020-04-22 13:44:12 +00:00
if (this.conversation != null) {
conversation.notify["encryption"].disconnect(update_file_upload_status);
}
if (overlay_dialog != null) {
overlay_dialog.destroy();
}
this.conversation = conversation;
2022-02-14 13:55:59 +00:00
// Set list model onto list view
// Dino.Application app = GLib.Application.get_default() as Dino.Application;
// var map_list_model = get_conversation_content_model(new ContentItemMetaModel(app.db, conversation, stream_interactor), stream_interactor);
// NoSelection selection_model = new NoSelection(map_list_model);
// view.list_view.set_model(selection_model);
// view.at_current_content = true;
2020-04-22 13:44:12 +00:00
conversation.notify["encryption"].connect(update_file_upload_status);
chat_input_controller.set_conversation(conversation);
update_conversation_display_name();
update_conversation_topic();
2022-02-14 13:55:59 +00:00
foreach(Plugins.ConversationTitlebarEntry e in this.app.plugin_registry.conversation_titlebar_entries) {
e.set_conversation(conversation);
}
if (default_initialize_conversation) {
view.conversation_frame.initialize_for_conversation(conversation);
}
2020-04-22 13:44:12 +00:00
update_file_upload_status();
}
public void unset_conversation() {
conversation_display_name = null;
conversation_topic = null;
}
2020-04-22 13:44:12 +00:00
private void update_file_upload_status() {
stream_interactor.get_module(FileManager.IDENTITY).is_upload_available.begin(conversation, (_, res) => {
bool upload_available = stream_interactor.get_module(FileManager.IDENTITY).is_upload_available.end(res);
chat_input_controller.set_file_upload_active(upload_available);
if (upload_available && overlay_dialog == null) {
2022-02-14 13:55:59 +00:00
// Gtk.drag_dest_set(view, DestDefaults.ALL, target_list, Gdk.DragAction.COPY);
} else {
2022-02-14 13:55:59 +00:00
// Gtk.drag_dest_unset(view);
}
});
2020-04-22 13:44:12 +00:00
}
private void update_conversation_display_name() {
conversation_display_name = Util.get_conversation_display_name(stream_interactor, conversation);
}
private void update_conversation_topic(string? subtitle = null) {
if (subtitle != null) {
conversation_topic = Util.summarize_whitespaces_to_space(subtitle);
} else if (conversation.type_ == Conversation.Type.GROUPCHAT) {
string? subject = stream_interactor.get_module(MucManager.IDENTITY).get_groupchat_subject(conversation.counterpart, conversation.account);
if (subject != null) {
conversation_topic = Util.summarize_whitespaces_to_space(subject);
} else {
conversation_topic = null;
}
} else {
conversation_topic = null;
}
}
private void on_clipboard_paste() {
2022-02-14 13:55:59 +00:00
Clipboard clipboard = view.get_clipboard();
// if (clipboard.wait_is_image_available()) {
// clipboard.request_image((_, pixbuf) => {
// File file = File.new_for_path(Path.build_filename(FileManager.get_storage_dir(), Xmpp.random_uuid() + ".png"));
// try {
// FileOutputStream fos = file.create(FileCreateFlags.REPLACE_DESTINATION);
// pixbuf.save_to_stream_async.begin(fos, "png", null, () => {
// open_send_file_overlay(file);
// });
// } catch (Error e) {
// warning("Could not create file to store pasted image in %s, %s", file.get_path(), e.message);
// }
// });
// }
}
2022-02-14 13:55:59 +00:00
// private void on_drag_data_received(Widget widget, Gdk.DragContext context, int x, int y, SelectionData selection_data, uint target_type, uint time) {
// if ((selection_data != null) && (selection_data.get_length() >= 0)) {
// switch (target_type) {
// case Target.URI_LIST:
// string[] uris = selection_data.get_uris();
// // For now we only process the first dragged file
// if (uris.length >= 1) {
// try {
// string file_path = Filename.from_uri(uris[0]);
// open_send_file_overlay(File.new_for_path(file_path));
// } catch (ConvertError e) {
// warning("Could not handle dragged file %s, %s", uris[0], e.message);
// }
// }
// break;
// default:
// break;
// }
// }
// }
private void open_file_picker() {
2022-02-14 13:55:59 +00:00
FileChooserNative chooser = new FileChooserNative(_("Select file"), view.get_root() as Gtk.Window, FileChooserAction.OPEN, _("Select"), _("Cancel"));
chooser.response.connect(() => {
open_send_file_overlay(File.new_for_path(chooser.get_file().get_path()));
});
chooser.show();
2020-04-22 13:44:12 +00:00
}
private void open_send_file_overlay(File file) {
FileInfo file_info;
try {
file_info = file.query_info("*", FileQueryInfoFlags.NONE);
} catch (Error e) { return; }
FileSendOverlay overlay = new FileSendOverlay(file, file_info);
overlay.send_file.connect(() => send_file(file));
stream_interactor.get_module(FileManager.IDENTITY).get_file_size_limits.begin(conversation, (_, res) => {
HashMap<int, long> limits = stream_interactor.get_module(FileManager.IDENTITY).get_file_size_limits.end(res);
bool something_works = false;
foreach (var limit in limits.values) {
if (limit >= file_info.get_size()) {
something_works = true;
}
2020-04-22 13:44:12 +00:00
}
if (!something_works && limits.has_key(0)) {
if (!something_works && file_info.get_size() > limits[0]) {
overlay.set_file_too_large();
}
2020-04-22 13:44:12 +00:00
}
});
2020-04-22 13:44:12 +00:00
overlay.close.connect(() => {
// We don't want drag'n'drop to be active while the overlay is active
overlay_dialog = null;
update_file_upload_status();
});
2022-02-14 13:55:59 +00:00
view.add_overlay_dialog(overlay.get_widget());
overlay_dialog = overlay.get_widget();
update_file_upload_status();
2020-04-22 13:44:12 +00:00
}
private void send_file(File file) {
stream_interactor.get_module(FileManager.IDENTITY).send_file.begin(file, conversation);
}
2022-02-14 13:55:59 +00:00
// private bool forward_key_press_to_chat_input(EventKey event) {
// if (((Gtk.Window)view.get_toplevel()).get_focus() is TextView) {
// return false;
// }
//
// // Don't forward / change focus on Control / Alt
// if (event.keyval == Gdk.Key.Control_L || event.keyval == Gdk.Key.Control_R ||
// event.keyval == Gdk.Key.Alt_L || event.keyval == Gdk.Key.Alt_R) {
// return false;
// }
// // Don't forward / change focus on Control + ...
// if ((event.state & ModifierType.CONTROL_MASK) > 0) {
// return false;
// }
// if (view.chat_input.chat_text_view.text_view.key_press_event(event)) {
// return true;
// }
// return false;
// }
}
}