diff options
author | Tomás Touceda <chiiph@leap.se> | 2013-10-03 11:25:39 -0300 |
---|---|---|
committer | Tomás Touceda <chiiph@leap.se> | 2013-10-03 11:25:39 -0300 |
commit | 91fb5281f941af7aa36997a0dec4300d65363fb5 (patch) | |
tree | ac35c3c3eb55bcb133173b07f89ad06dfbcc13c5 /src/leap/bitmask/config/leapsettings.py | |
parent | 3597f2f043cbe78bb0c7dbc0be4778e2fe9cdd3f (diff) | |
parent | 99625ee3ab32791c0ddac946685379940b9f291e (diff) |
Merge remote-tracking branch 'ivan/feature/3996_separate-providers-in-wizard' into develop
Diffstat (limited to 'src/leap/bitmask/config/leapsettings.py')
-rw-r--r-- | src/leap/bitmask/config/leapsettings.py | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/leap/bitmask/config/leapsettings.py b/src/leap/bitmask/config/leapsettings.py index 338fa475..7ab1ace3 100644 --- a/src/leap/bitmask/config/leapsettings.py +++ b/src/leap/bitmask/config/leapsettings.py @@ -67,6 +67,7 @@ class LeapSettings(object): DEFAULTPROVIDER_KEY = "DefaultProvider" ALERTMISSING_KEY = "AlertMissingScripts" GATEWAY_KEY = "Gateway" + PINNED_KEY = "Pinned" # values GATEWAY_AUTOMATIC = "Automatic" @@ -134,6 +135,22 @@ class LeapSettings(object): return providers + def is_pinned_provider(self, domain): + """ + Returns True if the domain 'domain' is pinned with the application. + False otherwise. + + :param provider: provider domain + :type provider: str + + :rtype: bool + """ + leap_assert(len(domain) > 0, "We need a nonempty domain.") + pinned_key = "{0}/{1}".format(domain, self.PINNED_KEY) + result = to_bool(self._settings.value(pinned_key, False)) + + return result + def get_selected_gateway(self, provider): """ Returns the configured gateway for the given provider. |