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

91 lines
4.5 KiB
Vala
Raw Normal View History

using Gee;
2017-03-02 14:37:32 +00:00
using Dino.Entities;
using Xmpp;
namespace Dino.Ui {
2017-03-10 17:07:28 +00:00
2017-03-22 22:55:19 +00:00
public class Notifications : Object {
2017-03-02 14:37:32 +00:00
public signal void conversation_selected(Conversation conversation);
2017-03-02 14:37:32 +00:00
private StreamInteractor stream_interactor;
private Gtk.Window window;
2017-09-19 20:41:33 +00:00
private HashMap<Conversation, Notification> notifications = new HashMap<Conversation, Notification>(Conversation.hash_func, Conversation.equals_func);
private Set<string>? active_conversation_ids = null;
private Set<string>? active_ids = new HashSet<string>();
2017-03-02 14:37:32 +00:00
public Notifications(StreamInteractor stream_interactor, Gtk.Window window) {
2017-03-02 14:37:32 +00:00
this.stream_interactor = stream_interactor;
this.window = window;
2017-09-19 20:41:33 +00:00
stream_interactor.get_module(ChatInteraction.IDENTITY).focused_in.connect((focused_conversation) => {
if (active_conversation_ids == null) {
2017-09-19 20:41:33 +00:00
Gee.List<Conversation> conversations = stream_interactor.get_module(ConversationManager.IDENTITY).get_active_conversations();
foreach (Conversation conversation in conversations) {
GLib.Application.get_default().withdraw_notification(conversation.id.to_string());
}
active_conversation_ids = new HashSet<string>();
2017-09-19 20:41:33 +00:00
} else {
foreach (string id in active_conversation_ids) {
2017-09-19 20:41:33 +00:00
GLib.Application.get_default().withdraw_notification(id);
}
active_conversation_ids.clear();
2017-09-19 20:41:33 +00:00
}
string subscription_id = focused_conversation.id.to_string() + "-subscription";
if (active_ids.contains(subscription_id)) {
GLib.Application.get_default().withdraw_notification(subscription_id);
2017-09-19 20:41:33 +00:00
}
});
2017-03-02 14:37:32 +00:00
}
public void start() {
stream_interactor.get_module(NotificationEvents.IDENTITY).notify_message.connect(notify_message);
stream_interactor.get_module(NotificationEvents.IDENTITY).notify_subscription_request.connect(notify_subscription_request);
2017-03-02 14:37:32 +00:00
}
private void notify_message(Entities.Message message, Conversation conversation) {
if (!notifications.has_key(conversation)) {
2017-09-19 20:41:33 +00:00
notifications[conversation] = new Notification("");
notifications[conversation].set_default_action_and_target_value("app.open-conversation", new Variant.int32(conversation.id));
}
string display_name = Util.get_conversation_display_name(stream_interactor, conversation);
string text = message.body;
if (stream_interactor.get_module(MucManager.IDENTITY).is_groupchat(conversation.counterpart, conversation.account)) {
string muc_occupant = Util.get_display_name(stream_interactor, message.from, conversation.account);
text = @"$muc_occupant: $text";
}
notifications[conversation].set_title(display_name);
notifications[conversation].set_body(text);
try {
notifications[conversation].set_icon(get_pixbuf_icon((new AvatarGenerator(40, 40)).draw_conversation(stream_interactor, conversation)));
} catch (Error e) { }
window.get_application().send_notification(conversation.id.to_string(), notifications[conversation]);
active_conversation_ids.add(conversation.id.to_string());
window.urgency_hint = true;
2017-03-02 14:37:32 +00:00
}
private void notify_subscription_request(Conversation conversation) {
2017-09-19 20:41:33 +00:00
Notification notification = new Notification(_("Subscription request"));
notification.set_body(conversation.counterpart.to_string());
2017-10-29 14:15:28 +00:00
try {
notification.set_icon(get_pixbuf_icon((new AvatarGenerator(40, 40)).draw_jid(stream_interactor, conversation.counterpart, conversation.account)));
2017-10-29 14:15:28 +00:00
} catch (Error e) { }
notification.set_default_action_and_target_value("app.open-conversation", new Variant.int32(conversation.id));
2017-09-19 20:41:33 +00:00
notification.add_button_with_target_value(_("Accept"), "app.accept-subscription", conversation.id);
notification.add_button_with_target_value(_("Deny"), "app.deny-subscription", conversation.id);
window.get_application().send_notification(conversation.id.to_string() + "-subscription", notification);
active_ids.add(conversation.id.to_string() + "-subscription");
2017-03-02 14:37:32 +00:00
}
2018-01-16 15:17:42 +00:00
private Icon get_pixbuf_icon(Cairo.ImageSurface surface) throws Error {
Gdk.Pixbuf avatar = Gdk.pixbuf_get_from_surface(surface, 0, 0, surface.get_width(), surface.get_height());
2017-09-19 20:41:33 +00:00
uint8[] buffer;
avatar.save_to_buffer(out buffer, "png");
return new BytesIcon(new Bytes(buffer));
}
2017-03-02 14:37:32 +00:00
}
2017-03-10 17:07:28 +00:00
2017-08-16 09:44:42 +00:00
}