2017-03-12 15:21:46 +00:00
|
|
|
using Gee;
|
2017-03-12 13:44:09 +00:00
|
|
|
using Gtk;
|
|
|
|
|
2017-03-12 01:49:53 +00:00
|
|
|
using Dino.Entities;
|
|
|
|
|
|
|
|
namespace Dino.Plugins.OpenPgp {
|
|
|
|
|
|
|
|
[GtkTemplate (ui = "/org/dino-im/account_settings_item.ui")]
|
|
|
|
|
2017-03-12 13:44:09 +00:00
|
|
|
private class AccountSettingsWidget : Stack, Plugins.AccountSettingsWidget {
|
|
|
|
[GtkChild] private Label label;
|
|
|
|
[GtkChild] private Button button;
|
|
|
|
[GtkChild] private ComboBox combobox;
|
2017-03-12 01:49:53 +00:00
|
|
|
|
2017-03-12 13:44:09 +00:00
|
|
|
private Plugin plugin;
|
|
|
|
private Account current_account;
|
2017-03-12 15:21:46 +00:00
|
|
|
private Gee.List<GPG.Key> keys = null;
|
2017-03-12 01:49:53 +00:00
|
|
|
private Gtk.ListStore list_store = new Gtk.ListStore(2, typeof(string), typeof(string?));
|
|
|
|
|
2017-03-12 13:44:09 +00:00
|
|
|
public AccountSettingsWidget(Plugin plugin) {
|
|
|
|
this.plugin = plugin;
|
|
|
|
|
|
|
|
CellRendererText renderer = new CellRendererText();
|
2017-03-12 01:49:53 +00:00
|
|
|
renderer.set_padding(0, 0);
|
2017-03-12 13:44:09 +00:00
|
|
|
combobox.pack_start(renderer, true);
|
|
|
|
combobox.add_attribute(renderer, "markup", 0);
|
2017-03-12 15:21:46 +00:00
|
|
|
combobox.set_model(list_store);
|
2017-03-12 13:44:09 +00:00
|
|
|
|
|
|
|
button.clicked.connect(on_button_clicked);
|
|
|
|
combobox.changed.connect(key_changed);
|
2017-03-12 01:49:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public void deactivate() {
|
|
|
|
this.set_visible_child_name("label");
|
|
|
|
}
|
|
|
|
|
|
|
|
public void set_account(Account account) {
|
2017-03-12 13:44:09 +00:00
|
|
|
this.current_account = account;
|
2017-03-12 15:21:46 +00:00
|
|
|
if (keys == null) {
|
|
|
|
fetch_keys();
|
|
|
|
} else {
|
|
|
|
activate_current_account();
|
|
|
|
}
|
2017-03-12 01:49:53 +00:00
|
|
|
}
|
|
|
|
|
2017-03-12 13:44:09 +00:00
|
|
|
private void on_button_clicked() {
|
|
|
|
activated();
|
|
|
|
this.set_visible_child_name("entry");
|
|
|
|
combobox.popup();
|
|
|
|
}
|
2017-03-12 01:49:53 +00:00
|
|
|
|
2017-03-12 15:21:46 +00:00
|
|
|
private void activate_current_account() {
|
|
|
|
string? account_key = plugin.db.get_account_key(current_account);
|
|
|
|
int activate_index = 0;
|
|
|
|
for (int i = 0; i < keys.size; i++) {
|
|
|
|
GPG.Key key = keys[i];
|
|
|
|
if (key.fpr == account_key) {
|
|
|
|
activate_index = i + 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
combobox.active = activate_index;
|
2017-03-12 01:49:53 +00:00
|
|
|
|
2017-03-12 15:21:46 +00:00
|
|
|
TreeIter selected;
|
|
|
|
combobox.get_active_iter(out selected);
|
|
|
|
set_label_active(selected);
|
|
|
|
}
|
2017-03-12 13:44:09 +00:00
|
|
|
|
2017-03-12 15:21:46 +00:00
|
|
|
private void populate_list_store() {
|
|
|
|
TreeIter iter;
|
|
|
|
list_store.append(out iter);
|
|
|
|
list_store.set(iter, 0, "Disabled\n<span font='9'>Select key</span>", 1, null);
|
|
|
|
set_label_active(iter, 0);
|
|
|
|
for (int i = 0; i < keys.size; i++) {
|
2017-03-12 13:44:09 +00:00
|
|
|
list_store.append(out iter);
|
2017-03-12 15:21:46 +00:00
|
|
|
list_store.set(iter, 0, @"$(Markup.escape_text(keys[i].uids[0].uid))\n<span font='9'>0x$(Markup.escape_text(keys[i].fpr[0:16]))</span>");
|
|
|
|
list_store.set(iter, 1, keys[i].fpr);
|
|
|
|
if (keys[i].fpr == plugin.db.get_account_key(current_account)) {
|
|
|
|
set_label_active(iter, i + 1);
|
2017-03-12 13:44:09 +00:00
|
|
|
}
|
2017-03-12 01:49:53 +00:00
|
|
|
}
|
2017-03-12 15:21:46 +00:00
|
|
|
activate_current_account();
|
|
|
|
}
|
|
|
|
|
|
|
|
private void fetch_keys() {
|
|
|
|
new Thread<void*> (null, () => { // Querying GnuPG might take some while
|
|
|
|
Idle.add(() => {
|
|
|
|
TreeIter iter;
|
|
|
|
list_store.clear();
|
|
|
|
list_store.append(out iter);
|
|
|
|
button.sensitive = false;
|
|
|
|
label.set_markup("Loading...\n<span font='9'>Querying GnuPG</span>");
|
|
|
|
return false;
|
|
|
|
});
|
|
|
|
try {
|
|
|
|
keys = GPGHelper.get_keylist(null, true);
|
|
|
|
Idle.add(() => {
|
|
|
|
list_store.clear();
|
|
|
|
populate_list_store();
|
|
|
|
button.sensitive = true;
|
|
|
|
return false;
|
|
|
|
});
|
|
|
|
} catch (Error e) {
|
|
|
|
Idle.add(() => {
|
|
|
|
TreeIter iter;
|
|
|
|
list_store.append(out iter);
|
|
|
|
list_store.set(iter, 0, @"Disabled\n<span font='9'>Error in GnuPG</span>", 1, null);
|
|
|
|
return false;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
});
|
2017-03-12 13:44:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private void set_label_active(TreeIter iter, int i = -1) {
|
|
|
|
Value text;
|
|
|
|
list_store.get_value(iter, 0, out text);
|
|
|
|
label.set_markup((string) text);
|
|
|
|
if (i != -1) combobox.active = i;
|
|
|
|
}
|
2017-03-12 01:49:53 +00:00
|
|
|
|
2017-03-12 13:44:09 +00:00
|
|
|
private void key_changed() {
|
|
|
|
TreeIter selected;
|
|
|
|
bool iter_valid = combobox.get_active_iter(out selected);
|
|
|
|
if (iter_valid) {
|
|
|
|
Value key_value;
|
|
|
|
list_store.get_value(selected, 1, out key_value);
|
|
|
|
string? key_id = key_value as string;
|
|
|
|
if (key_id != null) {
|
|
|
|
if (plugin.modules.has_key(current_account)) {
|
|
|
|
plugin.modules[current_account].set_private_key_id(key_id);
|
|
|
|
}
|
|
|
|
plugin.db.set_account_key(current_account, key_id);
|
|
|
|
}
|
|
|
|
set_label_active(selected);
|
|
|
|
deactivate();
|
|
|
|
}
|
2017-03-12 01:49:53 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|