From: Mark Hymers Date: Fri, 7 Nov 2014 21:03:09 +0000 (+0000) Subject: Add suite function X-Git-Url: https://git.donarmstrong.com/?p=dak.git;a=commitdiff_plain;h=daf3aabf1233de2a58acc35ec231291ac22201c9 Add suite function Signed-off-by: Mark Hymers --- diff --git a/dakweb/queries/suite.py b/dakweb/queries/suite.py index 1e7f2f92..e04c2084 100644 --- a/dakweb/queries/suite.py +++ b/dakweb/queries/suite.py @@ -31,3 +31,51 @@ def suites(): QueryRegister().register_path('/suites', suites) +@bottle.route('/suite/') +def suite(suite=None): + """ + suite(suite) + + returns: dictionary + + Gives information about a single suite. Note that this routine will look + up a suite first by the main suite_name, but then also by codename if no + suite is initially found. It can therefore be used to canonicalise suite + names + """ + + if suite is None: + return bottle.HTTPError(503, 'Suite not specified.') + + # TODO: We should probably stick this logic into daklib/dbconn.py + so = None + + s = DBConn().session() + q = s.query(Suite) + q = q.filter(Suite.suite_name == suite) + + if q.count() > 1: + # This would mean dak is misconfigured + return bottle.HTTPError(503, 'Multiple suites found: configuration error') + elif q.count() == 1: + so = q[0] + else: + # Look it up by suite_name + q = s.query(Suite).filter(Suite.codename == suite) + if q.count() > 1: + # This would mean dak is misconfigured + return bottle.HTTPError(503, 'Multiple suites found: configuration error') + elif q.count() == 1: + so = q[0] + + if so is not None: + so = {'name': so.suite_name, + 'codename': so.codename, + 'archive': so.archive.archive_name, + 'architectures': [x.arch_string for x in so.architectures], + 'components': [x.component_name for x in so.components]} + + return json.dumps(so) + +QueryRegister().register_path('/suite', suite) +