X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=sfa%2Fserver%2Fregistry.py;h=b7bfdd87bb4641617e9decf83b1c2f0d45e2d669;hb=06b330f0ee047bdb107e43e82b1d7356c876bc15;hp=8c60e098f868f7bff3d89348b114ec21cf59f8bc;hpb=3dbfdba5db3921a563c0e153c554c755b9dd494f;p=sfa.git diff --git a/sfa/server/registry.py b/sfa/server/registry.py index 8c60e098..b7bfdd87 100644 --- a/sfa/server/registry.py +++ b/sfa/server/registry.py @@ -7,6 +7,7 @@ from sfa.util.server import SfaServer from sfa.util.faults import * +from sfa.util.xrn import hrn_to_urn from sfa.server.interface import Interfaces import sfa.util.xmlrpcprotocol as xmlrpcprotocol import sfa.util.soapprotocol as soapprotocol @@ -24,9 +25,7 @@ class Registry(SfaServer): # @param cert_file certificate filename containing public key (could be a GID file) def __init__(self, ip, port, key_file, cert_file): - SfaServer.__init__(self, ip, port, key_file, cert_file) - self.server.interface = 'registry' - + SfaServer.__init__(self, ip, port, key_file, cert_file,'registry') ## # Registries is a dictionary of registry connections keyed on the registry @@ -37,20 +36,16 @@ class Registries(Interfaces): default_dict = {'registries': {'registry': [Interfaces.default_fields]}} def __init__(self, api, conf_file = "/etc/sfa/registries.xml"): - Interfaces.__init__(self, api, conf_file, 'sa') - - def get_connections(self, interfaces): - """ - read connection details for the trusted peer registries from file return - a dictionary of connections keyed on interface hrn. - """ - connections = Interfaces.get_connections(self, interfaces) - - # set up a connection to the local registry + Interfaces.__init__(self, api, conf_file) address = self.api.config.SFA_REGISTRY_HOST port = self.api.config.SFA_REGISTRY_PORT url = 'http://%(address)s:%(port)s' % locals() - local_registry = {'hrn': self.api.hrn, 'addr': address, 'port': port} + local_registry = {'hrn': self.api.hrn, + 'urn': hrn_to_urn(self.api.hrn, 'authority'), + 'addr': address, + 'port': port, + 'url': url} self.interfaces[self.api.hrn] = local_registry - connections[self.api.hrn] = xmlrpcprotocol.get_server(url, self.api.key_file, self.api.cert_file) - return connections + + # get connections + self.update(self.get_connections())