From aab05507d572c7f096c389b45cc334e2f238c266 Mon Sep 17 00:00:00 2001 From: Mariano Lopez Date: Thu, 9 Jul 2015 10:39:12 -0500 Subject: [PATCH] models.py: Added Raw SQL for percentage updated MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This adds SQL queries that will be used for the percentage of recipes updated in a period. Signed-off-by: Mariano Lopez Signed-off-by: Aníbal Limón --- rrs/models.py | 44 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) diff --git a/rrs/models.py b/rrs/models.py index ad1b97a..166989d 100644 --- a/rrs/models.py +++ b/rrs/models.py @@ -234,6 +234,16 @@ class RecipeUpstreamHistory(models.Model): else: return None + @staticmethod + def get_first_by_date_range(start, end): + history = RecipeUpstreamHistory.objects.filter(start_date__gte = start, + start_date__lte = end).order_by('start_date') + + if history: + return history[0] + else: + return None + @staticmethod def get_last(): history = RecipeUpstreamHistory.objects.filter().order_by('-start_date') @@ -474,6 +484,40 @@ class Raw(): """, [date]) return Raw.dictfetchall(cur) + @staticmethod + def get_reup_by_date(date_id): + cur = connection.cursor() + cur.execute("""SELECT DISTINCT recipe_id + FROM rrs_RecipeUpstream + WHERE status = 'N' + AND history_id = %s + """, [date_id]) + return [i[0] for i in cur.fetchall()] + + @staticmethod + def get_reupg_by_dates(start_date, end_date): + cur = connection.cursor() + cur.execute("""SELECT id, recipe_id, maintainer_id, author_date, commit_date + FROM rrs_recipeupgrade + WHERE commit_date >= %s + AND commit_date <= %s + ORDER BY commit_date DESC; + """, [start_date, end_date]) + return Raw.dictfetchall(cur) + + @staticmethod + def get_reupg_by_dates_and_recipes(start_date, end_date, recipes_id): + recipes = str(recipes_id).strip('[]') + + cur = connection.cursor() + qry = """SELECT DISTINCT recipe_id + FROM rrs_RecipeUpgrade""" + qry += "\nWHERE commit_date >= '%s'" % str(start_date) + qry += "\nAND commit_date <= '%s'" % str(end_date) + qry += "\nAND recipe_id IN (%s);" % recipes + cur.execute(qry) + return Raw.dictfetchall(cur) + @staticmethod def dictfetchall(cursor): "Returns all rows from a cursor as a dict"