X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=sfa%2Fdummy%2Fdummyxrn.py;h=b934da21c268532f765734140074c2e47acb867f;hb=HEAD;hp=05c368169da916a34c00701cb284c9137dfc49f5;hpb=a49c0e1ae9001aa0ff22cc7262e5669db0739df5;p=sfa.git diff --git a/sfa/dummy/dummyxrn.py b/sfa/dummy/dummyxrn.py index 05c36816..b934da21 100644 --- a/sfa/dummy/dummyxrn.py +++ b/sfa/dummy/dummyxrn.py @@ -3,58 +3,74 @@ import re from sfa.util.xrn import Xrn # temporary helper functions to use this module instead of namespace -def hostname_to_hrn (auth, testbed_name, hostname): - return DummyXrn(auth=auth+'.'+testbed_name,hostname=hostname).get_hrn() + + +def hostname_to_hrn(auth, testbed_name, hostname): + return DummyXrn(auth=auth + '.' + testbed_name, hostname=hostname).get_hrn() + + def hostname_to_urn(auth, testbed_name, hostname): - return DummyXrn(auth=auth+'.'+testbed_name,hostname=hostname).get_urn() -def slicename_to_hrn (auth_hrn, slicename): - return DummyXrn(auth=auth_hrn,slicename=slicename).get_hrn() -def email_to_hrn (auth_hrn, email): + return DummyXrn(auth=auth + '.' + testbed_name, hostname=hostname).get_urn() + + +def slicename_to_hrn(auth_hrn, slicename): + return DummyXrn(auth=auth_hrn, slicename=slicename).get_hrn() + + +def email_to_hrn(auth_hrn, email): return DummyXrn(auth=auth_hrn, email=email).get_hrn() -def hrn_to_dummy_slicename (hrn): - return DummyXrn(xrn=hrn,type='slice').dummy_slicename() -def hrn_to_dummy_authname (hrn): - return DummyXrn(xrn=hrn,type='any').dummy_authname() + + +def hrn_to_dummy_slicename(hrn): + return DummyXrn(xrn=hrn, type='slice').dummy_slicename() + + +def hrn_to_dummy_authname(hrn): + return DummyXrn(xrn=hrn, type='any').dummy_authname() + + def xrn_to_hostname(hrn): return Xrn.unescape(PlXrn(xrn=hrn, type='node').get_leaf()) + class DummyXrn (Xrn): - @staticmethod - def site_hrn (auth, testbed_name): - return '.'.join([auth,testbed_name]) + @staticmethod + def site_hrn(auth, testbed_name): + return '.'.join([auth, testbed_name]) - def __init__ (self, auth=None, hostname=None, slicename=None, email=None, interface=None, **kwargs): - #def hostname_to_hrn(auth_hrn, login_base, hostname): + def __init__(self, auth=None, hostname=None, slicename=None, email=None, interface=None, **kwargs): + # def hostname_to_hrn(auth_hrn, login_base, hostname): if hostname is not None: - self.type='node' + self.type = 'node' # keep only the first part of the DNS name #self.hrn='.'.join( [auth,hostname.split(".")[0] ] ) # escape the '.' in the hostname - self.hrn='.'.join( [auth,Xrn.escape(hostname)] ) + self.hrn = '.'.join([auth, Xrn.escape(hostname)]) self.hrn_to_urn() - #def slicename_to_hrn(auth_hrn, slicename): + # def slicename_to_hrn(auth_hrn, slicename): elif slicename is not None: - self.type='slice' + self.type = 'slice' # split at the first _ - parts = slicename.split("_",1) - self.hrn = ".".join([auth] + parts ) + parts = slicename.split("_", 1) + self.hrn = ".".join([auth] + parts) self.hrn_to_urn() - #def email_to_hrn(auth_hrn, email): + # def email_to_hrn(auth_hrn, email): elif email is not None: - self.type='person' + self.type = 'person' # keep only the part before '@' and replace special chars into _ - self.hrn='.'.join([auth,email.split('@')[0].replace(".", "_").replace("+", "_")]) + self.hrn = '.'.join( + [auth, email.split('@')[0].replace(".", "_").replace("+", "_")]) self.hrn_to_urn() elif interface is not None: self.type = 'interface' self.hrn = auth + '.' + interface self.hrn_to_urn() else: - Xrn.__init__ (self,**kwargs) + Xrn.__init__(self, **kwargs) - #def hrn_to_pl_slicename(hrn): - def dummy_slicename (self): + # def hrn_to_pl_slicename(hrn): + def dummy_slicename(self): self._normalize() leaf = self.leaf sliver_id_parts = leaf.split(':') @@ -62,8 +78,8 @@ class DummyXrn (Xrn): name = re.sub('[^a-zA-Z0-9_]', '', name) return name - #def hrn_to_pl_authname(hrn): - def dummy_authname (self): + # def hrn_to_pl_authname(hrn): + def dummy_authname(self): self._normalize() return self.authority[-1] @@ -71,18 +87,18 @@ class DummyXrn (Xrn): self._normalize() return self.leaf - def dummy_login_base (self): + def dummy_login_base(self): self._normalize() if self.type and self.type.startswith('authority'): - base = self.leaf + base = self.leaf else: base = self.authority[-1] - + # Fix up names of GENI Federates base = base.lower() base = re.sub('\\\[^a-zA-Z0-9]', '', base) if len(base) > 20: - base = base[len(base)-20:] - + base = base[len(base) - 20:] + return base