X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=sla%2Fslaclient%2Frestclient.py;h=ab38cc4db753989e8f521c498f00a7fe8fb482d6;hb=1f8c88845076b4df151b4d193532d17f0ffa4956;hp=cdada8a5210bfb2708d52224fe415959a24934c4;hpb=c99f1bd98ff355bd3f63b4929739ea5bd92cd6a3;p=unfold.git diff --git a/sla/slaclient/restclient.py b/sla/slaclient/restclient.py index cdada8a5..ab38cc4d 100755 --- a/sla/slaclient/restclient.py +++ b/sla/slaclient/restclient.py @@ -12,13 +12,13 @@ from django.conf import settings """REST client to SLA Manager. -Contains a generic rest client and wrappers over this generic client +Contains a generic rest client and wrappers over this generic client for each resource. Each resource client implements business-like() functions, but returns a tuple (output, requests.Response) -The resource clients are initialized with the rooturl and a path, which +The resource clients are initialized with the rooturl and a path, which are combined to build the resource url. The path is defaulted to the known resource path. So, for example, to create a agreements client: @@ -32,29 +32,27 @@ c = restclient.Factory.agreements() """ -_PROVIDERS_PATH = "providerso" -_AGREEMENTS_PATH = "agreementso" -_TEMPLATES_PATH = "templateso" -_VIOLATIONS_PATH = "violationso" +_PROVIDERS_PATH = "providers" +_AGREEMENTS_PATH = "agreements" +_TEMPLATES_PATH = "templates" +_VIOLATIONS_PATH = "violations" _ENFORCEMENTJOBS_PATH = "enforcements" rooturl = settings.SLA_MANAGER_URL -# SLA_MANAGER_USER = "normal_user" -# SLA_MANAGER_PASSWORD = "password" class Factory(object): @staticmethod - def agreements(): - """Returns aREST client for Agreements + def agreements(path): + """Returns a REST client for Agreements :rtype : Agreements """ - return Agreements(rooturl) + return Agreements(rooturl, path) @staticmethod def providers(): - """Returns aREST client for Providers + """Returns a REST client for Providers :rtype : Providers """ @@ -62,7 +60,7 @@ class Factory(object): @staticmethod def violations(): - """Returns aREST client for Violations + """Returns a REST client for Violations :rtype : Violations """ @@ -70,7 +68,7 @@ class Factory(object): @staticmethod def templates(): - """Returns aREST client for Violations + """Returns a REST client for Violations :rtype : Violations """ @@ -78,12 +76,13 @@ class Factory(object): @staticmethod def enforcements(): - """Returns aREST client for Enforcements jobs + """Returns a REST client for Enforcements jobs :rtype : Enforcements """ return Enforcements(rooturl) + class Client(object): def __init__(self, root_url): @@ -104,21 +103,33 @@ class Client(object): Returns a requests.Response :rtype : request.Response - :param str path: remaining path from root url; + :param str path: remaining path from root url; empty if desired path equal to rooturl. :param kwargs: arguments to requests.get - - Example: + + Example: c = Client("http://localhost:8080/service") c.get("/resource", headers = { "accept": "application/json" }) """ url = _buildpath_(self.rooturl, path) - kwargs["auth"] = HTTPBasicAuth(settings.SLA_MANAGER_USER, settings.SLA_MANAGER_PASSWORD) + if "testbed" in kwargs: + url = url + "?testbed=" + kwargs["testbed"] + + if "headers" not in kwargs: + kwargs["headers"] = {"accept": "application/xml"} + kwargs["auth"] = HTTPBasicAuth(settings.SLA_MANAGER_USER, + settings.SLA_MANAGER_PASSWORD) + + # for key, values in kwargs.iteritems(): + # print key, values + result = requests.get(url, **kwargs) print "GET {} {} {}".format( result.url, result.status_code, result.text[0:70]) + print result.encoding + return result - + def post(self, path, data=None, **kwargs): """Just a wrapper over request.post, just in case @@ -139,7 +150,12 @@ class Client(object): ) """ url = _buildpath_(self.rooturl, path) - kwargs["auth"] = HTTPBasicAuth(settings.SLA_MANAGER_USER, settings.SLA_MANAGER_PASSWORD) + url = url + "?testbed=iminds" # TODO remove hardcoded string + kwargs["auth"] = HTTPBasicAuth(settings.SLA_MANAGER_USER, + settings.SLA_MANAGER_PASSWORD) + if "headers" not in kwargs: + kwargs = {"accept": "application/xml", + "content-type": "application/xml"} result = requests.post(url, data, **kwargs) location = result.headers["location"] \ if "location" in result.headers else "" @@ -147,7 +163,6 @@ class Client(object): result.url, result.status_code, location) return result - class _Resource(object): @@ -183,7 +198,7 @@ class _Resource(object): content_type = r.headers.get('content-type', '') - print("content-type = " + content_type) + #print("content-type = " + content_type) if content_type == 'application/json': result = r.json() elif content_type == 'application/xml': @@ -201,18 +216,21 @@ class _Resource(object): resources = self._processresult(r, self.listconverter) return resources, r - def getbyid(self, id): + def getbyid(self, id, params): """Get resource 'id'""" - r = self.client.get(id) + r = self.client.get(id, params=params) resource = _Resource._processresult(r, self.converter) return resource, r - def get(self, params): + def get(self, path, params): """Generic query over resource: GET /resource?q1=v1&q2=v2... :param dict[str,str] params: values to pass as get parameters """ - r = self.client.get("", params=params) + if path is None: + path = "" + + r = self.client.get(path, params=params) resources = self._processresult(r, self.listconverter) return resources, r @@ -271,19 +289,29 @@ class Agreements(object): """ return self.res.get(dict(providerId=providerid)) - def getstatus(self, agreementid): + def getstatus(self, agreementid, testbed): """Get guarantee status of an agreement :param str agreementid : :rtype : wsag_model.AgreementStatus """ - path = _buildpath_(agreementid, "guaranteestatus") - r = self.res.client.get(path, headers={'accept': 'application/json'}) + path = _buildpath_(_AGREEMENTS_PATH, agreementid, "guaranteestatus") + r = self.res.client.get(path, headers={'accept': 'application/json'}, + params={'testbed': testbed}) + json_obj = r.json() + status = wsag_model.AgreementStatus.json_decode(json_obj) return status, r - + + def getbyslice(self, slicename): + """Get the agreements corresponding to a slice + + :rtype : list[wsag_model.Agreement] + """ + return self.res.get(slicename, dict()) + def create(self, agreement): """Create a new agreement @@ -291,6 +319,7 @@ class Agreements(object): """ return self.res.create(agreement) + class Templates(object): def __init__(self, root_url, path=_TEMPLATES_PATH): @@ -316,7 +345,7 @@ class Templates(object): :rtype: wsag_model.Template """ - return self.res.getbyid(provider_id) + return self.res.getbyid(provider_id, None) def create(self, template): """Create a new template @@ -325,6 +354,7 @@ class Templates(object): """ self.res.create(template) + class Providers(object): def __init__(self, root_url, path=_PROVIDERS_PATH): @@ -360,6 +390,7 @@ class Providers(object): body = provider.to_xml() return self.res.create(body) + class Violations(object): def __init__(self, root_url, path=_VIOLATIONS_PATH): @@ -386,7 +417,7 @@ class Violations(object): """ return self.res.getbyid(violationid) - def getbyagreement(self, agreement_id, term=None): + def getbyagreement(self, agreement_id, testbed, term=None): """Get the violations of an agreement. :param str agreement_id: @@ -394,8 +425,9 @@ class Violations(object): violations from all terms will be returned :rtype: list[wsag_model.Violation] """ - return self.res.get( - {"agreementId": agreement_id, "guaranteeTerm": term}) + return self.res.get("", params={"agreementId": agreement_id, + "guaranteeTerm": term, + "testbed": testbed}) class Enforcements(object): @@ -417,17 +449,20 @@ class Enforcements(object): """ return self.res.getall() - def getbyagreement(self, agreement_id): + def getbyagreement(self, agreement_id, testbed): """Get the enforcement of an agreement. :param str agreement_id: - + :rtype: list[wsag_model.Enforcement] """ - return self.res.getbyid(agreement_id) + return self.res.getbyid(agreement_id, params={"testbed": testbed}) def _buildpath_(*paths): + if "" in paths: + paths = [path for path in paths if path != ""] + return "/".join(paths) @@ -437,7 +472,6 @@ def main(): # global rooturl rooturl = "http://127.0.0.1:8080/sla-service" - c = Factory.templates() #r = c.getall() @@ -447,12 +481,9 @@ def main(): #r = c.getbyconsumer('RandomClient') r = c.getbyid("template02") - print r if __name__ == "__main__": main() - -