blob: ce30d4a43fa07498bce66280b9c58dd73835e8a7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
"""all dealing with leap-providers: definition files, updating"""
from leap.base import config as baseconfig
from leap.base import specs
class LeapProviderDefinition(baseconfig.JSONLeapConfig):
spec = specs.leap_provider_spec
def _get_slug(self):
provider_path = baseconfig.get_default_provider_path()
return baseconfig.get_config_file(
'provider-definition.json',
folder=provider_path)
def _set_slug(self, *args, **kwargs):
raise AttributeError("you cannot set slug")
slug = property(_get_slug, _set_slug)
# TODO (MVS+)
# we will construct slug from providers/%s/definition.json
# where %s is domain name. we can get that on __init__
class LeapProviderSet(object):
# we gather them from the filesystem
# TODO: (MVS+)
def __init__(self):
self.count = 0
|