X-Git-Url: http://www.project-moonshot.org/gitweb/?a=blobdiff_plain;f=src%2Fmoonshot-identity-manager-app.vala;h=d903363594da027d29397b24178a6b233ab8b649;hb=f8c3b55edf6f8a54556d36982897a974f723f5ef;hp=7e7878c9eb762aa0b820b112c8474f8af3a5190b;hpb=940e2f7078ab7f699582d9f7d1c89c1f98c52c9b;p=moonshot-ui.git diff --git a/src/moonshot-identity-manager-app.vala b/src/moonshot-identity-manager-app.vala index 7e7878c..d903363 100644 --- a/src/moonshot-identity-manager-app.vala +++ b/src/moonshot-identity-manager-app.vala @@ -40,8 +40,9 @@ public class IdentityManagerApp { } public IdentityManagerApp (bool headless, bool use_flat_file_store) { + use_flat_file_store |= UserForcesFlatFileStore(); #if GNOME_KEYRING - bool keyring_available = GnomeKeyring.is_available(); + bool keyring_available = (!use_flat_file_store) && GnomeKeyring.is_available(); #else bool keyring_available = false; #endif @@ -61,7 +62,7 @@ public class IdentityManagerApp { view = new IdentityManagerView(this); LinkedList card_list = model.get_card_list() ; if (card_list.size > 0) - this.default_id_card = card_list.first(); + this.default_id_card = card_list.last(); init_ipc_server (); @@ -95,16 +96,14 @@ public class IdentityManagerApp { bool has_nai = request.nai != null && request.nai != ""; bool has_srv = request.service != null && request.service != ""; bool confirm = false; - IdCard nai_provided = null; foreach (IdCard id in model.get_card_list()) { - /* If NAI matches we add id card to the candidate list */ + /* If NAI matches, use this id card */ if (has_nai && request.nai == id.nai) { - nai_provided = id; - request.candidates.append (id); - continue; + identity = id; + break; } /* If any service matches we add id card to the candidate list */ @@ -122,7 +121,7 @@ public class IdentityManagerApp { } /* If more than one candidate we dissasociate service from all ids */ - if (has_srv && request.candidates.length() > 1) + if ((identity == null) && has_srv && request.candidates.length() > 1) { foreach (IdCard id in request.candidates) { @@ -160,10 +159,8 @@ public class IdentityManagerApp { } } -// model.store_id_cards (); - /* If there are no candidates we use the service matching rules */ - if (request.candidates.length () == 0) + if ((identity==null) && (request.candidates.length () == 0)) { foreach (IdCard id in model.get_card_list()) { @@ -180,23 +177,25 @@ public class IdentityManagerApp { } } - if (request.candidates.length () > 1) - { - if (has_nai && nai_provided != null) - { - identity = nai_provided; - confirm = false; - } - else + if ((identity == null) && has_nai) { + // create a temp identity + string[] components = request.nai.split("@", 2); + identity = new IdCard(); + identity.display_name = request.nai; + identity.username = components[0]; + if (components.length > 1) + identity.issuer = components[1]; + identity.password = request.password; + identity.temporary = true; + } + if (identity == null) { + if (request.candidates.length () != 1) { confirm = true; + } else { + identity = request.candidates.nth_data (0); + } } - if (identity == null) - identity = request.candidates.nth_data (0); - if (identity == null) - confirm = true; - /* TODO: If candidate list empty return fail */ - if (confirm && (view != null)) { if (!explicitly_launched) @@ -207,10 +206,10 @@ public class IdentityManagerApp { } // Send back the identity (we can't directly run the // callback because we may be being called from a 'yield') - Idle.add( + GLib.Idle.add( () => { if (view != null) { - view.check_add_password(identity, request, model); + identity = view.check_add_password(identity, request, model); } request.return_identity (identity); // The following occasionally causes the app to exit without sending the dbus @@ -332,6 +331,16 @@ public static int main(string[] args){ #endif if (headless) { + try { + var opt_context = new OptionContext(null); + opt_context.set_help_enabled (true); + opt_context.add_main_entries (options, null); + opt_context.parse(ref args); + } catch (OptionError e) { + stdout.printf(_("error: %s\n"),e.message); + stdout.printf(_("Run '%s --help' to see a full list of available options\n"), args[0]); + return -1; + } explicitly_launched = false; } else { try { @@ -344,6 +353,7 @@ public static int main(string[] args){ stdout.printf(_("Run '%s --help' to see a full list of available options\n"), args[0]); return -1; } + gtk_available = true; } #if OS_WIN32