X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=sfa%2Fserver%2Fsfaapi.py;h=ad5cbe1a8ed563123a1c23b898d37125cb5c7a23;hb=815c0c40e7f76056f98ef501173161f3db9fc273;hp=708503790449584d820da39f6c0e783545a5398d;hpb=44dbc99733c218930dc61619c068f1038c4f33e4;p=sfa.git diff --git a/sfa/server/sfaapi.py b/sfa/server/sfaapi.py index 70850379..ad5cbe1a 100644 --- a/sfa/server/sfaapi.py +++ b/sfa/server/sfaapi.py @@ -1,18 +1,20 @@ import os, os.path import datetime -from sfa.util.faults import SfaAPIError +from sfa.util.faults import SfaFault, SfaAPIError +from sfa.util.genicode import GENICODE from sfa.util.config import Config from sfa.util.cache import Cache from sfa.trust.auth import Auth + from sfa.trust.certificate import Keypair, Certificate from sfa.trust.credential import Credential from sfa.trust.rights import determine_rights from sfa.server.xmlrpcapi import XmlrpcApi -# thgen xxx fixme this is wrong all right, but temporary, will use generic -from sfa.util.table import SfaTable +from sfa.client.return_value import ReturnValue + #################### class SfaApi (XmlrpcApi): @@ -89,9 +91,9 @@ class SfaApi (XmlrpcApi): return server - def getCredential(self): + def getCredential(self, minimumExpiration=0): """ - Return a valid credential for this interface. + Return a valid credential for this interface. """ type = 'authority' path = self.config.SFA_DATA_DIR @@ -102,7 +104,7 @@ class SfaApi (XmlrpcApi): cred = Credential(filename = cred_filename) # make sure cred isnt expired if not cred.get_expiration or \ - datetime.datetime.utcnow() < cred.get_expiration(): + datetime.datetime.utcnow() + datetime.timedelta(seconds=minimumExpiration) < cred.get_expiration(): return cred.save_to_string(save_parents=True) # get a new credential @@ -159,7 +161,8 @@ class SfaApi (XmlrpcApi): auth_hrn = hrn auth_info = self.auth.get_auth_info(auth_hrn) # xxx thgen fixme - use SfaTable hardwired for now - #table = self.SfaTable() + # thgen xxx fixme this is wrong all right, but temporary, will use generic + from sfa.storage.table import SfaTable table = SfaTable() records = table.findObjects({'hrn': hrn, 'type': 'authority+sa'}) if not records: @@ -201,7 +204,53 @@ class SfaApi (XmlrpcApi): if self.cache: server_version = self.cache.get(cache_key) if not server_version: - server_version = server.GetVersion() + result = server.GetVersion() + server_version = ReturnValue.get_value(result) # cache version for 24 hours self.cache.add(cache_key, server_version, ttl= 60*60*24) return server_version + + + def get_geni_code(self, result): + code = { + 'geni_code': GENICODE.SUCCESS, + 'am_type': 'sfa', + 'am_code': None, + } + if isinstance(result, SfaFault): + code['geni_code'] = result.faultCode + code['am_code'] = result.faultCode + + return code + + def get_geni_value(self, result): + value = result + if isinstance(result, SfaFault): + value = "" + return value + + def get_geni_output(self, result): + output = "" + if isinstance(result, SfaFault): + output = result.faultString + return output + + def prepare_response_v2_am(self, result): + response = { + 'geni_api': 2, + 'code': self.get_geni_code(result), + 'value': self.get_geni_value(result), + 'output': self.get_geni_output(result), + } + return response + + def prepare_response(self, result, method=""): + """ + Converts the specified result into a standard GENI compliant + response + """ + # as of dec 13 2011 we only support API v2 + if self.interface.lower() in ['aggregate', 'slicemgr']: + result = self.prepare_response_v2_am(result) + return XmlrpcApi.prepare_response(self, result, method) +