diff options
author | Samuel Hand <samuel.hand@openmailbox.org> | 2018-07-11 13:20:02 +0100 |
---|---|---|
committer | Samuel Hand <samuel.hand@openmailbox.org> | 2018-07-11 13:20:02 +0100 |
commit | 62ad56af216410d51ebfd6fa542e936703465549 (patch) | |
tree | 5d3bb3538f65b1500a1bef69fda396e43484e5fc /plugins/omemo/src/own_notifications.vala | |
parent | acbc5710d083e69f887b0b5a15e48b7d10b48190 (diff) | |
download | dino-62ad56af216410d51ebfd6fa542e936703465549.tar.gz dino-62ad56af216410d51ebfd6fa542e936703465549.zip |
Notify on a new own device
Diffstat (limited to 'plugins/omemo/src/own_notifications.vala')
-rw-r--r-- | plugins/omemo/src/own_notifications.vala | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/plugins/omemo/src/own_notifications.vala b/plugins/omemo/src/own_notifications.vala new file mode 100644 index 00000000..df0c4740 --- /dev/null +++ b/plugins/omemo/src/own_notifications.vala @@ -0,0 +1,38 @@ +using Dino.Entities; +using Xmpp; +using Gtk; + +namespace Dino.Plugins.Omemo { + +public class OwnNotifications { + + private StreamInteractor stream_interactor; + private Plugin plugin; + private Account account; + + public OwnNotifications (Plugin plugin, StreamInteractor stream_interactor, Account account) { + this.stream_interactor = (!)stream_interactor; + this.plugin = plugin; + this.account = account; + stream_interactor.module_manager.get_module(account, StreamModule.IDENTITY).bundle_fetched.connect_after((jid, device_id, bundle) => { + if (jid.equals(account.bare_jid) && has_new_devices(account.bare_jid)) { + display_notification(); + } + }); + if (has_new_devices(account.bare_jid)) { + display_notification(); + } + + } + + public bool has_new_devices(Jid jid) { + return plugin.db.identity_meta.with_address(account.id, jid.bare_jid.to_string()).with(plugin.db.identity_meta.trust_level, "=", Database.IdentityMetaTable.TrustLevel.UNKNOWN).without_null(plugin.db.identity_meta.identity_key_public_base64).count() > 0; + } + + private void display_notification() { + Notification notification = new Notification("Trust decision required"); + notification.set_body(@"A new OMEMO device has been added for the account $(account.bare_jid)"); + plugin.app.send_notification(account.id.to_string()+"-new-device", notification); + } +} +} |